sdk

package module
v0.0.0-...-bc3b386 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2025 License: MIT Imports: 21 Imported by: 0

README

Go API client for sdk

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 0.1.0
  • Package version: latest
  • Generator version: 7.12.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sdk "github.com/formancehq/terraform-provider-cloud/sdk"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sdk.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sdk.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sdk.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sdk.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sdk.ContextOperationServerIndices and sdk.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sdk.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sdk.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:8080

Class Method HTTP request Description
DefaultAPI AcceptInvitation Post /me/invitations/{invitationId}/accept Accept invitation
DefaultAPI AddFeatures Post /organizations/{organizationId}/features Add Features
DefaultAPI CreateInvitation Post /organizations/{organizationId}/invitations Create invitation
DefaultAPI CreateOrganization Post /organizations Create organization
DefaultAPI CreatePrivateRegion Post /organizations/{organizationId}/regions Create a private region
DefaultAPI CreateStack Post /organizations/{organizationId}/stacks Create stack
DefaultAPI DeclineInvitation Post /me/invitations/{invitationId}/reject Decline invitation
DefaultAPI DeleteFeature Delete /organizations/{organizationId}/features/{name} Delete feature
DefaultAPI DeleteInvitation Delete /organizations/{organizationId}/invitations/{invitationId} Delete invitation
DefaultAPI DeleteOrganization Delete /organizations/{organizationId} Delete organization
DefaultAPI DeleteRegion Delete /organizations/{organizationId}/regions/{regionID} Delete region
DefaultAPI DeleteStack Delete /organizations/{organizationId}/stacks/{stackId} Delete stack
DefaultAPI DeleteStackUserAccess Delete /organizations/{organizationId}/stacks/{stackId}/users/{userId} Delete stack user access role within an organization
DefaultAPI DeleteUserFromOrganization Delete /organizations/{organizationId}/users/{userId} delete user from organization
DefaultAPI DisableModule Delete /organizations/{organizationId}/stacks/{stackId}/modules disable module
DefaultAPI DisableStack Put /organizations/{organizationId}/stacks/{stackId}/disable Disable stack
DefaultAPI DisableStargate Put /organizations/{organizationId}/stacks/{stackId}/stargate/disable Disable stargate on a stack
DefaultAPI EnableModule Post /organizations/{organizationId}/stacks/{stackId}/modules enable module
DefaultAPI EnableStack Put /organizations/{organizationId}/stacks/{stackId}/enable Enable stack
DefaultAPI EnableStargate Put /organizations/{organizationId}/stacks/{stackId}/stargate/enable Enable stargate on a stack
DefaultAPI GetRegion Get /organizations/{organizationId}/regions/{regionID} Get region
DefaultAPI GetRegionVersions Get /organizations/{organizationId}/regions/{regionID}/versions Get region versions
DefaultAPI GetServerInfo Get /_info Get server info
DefaultAPI GetStack Get /organizations/{organizationId}/stacks/{stackId} Find stack
DefaultAPI ListFeatures Get /organizations/{organizationId}/features List features
DefaultAPI ListInvitations Get /me/invitations List invitations of the user
DefaultAPI ListLogs Get /organizations/{organizationId}/logs List logs
DefaultAPI ListModules Get /organizations/{organizationId}/stacks/{stackId}/modules List modules of a stack
DefaultAPI ListOrganizationInvitations Get /organizations/{organizationId}/invitations List invitations of the organization
DefaultAPI ListOrganizations Get /organizations List organizations of the connected user
DefaultAPI ListOrganizationsExpanded Get /organizations/expanded List organizations of the connected user with expanded data
DefaultAPI ListRegions Get /organizations/{organizationId}/regions List regions
DefaultAPI ListStackUsersAccesses Get /organizations/{organizationId}/stacks/{stackId}/users List stack users accesses within an organization
DefaultAPI ListStacks Get /organizations/{organizationId}/stacks List stacks
DefaultAPI ListUsersOfOrganization Get /organizations/{organizationId}/users List users of organization
DefaultAPI ReadConnectedUser Get /me Read user
DefaultAPI ReadOrganization Get /organizations/{organizationId} Read organization
DefaultAPI ReadStackUserAccess Get /organizations/{organizationId}/stacks/{stackId}/users/{userId} Read stack user access role within an organization
DefaultAPI ReadUserOfOrganization Get /organizations/{organizationId}/users/{userId} Read user of organization
DefaultAPI RestoreStack Put /organizations/{organizationId}/stacks/{stackId}/restore Restore stack
DefaultAPI UpdateOrganization Put /organizations/{organizationId} Update organization
DefaultAPI UpdateStack Put /organizations/{organizationId}/stacks/{stackId} Update stack
DefaultAPI UpgradeStack Put /organizations/{organizationId}/stacks/{stackId}/upgrade Upgrade stack
DefaultAPI UpsertOrganizationUser Put /organizations/{organizationId}/users/{userId} Update user within an organization
DefaultAPI UpsertStackUserAccess Put /organizations/{organizationId}/stacks/{stackId}/users/{userId} Update stack user access role within an organization

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oauth2
  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: /authorize
  • Scopes:
  • openid: Enable OIDC
  • email: Ask email access

Example

auth := context.WithValue(context.Background(), sdk.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sdk.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedActionEnumValues = []Action{
	"agents.connected",
	"agents.disconnected",
	"invitations.created",
	"invitations.accepted",
	"invitations.rejected",
	"invitations.cancelled",
	"organizations.created",
	"organizations.updated",
	"organizations.deleted",
	"organizations.user.deleted",
	"organizations.user.updated",
	"regions.created",
	"regions.deleted",
	"users.created",
	"users.deleted",
	"stacks.disposal",
	"stacks.disposal-reset",
	"stacks.warned",
	"stacks.pruned",
	"stacks.status.updated",
	"stacks.created",
	"stacks.updated",
	"stacks.deleted",
	"stacks.restored",
	"stacks.disabled",
	"stacks.enabled",
	"stacks.upgraded",
	"stacks.stargate.enabled",
	"stacks.stargate.disabled",
	"stacks.user.updated",
	"stacks.user.deleted",
	"stacks.reachness.updated",
	"stacks.module.enabled",
	"stacks.module.disabled",
	"stacks.module.status.updated",
}

All allowed values of Action enum

View Source
var AllowedCapabilityEnumValues = []Capability{
	"MODULE_SELECTION",
}

All allowed values of Capability enum

View Source
var AllowedRegionCapabilityKeysEnumValues = []RegionCapabilityKeys{
	"MODULE_LIST",
	"EE",
}

All allowed values of RegionCapabilityKeys enum

View Source
var AllowedRoleEnumValues = []Role{
	"NONE",
	"ADMIN",
	"GUEST",
}

All allowed values of Role enum

View Source
var AllowedSystemRoleEnumValues = []SystemRole{
	"USER",
	"SYSTEM",
}

All allowed values of SystemRole enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	DefaultAPI DefaultAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the Membership API API v0.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type Action

type Action string

Action the model 'Action'

const (
	AGENTS_CONNECTED             Action = "agents.connected"
	AGENTS_DISCONNECTED          Action = "agents.disconnected"
	INVITATIONS_CREATED          Action = "invitations.created"
	INVITATIONS_ACCEPTED         Action = "invitations.accepted"
	INVITATIONS_REJECTED         Action = "invitations.rejected"
	INVITATIONS_CANCELLED        Action = "invitations.cancelled"
	ORGANIZATIONS_CREATED        Action = "organizations.created"
	ORGANIZATIONS_UPDATED        Action = "organizations.updated"
	ORGANIZATIONS_DELETED        Action = "organizations.deleted"
	ORGANIZATIONS_USER_DELETED   Action = "organizations.user.deleted"
	ORGANIZATIONS_USER_UPDATED   Action = "organizations.user.updated"
	REGIONS_CREATED              Action = "regions.created"
	REGIONS_DELETED              Action = "regions.deleted"
	USERS_CREATED                Action = "users.created"
	USERS_DELETED                Action = "users.deleted"
	STACKS_DISPOSAL              Action = "stacks.disposal"
	STACKS_DISPOSAL_RESET        Action = "stacks.disposal-reset"
	STACKS_WARNED                Action = "stacks.warned"
	STACKS_PRUNED                Action = "stacks.pruned"
	STACKS_STATUS_UPDATED        Action = "stacks.status.updated"
	STACKS_CREATED               Action = "stacks.created"
	STACKS_UPDATED               Action = "stacks.updated"
	STACKS_DELETED               Action = "stacks.deleted"
	STACKS_RESTORED              Action = "stacks.restored"
	STACKS_DISABLED              Action = "stacks.disabled"
	STACKS_ENABLED               Action = "stacks.enabled"
	STACKS_UPGRADED              Action = "stacks.upgraded"
	STACKS_STARGATE_ENABLED      Action = "stacks.stargate.enabled"
	STACKS_STARGATE_DISABLED     Action = "stacks.stargate.disabled"
	STACKS_USER_UPDATED          Action = "stacks.user.updated"
	STACKS_USER_DELETED          Action = "stacks.user.deleted"
	STACKS_REACHNESS_UPDATED     Action = "stacks.reachness.updated"
	STACKS_MODULE_ENABLED        Action = "stacks.module.enabled"
	STACKS_MODULE_DISABLED       Action = "stacks.module.disabled"
	STACKS_MODULE_STATUS_UPDATED Action = "stacks.module.status.updated"
)

List of Action

func NewActionFromValue

func NewActionFromValue(v string) (*Action, error)

NewActionFromValue returns a pointer to a valid Action for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Action) IsValid

func (v Action) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Action) Ptr

func (v Action) Ptr() *Action

Ptr returns reference to Action value

func (*Action) UnmarshalJSON

func (v *Action) UnmarshalJSON(src []byte) error

type AddFeaturesRequest

type AddFeaturesRequest struct {
	Features             []string `json:"features"`
	AdditionalProperties map[string]interface{}
}

AddFeaturesRequest struct for AddFeaturesRequest

func NewAddFeaturesRequest

func NewAddFeaturesRequest(features []string) *AddFeaturesRequest

NewAddFeaturesRequest instantiates a new AddFeaturesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAddFeaturesRequestWithDefaults

func NewAddFeaturesRequestWithDefaults() *AddFeaturesRequest

NewAddFeaturesRequestWithDefaults instantiates a new AddFeaturesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AddFeaturesRequest) GetFeatures

func (o *AddFeaturesRequest) GetFeatures() []string

GetFeatures returns the Features field value

func (*AddFeaturesRequest) GetFeaturesOk

func (o *AddFeaturesRequest) GetFeaturesOk() ([]string, bool)

GetFeaturesOk returns a tuple with the Features field value and a boolean to check if the value has been set.

func (AddFeaturesRequest) MarshalJSON

func (o AddFeaturesRequest) MarshalJSON() ([]byte, error)

func (*AddFeaturesRequest) SetFeatures

func (o *AddFeaturesRequest) SetFeatures(v []string)

SetFeatures sets field value

func (AddFeaturesRequest) ToMap

func (o AddFeaturesRequest) ToMap() (map[string]interface{}, error)

func (*AddFeaturesRequest) UnmarshalJSON

func (o *AddFeaturesRequest) UnmarshalJSON(data []byte) (err error)

type AnyRegion

type AnyRegion struct {
	Id                   string               `json:"id"`
	BaseUrl              string               `json:"baseUrl"`
	CreatedAt            string               `json:"createdAt"`
	Active               bool                 `json:"active"`
	LastPing             *time.Time           `json:"lastPing,omitempty"`
	Name                 string               `json:"name"`
	Capabilities         RegionCapability     `json:"capabilities"`
	AgentID              string               `json:"agentID"`
	Outdated             bool                 `json:"outdated"`
	CreatorId            *string              `json:"creatorId,omitempty"`
	Version              *string              `json:"version,omitempty"`
	ClientID             *string              `json:"clientID,omitempty"`
	OrganizationID       *string              `json:"organizationID,omitempty"`
	Creator              *User                `json:"creator,omitempty"`
	Production           *bool                `json:"production,omitempty"`
	Public               bool                 `json:"public"`
	Secret               *PrivateRegionSecret `json:"secret,omitempty"`
	AdditionalProperties map[string]interface{}
}

AnyRegion struct for AnyRegion

func NewAnyRegion

func NewAnyRegion(id string, baseUrl string, createdAt string, active bool, name string, capabilities RegionCapability, agentID string, outdated bool, public bool) *AnyRegion

NewAnyRegion instantiates a new AnyRegion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAnyRegionWithDefaults

func NewAnyRegionWithDefaults() *AnyRegion

NewAnyRegionWithDefaults instantiates a new AnyRegion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AnyRegion) GetActive

func (o *AnyRegion) GetActive() bool

GetActive returns the Active field value

func (*AnyRegion) GetActiveOk

func (o *AnyRegion) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*AnyRegion) GetAgentID

func (o *AnyRegion) GetAgentID() string

GetAgentID returns the AgentID field value

func (*AnyRegion) GetAgentIDOk

func (o *AnyRegion) GetAgentIDOk() (*string, bool)

GetAgentIDOk returns a tuple with the AgentID field value and a boolean to check if the value has been set.

func (*AnyRegion) GetBaseUrl

func (o *AnyRegion) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value

func (*AnyRegion) GetBaseUrlOk

func (o *AnyRegion) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value and a boolean to check if the value has been set.

func (*AnyRegion) GetCapabilities

func (o *AnyRegion) GetCapabilities() RegionCapability

GetCapabilities returns the Capabilities field value

func (*AnyRegion) GetCapabilitiesOk

func (o *AnyRegion) GetCapabilitiesOk() (*RegionCapability, bool)

GetCapabilitiesOk returns a tuple with the Capabilities field value and a boolean to check if the value has been set.

func (*AnyRegion) GetClientID

func (o *AnyRegion) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*AnyRegion) GetClientIDOk

func (o *AnyRegion) GetClientIDOk() (*string, bool)

GetClientIDOk returns a tuple with the ClientID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetCreatedAt

func (o *AnyRegion) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*AnyRegion) GetCreatedAtOk

func (o *AnyRegion) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*AnyRegion) GetCreator

func (o *AnyRegion) GetCreator() User

GetCreator returns the Creator field value if set, zero value otherwise.

func (*AnyRegion) GetCreatorId

func (o *AnyRegion) GetCreatorId() string

GetCreatorId returns the CreatorId field value if set, zero value otherwise.

func (*AnyRegion) GetCreatorIdOk

func (o *AnyRegion) GetCreatorIdOk() (*string, bool)

GetCreatorIdOk returns a tuple with the CreatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetCreatorOk

func (o *AnyRegion) GetCreatorOk() (*User, bool)

GetCreatorOk returns a tuple with the Creator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetId

func (o *AnyRegion) GetId() string

GetId returns the Id field value

func (*AnyRegion) GetIdOk

func (o *AnyRegion) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AnyRegion) GetLastPing

func (o *AnyRegion) GetLastPing() time.Time

GetLastPing returns the LastPing field value if set, zero value otherwise.

func (*AnyRegion) GetLastPingOk

func (o *AnyRegion) GetLastPingOk() (*time.Time, bool)

GetLastPingOk returns a tuple with the LastPing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetName

func (o *AnyRegion) GetName() string

GetName returns the Name field value

func (*AnyRegion) GetNameOk

func (o *AnyRegion) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AnyRegion) GetOrganizationID

func (o *AnyRegion) GetOrganizationID() string

GetOrganizationID returns the OrganizationID field value if set, zero value otherwise.

func (*AnyRegion) GetOrganizationIDOk

func (o *AnyRegion) GetOrganizationIDOk() (*string, bool)

GetOrganizationIDOk returns a tuple with the OrganizationID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetOutdated

func (o *AnyRegion) GetOutdated() bool

GetOutdated returns the Outdated field value

func (*AnyRegion) GetOutdatedOk

func (o *AnyRegion) GetOutdatedOk() (*bool, bool)

GetOutdatedOk returns a tuple with the Outdated field value and a boolean to check if the value has been set.

func (*AnyRegion) GetProduction

func (o *AnyRegion) GetProduction() bool

GetProduction returns the Production field value if set, zero value otherwise.

func (*AnyRegion) GetProductionOk

func (o *AnyRegion) GetProductionOk() (*bool, bool)

GetProductionOk returns a tuple with the Production field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetPublic

func (o *AnyRegion) GetPublic() bool

GetPublic returns the Public field value

func (*AnyRegion) GetPublicOk

func (o *AnyRegion) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value and a boolean to check if the value has been set.

func (*AnyRegion) GetSecret

func (o *AnyRegion) GetSecret() PrivateRegionSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*AnyRegion) GetSecretOk

func (o *AnyRegion) GetSecretOk() (*PrivateRegionSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) GetVersion

func (o *AnyRegion) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*AnyRegion) GetVersionOk

func (o *AnyRegion) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnyRegion) HasClientID

func (o *AnyRegion) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*AnyRegion) HasCreator

func (o *AnyRegion) HasCreator() bool

HasCreator returns a boolean if a field has been set.

func (*AnyRegion) HasCreatorId

func (o *AnyRegion) HasCreatorId() bool

HasCreatorId returns a boolean if a field has been set.

func (*AnyRegion) HasLastPing

func (o *AnyRegion) HasLastPing() bool

HasLastPing returns a boolean if a field has been set.

func (*AnyRegion) HasOrganizationID

func (o *AnyRegion) HasOrganizationID() bool

HasOrganizationID returns a boolean if a field has been set.

func (*AnyRegion) HasProduction

func (o *AnyRegion) HasProduction() bool

HasProduction returns a boolean if a field has been set.

func (*AnyRegion) HasSecret

func (o *AnyRegion) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*AnyRegion) HasVersion

func (o *AnyRegion) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (AnyRegion) MarshalJSON

func (o AnyRegion) MarshalJSON() ([]byte, error)

func (*AnyRegion) SetActive

func (o *AnyRegion) SetActive(v bool)

SetActive sets field value

func (*AnyRegion) SetAgentID

func (o *AnyRegion) SetAgentID(v string)

SetAgentID sets field value

func (*AnyRegion) SetBaseUrl

func (o *AnyRegion) SetBaseUrl(v string)

SetBaseUrl sets field value

func (*AnyRegion) SetCapabilities

func (o *AnyRegion) SetCapabilities(v RegionCapability)

SetCapabilities sets field value

func (*AnyRegion) SetClientID

func (o *AnyRegion) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*AnyRegion) SetCreatedAt

func (o *AnyRegion) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*AnyRegion) SetCreator

func (o *AnyRegion) SetCreator(v User)

SetCreator gets a reference to the given User and assigns it to the Creator field.

func (*AnyRegion) SetCreatorId

func (o *AnyRegion) SetCreatorId(v string)

SetCreatorId gets a reference to the given string and assigns it to the CreatorId field.

func (*AnyRegion) SetId

func (o *AnyRegion) SetId(v string)

SetId sets field value

func (*AnyRegion) SetLastPing

func (o *AnyRegion) SetLastPing(v time.Time)

SetLastPing gets a reference to the given time.Time and assigns it to the LastPing field.

func (*AnyRegion) SetName

func (o *AnyRegion) SetName(v string)

SetName sets field value

func (*AnyRegion) SetOrganizationID

func (o *AnyRegion) SetOrganizationID(v string)

SetOrganizationID gets a reference to the given string and assigns it to the OrganizationID field.

func (*AnyRegion) SetOutdated

func (o *AnyRegion) SetOutdated(v bool)

SetOutdated sets field value

func (*AnyRegion) SetProduction

func (o *AnyRegion) SetProduction(v bool)

SetProduction gets a reference to the given bool and assigns it to the Production field.

func (*AnyRegion) SetPublic

func (o *AnyRegion) SetPublic(v bool)

SetPublic sets field value

func (*AnyRegion) SetSecret

func (o *AnyRegion) SetSecret(v PrivateRegionSecret)

SetSecret gets a reference to the given PrivateRegionSecret and assigns it to the Secret field.

func (*AnyRegion) SetVersion

func (o *AnyRegion) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (AnyRegion) ToMap

func (o AnyRegion) ToMap() (map[string]interface{}, error)

func (*AnyRegion) UnmarshalJSON

func (o *AnyRegion) UnmarshalJSON(data []byte) (err error)

type ApiAcceptInvitationRequest

type ApiAcceptInvitationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiAcceptInvitationRequest) Execute

type ApiAddFeaturesRequest

type ApiAddFeaturesRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiAddFeaturesRequest) AddFeaturesRequest

func (r ApiAddFeaturesRequest) AddFeaturesRequest(addFeaturesRequest AddFeaturesRequest) ApiAddFeaturesRequest

func (ApiAddFeaturesRequest) Execute

func (r ApiAddFeaturesRequest) Execute() (*http.Response, error)

type ApiCreateInvitationRequest

type ApiCreateInvitationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiCreateInvitationRequest) Email

func (ApiCreateInvitationRequest) Execute

func (ApiCreateInvitationRequest) InvitationClaim

func (r ApiCreateInvitationRequest) InvitationClaim(invitationClaim InvitationClaim) ApiCreateInvitationRequest

type ApiCreateOrganizationRequest

type ApiCreateOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiCreateOrganizationRequest) Body

func (ApiCreateOrganizationRequest) Execute

type ApiCreatePrivateRegionRequest

type ApiCreatePrivateRegionRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiCreatePrivateRegionRequest) CreatePrivateRegionRequest

func (r ApiCreatePrivateRegionRequest) CreatePrivateRegionRequest(createPrivateRegionRequest CreatePrivateRegionRequest) ApiCreatePrivateRegionRequest

func (ApiCreatePrivateRegionRequest) Execute

type ApiCreateStackRequest

type ApiCreateStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiCreateStackRequest) CreateStackRequest

func (r ApiCreateStackRequest) CreateStackRequest(createStackRequest CreateStackRequest) ApiCreateStackRequest

func (ApiCreateStackRequest) Execute

type ApiDeclineInvitationRequest

type ApiDeclineInvitationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeclineInvitationRequest) Execute

type ApiDeleteFeatureRequest

type ApiDeleteFeatureRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteFeatureRequest) Execute

func (r ApiDeleteFeatureRequest) Execute() (*http.Response, error)

type ApiDeleteInvitationRequest

type ApiDeleteInvitationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteInvitationRequest) Execute

type ApiDeleteOrganizationRequest

type ApiDeleteOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteOrganizationRequest) Execute

type ApiDeleteRegionRequest

type ApiDeleteRegionRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteRegionRequest) Execute

func (r ApiDeleteRegionRequest) Execute() (*http.Response, error)

type ApiDeleteStackRequest

type ApiDeleteStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteStackRequest) Execute

func (r ApiDeleteStackRequest) Execute() (*http.Response, error)

func (ApiDeleteStackRequest) Force

type ApiDeleteStackUserAccessRequest

type ApiDeleteStackUserAccessRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteStackUserAccessRequest) Execute

type ApiDeleteUserFromOrganizationRequest

type ApiDeleteUserFromOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDeleteUserFromOrganizationRequest) Execute

type ApiDisableModuleRequest

type ApiDisableModuleRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDisableModuleRequest) Execute

func (r ApiDisableModuleRequest) Execute() (*http.Response, error)

func (ApiDisableModuleRequest) Name

type ApiDisableStackRequest

type ApiDisableStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDisableStackRequest) Execute

func (r ApiDisableStackRequest) Execute() (*http.Response, error)

type ApiDisableStargateRequest

type ApiDisableStargateRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiDisableStargateRequest) Execute

func (r ApiDisableStargateRequest) Execute() (*http.Response, error)

type ApiEnableModuleRequest

type ApiEnableModuleRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiEnableModuleRequest) Execute

func (r ApiEnableModuleRequest) Execute() (*http.Response, error)

func (ApiEnableModuleRequest) Name

type ApiEnableStackRequest

type ApiEnableStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiEnableStackRequest) Execute

func (r ApiEnableStackRequest) Execute() (*http.Response, error)

type ApiEnableStargateRequest

type ApiEnableStargateRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiEnableStargateRequest) Execute

func (r ApiEnableStargateRequest) Execute() (*http.Response, error)

type ApiGetRegionRequest

type ApiGetRegionRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiGetRegionRequest) Execute

type ApiGetRegionVersionsRequest

type ApiGetRegionVersionsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiGetRegionVersionsRequest) Execute

type ApiGetServerInfoRequest

type ApiGetServerInfoRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiGetServerInfoRequest) Execute

type ApiGetStackRequest

type ApiGetStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiGetStackRequest) Execute

type ApiListFeaturesRequest

type ApiListFeaturesRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListFeaturesRequest) Execute

type ApiListInvitationsRequest

type ApiListInvitationsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListInvitationsRequest) Execute

func (ApiListInvitationsRequest) Organization

func (r ApiListInvitationsRequest) Organization(organization string) ApiListInvitationsRequest

Status of organizations

func (ApiListInvitationsRequest) Status

Status of organizations

type ApiListLogsRequest

type ApiListLogsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListLogsRequest) Action

func (r ApiListLogsRequest) Action(action Action) ApiListLogsRequest

func (ApiListLogsRequest) Cursor

func (r ApiListLogsRequest) Cursor(cursor string) ApiListLogsRequest

func (ApiListLogsRequest) Execute

func (r ApiListLogsRequest) Execute() (*LogCursor, *http.Response, error)

func (ApiListLogsRequest) Key

func (ApiListLogsRequest) PageSize

func (r ApiListLogsRequest) PageSize(pageSize int32) ApiListLogsRequest

func (ApiListLogsRequest) StackId

func (r ApiListLogsRequest) StackId(stackId string) ApiListLogsRequest

func (ApiListLogsRequest) UserId

func (r ApiListLogsRequest) UserId(userId string) ApiListLogsRequest

func (ApiListLogsRequest) Value

type ApiListModulesRequest

type ApiListModulesRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListModulesRequest) Execute

type ApiListOrganizationInvitationsRequest

type ApiListOrganizationInvitationsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListOrganizationInvitationsRequest) Execute

func (ApiListOrganizationInvitationsRequest) Status

Status of organizations

type ApiListOrganizationsExpandedRequest

type ApiListOrganizationsExpandedRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListOrganizationsExpandedRequest) Execute

type ApiListOrganizationsRequest

type ApiListOrganizationsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListOrganizationsRequest) Execute

func (ApiListOrganizationsRequest) Expand

type ApiListRegionsRequest

type ApiListRegionsRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListRegionsRequest) Execute

type ApiListStackUsersAccessesRequest

type ApiListStackUsersAccessesRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListStackUsersAccessesRequest) Execute

type ApiListStacksRequest

type ApiListStacksRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListStacksRequest) All

Include deleted and disabled stacks

func (ApiListStacksRequest) Deleted

func (r ApiListStacksRequest) Deleted(deleted bool) ApiListStacksRequest

Include deleted stacks Deprecated

func (ApiListStacksRequest) Execute

type ApiListUsersOfOrganizationRequest

type ApiListUsersOfOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiListUsersOfOrganizationRequest) Execute

type ApiReadConnectedUserRequest

type ApiReadConnectedUserRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiReadConnectedUserRequest) Execute

type ApiReadOrganizationRequest

type ApiReadOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiReadOrganizationRequest) Execute

func (ApiReadOrganizationRequest) Expand

type ApiReadStackUserAccessRequest

type ApiReadStackUserAccessRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiReadStackUserAccessRequest) Execute

type ApiReadUserOfOrganizationRequest

type ApiReadUserOfOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiReadUserOfOrganizationRequest) Execute

type ApiRestoreStackRequest

type ApiRestoreStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiRestoreStackRequest) Execute

type ApiUpdateOrganizationRequest

type ApiUpdateOrganizationRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiUpdateOrganizationRequest) Execute

func (ApiUpdateOrganizationRequest) OrganizationData

func (r ApiUpdateOrganizationRequest) OrganizationData(organizationData OrganizationData) ApiUpdateOrganizationRequest

type ApiUpdateStackRequest

type ApiUpdateStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiUpdateStackRequest) Execute

func (ApiUpdateStackRequest) UpdateStackRequest

func (r ApiUpdateStackRequest) UpdateStackRequest(updateStackRequest UpdateStackRequest) ApiUpdateStackRequest

type ApiUpgradeStackRequest

type ApiUpgradeStackRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiUpgradeStackRequest) Execute

func (r ApiUpgradeStackRequest) Execute() (*http.Response, error)

func (ApiUpgradeStackRequest) StackVersion

func (r ApiUpgradeStackRequest) StackVersion(stackVersion StackVersion) ApiUpgradeStackRequest

type ApiUpsertOrganizationUserRequest

type ApiUpsertOrganizationUserRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiUpsertOrganizationUserRequest) Execute

func (ApiUpsertOrganizationUserRequest) UpdateOrganizationUserRequest

func (r ApiUpsertOrganizationUserRequest) UpdateOrganizationUserRequest(updateOrganizationUserRequest UpdateOrganizationUserRequest) ApiUpsertOrganizationUserRequest

type ApiUpsertStackUserAccessRequest

type ApiUpsertStackUserAccessRequest struct {
	ApiService DefaultAPI
	// contains filtered or unexported fields
}

func (ApiUpsertStackUserAccessRequest) Execute

func (ApiUpsertStackUserAccessRequest) UpdateStackUserRequest

func (r ApiUpsertStackUserAccessRequest) UpdateStackUserRequest(updateStackUserRequest UpdateStackUserRequest) ApiUpsertStackUserAccessRequest

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Capability

type Capability string

Capability the model 'Capability'

const (
	MODULE_SELECTION Capability = "MODULE_SELECTION"
)

List of Capability

func NewCapabilityFromValue

func NewCapabilityFromValue(v string) (*Capability, error)

NewCapabilityFromValue returns a pointer to a valid Capability for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Capability) IsValid

func (v Capability) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Capability) Ptr

func (v Capability) Ptr() *Capability

Ptr returns reference to Capability value

func (*Capability) UnmarshalJSON

func (v *Capability) UnmarshalJSON(src []byte) error

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CreateInvitationResponse

type CreateInvitationResponse struct {
	Data                 *Invitation `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateInvitationResponse struct for CreateInvitationResponse

func NewCreateInvitationResponse

func NewCreateInvitationResponse() *CreateInvitationResponse

NewCreateInvitationResponse instantiates a new CreateInvitationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateInvitationResponseWithDefaults

func NewCreateInvitationResponseWithDefaults() *CreateInvitationResponse

NewCreateInvitationResponseWithDefaults instantiates a new CreateInvitationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateInvitationResponse) GetData

func (o *CreateInvitationResponse) GetData() Invitation

GetData returns the Data field value if set, zero value otherwise.

func (*CreateInvitationResponse) GetDataOk

func (o *CreateInvitationResponse) GetDataOk() (*Invitation, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateInvitationResponse) HasData

func (o *CreateInvitationResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (CreateInvitationResponse) MarshalJSON

func (o CreateInvitationResponse) MarshalJSON() ([]byte, error)

func (*CreateInvitationResponse) SetData

func (o *CreateInvitationResponse) SetData(v Invitation)

SetData gets a reference to the given Invitation and assigns it to the Data field.

func (CreateInvitationResponse) ToMap

func (o CreateInvitationResponse) ToMap() (map[string]interface{}, error)

func (*CreateInvitationResponse) UnmarshalJSON

func (o *CreateInvitationResponse) UnmarshalJSON(data []byte) (err error)

type CreateOrganizationResponse

type CreateOrganizationResponse struct {
	Data                 *OrganizationExpanded `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateOrganizationResponse struct for CreateOrganizationResponse

func NewCreateOrganizationResponse

func NewCreateOrganizationResponse() *CreateOrganizationResponse

NewCreateOrganizationResponse instantiates a new CreateOrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateOrganizationResponseWithDefaults

func NewCreateOrganizationResponseWithDefaults() *CreateOrganizationResponse

NewCreateOrganizationResponseWithDefaults instantiates a new CreateOrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateOrganizationResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CreateOrganizationResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateOrganizationResponse) HasData

func (o *CreateOrganizationResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (CreateOrganizationResponse) MarshalJSON

func (o CreateOrganizationResponse) MarshalJSON() ([]byte, error)

func (*CreateOrganizationResponse) SetData

SetData gets a reference to the given OrganizationExpanded and assigns it to the Data field.

func (CreateOrganizationResponse) ToMap

func (o CreateOrganizationResponse) ToMap() (map[string]interface{}, error)

func (*CreateOrganizationResponse) UnmarshalJSON

func (o *CreateOrganizationResponse) UnmarshalJSON(data []byte) (err error)

type CreatePrivateRegionRequest

type CreatePrivateRegionRequest struct {
	Name                 string `json:"name"`
	AdditionalProperties map[string]interface{}
}

CreatePrivateRegionRequest struct for CreatePrivateRegionRequest

func NewCreatePrivateRegionRequest

func NewCreatePrivateRegionRequest(name string) *CreatePrivateRegionRequest

NewCreatePrivateRegionRequest instantiates a new CreatePrivateRegionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePrivateRegionRequestWithDefaults

func NewCreatePrivateRegionRequestWithDefaults() *CreatePrivateRegionRequest

NewCreatePrivateRegionRequestWithDefaults instantiates a new CreatePrivateRegionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePrivateRegionRequest) GetName

func (o *CreatePrivateRegionRequest) GetName() string

GetName returns the Name field value

func (*CreatePrivateRegionRequest) GetNameOk

func (o *CreatePrivateRegionRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (CreatePrivateRegionRequest) MarshalJSON

func (o CreatePrivateRegionRequest) MarshalJSON() ([]byte, error)

func (*CreatePrivateRegionRequest) SetName

func (o *CreatePrivateRegionRequest) SetName(v string)

SetName sets field value

func (CreatePrivateRegionRequest) ToMap

func (o CreatePrivateRegionRequest) ToMap() (map[string]interface{}, error)

func (*CreatePrivateRegionRequest) UnmarshalJSON

func (o *CreatePrivateRegionRequest) UnmarshalJSON(data []byte) (err error)

type CreateStackRequest

type CreateStackRequest struct {
	// Stack name
	Name     string             `json:"name"`
	Metadata *map[string]string `json:"metadata,omitempty"`
	// Supported only with agent version >= v0.7.0
	Version              *string `json:"version,omitempty"`
	RegionID             string  `json:"regionID"`
	AdditionalProperties map[string]interface{}
}

CreateStackRequest struct for CreateStackRequest

func NewCreateStackRequest

func NewCreateStackRequest(name string, regionID string) *CreateStackRequest

NewCreateStackRequest instantiates a new CreateStackRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateStackRequestWithDefaults

func NewCreateStackRequestWithDefaults() *CreateStackRequest

NewCreateStackRequestWithDefaults instantiates a new CreateStackRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateStackRequest) GetMetadata

func (o *CreateStackRequest) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CreateStackRequest) GetMetadataOk

func (o *CreateStackRequest) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateStackRequest) GetName

func (o *CreateStackRequest) GetName() string

GetName returns the Name field value

func (*CreateStackRequest) GetNameOk

func (o *CreateStackRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateStackRequest) GetRegionID

func (o *CreateStackRequest) GetRegionID() string

GetRegionID returns the RegionID field value

func (*CreateStackRequest) GetRegionIDOk

func (o *CreateStackRequest) GetRegionIDOk() (*string, bool)

GetRegionIDOk returns a tuple with the RegionID field value and a boolean to check if the value has been set.

func (*CreateStackRequest) GetVersion

func (o *CreateStackRequest) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*CreateStackRequest) GetVersionOk

func (o *CreateStackRequest) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateStackRequest) HasMetadata

func (o *CreateStackRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CreateStackRequest) HasVersion

func (o *CreateStackRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (CreateStackRequest) MarshalJSON

func (o CreateStackRequest) MarshalJSON() ([]byte, error)

func (*CreateStackRequest) SetMetadata

func (o *CreateStackRequest) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*CreateStackRequest) SetName

func (o *CreateStackRequest) SetName(v string)

SetName sets field value

func (*CreateStackRequest) SetRegionID

func (o *CreateStackRequest) SetRegionID(v string)

SetRegionID sets field value

func (*CreateStackRequest) SetVersion

func (o *CreateStackRequest) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (CreateStackRequest) ToMap

func (o CreateStackRequest) ToMap() (map[string]interface{}, error)

func (*CreateStackRequest) UnmarshalJSON

func (o *CreateStackRequest) UnmarshalJSON(data []byte) (err error)

type CreateStackResponse

type CreateStackResponse struct {
	Data                 *Stack `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateStackResponse struct for CreateStackResponse

func NewCreateStackResponse

func NewCreateStackResponse() *CreateStackResponse

NewCreateStackResponse instantiates a new CreateStackResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateStackResponseWithDefaults

func NewCreateStackResponseWithDefaults() *CreateStackResponse

NewCreateStackResponseWithDefaults instantiates a new CreateStackResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateStackResponse) GetData

func (o *CreateStackResponse) GetData() Stack

GetData returns the Data field value if set, zero value otherwise.

func (*CreateStackResponse) GetDataOk

func (o *CreateStackResponse) GetDataOk() (*Stack, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateStackResponse) HasData

func (o *CreateStackResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (CreateStackResponse) MarshalJSON

func (o CreateStackResponse) MarshalJSON() ([]byte, error)

func (*CreateStackResponse) SetData

func (o *CreateStackResponse) SetData(v Stack)

SetData gets a reference to the given Stack and assigns it to the Data field.

func (CreateStackResponse) ToMap

func (o CreateStackResponse) ToMap() (map[string]interface{}, error)

func (*CreateStackResponse) UnmarshalJSON

func (o *CreateStackResponse) UnmarshalJSON(data []byte) (err error)

type CreatedPrivateRegionResponse

type CreatedPrivateRegionResponse struct {
	Data                 PrivateRegion `json:"data"`
	AdditionalProperties map[string]interface{}
}

CreatedPrivateRegionResponse struct for CreatedPrivateRegionResponse

func NewCreatedPrivateRegionResponse

func NewCreatedPrivateRegionResponse(data PrivateRegion) *CreatedPrivateRegionResponse

NewCreatedPrivateRegionResponse instantiates a new CreatedPrivateRegionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatedPrivateRegionResponseWithDefaults

func NewCreatedPrivateRegionResponseWithDefaults() *CreatedPrivateRegionResponse

NewCreatedPrivateRegionResponseWithDefaults instantiates a new CreatedPrivateRegionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatedPrivateRegionResponse) GetData

GetData returns the Data field value

func (*CreatedPrivateRegionResponse) GetDataOk

func (o *CreatedPrivateRegionResponse) GetDataOk() (*PrivateRegion, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (CreatedPrivateRegionResponse) MarshalJSON

func (o CreatedPrivateRegionResponse) MarshalJSON() ([]byte, error)

func (*CreatedPrivateRegionResponse) SetData

SetData sets field value

func (CreatedPrivateRegionResponse) ToMap

func (o CreatedPrivateRegionResponse) ToMap() (map[string]interface{}, error)

func (*CreatedPrivateRegionResponse) UnmarshalJSON

func (o *CreatedPrivateRegionResponse) UnmarshalJSON(data []byte) (err error)

type Cursor

type Cursor struct {
	PageSize             int64   `json:"pageSize"`
	HasMore              bool    `json:"hasMore"`
	Previous             *string `json:"previous,omitempty"`
	Next                 *string `json:"next,omitempty"`
	AdditionalProperties map[string]interface{}
}

Cursor struct for Cursor

func NewCursor

func NewCursor(pageSize int64, hasMore bool) *Cursor

NewCursor instantiates a new Cursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCursorWithDefaults

func NewCursorWithDefaults() *Cursor

NewCursorWithDefaults instantiates a new Cursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Cursor) GetHasMore

func (o *Cursor) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*Cursor) GetHasMoreOk

func (o *Cursor) GetHasMoreOk() (*bool, bool)

GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.

func (*Cursor) GetNext

func (o *Cursor) GetNext() string

GetNext returns the Next field value if set, zero value otherwise.

func (*Cursor) GetNextOk

func (o *Cursor) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Cursor) GetPageSize

func (o *Cursor) GetPageSize() int64

GetPageSize returns the PageSize field value

func (*Cursor) GetPageSizeOk

func (o *Cursor) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*Cursor) GetPrevious

func (o *Cursor) GetPrevious() string

GetPrevious returns the Previous field value if set, zero value otherwise.

func (*Cursor) GetPreviousOk

func (o *Cursor) GetPreviousOk() (*string, bool)

GetPreviousOk returns a tuple with the Previous field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Cursor) HasNext

func (o *Cursor) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*Cursor) HasPrevious

func (o *Cursor) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (Cursor) MarshalJSON

func (o Cursor) MarshalJSON() ([]byte, error)

func (*Cursor) SetHasMore

func (o *Cursor) SetHasMore(v bool)

SetHasMore sets field value

func (*Cursor) SetNext

func (o *Cursor) SetNext(v string)

SetNext gets a reference to the given string and assigns it to the Next field.

func (*Cursor) SetPageSize

func (o *Cursor) SetPageSize(v int64)

SetPageSize sets field value

func (*Cursor) SetPrevious

func (o *Cursor) SetPrevious(v string)

SetPrevious gets a reference to the given string and assigns it to the Previous field.

func (Cursor) ToMap

func (o Cursor) ToMap() (map[string]interface{}, error)

func (*Cursor) UnmarshalJSON

func (o *Cursor) UnmarshalJSON(data []byte) (err error)

type DefaultAPI

type DefaultAPI interface {

	/*
		AcceptInvitation Accept invitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param invitationId
		@return ApiAcceptInvitationRequest
	*/
	AcceptInvitation(ctx context.Context, invitationId string) ApiAcceptInvitationRequest

	// AcceptInvitationExecute executes the request
	AcceptInvitationExecute(r ApiAcceptInvitationRequest) (*http.Response, error)

	/*
		AddFeatures Add Features

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiAddFeaturesRequest
	*/
	AddFeatures(ctx context.Context, organizationId string) ApiAddFeaturesRequest

	// AddFeaturesExecute executes the request
	AddFeaturesExecute(r ApiAddFeaturesRequest) (*http.Response, error)

	/*
		CreateInvitation Create invitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiCreateInvitationRequest
	*/
	CreateInvitation(ctx context.Context, organizationId string) ApiCreateInvitationRequest

	// CreateInvitationExecute executes the request
	//  @return CreateInvitationResponse
	CreateInvitationExecute(r ApiCreateInvitationRequest) (*CreateInvitationResponse, *http.Response, error)

	/*
		CreateOrganization Create organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateOrganizationRequest
	*/
	CreateOrganization(ctx context.Context) ApiCreateOrganizationRequest

	// CreateOrganizationExecute executes the request
	//  @return CreateOrganizationResponse
	CreateOrganizationExecute(r ApiCreateOrganizationRequest) (*CreateOrganizationResponse, *http.Response, error)

	/*
		CreatePrivateRegion Create a private region

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiCreatePrivateRegionRequest
	*/
	CreatePrivateRegion(ctx context.Context, organizationId string) ApiCreatePrivateRegionRequest

	// CreatePrivateRegionExecute executes the request
	//  @return CreatedPrivateRegionResponse
	CreatePrivateRegionExecute(r ApiCreatePrivateRegionRequest) (*CreatedPrivateRegionResponse, *http.Response, error)

	/*
		CreateStack Create stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiCreateStackRequest
	*/
	CreateStack(ctx context.Context, organizationId string) ApiCreateStackRequest

	// CreateStackExecute executes the request
	//  @return CreateStackResponse
	CreateStackExecute(r ApiCreateStackRequest) (*CreateStackResponse, *http.Response, error)

	/*
		DeclineInvitation Decline invitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param invitationId
		@return ApiDeclineInvitationRequest
	*/
	DeclineInvitation(ctx context.Context, invitationId string) ApiDeclineInvitationRequest

	// DeclineInvitationExecute executes the request
	DeclineInvitationExecute(r ApiDeclineInvitationRequest) (*http.Response, error)

	/*
		DeleteFeature Delete feature

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param name
		@return ApiDeleteFeatureRequest
	*/
	DeleteFeature(ctx context.Context, organizationId string, name string) ApiDeleteFeatureRequest

	// DeleteFeatureExecute executes the request
	DeleteFeatureExecute(r ApiDeleteFeatureRequest) (*http.Response, error)

	/*
		DeleteInvitation Delete invitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param invitationId
		@return ApiDeleteInvitationRequest
	*/
	DeleteInvitation(ctx context.Context, organizationId string, invitationId string) ApiDeleteInvitationRequest

	// DeleteInvitationExecute executes the request
	DeleteInvitationExecute(r ApiDeleteInvitationRequest) (*http.Response, error)

	/*
		DeleteOrganization Delete organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiDeleteOrganizationRequest
	*/
	DeleteOrganization(ctx context.Context, organizationId string) ApiDeleteOrganizationRequest

	// DeleteOrganizationExecute executes the request
	DeleteOrganizationExecute(r ApiDeleteOrganizationRequest) (*http.Response, error)

	/*
		DeleteRegion Delete region

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param regionID
		@return ApiDeleteRegionRequest
	*/
	DeleteRegion(ctx context.Context, organizationId string, regionID string) ApiDeleteRegionRequest

	// DeleteRegionExecute executes the request
	DeleteRegionExecute(r ApiDeleteRegionRequest) (*http.Response, error)

	/*
		DeleteStack Delete stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiDeleteStackRequest
	*/
	DeleteStack(ctx context.Context, organizationId string, stackId string) ApiDeleteStackRequest

	// DeleteStackExecute executes the request
	DeleteStackExecute(r ApiDeleteStackRequest) (*http.Response, error)

	/*
		DeleteStackUserAccess Delete stack user access role within an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@param userId
		@return ApiDeleteStackUserAccessRequest
	*/
	DeleteStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiDeleteStackUserAccessRequest

	// DeleteStackUserAccessExecute executes the request
	DeleteStackUserAccessExecute(r ApiDeleteStackUserAccessRequest) (*http.Response, error)

	/*
		DeleteUserFromOrganization delete user from organization

		The owner of the organization can remove anyone while each user can leave any organization where it is not owner.


		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param userId
		@return ApiDeleteUserFromOrganizationRequest
	*/
	DeleteUserFromOrganization(ctx context.Context, organizationId string, userId string) ApiDeleteUserFromOrganizationRequest

	// DeleteUserFromOrganizationExecute executes the request
	DeleteUserFromOrganizationExecute(r ApiDeleteUserFromOrganizationRequest) (*http.Response, error)

	/*
		DisableModule disable module

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiDisableModuleRequest
	*/
	DisableModule(ctx context.Context, organizationId string, stackId string) ApiDisableModuleRequest

	// DisableModuleExecute executes the request
	DisableModuleExecute(r ApiDisableModuleRequest) (*http.Response, error)

	/*
		DisableStack Disable stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiDisableStackRequest
	*/
	DisableStack(ctx context.Context, organizationId string, stackId string) ApiDisableStackRequest

	// DisableStackExecute executes the request
	DisableStackExecute(r ApiDisableStackRequest) (*http.Response, error)

	/*
		DisableStargate Disable stargate on a stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiDisableStargateRequest
	*/
	DisableStargate(ctx context.Context, organizationId string, stackId string) ApiDisableStargateRequest

	// DisableStargateExecute executes the request
	DisableStargateExecute(r ApiDisableStargateRequest) (*http.Response, error)

	/*
		EnableModule enable module

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiEnableModuleRequest
	*/
	EnableModule(ctx context.Context, organizationId string, stackId string) ApiEnableModuleRequest

	// EnableModuleExecute executes the request
	EnableModuleExecute(r ApiEnableModuleRequest) (*http.Response, error)

	/*
		EnableStack Enable stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiEnableStackRequest
	*/
	EnableStack(ctx context.Context, organizationId string, stackId string) ApiEnableStackRequest

	// EnableStackExecute executes the request
	EnableStackExecute(r ApiEnableStackRequest) (*http.Response, error)

	/*
		EnableStargate Enable stargate on a stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiEnableStargateRequest
	*/
	EnableStargate(ctx context.Context, organizationId string, stackId string) ApiEnableStargateRequest

	// EnableStargateExecute executes the request
	EnableStargateExecute(r ApiEnableStargateRequest) (*http.Response, error)

	/*
		GetRegion Get region

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param regionID
		@return ApiGetRegionRequest
	*/
	GetRegion(ctx context.Context, organizationId string, regionID string) ApiGetRegionRequest

	// GetRegionExecute executes the request
	//  @return GetRegionResponse
	GetRegionExecute(r ApiGetRegionRequest) (*GetRegionResponse, *http.Response, error)

	/*
		GetRegionVersions Get region versions

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param regionID
		@return ApiGetRegionVersionsRequest
	*/
	GetRegionVersions(ctx context.Context, organizationId string, regionID string) ApiGetRegionVersionsRequest

	// GetRegionVersionsExecute executes the request
	//  @return GetRegionVersionsResponse
	GetRegionVersionsExecute(r ApiGetRegionVersionsRequest) (*GetRegionVersionsResponse, *http.Response, error)

	/*
		GetServerInfo Get server info

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetServerInfoRequest
	*/
	GetServerInfo(ctx context.Context) ApiGetServerInfoRequest

	// GetServerInfoExecute executes the request
	//  @return ServerInfo
	GetServerInfoExecute(r ApiGetServerInfoRequest) (*ServerInfo, *http.Response, error)

	/*
		GetStack Find stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiGetStackRequest
	*/
	GetStack(ctx context.Context, organizationId string, stackId string) ApiGetStackRequest

	// GetStackExecute executes the request
	//  @return CreateStackResponse
	GetStackExecute(r ApiGetStackRequest) (*CreateStackResponse, *http.Response, error)

	/*
		ListFeatures List features

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListFeaturesRequest
	*/
	ListFeatures(ctx context.Context, organizationId string) ApiListFeaturesRequest

	// ListFeaturesExecute executes the request
	//  @return ListFeatures200Response
	ListFeaturesExecute(r ApiListFeaturesRequest) (*ListFeatures200Response, *http.Response, error)

	/*
		ListInvitations List invitations of the user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListInvitationsRequest
	*/
	ListInvitations(ctx context.Context) ApiListInvitationsRequest

	// ListInvitationsExecute executes the request
	//  @return ListInvitationsResponse
	ListInvitationsExecute(r ApiListInvitationsRequest) (*ListInvitationsResponse, *http.Response, error)

	/*
		ListLogs List logs

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListLogsRequest
	*/
	ListLogs(ctx context.Context, organizationId string) ApiListLogsRequest

	// ListLogsExecute executes the request
	//  @return LogCursor
	ListLogsExecute(r ApiListLogsRequest) (*LogCursor, *http.Response, error)

	/*
		ListModules List modules of a stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiListModulesRequest
	*/
	ListModules(ctx context.Context, organizationId string, stackId string) ApiListModulesRequest

	// ListModulesExecute executes the request
	//  @return ListModulesResponse
	ListModulesExecute(r ApiListModulesRequest) (*ListModulesResponse, *http.Response, error)

	/*
		ListOrganizationInvitations List invitations of the organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListOrganizationInvitationsRequest
	*/
	ListOrganizationInvitations(ctx context.Context, organizationId string) ApiListOrganizationInvitationsRequest

	// ListOrganizationInvitationsExecute executes the request
	//  @return ListInvitationsResponse
	ListOrganizationInvitationsExecute(r ApiListOrganizationInvitationsRequest) (*ListInvitationsResponse, *http.Response, error)

	/*
		ListOrganizations List organizations of the connected user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListOrganizationsRequest
	*/
	ListOrganizations(ctx context.Context) ApiListOrganizationsRequest

	// ListOrganizationsExecute executes the request
	//  @return ListOrganizationExpandedResponse
	ListOrganizationsExecute(r ApiListOrganizationsRequest) (*ListOrganizationExpandedResponse, *http.Response, error)

	/*
		ListOrganizationsExpanded List organizations of the connected user with expanded data

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListOrganizationsExpandedRequest

		Deprecated
	*/
	ListOrganizationsExpanded(ctx context.Context) ApiListOrganizationsExpandedRequest

	// ListOrganizationsExpandedExecute executes the request
	//  @return ListOrganizationExpandedResponse
	// Deprecated
	ListOrganizationsExpandedExecute(r ApiListOrganizationsExpandedRequest) (*ListOrganizationExpandedResponse, *http.Response, error)

	/*
		ListRegions List regions

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListRegionsRequest
	*/
	ListRegions(ctx context.Context, organizationId string) ApiListRegionsRequest

	// ListRegionsExecute executes the request
	//  @return ListRegionsResponse
	ListRegionsExecute(r ApiListRegionsRequest) (*ListRegionsResponse, *http.Response, error)

	/*
		ListStackUsersAccesses List stack users accesses within an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiListStackUsersAccessesRequest
	*/
	ListStackUsersAccesses(ctx context.Context, organizationId string, stackId string) ApiListStackUsersAccessesRequest

	// ListStackUsersAccessesExecute executes the request
	//  @return StackUserAccessResponse
	ListStackUsersAccessesExecute(r ApiListStackUsersAccessesRequest) (*StackUserAccessResponse, *http.Response, error)

	/*
		ListStacks List stacks

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListStacksRequest
	*/
	ListStacks(ctx context.Context, organizationId string) ApiListStacksRequest

	// ListStacksExecute executes the request
	//  @return ListStacksResponse
	ListStacksExecute(r ApiListStacksRequest) (*ListStacksResponse, *http.Response, error)

	/*
		ListUsersOfOrganization List users of organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiListUsersOfOrganizationRequest
	*/
	ListUsersOfOrganization(ctx context.Context, organizationId string) ApiListUsersOfOrganizationRequest

	// ListUsersOfOrganizationExecute executes the request
	//  @return ListUsersResponse
	ListUsersOfOrganizationExecute(r ApiListUsersOfOrganizationRequest) (*ListUsersResponse, *http.Response, error)

	/*
		ReadConnectedUser Read user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiReadConnectedUserRequest
	*/
	ReadConnectedUser(ctx context.Context) ApiReadConnectedUserRequest

	// ReadConnectedUserExecute executes the request
	//  @return ReadUserResponse
	ReadConnectedUserExecute(r ApiReadConnectedUserRequest) (*ReadUserResponse, *http.Response, error)

	/*
		ReadOrganization Read organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiReadOrganizationRequest
	*/
	ReadOrganization(ctx context.Context, organizationId string) ApiReadOrganizationRequest

	// ReadOrganizationExecute executes the request
	//  @return ReadOrganizationResponse
	ReadOrganizationExecute(r ApiReadOrganizationRequest) (*ReadOrganizationResponse, *http.Response, error)

	/*
		ReadStackUserAccess Read stack user access role within an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@param userId
		@return ApiReadStackUserAccessRequest
	*/
	ReadStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiReadStackUserAccessRequest

	// ReadStackUserAccessExecute executes the request
	//  @return ReadStackUserAccess
	ReadStackUserAccessExecute(r ApiReadStackUserAccessRequest) (*ReadStackUserAccess, *http.Response, error)

	/*
		ReadUserOfOrganization Read user of organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param userId
		@return ApiReadUserOfOrganizationRequest
	*/
	ReadUserOfOrganization(ctx context.Context, organizationId string, userId string) ApiReadUserOfOrganizationRequest

	// ReadUserOfOrganizationExecute executes the request
	//  @return ReadOrganizationUserResponse
	ReadUserOfOrganizationExecute(r ApiReadUserOfOrganizationRequest) (*ReadOrganizationUserResponse, *http.Response, error)

	/*
		RestoreStack Restore stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiRestoreStackRequest
	*/
	RestoreStack(ctx context.Context, organizationId string, stackId string) ApiRestoreStackRequest

	// RestoreStackExecute executes the request
	//  @return CreateStackResponse
	RestoreStackExecute(r ApiRestoreStackRequest) (*CreateStackResponse, *http.Response, error)

	/*
		UpdateOrganization Update organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiUpdateOrganizationRequest
	*/
	UpdateOrganization(ctx context.Context, organizationId string) ApiUpdateOrganizationRequest

	// UpdateOrganizationExecute executes the request
	//  @return ReadOrganizationResponse
	UpdateOrganizationExecute(r ApiUpdateOrganizationRequest) (*ReadOrganizationResponse, *http.Response, error)

	/*
		UpdateStack Update stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiUpdateStackRequest
	*/
	UpdateStack(ctx context.Context, organizationId string, stackId string) ApiUpdateStackRequest

	// UpdateStackExecute executes the request
	//  @return CreateStackResponse
	UpdateStackExecute(r ApiUpdateStackRequest) (*CreateStackResponse, *http.Response, error)

	/*
		UpgradeStack Upgrade stack

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@return ApiUpgradeStackRequest
	*/
	UpgradeStack(ctx context.Context, organizationId string, stackId string) ApiUpgradeStackRequest

	// UpgradeStackExecute executes the request
	UpgradeStackExecute(r ApiUpgradeStackRequest) (*http.Response, error)

	/*
		UpsertOrganizationUser Update user within an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param userId
		@return ApiUpsertOrganizationUserRequest
	*/
	UpsertOrganizationUser(ctx context.Context, organizationId string, userId string) ApiUpsertOrganizationUserRequest

	// UpsertOrganizationUserExecute executes the request
	UpsertOrganizationUserExecute(r ApiUpsertOrganizationUserRequest) (*http.Response, error)

	/*
		UpsertStackUserAccess Update stack user access role within an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@param stackId
		@param userId
		@return ApiUpsertStackUserAccessRequest
	*/
	UpsertStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiUpsertStackUserAccessRequest

	// UpsertStackUserAccessExecute executes the request
	UpsertStackUserAccessExecute(r ApiUpsertStackUserAccessRequest) (*http.Response, error)
}

type DefaultAPIService

type DefaultAPIService service

DefaultAPIService DefaultAPI service

func (*DefaultAPIService) AcceptInvitation

func (a *DefaultAPIService) AcceptInvitation(ctx context.Context, invitationId string) ApiAcceptInvitationRequest

AcceptInvitation Accept invitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invitationId
@return ApiAcceptInvitationRequest

func (*DefaultAPIService) AcceptInvitationExecute

func (a *DefaultAPIService) AcceptInvitationExecute(r ApiAcceptInvitationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) AddFeatures

func (a *DefaultAPIService) AddFeatures(ctx context.Context, organizationId string) ApiAddFeaturesRequest

AddFeatures Add Features

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiAddFeaturesRequest

func (*DefaultAPIService) AddFeaturesExecute

func (a *DefaultAPIService) AddFeaturesExecute(r ApiAddFeaturesRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) CreateInvitation

func (a *DefaultAPIService) CreateInvitation(ctx context.Context, organizationId string) ApiCreateInvitationRequest

CreateInvitation Create invitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiCreateInvitationRequest

func (*DefaultAPIService) CreateInvitationExecute

Execute executes the request

@return CreateInvitationResponse

func (*DefaultAPIService) CreateOrganization

CreateOrganization Create organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateOrganizationRequest

func (*DefaultAPIService) CreateOrganizationExecute

Execute executes the request

@return CreateOrganizationResponse

func (*DefaultAPIService) CreatePrivateRegion

func (a *DefaultAPIService) CreatePrivateRegion(ctx context.Context, organizationId string) ApiCreatePrivateRegionRequest

CreatePrivateRegion Create a private region

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiCreatePrivateRegionRequest

func (*DefaultAPIService) CreatePrivateRegionExecute

Execute executes the request

@return CreatedPrivateRegionResponse

func (*DefaultAPIService) CreateStack

func (a *DefaultAPIService) CreateStack(ctx context.Context, organizationId string) ApiCreateStackRequest

CreateStack Create stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiCreateStackRequest

func (*DefaultAPIService) CreateStackExecute

Execute executes the request

@return CreateStackResponse

func (*DefaultAPIService) DeclineInvitation

func (a *DefaultAPIService) DeclineInvitation(ctx context.Context, invitationId string) ApiDeclineInvitationRequest

DeclineInvitation Decline invitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invitationId
@return ApiDeclineInvitationRequest

func (*DefaultAPIService) DeclineInvitationExecute

func (a *DefaultAPIService) DeclineInvitationExecute(r ApiDeclineInvitationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteFeature

func (a *DefaultAPIService) DeleteFeature(ctx context.Context, organizationId string, name string) ApiDeleteFeatureRequest

DeleteFeature Delete feature

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param name
@return ApiDeleteFeatureRequest

func (*DefaultAPIService) DeleteFeatureExecute

func (a *DefaultAPIService) DeleteFeatureExecute(r ApiDeleteFeatureRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteInvitation

func (a *DefaultAPIService) DeleteInvitation(ctx context.Context, organizationId string, invitationId string) ApiDeleteInvitationRequest

DeleteInvitation Delete invitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param invitationId
@return ApiDeleteInvitationRequest

func (*DefaultAPIService) DeleteInvitationExecute

func (a *DefaultAPIService) DeleteInvitationExecute(r ApiDeleteInvitationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteOrganization

func (a *DefaultAPIService) DeleteOrganization(ctx context.Context, organizationId string) ApiDeleteOrganizationRequest

DeleteOrganization Delete organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiDeleteOrganizationRequest

func (*DefaultAPIService) DeleteOrganizationExecute

func (a *DefaultAPIService) DeleteOrganizationExecute(r ApiDeleteOrganizationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteRegion

func (a *DefaultAPIService) DeleteRegion(ctx context.Context, organizationId string, regionID string) ApiDeleteRegionRequest

DeleteRegion Delete region

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param regionID
@return ApiDeleteRegionRequest

func (*DefaultAPIService) DeleteRegionExecute

func (a *DefaultAPIService) DeleteRegionExecute(r ApiDeleteRegionRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteStack

func (a *DefaultAPIService) DeleteStack(ctx context.Context, organizationId string, stackId string) ApiDeleteStackRequest

DeleteStack Delete stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiDeleteStackRequest

func (*DefaultAPIService) DeleteStackExecute

func (a *DefaultAPIService) DeleteStackExecute(r ApiDeleteStackRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteStackUserAccess

func (a *DefaultAPIService) DeleteStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiDeleteStackUserAccessRequest

DeleteStackUserAccess Delete stack user access role within an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@param userId
@return ApiDeleteStackUserAccessRequest

func (*DefaultAPIService) DeleteStackUserAccessExecute

func (a *DefaultAPIService) DeleteStackUserAccessExecute(r ApiDeleteStackUserAccessRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DeleteUserFromOrganization

func (a *DefaultAPIService) DeleteUserFromOrganization(ctx context.Context, organizationId string, userId string) ApiDeleteUserFromOrganizationRequest

DeleteUserFromOrganization delete user from organization

The owner of the organization can remove anyone while each user can leave any organization where it is not owner.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param userId
@return ApiDeleteUserFromOrganizationRequest

func (*DefaultAPIService) DeleteUserFromOrganizationExecute

func (a *DefaultAPIService) DeleteUserFromOrganizationExecute(r ApiDeleteUserFromOrganizationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DisableModule

func (a *DefaultAPIService) DisableModule(ctx context.Context, organizationId string, stackId string) ApiDisableModuleRequest

DisableModule disable module

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiDisableModuleRequest

func (*DefaultAPIService) DisableModuleExecute

func (a *DefaultAPIService) DisableModuleExecute(r ApiDisableModuleRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DisableStack

func (a *DefaultAPIService) DisableStack(ctx context.Context, organizationId string, stackId string) ApiDisableStackRequest

DisableStack Disable stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiDisableStackRequest

func (*DefaultAPIService) DisableStackExecute

func (a *DefaultAPIService) DisableStackExecute(r ApiDisableStackRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) DisableStargate

func (a *DefaultAPIService) DisableStargate(ctx context.Context, organizationId string, stackId string) ApiDisableStargateRequest

DisableStargate Disable stargate on a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiDisableStargateRequest

func (*DefaultAPIService) DisableStargateExecute

func (a *DefaultAPIService) DisableStargateExecute(r ApiDisableStargateRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) EnableModule

func (a *DefaultAPIService) EnableModule(ctx context.Context, organizationId string, stackId string) ApiEnableModuleRequest

EnableModule enable module

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiEnableModuleRequest

func (*DefaultAPIService) EnableModuleExecute

func (a *DefaultAPIService) EnableModuleExecute(r ApiEnableModuleRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) EnableStack

func (a *DefaultAPIService) EnableStack(ctx context.Context, organizationId string, stackId string) ApiEnableStackRequest

EnableStack Enable stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiEnableStackRequest

func (*DefaultAPIService) EnableStackExecute

func (a *DefaultAPIService) EnableStackExecute(r ApiEnableStackRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) EnableStargate

func (a *DefaultAPIService) EnableStargate(ctx context.Context, organizationId string, stackId string) ApiEnableStargateRequest

EnableStargate Enable stargate on a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiEnableStargateRequest

func (*DefaultAPIService) EnableStargateExecute

func (a *DefaultAPIService) EnableStargateExecute(r ApiEnableStargateRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) GetRegion

func (a *DefaultAPIService) GetRegion(ctx context.Context, organizationId string, regionID string) ApiGetRegionRequest

GetRegion Get region

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param regionID
@return ApiGetRegionRequest

func (*DefaultAPIService) GetRegionExecute

Execute executes the request

@return GetRegionResponse

func (*DefaultAPIService) GetRegionVersions

func (a *DefaultAPIService) GetRegionVersions(ctx context.Context, organizationId string, regionID string) ApiGetRegionVersionsRequest

GetRegionVersions Get region versions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param regionID
@return ApiGetRegionVersionsRequest

func (*DefaultAPIService) GetRegionVersionsExecute

Execute executes the request

@return GetRegionVersionsResponse

func (*DefaultAPIService) GetServerInfo

GetServerInfo Get server info

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetServerInfoRequest

func (*DefaultAPIService) GetServerInfoExecute

func (a *DefaultAPIService) GetServerInfoExecute(r ApiGetServerInfoRequest) (*ServerInfo, *http.Response, error)

Execute executes the request

@return ServerInfo

func (*DefaultAPIService) GetStack

func (a *DefaultAPIService) GetStack(ctx context.Context, organizationId string, stackId string) ApiGetStackRequest

GetStack Find stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiGetStackRequest

func (*DefaultAPIService) GetStackExecute

Execute executes the request

@return CreateStackResponse

func (*DefaultAPIService) ListFeatures

func (a *DefaultAPIService) ListFeatures(ctx context.Context, organizationId string) ApiListFeaturesRequest

ListFeatures List features

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListFeaturesRequest

func (*DefaultAPIService) ListFeaturesExecute

Execute executes the request

@return ListFeatures200Response

func (*DefaultAPIService) ListInvitations

ListInvitations List invitations of the user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListInvitationsRequest

func (*DefaultAPIService) ListInvitationsExecute

Execute executes the request

@return ListInvitationsResponse

func (*DefaultAPIService) ListLogs

func (a *DefaultAPIService) ListLogs(ctx context.Context, organizationId string) ApiListLogsRequest

ListLogs List logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListLogsRequest

func (*DefaultAPIService) ListLogsExecute

func (a *DefaultAPIService) ListLogsExecute(r ApiListLogsRequest) (*LogCursor, *http.Response, error)

Execute executes the request

@return LogCursor

func (*DefaultAPIService) ListModules

func (a *DefaultAPIService) ListModules(ctx context.Context, organizationId string, stackId string) ApiListModulesRequest

ListModules List modules of a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiListModulesRequest

func (*DefaultAPIService) ListModulesExecute

Execute executes the request

@return ListModulesResponse

func (*DefaultAPIService) ListOrganizationInvitations

func (a *DefaultAPIService) ListOrganizationInvitations(ctx context.Context, organizationId string) ApiListOrganizationInvitationsRequest

ListOrganizationInvitations List invitations of the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListOrganizationInvitationsRequest

func (*DefaultAPIService) ListOrganizationInvitationsExecute

Execute executes the request

@return ListInvitationsResponse

func (*DefaultAPIService) ListOrganizations

ListOrganizations List organizations of the connected user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOrganizationsRequest

func (*DefaultAPIService) ListOrganizationsExecute

Execute executes the request

@return ListOrganizationExpandedResponse

func (*DefaultAPIService) ListOrganizationsExpanded

func (a *DefaultAPIService) ListOrganizationsExpanded(ctx context.Context) ApiListOrganizationsExpandedRequest

ListOrganizationsExpanded List organizations of the connected user with expanded data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOrganizationsExpandedRequest

Deprecated

func (*DefaultAPIService) ListOrganizationsExpandedExecute

Execute executes the request

@return ListOrganizationExpandedResponse

Deprecated

func (*DefaultAPIService) ListRegions

func (a *DefaultAPIService) ListRegions(ctx context.Context, organizationId string) ApiListRegionsRequest

ListRegions List regions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListRegionsRequest

func (*DefaultAPIService) ListRegionsExecute

Execute executes the request

@return ListRegionsResponse

func (*DefaultAPIService) ListStackUsersAccesses

func (a *DefaultAPIService) ListStackUsersAccesses(ctx context.Context, organizationId string, stackId string) ApiListStackUsersAccessesRequest

ListStackUsersAccesses List stack users accesses within an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiListStackUsersAccessesRequest

func (*DefaultAPIService) ListStackUsersAccessesExecute

Execute executes the request

@return StackUserAccessResponse

func (*DefaultAPIService) ListStacks

func (a *DefaultAPIService) ListStacks(ctx context.Context, organizationId string) ApiListStacksRequest

ListStacks List stacks

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListStacksRequest

func (*DefaultAPIService) ListStacksExecute

Execute executes the request

@return ListStacksResponse

func (*DefaultAPIService) ListUsersOfOrganization

func (a *DefaultAPIService) ListUsersOfOrganization(ctx context.Context, organizationId string) ApiListUsersOfOrganizationRequest

ListUsersOfOrganization List users of organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiListUsersOfOrganizationRequest

func (*DefaultAPIService) ListUsersOfOrganizationExecute

func (a *DefaultAPIService) ListUsersOfOrganizationExecute(r ApiListUsersOfOrganizationRequest) (*ListUsersResponse, *http.Response, error)

Execute executes the request

@return ListUsersResponse

func (*DefaultAPIService) ReadConnectedUser

ReadConnectedUser Read user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReadConnectedUserRequest

func (*DefaultAPIService) ReadConnectedUserExecute

Execute executes the request

@return ReadUserResponse

func (*DefaultAPIService) ReadOrganization

func (a *DefaultAPIService) ReadOrganization(ctx context.Context, organizationId string) ApiReadOrganizationRequest

ReadOrganization Read organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiReadOrganizationRequest

func (*DefaultAPIService) ReadOrganizationExecute

Execute executes the request

@return ReadOrganizationResponse

func (*DefaultAPIService) ReadStackUserAccess

func (a *DefaultAPIService) ReadStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiReadStackUserAccessRequest

ReadStackUserAccess Read stack user access role within an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@param userId
@return ApiReadStackUserAccessRequest

func (*DefaultAPIService) ReadStackUserAccessExecute

Execute executes the request

@return ReadStackUserAccess

func (*DefaultAPIService) ReadUserOfOrganization

func (a *DefaultAPIService) ReadUserOfOrganization(ctx context.Context, organizationId string, userId string) ApiReadUserOfOrganizationRequest

ReadUserOfOrganization Read user of organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param userId
@return ApiReadUserOfOrganizationRequest

func (*DefaultAPIService) ReadUserOfOrganizationExecute

Execute executes the request

@return ReadOrganizationUserResponse

func (*DefaultAPIService) RestoreStack

func (a *DefaultAPIService) RestoreStack(ctx context.Context, organizationId string, stackId string) ApiRestoreStackRequest

RestoreStack Restore stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiRestoreStackRequest

func (*DefaultAPIService) RestoreStackExecute

Execute executes the request

@return CreateStackResponse

func (*DefaultAPIService) UpdateOrganization

func (a *DefaultAPIService) UpdateOrganization(ctx context.Context, organizationId string) ApiUpdateOrganizationRequest

UpdateOrganization Update organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiUpdateOrganizationRequest

func (*DefaultAPIService) UpdateOrganizationExecute

Execute executes the request

@return ReadOrganizationResponse

func (*DefaultAPIService) UpdateStack

func (a *DefaultAPIService) UpdateStack(ctx context.Context, organizationId string, stackId string) ApiUpdateStackRequest

UpdateStack Update stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiUpdateStackRequest

func (*DefaultAPIService) UpdateStackExecute

Execute executes the request

@return CreateStackResponse

func (*DefaultAPIService) UpgradeStack

func (a *DefaultAPIService) UpgradeStack(ctx context.Context, organizationId string, stackId string) ApiUpgradeStackRequest

UpgradeStack Upgrade stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@return ApiUpgradeStackRequest

func (*DefaultAPIService) UpgradeStackExecute

func (a *DefaultAPIService) UpgradeStackExecute(r ApiUpgradeStackRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) UpsertOrganizationUser

func (a *DefaultAPIService) UpsertOrganizationUser(ctx context.Context, organizationId string, userId string) ApiUpsertOrganizationUserRequest

UpsertOrganizationUser Update user within an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param userId
@return ApiUpsertOrganizationUserRequest

func (*DefaultAPIService) UpsertOrganizationUserExecute

func (a *DefaultAPIService) UpsertOrganizationUserExecute(r ApiUpsertOrganizationUserRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) UpsertStackUserAccess

func (a *DefaultAPIService) UpsertStackUserAccess(ctx context.Context, organizationId string, stackId string, userId string) ApiUpsertStackUserAccessRequest

UpsertStackUserAccess Update stack user access role within an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@param stackId
@param userId
@return ApiUpsertStackUserAccessRequest

func (*DefaultAPIService) UpsertStackUserAccessExecute

func (a *DefaultAPIService) UpsertStackUserAccessExecute(r ApiUpsertStackUserAccessRequest) (*http.Response, error)

Execute executes the request

type Error

type Error struct {
	ErrorCode            string  `json:"errorCode"`
	ErrorMessage         *string `json:"errorMessage,omitempty"`
	AdditionalProperties map[string]interface{}
}

Error struct for Error

func NewError

func NewError(errorCode string) *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetErrorCode

func (o *Error) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*Error) GetErrorCodeOk

func (o *Error) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*Error) GetErrorMessage

func (o *Error) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*Error) GetErrorMessageOk

func (o *Error) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasErrorMessage

func (o *Error) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetErrorCode

func (o *Error) SetErrorCode(v string)

SetErrorCode sets field value

func (*Error) SetErrorMessage

func (o *Error) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

func (*Error) UnmarshalJSON

func (o *Error) UnmarshalJSON(data []byte) (err error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetRegionResponse

type GetRegionResponse struct {
	Data                 AnyRegion `json:"data"`
	AdditionalProperties map[string]interface{}
}

GetRegionResponse struct for GetRegionResponse

func NewGetRegionResponse

func NewGetRegionResponse(data AnyRegion) *GetRegionResponse

NewGetRegionResponse instantiates a new GetRegionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRegionResponseWithDefaults

func NewGetRegionResponseWithDefaults() *GetRegionResponse

NewGetRegionResponseWithDefaults instantiates a new GetRegionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRegionResponse) GetData

func (o *GetRegionResponse) GetData() AnyRegion

GetData returns the Data field value

func (*GetRegionResponse) GetDataOk

func (o *GetRegionResponse) GetDataOk() (*AnyRegion, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (GetRegionResponse) MarshalJSON

func (o GetRegionResponse) MarshalJSON() ([]byte, error)

func (*GetRegionResponse) SetData

func (o *GetRegionResponse) SetData(v AnyRegion)

SetData sets field value

func (GetRegionResponse) ToMap

func (o GetRegionResponse) ToMap() (map[string]interface{}, error)

func (*GetRegionResponse) UnmarshalJSON

func (o *GetRegionResponse) UnmarshalJSON(data []byte) (err error)

type GetRegionVersionsResponse

type GetRegionVersionsResponse struct {
	Data                 []Version `json:"data"`
	AdditionalProperties map[string]interface{}
}

GetRegionVersionsResponse struct for GetRegionVersionsResponse

func NewGetRegionVersionsResponse

func NewGetRegionVersionsResponse(data []Version) *GetRegionVersionsResponse

NewGetRegionVersionsResponse instantiates a new GetRegionVersionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRegionVersionsResponseWithDefaults

func NewGetRegionVersionsResponseWithDefaults() *GetRegionVersionsResponse

NewGetRegionVersionsResponseWithDefaults instantiates a new GetRegionVersionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRegionVersionsResponse) GetData

func (o *GetRegionVersionsResponse) GetData() []Version

GetData returns the Data field value

func (*GetRegionVersionsResponse) GetDataOk

func (o *GetRegionVersionsResponse) GetDataOk() ([]Version, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (GetRegionVersionsResponse) MarshalJSON

func (o GetRegionVersionsResponse) MarshalJSON() ([]byte, error)

func (*GetRegionVersionsResponse) SetData

func (o *GetRegionVersionsResponse) SetData(v []Version)

SetData sets field value

func (GetRegionVersionsResponse) ToMap

func (o GetRegionVersionsResponse) ToMap() (map[string]interface{}, error)

func (*GetRegionVersionsResponse) UnmarshalJSON

func (o *GetRegionVersionsResponse) UnmarshalJSON(data []byte) (err error)

type Invitation

type Invitation struct {
	Id                   string            `json:"id"`
	OrganizationId       string            `json:"organizationId"`
	UserEmail            string            `json:"userEmail"`
	Status               string            `json:"status"`
	CreationDate         time.Time         `json:"creationDate"`
	UpdatedAt            *string           `json:"updatedAt,omitempty"`
	Role                 Role              `json:"role"`
	UserId               *string           `json:"userId,omitempty"`
	OrganizationAccess   *OrganizationUser `json:"organizationAccess,omitempty"`
	ExpiresAt            *time.Time        `json:"expiresAt,omitempty"`
	CreatorId            *string           `json:"creatorId,omitempty"`
	LastUpdate           *time.Time        `json:"lastUpdate,omitempty"`
	AdditionalProperties map[string]interface{}
}

Invitation struct for Invitation

func NewInvitation

func NewInvitation(id string, organizationId string, userEmail string, status string, creationDate time.Time, role Role) *Invitation

NewInvitation instantiates a new Invitation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInvitationWithDefaults

func NewInvitationWithDefaults() *Invitation

NewInvitationWithDefaults instantiates a new Invitation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Invitation) GetCreationDate

func (o *Invitation) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value

func (*Invitation) GetCreationDateOk

func (o *Invitation) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value and a boolean to check if the value has been set.

func (*Invitation) GetCreatorId

func (o *Invitation) GetCreatorId() string

GetCreatorId returns the CreatorId field value if set, zero value otherwise.

func (*Invitation) GetCreatorIdOk

func (o *Invitation) GetCreatorIdOk() (*string, bool)

GetCreatorIdOk returns a tuple with the CreatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) GetExpiresAt

func (o *Invitation) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*Invitation) GetExpiresAtOk

func (o *Invitation) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) GetId

func (o *Invitation) GetId() string

GetId returns the Id field value

func (*Invitation) GetIdOk

func (o *Invitation) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Invitation) GetLastUpdate

func (o *Invitation) GetLastUpdate() time.Time

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise.

func (*Invitation) GetLastUpdateOk

func (o *Invitation) GetLastUpdateOk() (*time.Time, bool)

GetLastUpdateOk returns a tuple with the LastUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) GetOrganizationAccess

func (o *Invitation) GetOrganizationAccess() OrganizationUser

GetOrganizationAccess returns the OrganizationAccess field value if set, zero value otherwise.

func (*Invitation) GetOrganizationAccessOk

func (o *Invitation) GetOrganizationAccessOk() (*OrganizationUser, bool)

GetOrganizationAccessOk returns a tuple with the OrganizationAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) GetOrganizationId

func (o *Invitation) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value

func (*Invitation) GetOrganizationIdOk

func (o *Invitation) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*Invitation) GetRole

func (o *Invitation) GetRole() Role

GetRole returns the Role field value

func (*Invitation) GetRoleOk

func (o *Invitation) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (*Invitation) GetStatus

func (o *Invitation) GetStatus() string

GetStatus returns the Status field value

func (*Invitation) GetStatusOk

func (o *Invitation) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Invitation) GetUpdatedAt

func (o *Invitation) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Invitation) GetUpdatedAtOk

func (o *Invitation) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) GetUserEmail

func (o *Invitation) GetUserEmail() string

GetUserEmail returns the UserEmail field value

func (*Invitation) GetUserEmailOk

func (o *Invitation) GetUserEmailOk() (*string, bool)

GetUserEmailOk returns a tuple with the UserEmail field value and a boolean to check if the value has been set.

func (*Invitation) GetUserId

func (o *Invitation) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Invitation) GetUserIdOk

func (o *Invitation) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invitation) HasCreatorId

func (o *Invitation) HasCreatorId() bool

HasCreatorId returns a boolean if a field has been set.

func (*Invitation) HasExpiresAt

func (o *Invitation) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*Invitation) HasLastUpdate

func (o *Invitation) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*Invitation) HasOrganizationAccess

func (o *Invitation) HasOrganizationAccess() bool

HasOrganizationAccess returns a boolean if a field has been set.

func (*Invitation) HasUpdatedAt

func (o *Invitation) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Invitation) HasUserId

func (o *Invitation) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Invitation) MarshalJSON

func (o Invitation) MarshalJSON() ([]byte, error)

func (*Invitation) SetCreationDate

func (o *Invitation) SetCreationDate(v time.Time)

SetCreationDate sets field value

func (*Invitation) SetCreatorId

func (o *Invitation) SetCreatorId(v string)

SetCreatorId gets a reference to the given string and assigns it to the CreatorId field.

func (*Invitation) SetExpiresAt

func (o *Invitation) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*Invitation) SetId

func (o *Invitation) SetId(v string)

SetId sets field value

func (*Invitation) SetLastUpdate

func (o *Invitation) SetLastUpdate(v time.Time)

SetLastUpdate gets a reference to the given time.Time and assigns it to the LastUpdate field.

func (*Invitation) SetOrganizationAccess

func (o *Invitation) SetOrganizationAccess(v OrganizationUser)

SetOrganizationAccess gets a reference to the given OrganizationUser and assigns it to the OrganizationAccess field.

func (*Invitation) SetOrganizationId

func (o *Invitation) SetOrganizationId(v string)

SetOrganizationId sets field value

func (*Invitation) SetRole

func (o *Invitation) SetRole(v Role)

SetRole sets field value

func (*Invitation) SetStatus

func (o *Invitation) SetStatus(v string)

SetStatus sets field value

func (*Invitation) SetUpdatedAt

func (o *Invitation) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*Invitation) SetUserEmail

func (o *Invitation) SetUserEmail(v string)

SetUserEmail sets field value

func (*Invitation) SetUserId

func (o *Invitation) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (Invitation) ToMap

func (o Invitation) ToMap() (map[string]interface{}, error)

func (*Invitation) UnmarshalJSON

func (o *Invitation) UnmarshalJSON(data []byte) (err error)

type InvitationClaim

type InvitationClaim struct {
	Role                 *Role `json:"role,omitempty"`
	AdditionalProperties map[string]interface{}
}

InvitationClaim struct for InvitationClaim

func NewInvitationClaim

func NewInvitationClaim() *InvitationClaim

NewInvitationClaim instantiates a new InvitationClaim object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInvitationClaimWithDefaults

func NewInvitationClaimWithDefaults() *InvitationClaim

NewInvitationClaimWithDefaults instantiates a new InvitationClaim object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InvitationClaim) GetRole

func (o *InvitationClaim) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise.

func (*InvitationClaim) GetRoleOk

func (o *InvitationClaim) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InvitationClaim) HasRole

func (o *InvitationClaim) HasRole() bool

HasRole returns a boolean if a field has been set.

func (InvitationClaim) MarshalJSON

func (o InvitationClaim) MarshalJSON() ([]byte, error)

func (*InvitationClaim) SetRole

func (o *InvitationClaim) SetRole(v Role)

SetRole gets a reference to the given Role and assigns it to the Role field.

func (InvitationClaim) ToMap

func (o InvitationClaim) ToMap() (map[string]interface{}, error)

func (*InvitationClaim) UnmarshalJSON

func (o *InvitationClaim) UnmarshalJSON(data []byte) (err error)

type ListFeatures200Response

type ListFeatures200Response struct {
	Data                 []OrganizationFeature `json:"data"`
	AdditionalProperties map[string]interface{}
}

ListFeatures200Response struct for ListFeatures200Response

func NewListFeatures200Response

func NewListFeatures200Response(data []OrganizationFeature) *ListFeatures200Response

NewListFeatures200Response instantiates a new ListFeatures200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListFeatures200ResponseWithDefaults

func NewListFeatures200ResponseWithDefaults() *ListFeatures200Response

NewListFeatures200ResponseWithDefaults instantiates a new ListFeatures200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListFeatures200Response) GetData

GetData returns the Data field value

func (*ListFeatures200Response) GetDataOk

func (o *ListFeatures200Response) GetDataOk() ([]OrganizationFeature, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListFeatures200Response) MarshalJSON

func (o ListFeatures200Response) MarshalJSON() ([]byte, error)

func (*ListFeatures200Response) SetData

SetData sets field value

func (ListFeatures200Response) ToMap

func (o ListFeatures200Response) ToMap() (map[string]interface{}, error)

func (*ListFeatures200Response) UnmarshalJSON

func (o *ListFeatures200Response) UnmarshalJSON(data []byte) (err error)

type ListInvitationsResponse

type ListInvitationsResponse struct {
	Data                 []Invitation `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListInvitationsResponse struct for ListInvitationsResponse

func NewListInvitationsResponse

func NewListInvitationsResponse() *ListInvitationsResponse

NewListInvitationsResponse instantiates a new ListInvitationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListInvitationsResponseWithDefaults

func NewListInvitationsResponseWithDefaults() *ListInvitationsResponse

NewListInvitationsResponseWithDefaults instantiates a new ListInvitationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListInvitationsResponse) GetData

func (o *ListInvitationsResponse) GetData() []Invitation

GetData returns the Data field value if set, zero value otherwise.

func (*ListInvitationsResponse) GetDataOk

func (o *ListInvitationsResponse) GetDataOk() ([]Invitation, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListInvitationsResponse) HasData

func (o *ListInvitationsResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ListInvitationsResponse) MarshalJSON

func (o ListInvitationsResponse) MarshalJSON() ([]byte, error)

func (*ListInvitationsResponse) SetData

func (o *ListInvitationsResponse) SetData(v []Invitation)

SetData gets a reference to the given []Invitation and assigns it to the Data field.

func (ListInvitationsResponse) ToMap

func (o ListInvitationsResponse) ToMap() (map[string]interface{}, error)

func (*ListInvitationsResponse) UnmarshalJSON

func (o *ListInvitationsResponse) UnmarshalJSON(data []byte) (err error)

type ListModulesResponse

type ListModulesResponse struct {
	Data                 []Module `json:"data"`
	AdditionalProperties map[string]interface{}
}

ListModulesResponse struct for ListModulesResponse

func NewListModulesResponse

func NewListModulesResponse(data []Module) *ListModulesResponse

NewListModulesResponse instantiates a new ListModulesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListModulesResponseWithDefaults

func NewListModulesResponseWithDefaults() *ListModulesResponse

NewListModulesResponseWithDefaults instantiates a new ListModulesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListModulesResponse) GetData

func (o *ListModulesResponse) GetData() []Module

GetData returns the Data field value

func (*ListModulesResponse) GetDataOk

func (o *ListModulesResponse) GetDataOk() ([]Module, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListModulesResponse) MarshalJSON

func (o ListModulesResponse) MarshalJSON() ([]byte, error)

func (*ListModulesResponse) SetData

func (o *ListModulesResponse) SetData(v []Module)

SetData sets field value

func (ListModulesResponse) ToMap

func (o ListModulesResponse) ToMap() (map[string]interface{}, error)

func (*ListModulesResponse) UnmarshalJSON

func (o *ListModulesResponse) UnmarshalJSON(data []byte) (err error)

type ListOrganizationExpandedResponse

type ListOrganizationExpandedResponse struct {
	Data                 []OrganizationExpanded `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListOrganizationExpandedResponse struct for ListOrganizationExpandedResponse

func NewListOrganizationExpandedResponse

func NewListOrganizationExpandedResponse() *ListOrganizationExpandedResponse

NewListOrganizationExpandedResponse instantiates a new ListOrganizationExpandedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListOrganizationExpandedResponseWithDefaults

func NewListOrganizationExpandedResponseWithDefaults() *ListOrganizationExpandedResponse

NewListOrganizationExpandedResponseWithDefaults instantiates a new ListOrganizationExpandedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListOrganizationExpandedResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ListOrganizationExpandedResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListOrganizationExpandedResponse) HasData

HasData returns a boolean if a field has been set.

func (ListOrganizationExpandedResponse) MarshalJSON

func (o ListOrganizationExpandedResponse) MarshalJSON() ([]byte, error)

func (*ListOrganizationExpandedResponse) SetData

SetData gets a reference to the given []OrganizationExpanded and assigns it to the Data field.

func (ListOrganizationExpandedResponse) ToMap

func (o ListOrganizationExpandedResponse) ToMap() (map[string]interface{}, error)

func (*ListOrganizationExpandedResponse) UnmarshalJSON

func (o *ListOrganizationExpandedResponse) UnmarshalJSON(data []byte) (err error)

type ListOrganizationResponse

type ListOrganizationResponse struct {
	Data                 []Organization `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListOrganizationResponse struct for ListOrganizationResponse

func NewListOrganizationResponse

func NewListOrganizationResponse() *ListOrganizationResponse

NewListOrganizationResponse instantiates a new ListOrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListOrganizationResponseWithDefaults

func NewListOrganizationResponseWithDefaults() *ListOrganizationResponse

NewListOrganizationResponseWithDefaults instantiates a new ListOrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListOrganizationResponse) GetData

func (o *ListOrganizationResponse) GetData() []Organization

GetData returns the Data field value if set, zero value otherwise.

func (*ListOrganizationResponse) GetDataOk

func (o *ListOrganizationResponse) GetDataOk() ([]Organization, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListOrganizationResponse) HasData

func (o *ListOrganizationResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ListOrganizationResponse) MarshalJSON

func (o ListOrganizationResponse) MarshalJSON() ([]byte, error)

func (*ListOrganizationResponse) SetData

func (o *ListOrganizationResponse) SetData(v []Organization)

SetData gets a reference to the given []Organization and assigns it to the Data field.

func (ListOrganizationResponse) ToMap

func (o ListOrganizationResponse) ToMap() (map[string]interface{}, error)

func (*ListOrganizationResponse) UnmarshalJSON

func (o *ListOrganizationResponse) UnmarshalJSON(data []byte) (err error)

type ListRegionsResponse

type ListRegionsResponse struct {
	Data                 []AnyRegion `json:"data"`
	AdditionalProperties map[string]interface{}
}

ListRegionsResponse struct for ListRegionsResponse

func NewListRegionsResponse

func NewListRegionsResponse(data []AnyRegion) *ListRegionsResponse

NewListRegionsResponse instantiates a new ListRegionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListRegionsResponseWithDefaults

func NewListRegionsResponseWithDefaults() *ListRegionsResponse

NewListRegionsResponseWithDefaults instantiates a new ListRegionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListRegionsResponse) GetData

func (o *ListRegionsResponse) GetData() []AnyRegion

GetData returns the Data field value

func (*ListRegionsResponse) GetDataOk

func (o *ListRegionsResponse) GetDataOk() ([]AnyRegion, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListRegionsResponse) MarshalJSON

func (o ListRegionsResponse) MarshalJSON() ([]byte, error)

func (*ListRegionsResponse) SetData

func (o *ListRegionsResponse) SetData(v []AnyRegion)

SetData sets field value

func (ListRegionsResponse) ToMap

func (o ListRegionsResponse) ToMap() (map[string]interface{}, error)

func (*ListRegionsResponse) UnmarshalJSON

func (o *ListRegionsResponse) UnmarshalJSON(data []byte) (err error)

type ListStacksResponse

type ListStacksResponse struct {
	Data                 []Stack `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListStacksResponse struct for ListStacksResponse

func NewListStacksResponse

func NewListStacksResponse() *ListStacksResponse

NewListStacksResponse instantiates a new ListStacksResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListStacksResponseWithDefaults

func NewListStacksResponseWithDefaults() *ListStacksResponse

NewListStacksResponseWithDefaults instantiates a new ListStacksResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListStacksResponse) GetData

func (o *ListStacksResponse) GetData() []Stack

GetData returns the Data field value if set, zero value otherwise.

func (*ListStacksResponse) GetDataOk

func (o *ListStacksResponse) GetDataOk() ([]Stack, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListStacksResponse) HasData

func (o *ListStacksResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ListStacksResponse) MarshalJSON

func (o ListStacksResponse) MarshalJSON() ([]byte, error)

func (*ListStacksResponse) SetData

func (o *ListStacksResponse) SetData(v []Stack)

SetData gets a reference to the given []Stack and assigns it to the Data field.

func (ListStacksResponse) ToMap

func (o ListStacksResponse) ToMap() (map[string]interface{}, error)

func (*ListStacksResponse) UnmarshalJSON

func (o *ListStacksResponse) UnmarshalJSON(data []byte) (err error)

type ListUsersResponse

type ListUsersResponse struct {
	Data                 []OrganizationUser `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListUsersResponse struct for ListUsersResponse

func NewListUsersResponse

func NewListUsersResponse() *ListUsersResponse

NewListUsersResponse instantiates a new ListUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListUsersResponseWithDefaults

func NewListUsersResponseWithDefaults() *ListUsersResponse

NewListUsersResponseWithDefaults instantiates a new ListUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListUsersResponse) GetData

func (o *ListUsersResponse) GetData() []OrganizationUser

GetData returns the Data field value if set, zero value otherwise.

func (*ListUsersResponse) GetDataOk

func (o *ListUsersResponse) GetDataOk() ([]OrganizationUser, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUsersResponse) HasData

func (o *ListUsersResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ListUsersResponse) MarshalJSON

func (o ListUsersResponse) MarshalJSON() ([]byte, error)

func (*ListUsersResponse) SetData

func (o *ListUsersResponse) SetData(v []OrganizationUser)

SetData gets a reference to the given []OrganizationUser and assigns it to the Data field.

func (ListUsersResponse) ToMap

func (o ListUsersResponse) ToMap() (map[string]interface{}, error)

func (*ListUsersResponse) UnmarshalJSON

func (o *ListUsersResponse) UnmarshalJSON(data []byte) (err error)

type Log

type Log struct {
	Seq                  string                 `json:"seq"`
	OrganizationId       string                 `json:"organizationId"`
	UserId               string                 `json:"userId"`
	Action               string                 `json:"action"`
	Date                 time.Time              `json:"date"`
	Data                 map[string]interface{} `json:"data"`
	AdditionalProperties map[string]interface{}
}

Log struct for Log

func NewLog

func NewLog(seq string, organizationId string, userId string, action string, date time.Time, data map[string]interface{}) *Log

NewLog instantiates a new Log object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLogWithDefaults

func NewLogWithDefaults() *Log

NewLogWithDefaults instantiates a new Log object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Log) GetAction

func (o *Log) GetAction() string

GetAction returns the Action field value

func (*Log) GetActionOk

func (o *Log) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*Log) GetData

func (o *Log) GetData() map[string]interface{}

GetData returns the Data field value

func (*Log) GetDataOk

func (o *Log) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*Log) GetDate

func (o *Log) GetDate() time.Time

GetDate returns the Date field value

func (*Log) GetDateOk

func (o *Log) GetDateOk() (*time.Time, bool)

GetDateOk returns a tuple with the Date field value and a boolean to check if the value has been set.

func (*Log) GetOrganizationId

func (o *Log) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value

func (*Log) GetOrganizationIdOk

func (o *Log) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*Log) GetSeq

func (o *Log) GetSeq() string

GetSeq returns the Seq field value

func (*Log) GetSeqOk

func (o *Log) GetSeqOk() (*string, bool)

GetSeqOk returns a tuple with the Seq field value and a boolean to check if the value has been set.

func (*Log) GetUserId

func (o *Log) GetUserId() string

GetUserId returns the UserId field value

func (*Log) GetUserIdOk

func (o *Log) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (Log) MarshalJSON

func (o Log) MarshalJSON() ([]byte, error)

func (*Log) SetAction

func (o *Log) SetAction(v string)

SetAction sets field value

func (*Log) SetData

func (o *Log) SetData(v map[string]interface{})

SetData sets field value

func (*Log) SetDate

func (o *Log) SetDate(v time.Time)

SetDate sets field value

func (*Log) SetOrganizationId

func (o *Log) SetOrganizationId(v string)

SetOrganizationId sets field value

func (*Log) SetSeq

func (o *Log) SetSeq(v string)

SetSeq sets field value

func (*Log) SetUserId

func (o *Log) SetUserId(v string)

SetUserId sets field value

func (Log) ToMap

func (o Log) ToMap() (map[string]interface{}, error)

func (*Log) UnmarshalJSON

func (o *Log) UnmarshalJSON(data []byte) (err error)

type LogCursor

type LogCursor struct {
	Data                 LogCursorData `json:"data"`
	AdditionalProperties map[string]interface{}
}

LogCursor struct for LogCursor

func NewLogCursor

func NewLogCursor(data LogCursorData) *LogCursor

NewLogCursor instantiates a new LogCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLogCursorWithDefaults

func NewLogCursorWithDefaults() *LogCursor

NewLogCursorWithDefaults instantiates a new LogCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LogCursor) GetData

func (o *LogCursor) GetData() LogCursorData

GetData returns the Data field value

func (*LogCursor) GetDataOk

func (o *LogCursor) GetDataOk() (*LogCursorData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (LogCursor) MarshalJSON

func (o LogCursor) MarshalJSON() ([]byte, error)

func (*LogCursor) SetData

func (o *LogCursor) SetData(v LogCursorData)

SetData sets field value

func (LogCursor) ToMap

func (o LogCursor) ToMap() (map[string]interface{}, error)

func (*LogCursor) UnmarshalJSON

func (o *LogCursor) UnmarshalJSON(data []byte) (err error)

type LogCursorData

type LogCursorData struct {
	PageSize             int64   `json:"pageSize"`
	HasMore              bool    `json:"hasMore"`
	Previous             *string `json:"previous,omitempty"`
	Next                 *string `json:"next,omitempty"`
	Data                 []Log   `json:"data"`
	AdditionalProperties map[string]interface{}
}

LogCursorData struct for LogCursorData

func NewLogCursorData

func NewLogCursorData(pageSize int64, hasMore bool, data []Log) *LogCursorData

NewLogCursorData instantiates a new LogCursorData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLogCursorDataWithDefaults

func NewLogCursorDataWithDefaults() *LogCursorData

NewLogCursorDataWithDefaults instantiates a new LogCursorData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LogCursorData) GetData

func (o *LogCursorData) GetData() []Log

GetData returns the Data field value

func (*LogCursorData) GetDataOk

func (o *LogCursorData) GetDataOk() ([]Log, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*LogCursorData) GetHasMore

func (o *LogCursorData) GetHasMore() bool

GetHasMore returns the HasMore field value

func (*LogCursorData) GetHasMoreOk

func (o *LogCursorData) GetHasMoreOk() (*bool, bool)

GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.

func (*LogCursorData) GetNext

func (o *LogCursorData) GetNext() string

GetNext returns the Next field value if set, zero value otherwise.

func (*LogCursorData) GetNextOk

func (o *LogCursorData) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogCursorData) GetPageSize

func (o *LogCursorData) GetPageSize() int64

GetPageSize returns the PageSize field value

func (*LogCursorData) GetPageSizeOk

func (o *LogCursorData) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*LogCursorData) GetPrevious

func (o *LogCursorData) GetPrevious() string

GetPrevious returns the Previous field value if set, zero value otherwise.

func (*LogCursorData) GetPreviousOk

func (o *LogCursorData) GetPreviousOk() (*string, bool)

GetPreviousOk returns a tuple with the Previous field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogCursorData) HasNext

func (o *LogCursorData) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*LogCursorData) HasPrevious

func (o *LogCursorData) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (LogCursorData) MarshalJSON

func (o LogCursorData) MarshalJSON() ([]byte, error)

func (*LogCursorData) SetData

func (o *LogCursorData) SetData(v []Log)

SetData sets field value

func (*LogCursorData) SetHasMore

func (o *LogCursorData) SetHasMore(v bool)

SetHasMore sets field value

func (*LogCursorData) SetNext

func (o *LogCursorData) SetNext(v string)

SetNext gets a reference to the given string and assigns it to the Next field.

func (*LogCursorData) SetPageSize

func (o *LogCursorData) SetPageSize(v int64)

SetPageSize sets field value

func (*LogCursorData) SetPrevious

func (o *LogCursorData) SetPrevious(v string)

SetPrevious gets a reference to the given string and assigns it to the Previous field.

func (LogCursorData) ToMap

func (o LogCursorData) ToMap() (map[string]interface{}, error)

func (*LogCursorData) UnmarshalJSON

func (o *LogCursorData) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Module

type Module struct {
	Name                 string                 `json:"name"`
	State                string                 `json:"state"`
	Status               string                 `json:"status"`
	LastStatusUpdate     time.Time              `json:"lastStatusUpdate"`
	LastStateUpdate      time.Time              `json:"lastStateUpdate"`
	ClusterStatus        map[string]interface{} `json:"clusterStatus,omitempty"`
	AdditionalProperties map[string]interface{}
}

Module struct for Module

func NewModule

func NewModule(name string, state string, status string, lastStatusUpdate time.Time, lastStateUpdate time.Time) *Module

NewModule instantiates a new Module object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModuleWithDefaults

func NewModuleWithDefaults() *Module

NewModuleWithDefaults instantiates a new Module object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Module) GetClusterStatus

func (o *Module) GetClusterStatus() map[string]interface{}

GetClusterStatus returns the ClusterStatus field value if set, zero value otherwise.

func (*Module) GetClusterStatusOk

func (o *Module) GetClusterStatusOk() (map[string]interface{}, bool)

GetClusterStatusOk returns a tuple with the ClusterStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Module) GetLastStateUpdate

func (o *Module) GetLastStateUpdate() time.Time

GetLastStateUpdate returns the LastStateUpdate field value

func (*Module) GetLastStateUpdateOk

func (o *Module) GetLastStateUpdateOk() (*time.Time, bool)

GetLastStateUpdateOk returns a tuple with the LastStateUpdate field value and a boolean to check if the value has been set.

func (*Module) GetLastStatusUpdate

func (o *Module) GetLastStatusUpdate() time.Time

GetLastStatusUpdate returns the LastStatusUpdate field value

func (*Module) GetLastStatusUpdateOk

func (o *Module) GetLastStatusUpdateOk() (*time.Time, bool)

GetLastStatusUpdateOk returns a tuple with the LastStatusUpdate field value and a boolean to check if the value has been set.

func (*Module) GetName

func (o *Module) GetName() string

GetName returns the Name field value

func (*Module) GetNameOk

func (o *Module) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Module) GetState

func (o *Module) GetState() string

GetState returns the State field value

func (*Module) GetStateOk

func (o *Module) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*Module) GetStatus

func (o *Module) GetStatus() string

GetStatus returns the Status field value

func (*Module) GetStatusOk

func (o *Module) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Module) HasClusterStatus

func (o *Module) HasClusterStatus() bool

HasClusterStatus returns a boolean if a field has been set.

func (Module) MarshalJSON

func (o Module) MarshalJSON() ([]byte, error)

func (*Module) SetClusterStatus

func (o *Module) SetClusterStatus(v map[string]interface{})

SetClusterStatus gets a reference to the given map[string]interface{} and assigns it to the ClusterStatus field.

func (*Module) SetLastStateUpdate

func (o *Module) SetLastStateUpdate(v time.Time)

SetLastStateUpdate sets field value

func (*Module) SetLastStatusUpdate

func (o *Module) SetLastStatusUpdate(v time.Time)

SetLastStatusUpdate sets field value

func (*Module) SetName

func (o *Module) SetName(v string)

SetName sets field value

func (*Module) SetState

func (o *Module) SetState(v string)

SetState sets field value

func (*Module) SetStatus

func (o *Module) SetStatus(v string)

SetStatus sets field value

func (Module) ToMap

func (o Module) ToMap() (map[string]interface{}, error)

func (*Module) UnmarshalJSON

func (o *Module) UnmarshalJSON(data []byte) (err error)

type NullableAction

type NullableAction struct {
	// contains filtered or unexported fields
}

func NewNullableAction

func NewNullableAction(val *Action) *NullableAction

func (NullableAction) Get

func (v NullableAction) Get() *Action

func (NullableAction) IsSet

func (v NullableAction) IsSet() bool

func (NullableAction) MarshalJSON

func (v NullableAction) MarshalJSON() ([]byte, error)

func (*NullableAction) Set

func (v *NullableAction) Set(val *Action)

func (*NullableAction) UnmarshalJSON

func (v *NullableAction) UnmarshalJSON(src []byte) error

func (*NullableAction) Unset

func (v *NullableAction) Unset()

type NullableAddFeaturesRequest

type NullableAddFeaturesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAddFeaturesRequest

func NewNullableAddFeaturesRequest(val *AddFeaturesRequest) *NullableAddFeaturesRequest

func (NullableAddFeaturesRequest) Get

func (NullableAddFeaturesRequest) IsSet

func (v NullableAddFeaturesRequest) IsSet() bool

func (NullableAddFeaturesRequest) MarshalJSON

func (v NullableAddFeaturesRequest) MarshalJSON() ([]byte, error)

func (*NullableAddFeaturesRequest) Set

func (*NullableAddFeaturesRequest) UnmarshalJSON

func (v *NullableAddFeaturesRequest) UnmarshalJSON(src []byte) error

func (*NullableAddFeaturesRequest) Unset

func (v *NullableAddFeaturesRequest) Unset()

type NullableAnyRegion

type NullableAnyRegion struct {
	// contains filtered or unexported fields
}

func NewNullableAnyRegion

func NewNullableAnyRegion(val *AnyRegion) *NullableAnyRegion

func (NullableAnyRegion) Get

func (v NullableAnyRegion) Get() *AnyRegion

func (NullableAnyRegion) IsSet

func (v NullableAnyRegion) IsSet() bool

func (NullableAnyRegion) MarshalJSON

func (v NullableAnyRegion) MarshalJSON() ([]byte, error)

func (*NullableAnyRegion) Set

func (v *NullableAnyRegion) Set(val *AnyRegion)

func (*NullableAnyRegion) UnmarshalJSON

func (v *NullableAnyRegion) UnmarshalJSON(src []byte) error

func (*NullableAnyRegion) Unset

func (v *NullableAnyRegion) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCapability

type NullableCapability struct {
	// contains filtered or unexported fields
}

func NewNullableCapability

func NewNullableCapability(val *Capability) *NullableCapability

func (NullableCapability) Get

func (v NullableCapability) Get() *Capability

func (NullableCapability) IsSet

func (v NullableCapability) IsSet() bool

func (NullableCapability) MarshalJSON

func (v NullableCapability) MarshalJSON() ([]byte, error)

func (*NullableCapability) Set

func (v *NullableCapability) Set(val *Capability)

func (*NullableCapability) UnmarshalJSON

func (v *NullableCapability) UnmarshalJSON(src []byte) error

func (*NullableCapability) Unset

func (v *NullableCapability) Unset()

type NullableCreateInvitationResponse

type NullableCreateInvitationResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateInvitationResponse) Get

func (NullableCreateInvitationResponse) IsSet

func (NullableCreateInvitationResponse) MarshalJSON

func (v NullableCreateInvitationResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateInvitationResponse) Set

func (*NullableCreateInvitationResponse) UnmarshalJSON

func (v *NullableCreateInvitationResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateInvitationResponse) Unset

type NullableCreateOrganizationResponse

type NullableCreateOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationResponse) Get

func (NullableCreateOrganizationResponse) IsSet

func (NullableCreateOrganizationResponse) MarshalJSON

func (v NullableCreateOrganizationResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateOrganizationResponse) Set

func (*NullableCreateOrganizationResponse) UnmarshalJSON

func (v *NullableCreateOrganizationResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateOrganizationResponse) Unset

type NullableCreatePrivateRegionRequest

type NullableCreatePrivateRegionRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreatePrivateRegionRequest) Get

func (NullableCreatePrivateRegionRequest) IsSet

func (NullableCreatePrivateRegionRequest) MarshalJSON

func (v NullableCreatePrivateRegionRequest) MarshalJSON() ([]byte, error)

func (*NullableCreatePrivateRegionRequest) Set

func (*NullableCreatePrivateRegionRequest) UnmarshalJSON

func (v *NullableCreatePrivateRegionRequest) UnmarshalJSON(src []byte) error

func (*NullableCreatePrivateRegionRequest) Unset

type NullableCreateStackRequest

type NullableCreateStackRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateStackRequest

func NewNullableCreateStackRequest(val *CreateStackRequest) *NullableCreateStackRequest

func (NullableCreateStackRequest) Get

func (NullableCreateStackRequest) IsSet

func (v NullableCreateStackRequest) IsSet() bool

func (NullableCreateStackRequest) MarshalJSON

func (v NullableCreateStackRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateStackRequest) Set

func (*NullableCreateStackRequest) UnmarshalJSON

func (v *NullableCreateStackRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateStackRequest) Unset

func (v *NullableCreateStackRequest) Unset()

type NullableCreateStackResponse

type NullableCreateStackResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateStackResponse

func NewNullableCreateStackResponse(val *CreateStackResponse) *NullableCreateStackResponse

func (NullableCreateStackResponse) Get

func (NullableCreateStackResponse) IsSet

func (NullableCreateStackResponse) MarshalJSON

func (v NullableCreateStackResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateStackResponse) Set

func (*NullableCreateStackResponse) UnmarshalJSON

func (v *NullableCreateStackResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateStackResponse) Unset

func (v *NullableCreateStackResponse) Unset()

type NullableCreatedPrivateRegionResponse

type NullableCreatedPrivateRegionResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreatedPrivateRegionResponse) Get

func (NullableCreatedPrivateRegionResponse) IsSet

func (NullableCreatedPrivateRegionResponse) MarshalJSON

func (v NullableCreatedPrivateRegionResponse) MarshalJSON() ([]byte, error)

func (*NullableCreatedPrivateRegionResponse) Set

func (*NullableCreatedPrivateRegionResponse) UnmarshalJSON

func (v *NullableCreatedPrivateRegionResponse) UnmarshalJSON(src []byte) error

func (*NullableCreatedPrivateRegionResponse) Unset

type NullableCursor

type NullableCursor struct {
	// contains filtered or unexported fields
}

func NewNullableCursor

func NewNullableCursor(val *Cursor) *NullableCursor

func (NullableCursor) Get

func (v NullableCursor) Get() *Cursor

func (NullableCursor) IsSet

func (v NullableCursor) IsSet() bool

func (NullableCursor) MarshalJSON

func (v NullableCursor) MarshalJSON() ([]byte, error)

func (*NullableCursor) Set

func (v *NullableCursor) Set(val *Cursor)

func (*NullableCursor) UnmarshalJSON

func (v *NullableCursor) UnmarshalJSON(src []byte) error

func (*NullableCursor) Unset

func (v *NullableCursor) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetRegionResponse

type NullableGetRegionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGetRegionResponse

func NewNullableGetRegionResponse(val *GetRegionResponse) *NullableGetRegionResponse

func (NullableGetRegionResponse) Get

func (NullableGetRegionResponse) IsSet

func (v NullableGetRegionResponse) IsSet() bool

func (NullableGetRegionResponse) MarshalJSON

func (v NullableGetRegionResponse) MarshalJSON() ([]byte, error)

func (*NullableGetRegionResponse) Set

func (*NullableGetRegionResponse) UnmarshalJSON

func (v *NullableGetRegionResponse) UnmarshalJSON(src []byte) error

func (*NullableGetRegionResponse) Unset

func (v *NullableGetRegionResponse) Unset()

type NullableGetRegionVersionsResponse

type NullableGetRegionVersionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetRegionVersionsResponse) Get

func (NullableGetRegionVersionsResponse) IsSet

func (NullableGetRegionVersionsResponse) MarshalJSON

func (v NullableGetRegionVersionsResponse) MarshalJSON() ([]byte, error)

func (*NullableGetRegionVersionsResponse) Set

func (*NullableGetRegionVersionsResponse) UnmarshalJSON

func (v *NullableGetRegionVersionsResponse) UnmarshalJSON(src []byte) error

func (*NullableGetRegionVersionsResponse) Unset

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvitation

type NullableInvitation struct {
	// contains filtered or unexported fields
}

func NewNullableInvitation

func NewNullableInvitation(val *Invitation) *NullableInvitation

func (NullableInvitation) Get

func (v NullableInvitation) Get() *Invitation

func (NullableInvitation) IsSet

func (v NullableInvitation) IsSet() bool

func (NullableInvitation) MarshalJSON

func (v NullableInvitation) MarshalJSON() ([]byte, error)

func (*NullableInvitation) Set

func (v *NullableInvitation) Set(val *Invitation)

func (*NullableInvitation) UnmarshalJSON

func (v *NullableInvitation) UnmarshalJSON(src []byte) error

func (*NullableInvitation) Unset

func (v *NullableInvitation) Unset()

type NullableInvitationClaim

type NullableInvitationClaim struct {
	// contains filtered or unexported fields
}

func NewNullableInvitationClaim

func NewNullableInvitationClaim(val *InvitationClaim) *NullableInvitationClaim

func (NullableInvitationClaim) Get

func (NullableInvitationClaim) IsSet

func (v NullableInvitationClaim) IsSet() bool

func (NullableInvitationClaim) MarshalJSON

func (v NullableInvitationClaim) MarshalJSON() ([]byte, error)

func (*NullableInvitationClaim) Set

func (*NullableInvitationClaim) UnmarshalJSON

func (v *NullableInvitationClaim) UnmarshalJSON(src []byte) error

func (*NullableInvitationClaim) Unset

func (v *NullableInvitationClaim) Unset()

type NullableListFeatures200Response

type NullableListFeatures200Response struct {
	// contains filtered or unexported fields
}

func (NullableListFeatures200Response) Get

func (NullableListFeatures200Response) IsSet

func (NullableListFeatures200Response) MarshalJSON

func (v NullableListFeatures200Response) MarshalJSON() ([]byte, error)

func (*NullableListFeatures200Response) Set

func (*NullableListFeatures200Response) UnmarshalJSON

func (v *NullableListFeatures200Response) UnmarshalJSON(src []byte) error

func (*NullableListFeatures200Response) Unset

type NullableListInvitationsResponse

type NullableListInvitationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListInvitationsResponse) Get

func (NullableListInvitationsResponse) IsSet

func (NullableListInvitationsResponse) MarshalJSON

func (v NullableListInvitationsResponse) MarshalJSON() ([]byte, error)

func (*NullableListInvitationsResponse) Set

func (*NullableListInvitationsResponse) UnmarshalJSON

func (v *NullableListInvitationsResponse) UnmarshalJSON(src []byte) error

func (*NullableListInvitationsResponse) Unset

type NullableListModulesResponse

type NullableListModulesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListModulesResponse

func NewNullableListModulesResponse(val *ListModulesResponse) *NullableListModulesResponse

func (NullableListModulesResponse) Get

func (NullableListModulesResponse) IsSet

func (NullableListModulesResponse) MarshalJSON

func (v NullableListModulesResponse) MarshalJSON() ([]byte, error)

func (*NullableListModulesResponse) Set

func (*NullableListModulesResponse) UnmarshalJSON

func (v *NullableListModulesResponse) UnmarshalJSON(src []byte) error

func (*NullableListModulesResponse) Unset

func (v *NullableListModulesResponse) Unset()

type NullableListOrganizationExpandedResponse

type NullableListOrganizationExpandedResponse struct {
	// contains filtered or unexported fields
}

func (NullableListOrganizationExpandedResponse) Get

func (NullableListOrganizationExpandedResponse) IsSet

func (NullableListOrganizationExpandedResponse) MarshalJSON

func (*NullableListOrganizationExpandedResponse) Set

func (*NullableListOrganizationExpandedResponse) UnmarshalJSON

func (v *NullableListOrganizationExpandedResponse) UnmarshalJSON(src []byte) error

func (*NullableListOrganizationExpandedResponse) Unset

type NullableListOrganizationResponse

type NullableListOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableListOrganizationResponse) Get

func (NullableListOrganizationResponse) IsSet

func (NullableListOrganizationResponse) MarshalJSON

func (v NullableListOrganizationResponse) MarshalJSON() ([]byte, error)

func (*NullableListOrganizationResponse) Set

func (*NullableListOrganizationResponse) UnmarshalJSON

func (v *NullableListOrganizationResponse) UnmarshalJSON(src []byte) error

func (*NullableListOrganizationResponse) Unset

type NullableListRegionsResponse

type NullableListRegionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListRegionsResponse

func NewNullableListRegionsResponse(val *ListRegionsResponse) *NullableListRegionsResponse

func (NullableListRegionsResponse) Get

func (NullableListRegionsResponse) IsSet

func (NullableListRegionsResponse) MarshalJSON

func (v NullableListRegionsResponse) MarshalJSON() ([]byte, error)

func (*NullableListRegionsResponse) Set

func (*NullableListRegionsResponse) UnmarshalJSON

func (v *NullableListRegionsResponse) UnmarshalJSON(src []byte) error

func (*NullableListRegionsResponse) Unset

func (v *NullableListRegionsResponse) Unset()

type NullableListStacksResponse

type NullableListStacksResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListStacksResponse

func NewNullableListStacksResponse(val *ListStacksResponse) *NullableListStacksResponse

func (NullableListStacksResponse) Get

func (NullableListStacksResponse) IsSet

func (v NullableListStacksResponse) IsSet() bool

func (NullableListStacksResponse) MarshalJSON

func (v NullableListStacksResponse) MarshalJSON() ([]byte, error)

func (*NullableListStacksResponse) Set

func (*NullableListStacksResponse) UnmarshalJSON

func (v *NullableListStacksResponse) UnmarshalJSON(src []byte) error

func (*NullableListStacksResponse) Unset

func (v *NullableListStacksResponse) Unset()

type NullableListUsersResponse

type NullableListUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListUsersResponse

func NewNullableListUsersResponse(val *ListUsersResponse) *NullableListUsersResponse

func (NullableListUsersResponse) Get

func (NullableListUsersResponse) IsSet

func (v NullableListUsersResponse) IsSet() bool

func (NullableListUsersResponse) MarshalJSON

func (v NullableListUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableListUsersResponse) Set

func (*NullableListUsersResponse) UnmarshalJSON

func (v *NullableListUsersResponse) UnmarshalJSON(src []byte) error

func (*NullableListUsersResponse) Unset

func (v *NullableListUsersResponse) Unset()

type NullableLog

type NullableLog struct {
	// contains filtered or unexported fields
}

func NewNullableLog

func NewNullableLog(val *Log) *NullableLog

func (NullableLog) Get

func (v NullableLog) Get() *Log

func (NullableLog) IsSet

func (v NullableLog) IsSet() bool

func (NullableLog) MarshalJSON

func (v NullableLog) MarshalJSON() ([]byte, error)

func (*NullableLog) Set

func (v *NullableLog) Set(val *Log)

func (*NullableLog) UnmarshalJSON

func (v *NullableLog) UnmarshalJSON(src []byte) error

func (*NullableLog) Unset

func (v *NullableLog) Unset()

type NullableLogCursor

type NullableLogCursor struct {
	// contains filtered or unexported fields
}

func NewNullableLogCursor

func NewNullableLogCursor(val *LogCursor) *NullableLogCursor

func (NullableLogCursor) Get

func (v NullableLogCursor) Get() *LogCursor

func (NullableLogCursor) IsSet

func (v NullableLogCursor) IsSet() bool

func (NullableLogCursor) MarshalJSON

func (v NullableLogCursor) MarshalJSON() ([]byte, error)

func (*NullableLogCursor) Set

func (v *NullableLogCursor) Set(val *LogCursor)

func (*NullableLogCursor) UnmarshalJSON

func (v *NullableLogCursor) UnmarshalJSON(src []byte) error

func (*NullableLogCursor) Unset

func (v *NullableLogCursor) Unset()

type NullableLogCursorData

type NullableLogCursorData struct {
	// contains filtered or unexported fields
}

func NewNullableLogCursorData

func NewNullableLogCursorData(val *LogCursorData) *NullableLogCursorData

func (NullableLogCursorData) Get

func (NullableLogCursorData) IsSet

func (v NullableLogCursorData) IsSet() bool

func (NullableLogCursorData) MarshalJSON

func (v NullableLogCursorData) MarshalJSON() ([]byte, error)

func (*NullableLogCursorData) Set

func (v *NullableLogCursorData) Set(val *LogCursorData)

func (*NullableLogCursorData) UnmarshalJSON

func (v *NullableLogCursorData) UnmarshalJSON(src []byte) error

func (*NullableLogCursorData) Unset

func (v *NullableLogCursorData) Unset()

type NullableModule

type NullableModule struct {
	// contains filtered or unexported fields
}

func NewNullableModule

func NewNullableModule(val *Module) *NullableModule

func (NullableModule) Get

func (v NullableModule) Get() *Module

func (NullableModule) IsSet

func (v NullableModule) IsSet() bool

func (NullableModule) MarshalJSON

func (v NullableModule) MarshalJSON() ([]byte, error)

func (*NullableModule) Set

func (v *NullableModule) Set(val *Module)

func (*NullableModule) UnmarshalJSON

func (v *NullableModule) UnmarshalJSON(src []byte) error

func (*NullableModule) Unset

func (v *NullableModule) Unset()

type NullableOrganization

type NullableOrganization struct {
	// contains filtered or unexported fields
}

func NewNullableOrganization

func NewNullableOrganization(val *Organization) *NullableOrganization

func (NullableOrganization) Get

func (NullableOrganization) IsSet

func (v NullableOrganization) IsSet() bool

func (NullableOrganization) MarshalJSON

func (v NullableOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganization) Set

func (v *NullableOrganization) Set(val *Organization)

func (*NullableOrganization) UnmarshalJSON

func (v *NullableOrganization) UnmarshalJSON(src []byte) error

func (*NullableOrganization) Unset

func (v *NullableOrganization) Unset()

type NullableOrganizationData

type NullableOrganizationData struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationData

func NewNullableOrganizationData(val *OrganizationData) *NullableOrganizationData

func (NullableOrganizationData) Get

func (NullableOrganizationData) IsSet

func (v NullableOrganizationData) IsSet() bool

func (NullableOrganizationData) MarshalJSON

func (v NullableOrganizationData) MarshalJSON() ([]byte, error)

func (*NullableOrganizationData) Set

func (*NullableOrganizationData) UnmarshalJSON

func (v *NullableOrganizationData) UnmarshalJSON(src []byte) error

func (*NullableOrganizationData) Unset

func (v *NullableOrganizationData) Unset()

type NullableOrganizationExpanded

type NullableOrganizationExpanded struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationExpanded

func NewNullableOrganizationExpanded(val *OrganizationExpanded) *NullableOrganizationExpanded

func (NullableOrganizationExpanded) Get

func (NullableOrganizationExpanded) IsSet

func (NullableOrganizationExpanded) MarshalJSON

func (v NullableOrganizationExpanded) MarshalJSON() ([]byte, error)

func (*NullableOrganizationExpanded) Set

func (*NullableOrganizationExpanded) UnmarshalJSON

func (v *NullableOrganizationExpanded) UnmarshalJSON(src []byte) error

func (*NullableOrganizationExpanded) Unset

func (v *NullableOrganizationExpanded) Unset()

type NullableOrganizationFeature

type NullableOrganizationFeature struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationFeature

func NewNullableOrganizationFeature(val *OrganizationFeature) *NullableOrganizationFeature

func (NullableOrganizationFeature) Get

func (NullableOrganizationFeature) IsSet

func (NullableOrganizationFeature) MarshalJSON

func (v NullableOrganizationFeature) MarshalJSON() ([]byte, error)

func (*NullableOrganizationFeature) Set

func (*NullableOrganizationFeature) UnmarshalJSON

func (v *NullableOrganizationFeature) UnmarshalJSON(src []byte) error

func (*NullableOrganizationFeature) Unset

func (v *NullableOrganizationFeature) Unset()

type NullableOrganizationUser

type NullableOrganizationUser struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationUser

func NewNullableOrganizationUser(val *OrganizationUser) *NullableOrganizationUser

func (NullableOrganizationUser) Get

func (NullableOrganizationUser) IsSet

func (v NullableOrganizationUser) IsSet() bool

func (NullableOrganizationUser) MarshalJSON

func (v NullableOrganizationUser) MarshalJSON() ([]byte, error)

func (*NullableOrganizationUser) Set

func (*NullableOrganizationUser) UnmarshalJSON

func (v *NullableOrganizationUser) UnmarshalJSON(src []byte) error

func (*NullableOrganizationUser) Unset

func (v *NullableOrganizationUser) Unset()

type NullablePrivateRegion

type NullablePrivateRegion struct {
	// contains filtered or unexported fields
}

func NewNullablePrivateRegion

func NewNullablePrivateRegion(val *PrivateRegion) *NullablePrivateRegion

func (NullablePrivateRegion) Get

func (NullablePrivateRegion) IsSet

func (v NullablePrivateRegion) IsSet() bool

func (NullablePrivateRegion) MarshalJSON

func (v NullablePrivateRegion) MarshalJSON() ([]byte, error)

func (*NullablePrivateRegion) Set

func (v *NullablePrivateRegion) Set(val *PrivateRegion)

func (*NullablePrivateRegion) UnmarshalJSON

func (v *NullablePrivateRegion) UnmarshalJSON(src []byte) error

func (*NullablePrivateRegion) Unset

func (v *NullablePrivateRegion) Unset()

type NullablePrivateRegionSecret

type NullablePrivateRegionSecret struct {
	// contains filtered or unexported fields
}

func NewNullablePrivateRegionSecret

func NewNullablePrivateRegionSecret(val *PrivateRegionSecret) *NullablePrivateRegionSecret

func (NullablePrivateRegionSecret) Get

func (NullablePrivateRegionSecret) IsSet

func (NullablePrivateRegionSecret) MarshalJSON

func (v NullablePrivateRegionSecret) MarshalJSON() ([]byte, error)

func (*NullablePrivateRegionSecret) Set

func (*NullablePrivateRegionSecret) UnmarshalJSON

func (v *NullablePrivateRegionSecret) UnmarshalJSON(src []byte) error

func (*NullablePrivateRegionSecret) Unset

func (v *NullablePrivateRegionSecret) Unset()

type NullablePublicRegion

type NullablePublicRegion struct {
	// contains filtered or unexported fields
}

func NewNullablePublicRegion

func NewNullablePublicRegion(val *PublicRegion) *NullablePublicRegion

func (NullablePublicRegion) Get

func (NullablePublicRegion) IsSet

func (v NullablePublicRegion) IsSet() bool

func (NullablePublicRegion) MarshalJSON

func (v NullablePublicRegion) MarshalJSON() ([]byte, error)

func (*NullablePublicRegion) Set

func (v *NullablePublicRegion) Set(val *PublicRegion)

func (*NullablePublicRegion) UnmarshalJSON

func (v *NullablePublicRegion) UnmarshalJSON(src []byte) error

func (*NullablePublicRegion) Unset

func (v *NullablePublicRegion) Unset()

type NullableReadOrganizationResponse

type NullableReadOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableReadOrganizationResponse) Get

func (NullableReadOrganizationResponse) IsSet

func (NullableReadOrganizationResponse) MarshalJSON

func (v NullableReadOrganizationResponse) MarshalJSON() ([]byte, error)

func (*NullableReadOrganizationResponse) Set

func (*NullableReadOrganizationResponse) UnmarshalJSON

func (v *NullableReadOrganizationResponse) UnmarshalJSON(src []byte) error

func (*NullableReadOrganizationResponse) Unset

type NullableReadOrganizationUserResponse

type NullableReadOrganizationUserResponse struct {
	// contains filtered or unexported fields
}

func (NullableReadOrganizationUserResponse) Get

func (NullableReadOrganizationUserResponse) IsSet

func (NullableReadOrganizationUserResponse) MarshalJSON

func (v NullableReadOrganizationUserResponse) MarshalJSON() ([]byte, error)

func (*NullableReadOrganizationUserResponse) Set

func (*NullableReadOrganizationUserResponse) UnmarshalJSON

func (v *NullableReadOrganizationUserResponse) UnmarshalJSON(src []byte) error

func (*NullableReadOrganizationUserResponse) Unset

type NullableReadStackUserAccess

type NullableReadStackUserAccess struct {
	// contains filtered or unexported fields
}

func NewNullableReadStackUserAccess

func NewNullableReadStackUserAccess(val *ReadStackUserAccess) *NullableReadStackUserAccess

func (NullableReadStackUserAccess) Get

func (NullableReadStackUserAccess) IsSet

func (NullableReadStackUserAccess) MarshalJSON

func (v NullableReadStackUserAccess) MarshalJSON() ([]byte, error)

func (*NullableReadStackUserAccess) Set

func (*NullableReadStackUserAccess) UnmarshalJSON

func (v *NullableReadStackUserAccess) UnmarshalJSON(src []byte) error

func (*NullableReadStackUserAccess) Unset

func (v *NullableReadStackUserAccess) Unset()

type NullableReadUserResponse

type NullableReadUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableReadUserResponse

func NewNullableReadUserResponse(val *ReadUserResponse) *NullableReadUserResponse

func (NullableReadUserResponse) Get

func (NullableReadUserResponse) IsSet

func (v NullableReadUserResponse) IsSet() bool

func (NullableReadUserResponse) MarshalJSON

func (v NullableReadUserResponse) MarshalJSON() ([]byte, error)

func (*NullableReadUserResponse) Set

func (*NullableReadUserResponse) UnmarshalJSON

func (v *NullableReadUserResponse) UnmarshalJSON(src []byte) error

func (*NullableReadUserResponse) Unset

func (v *NullableReadUserResponse) Unset()

type NullableRegion

type NullableRegion struct {
	// contains filtered or unexported fields
}

func NewNullableRegion

func NewNullableRegion(val *Region) *NullableRegion

func (NullableRegion) Get

func (v NullableRegion) Get() *Region

func (NullableRegion) IsSet

func (v NullableRegion) IsSet() bool

func (NullableRegion) MarshalJSON

func (v NullableRegion) MarshalJSON() ([]byte, error)

func (*NullableRegion) Set

func (v *NullableRegion) Set(val *Region)

func (*NullableRegion) UnmarshalJSON

func (v *NullableRegion) UnmarshalJSON(src []byte) error

func (*NullableRegion) Unset

func (v *NullableRegion) Unset()

type NullableRegionCapability

type NullableRegionCapability struct {
	// contains filtered or unexported fields
}

func NewNullableRegionCapability

func NewNullableRegionCapability(val *RegionCapability) *NullableRegionCapability

func (NullableRegionCapability) Get

func (NullableRegionCapability) IsSet

func (v NullableRegionCapability) IsSet() bool

func (NullableRegionCapability) MarshalJSON

func (v NullableRegionCapability) MarshalJSON() ([]byte, error)

func (*NullableRegionCapability) Set

func (*NullableRegionCapability) UnmarshalJSON

func (v *NullableRegionCapability) UnmarshalJSON(src []byte) error

func (*NullableRegionCapability) Unset

func (v *NullableRegionCapability) Unset()

type NullableRegionCapabilityKeys

type NullableRegionCapabilityKeys struct {
	// contains filtered or unexported fields
}

func NewNullableRegionCapabilityKeys

func NewNullableRegionCapabilityKeys(val *RegionCapabilityKeys) *NullableRegionCapabilityKeys

func (NullableRegionCapabilityKeys) Get

func (NullableRegionCapabilityKeys) IsSet

func (NullableRegionCapabilityKeys) MarshalJSON

func (v NullableRegionCapabilityKeys) MarshalJSON() ([]byte, error)

func (*NullableRegionCapabilityKeys) Set

func (*NullableRegionCapabilityKeys) UnmarshalJSON

func (v *NullableRegionCapabilityKeys) UnmarshalJSON(src []byte) error

func (*NullableRegionCapabilityKeys) Unset

func (v *NullableRegionCapabilityKeys) Unset()

type NullableRole

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get

func (v NullableRole) Get() *Role

func (NullableRole) IsSet

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset

func (v *NullableRole) Unset()

type NullableServerInfo

type NullableServerInfo struct {
	// contains filtered or unexported fields
}

func NewNullableServerInfo

func NewNullableServerInfo(val *ServerInfo) *NullableServerInfo

func (NullableServerInfo) Get

func (v NullableServerInfo) Get() *ServerInfo

func (NullableServerInfo) IsSet

func (v NullableServerInfo) IsSet() bool

func (NullableServerInfo) MarshalJSON

func (v NullableServerInfo) MarshalJSON() ([]byte, error)

func (*NullableServerInfo) Set

func (v *NullableServerInfo) Set(val *ServerInfo)

func (*NullableServerInfo) UnmarshalJSON

func (v *NullableServerInfo) UnmarshalJSON(src []byte) error

func (*NullableServerInfo) Unset

func (v *NullableServerInfo) Unset()

type NullableStack

type NullableStack struct {
	// contains filtered or unexported fields
}

func NewNullableStack

func NewNullableStack(val *Stack) *NullableStack

func (NullableStack) Get

func (v NullableStack) Get() *Stack

func (NullableStack) IsSet

func (v NullableStack) IsSet() bool

func (NullableStack) MarshalJSON

func (v NullableStack) MarshalJSON() ([]byte, error)

func (*NullableStack) Set

func (v *NullableStack) Set(val *Stack)

func (*NullableStack) UnmarshalJSON

func (v *NullableStack) UnmarshalJSON(src []byte) error

func (*NullableStack) Unset

func (v *NullableStack) Unset()

type NullableStackData

type NullableStackData struct {
	// contains filtered or unexported fields
}

func NewNullableStackData

func NewNullableStackData(val *StackData) *NullableStackData

func (NullableStackData) Get

func (v NullableStackData) Get() *StackData

func (NullableStackData) IsSet

func (v NullableStackData) IsSet() bool

func (NullableStackData) MarshalJSON

func (v NullableStackData) MarshalJSON() ([]byte, error)

func (*NullableStackData) Set

func (v *NullableStackData) Set(val *StackData)

func (*NullableStackData) UnmarshalJSON

func (v *NullableStackData) UnmarshalJSON(src []byte) error

func (*NullableStackData) Unset

func (v *NullableStackData) Unset()

type NullableStackLifeCycle

type NullableStackLifeCycle struct {
	// contains filtered or unexported fields
}

func NewNullableStackLifeCycle

func NewNullableStackLifeCycle(val *StackLifeCycle) *NullableStackLifeCycle

func (NullableStackLifeCycle) Get

func (NullableStackLifeCycle) IsSet

func (v NullableStackLifeCycle) IsSet() bool

func (NullableStackLifeCycle) MarshalJSON

func (v NullableStackLifeCycle) MarshalJSON() ([]byte, error)

func (*NullableStackLifeCycle) Set

func (*NullableStackLifeCycle) UnmarshalJSON

func (v *NullableStackLifeCycle) UnmarshalJSON(src []byte) error

func (*NullableStackLifeCycle) Unset

func (v *NullableStackLifeCycle) Unset()

type NullableStackReachability

type NullableStackReachability struct {
	// contains filtered or unexported fields
}

func NewNullableStackReachability

func NewNullableStackReachability(val *StackReachability) *NullableStackReachability

func (NullableStackReachability) Get

func (NullableStackReachability) IsSet

func (v NullableStackReachability) IsSet() bool

func (NullableStackReachability) MarshalJSON

func (v NullableStackReachability) MarshalJSON() ([]byte, error)

func (*NullableStackReachability) Set

func (*NullableStackReachability) UnmarshalJSON

func (v *NullableStackReachability) UnmarshalJSON(src []byte) error

func (*NullableStackReachability) Unset

func (v *NullableStackReachability) Unset()

type NullableStackUserAccess

type NullableStackUserAccess struct {
	// contains filtered or unexported fields
}

func NewNullableStackUserAccess

func NewNullableStackUserAccess(val *StackUserAccess) *NullableStackUserAccess

func (NullableStackUserAccess) Get

func (NullableStackUserAccess) IsSet

func (v NullableStackUserAccess) IsSet() bool

func (NullableStackUserAccess) MarshalJSON

func (v NullableStackUserAccess) MarshalJSON() ([]byte, error)

func (*NullableStackUserAccess) Set

func (*NullableStackUserAccess) UnmarshalJSON

func (v *NullableStackUserAccess) UnmarshalJSON(src []byte) error

func (*NullableStackUserAccess) Unset

func (v *NullableStackUserAccess) Unset()

type NullableStackUserAccessResponse

type NullableStackUserAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableStackUserAccessResponse) Get

func (NullableStackUserAccessResponse) IsSet

func (NullableStackUserAccessResponse) MarshalJSON

func (v NullableStackUserAccessResponse) MarshalJSON() ([]byte, error)

func (*NullableStackUserAccessResponse) Set

func (*NullableStackUserAccessResponse) UnmarshalJSON

func (v *NullableStackUserAccessResponse) UnmarshalJSON(src []byte) error

func (*NullableStackUserAccessResponse) Unset

type NullableStackVersion

type NullableStackVersion struct {
	// contains filtered or unexported fields
}

func NewNullableStackVersion

func NewNullableStackVersion(val *StackVersion) *NullableStackVersion

func (NullableStackVersion) Get

func (NullableStackVersion) IsSet

func (v NullableStackVersion) IsSet() bool

func (NullableStackVersion) MarshalJSON

func (v NullableStackVersion) MarshalJSON() ([]byte, error)

func (*NullableStackVersion) Set

func (v *NullableStackVersion) Set(val *StackVersion)

func (*NullableStackVersion) UnmarshalJSON

func (v *NullableStackVersion) UnmarshalJSON(src []byte) error

func (*NullableStackVersion) Unset

func (v *NullableStackVersion) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSystemRole

type NullableSystemRole struct {
	// contains filtered or unexported fields
}

func NewNullableSystemRole

func NewNullableSystemRole(val *SystemRole) *NullableSystemRole

func (NullableSystemRole) Get

func (v NullableSystemRole) Get() *SystemRole

func (NullableSystemRole) IsSet

func (v NullableSystemRole) IsSet() bool

func (NullableSystemRole) MarshalJSON

func (v NullableSystemRole) MarshalJSON() ([]byte, error)

func (*NullableSystemRole) Set

func (v *NullableSystemRole) Set(val *SystemRole)

func (*NullableSystemRole) UnmarshalJSON

func (v *NullableSystemRole) UnmarshalJSON(src []byte) error

func (*NullableSystemRole) Unset

func (v *NullableSystemRole) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateOrganizationUserRequest

type NullableUpdateOrganizationUserRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationUserRequest) Get

func (NullableUpdateOrganizationUserRequest) IsSet

func (NullableUpdateOrganizationUserRequest) MarshalJSON

func (v NullableUpdateOrganizationUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationUserRequest) Set

func (*NullableUpdateOrganizationUserRequest) UnmarshalJSON

func (v *NullableUpdateOrganizationUserRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateOrganizationUserRequest) Unset

type NullableUpdateStackRequest

type NullableUpdateStackRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateStackRequest

func NewNullableUpdateStackRequest(val *UpdateStackRequest) *NullableUpdateStackRequest

func (NullableUpdateStackRequest) Get

func (NullableUpdateStackRequest) IsSet

func (v NullableUpdateStackRequest) IsSet() bool

func (NullableUpdateStackRequest) MarshalJSON

func (v NullableUpdateStackRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateStackRequest) Set

func (*NullableUpdateStackRequest) UnmarshalJSON

func (v *NullableUpdateStackRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateStackRequest) Unset

func (v *NullableUpdateStackRequest) Unset()

type NullableUpdateStackUserRequest

type NullableUpdateStackUserRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateStackUserRequest) Get

func (NullableUpdateStackUserRequest) IsSet

func (NullableUpdateStackUserRequest) MarshalJSON

func (v NullableUpdateStackUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateStackUserRequest) Set

func (*NullableUpdateStackUserRequest) UnmarshalJSON

func (v *NullableUpdateStackUserRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateStackUserRequest) Unset

func (v *NullableUpdateStackUserRequest) Unset()

type NullableUser

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset

func (v *NullableUser) Unset()

type NullableUserData

type NullableUserData struct {
	// contains filtered or unexported fields
}

func NewNullableUserData

func NewNullableUserData(val *UserData) *NullableUserData

func (NullableUserData) Get

func (v NullableUserData) Get() *UserData

func (NullableUserData) IsSet

func (v NullableUserData) IsSet() bool

func (NullableUserData) MarshalJSON

func (v NullableUserData) MarshalJSON() ([]byte, error)

func (*NullableUserData) Set

func (v *NullableUserData) Set(val *UserData)

func (*NullableUserData) UnmarshalJSON

func (v *NullableUserData) UnmarshalJSON(src []byte) error

func (*NullableUserData) Unset

func (v *NullableUserData) Unset()

type NullableVersion

type NullableVersion struct {
	// contains filtered or unexported fields
}

func NewNullableVersion

func NewNullableVersion(val *Version) *NullableVersion

func (NullableVersion) Get

func (v NullableVersion) Get() *Version

func (NullableVersion) IsSet

func (v NullableVersion) IsSet() bool

func (NullableVersion) MarshalJSON

func (v NullableVersion) MarshalJSON() ([]byte, error)

func (*NullableVersion) Set

func (v *NullableVersion) Set(val *Version)

func (*NullableVersion) UnmarshalJSON

func (v *NullableVersion) UnmarshalJSON(src []byte) error

func (*NullableVersion) Unset

func (v *NullableVersion) Unset()

type Organization

type Organization struct {
	// Organization name
	Name                      string `json:"name"`
	DefaultOrganizationAccess *Role  `json:"defaultOrganizationAccess,omitempty"`
	DefaultStackAccess        *Role  `json:"defaultStackAccess,omitempty"`
	// Organization domain
	Domain *string `json:"domain,omitempty"`
	// Organization ID
	Id string `json:"id"`
	// Owner ID
	OwnerId string `json:"ownerId"`
	// Number of available stacks
	AvailableStacks *int32 `json:"availableStacks,omitempty"`
	// Number of available sandboxes
	AvailableSandboxes   *int32     `json:"availableSandboxes,omitempty"`
	CreatedAt            *time.Time `json:"createdAt,omitempty"`
	UpdatedAt            *time.Time `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

Organization struct for Organization

func NewOrganization

func NewOrganization(name string, id string, ownerId string) *Organization

NewOrganization instantiates a new Organization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationWithDefaults

func NewOrganizationWithDefaults() *Organization

NewOrganizationWithDefaults instantiates a new Organization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Organization) GetAvailableSandboxes

func (o *Organization) GetAvailableSandboxes() int32

GetAvailableSandboxes returns the AvailableSandboxes field value if set, zero value otherwise.

func (*Organization) GetAvailableSandboxesOk

func (o *Organization) GetAvailableSandboxesOk() (*int32, bool)

GetAvailableSandboxesOk returns a tuple with the AvailableSandboxes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetAvailableStacks

func (o *Organization) GetAvailableStacks() int32

GetAvailableStacks returns the AvailableStacks field value if set, zero value otherwise.

func (*Organization) GetAvailableStacksOk

func (o *Organization) GetAvailableStacksOk() (*int32, bool)

GetAvailableStacksOk returns a tuple with the AvailableStacks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetCreatedAt

func (o *Organization) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Organization) GetCreatedAtOk

func (o *Organization) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetDefaultOrganizationAccess

func (o *Organization) GetDefaultOrganizationAccess() Role

GetDefaultOrganizationAccess returns the DefaultOrganizationAccess field value if set, zero value otherwise.

func (*Organization) GetDefaultOrganizationAccessOk

func (o *Organization) GetDefaultOrganizationAccessOk() (*Role, bool)

GetDefaultOrganizationAccessOk returns a tuple with the DefaultOrganizationAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetDefaultStackAccess

func (o *Organization) GetDefaultStackAccess() Role

GetDefaultStackAccess returns the DefaultStackAccess field value if set, zero value otherwise.

func (*Organization) GetDefaultStackAccessOk

func (o *Organization) GetDefaultStackAccessOk() (*Role, bool)

GetDefaultStackAccessOk returns a tuple with the DefaultStackAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetDomain

func (o *Organization) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*Organization) GetDomainOk

func (o *Organization) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetId

func (o *Organization) GetId() string

GetId returns the Id field value

func (*Organization) GetIdOk

func (o *Organization) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Organization) GetName

func (o *Organization) GetName() string

GetName returns the Name field value

func (*Organization) GetNameOk

func (o *Organization) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Organization) GetOwnerId

func (o *Organization) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*Organization) GetOwnerIdOk

func (o *Organization) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*Organization) GetUpdatedAt

func (o *Organization) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Organization) GetUpdatedAtOk

func (o *Organization) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) HasAvailableSandboxes

func (o *Organization) HasAvailableSandboxes() bool

HasAvailableSandboxes returns a boolean if a field has been set.

func (*Organization) HasAvailableStacks

func (o *Organization) HasAvailableStacks() bool

HasAvailableStacks returns a boolean if a field has been set.

func (*Organization) HasCreatedAt

func (o *Organization) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Organization) HasDefaultOrganizationAccess

func (o *Organization) HasDefaultOrganizationAccess() bool

HasDefaultOrganizationAccess returns a boolean if a field has been set.

func (*Organization) HasDefaultStackAccess

func (o *Organization) HasDefaultStackAccess() bool

HasDefaultStackAccess returns a boolean if a field has been set.

func (*Organization) HasDomain

func (o *Organization) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*Organization) HasUpdatedAt

func (o *Organization) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Organization) MarshalJSON

func (o Organization) MarshalJSON() ([]byte, error)

func (*Organization) SetAvailableSandboxes

func (o *Organization) SetAvailableSandboxes(v int32)

SetAvailableSandboxes gets a reference to the given int32 and assigns it to the AvailableSandboxes field.

func (*Organization) SetAvailableStacks

func (o *Organization) SetAvailableStacks(v int32)

SetAvailableStacks gets a reference to the given int32 and assigns it to the AvailableStacks field.

func (*Organization) SetCreatedAt

func (o *Organization) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Organization) SetDefaultOrganizationAccess

func (o *Organization) SetDefaultOrganizationAccess(v Role)

SetDefaultOrganizationAccess gets a reference to the given Role and assigns it to the DefaultOrganizationAccess field.

func (*Organization) SetDefaultStackAccess

func (o *Organization) SetDefaultStackAccess(v Role)

SetDefaultStackAccess gets a reference to the given Role and assigns it to the DefaultStackAccess field.

func (*Organization) SetDomain

func (o *Organization) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*Organization) SetId

func (o *Organization) SetId(v string)

SetId sets field value

func (*Organization) SetName

func (o *Organization) SetName(v string)

SetName sets field value

func (*Organization) SetOwnerId

func (o *Organization) SetOwnerId(v string)

SetOwnerId sets field value

func (*Organization) SetUpdatedAt

func (o *Organization) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (Organization) ToMap

func (o Organization) ToMap() (map[string]interface{}, error)

func (*Organization) UnmarshalJSON

func (o *Organization) UnmarshalJSON(data []byte) (err error)

type OrganizationData

type OrganizationData struct {
	// Organization name
	Name                      string `json:"name"`
	DefaultOrganizationAccess *Role  `json:"defaultOrganizationAccess,omitempty"`
	DefaultStackAccess        *Role  `json:"defaultStackAccess,omitempty"`
	// Organization domain
	Domain               *string `json:"domain,omitempty"`
	AdditionalProperties map[string]interface{}
}

OrganizationData struct for OrganizationData

func NewOrganizationData

func NewOrganizationData(name string) *OrganizationData

NewOrganizationData instantiates a new OrganizationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationDataWithDefaults

func NewOrganizationDataWithDefaults() *OrganizationData

NewOrganizationDataWithDefaults instantiates a new OrganizationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationData) GetDefaultOrganizationAccess

func (o *OrganizationData) GetDefaultOrganizationAccess() Role

GetDefaultOrganizationAccess returns the DefaultOrganizationAccess field value if set, zero value otherwise.

func (*OrganizationData) GetDefaultOrganizationAccessOk

func (o *OrganizationData) GetDefaultOrganizationAccessOk() (*Role, bool)

GetDefaultOrganizationAccessOk returns a tuple with the DefaultOrganizationAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationData) GetDefaultStackAccess

func (o *OrganizationData) GetDefaultStackAccess() Role

GetDefaultStackAccess returns the DefaultStackAccess field value if set, zero value otherwise.

func (*OrganizationData) GetDefaultStackAccessOk

func (o *OrganizationData) GetDefaultStackAccessOk() (*Role, bool)

GetDefaultStackAccessOk returns a tuple with the DefaultStackAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationData) GetDomain

func (o *OrganizationData) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*OrganizationData) GetDomainOk

func (o *OrganizationData) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationData) GetName

func (o *OrganizationData) GetName() string

GetName returns the Name field value

func (*OrganizationData) GetNameOk

func (o *OrganizationData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OrganizationData) HasDefaultOrganizationAccess

func (o *OrganizationData) HasDefaultOrganizationAccess() bool

HasDefaultOrganizationAccess returns a boolean if a field has been set.

func (*OrganizationData) HasDefaultStackAccess

func (o *OrganizationData) HasDefaultStackAccess() bool

HasDefaultStackAccess returns a boolean if a field has been set.

func (*OrganizationData) HasDomain

func (o *OrganizationData) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (OrganizationData) MarshalJSON

func (o OrganizationData) MarshalJSON() ([]byte, error)

func (*OrganizationData) SetDefaultOrganizationAccess

func (o *OrganizationData) SetDefaultOrganizationAccess(v Role)

SetDefaultOrganizationAccess gets a reference to the given Role and assigns it to the DefaultOrganizationAccess field.

func (*OrganizationData) SetDefaultStackAccess

func (o *OrganizationData) SetDefaultStackAccess(v Role)

SetDefaultStackAccess gets a reference to the given Role and assigns it to the DefaultStackAccess field.

func (*OrganizationData) SetDomain

func (o *OrganizationData) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*OrganizationData) SetName

func (o *OrganizationData) SetName(v string)

SetName sets field value

func (OrganizationData) ToMap

func (o OrganizationData) ToMap() (map[string]interface{}, error)

func (*OrganizationData) UnmarshalJSON

func (o *OrganizationData) UnmarshalJSON(data []byte) (err error)

type OrganizationExpanded

type OrganizationExpanded struct {
	// Organization name
	Name                      string `json:"name"`
	DefaultOrganizationAccess *Role  `json:"defaultOrganizationAccess,omitempty"`
	DefaultStackAccess        *Role  `json:"defaultStackAccess,omitempty"`
	// Organization domain
	Domain *string `json:"domain,omitempty"`
	// Organization ID
	Id string `json:"id"`
	// Owner ID
	OwnerId string `json:"ownerId"`
	// Number of available stacks
	AvailableStacks *int32 `json:"availableStacks,omitempty"`
	// Number of available sandboxes
	AvailableSandboxes   *int32     `json:"availableSandboxes,omitempty"`
	CreatedAt            *time.Time `json:"createdAt,omitempty"`
	UpdatedAt            *time.Time `json:"updatedAt,omitempty"`
	TotalStacks          *int32     `json:"totalStacks,omitempty"`
	TotalUsers           *int32     `json:"totalUsers,omitempty"`
	Owner                *User      `json:"owner,omitempty"`
	AdditionalProperties map[string]interface{}
}

OrganizationExpanded struct for OrganizationExpanded

func NewOrganizationExpanded

func NewOrganizationExpanded(name string, id string, ownerId string) *OrganizationExpanded

NewOrganizationExpanded instantiates a new OrganizationExpanded object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationExpandedWithDefaults

func NewOrganizationExpandedWithDefaults() *OrganizationExpanded

NewOrganizationExpandedWithDefaults instantiates a new OrganizationExpanded object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationExpanded) GetAvailableSandboxes

func (o *OrganizationExpanded) GetAvailableSandboxes() int32

GetAvailableSandboxes returns the AvailableSandboxes field value if set, zero value otherwise.

func (*OrganizationExpanded) GetAvailableSandboxesOk

func (o *OrganizationExpanded) GetAvailableSandboxesOk() (*int32, bool)

GetAvailableSandboxesOk returns a tuple with the AvailableSandboxes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetAvailableStacks

func (o *OrganizationExpanded) GetAvailableStacks() int32

GetAvailableStacks returns the AvailableStacks field value if set, zero value otherwise.

func (*OrganizationExpanded) GetAvailableStacksOk

func (o *OrganizationExpanded) GetAvailableStacksOk() (*int32, bool)

GetAvailableStacksOk returns a tuple with the AvailableStacks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetCreatedAt

func (o *OrganizationExpanded) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrganizationExpanded) GetCreatedAtOk

func (o *OrganizationExpanded) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetDefaultOrganizationAccess

func (o *OrganizationExpanded) GetDefaultOrganizationAccess() Role

GetDefaultOrganizationAccess returns the DefaultOrganizationAccess field value if set, zero value otherwise.

func (*OrganizationExpanded) GetDefaultOrganizationAccessOk

func (o *OrganizationExpanded) GetDefaultOrganizationAccessOk() (*Role, bool)

GetDefaultOrganizationAccessOk returns a tuple with the DefaultOrganizationAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetDefaultStackAccess

func (o *OrganizationExpanded) GetDefaultStackAccess() Role

GetDefaultStackAccess returns the DefaultStackAccess field value if set, zero value otherwise.

func (*OrganizationExpanded) GetDefaultStackAccessOk

func (o *OrganizationExpanded) GetDefaultStackAccessOk() (*Role, bool)

GetDefaultStackAccessOk returns a tuple with the DefaultStackAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetDomain

func (o *OrganizationExpanded) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*OrganizationExpanded) GetDomainOk

func (o *OrganizationExpanded) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetId

func (o *OrganizationExpanded) GetId() string

GetId returns the Id field value

func (*OrganizationExpanded) GetIdOk

func (o *OrganizationExpanded) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetName

func (o *OrganizationExpanded) GetName() string

GetName returns the Name field value

func (*OrganizationExpanded) GetNameOk

func (o *OrganizationExpanded) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetOwner

func (o *OrganizationExpanded) GetOwner() User

GetOwner returns the Owner field value if set, zero value otherwise.

func (*OrganizationExpanded) GetOwnerId

func (o *OrganizationExpanded) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*OrganizationExpanded) GetOwnerIdOk

func (o *OrganizationExpanded) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetOwnerOk

func (o *OrganizationExpanded) GetOwnerOk() (*User, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetTotalStacks

func (o *OrganizationExpanded) GetTotalStacks() int32

GetTotalStacks returns the TotalStacks field value if set, zero value otherwise.

func (*OrganizationExpanded) GetTotalStacksOk

func (o *OrganizationExpanded) GetTotalStacksOk() (*int32, bool)

GetTotalStacksOk returns a tuple with the TotalStacks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetTotalUsers

func (o *OrganizationExpanded) GetTotalUsers() int32

GetTotalUsers returns the TotalUsers field value if set, zero value otherwise.

func (*OrganizationExpanded) GetTotalUsersOk

func (o *OrganizationExpanded) GetTotalUsersOk() (*int32, bool)

GetTotalUsersOk returns a tuple with the TotalUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) GetUpdatedAt

func (o *OrganizationExpanded) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OrganizationExpanded) GetUpdatedAtOk

func (o *OrganizationExpanded) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationExpanded) HasAvailableSandboxes

func (o *OrganizationExpanded) HasAvailableSandboxes() bool

HasAvailableSandboxes returns a boolean if a field has been set.

func (*OrganizationExpanded) HasAvailableStacks

func (o *OrganizationExpanded) HasAvailableStacks() bool

HasAvailableStacks returns a boolean if a field has been set.

func (*OrganizationExpanded) HasCreatedAt

func (o *OrganizationExpanded) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationExpanded) HasDefaultOrganizationAccess

func (o *OrganizationExpanded) HasDefaultOrganizationAccess() bool

HasDefaultOrganizationAccess returns a boolean if a field has been set.

func (*OrganizationExpanded) HasDefaultStackAccess

func (o *OrganizationExpanded) HasDefaultStackAccess() bool

HasDefaultStackAccess returns a boolean if a field has been set.

func (*OrganizationExpanded) HasDomain

func (o *OrganizationExpanded) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*OrganizationExpanded) HasOwner

func (o *OrganizationExpanded) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*OrganizationExpanded) HasTotalStacks

func (o *OrganizationExpanded) HasTotalStacks() bool

HasTotalStacks returns a boolean if a field has been set.

func (*OrganizationExpanded) HasTotalUsers

func (o *OrganizationExpanded) HasTotalUsers() bool

HasTotalUsers returns a boolean if a field has been set.

func (*OrganizationExpanded) HasUpdatedAt

func (o *OrganizationExpanded) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (OrganizationExpanded) MarshalJSON

func (o OrganizationExpanded) MarshalJSON() ([]byte, error)

func (*OrganizationExpanded) SetAvailableSandboxes

func (o *OrganizationExpanded) SetAvailableSandboxes(v int32)

SetAvailableSandboxes gets a reference to the given int32 and assigns it to the AvailableSandboxes field.

func (*OrganizationExpanded) SetAvailableStacks

func (o *OrganizationExpanded) SetAvailableStacks(v int32)

SetAvailableStacks gets a reference to the given int32 and assigns it to the AvailableStacks field.

func (*OrganizationExpanded) SetCreatedAt

func (o *OrganizationExpanded) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrganizationExpanded) SetDefaultOrganizationAccess

func (o *OrganizationExpanded) SetDefaultOrganizationAccess(v Role)

SetDefaultOrganizationAccess gets a reference to the given Role and assigns it to the DefaultOrganizationAccess field.

func (*OrganizationExpanded) SetDefaultStackAccess

func (o *OrganizationExpanded) SetDefaultStackAccess(v Role)

SetDefaultStackAccess gets a reference to the given Role and assigns it to the DefaultStackAccess field.

func (*OrganizationExpanded) SetDomain

func (o *OrganizationExpanded) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*OrganizationExpanded) SetId

func (o *OrganizationExpanded) SetId(v string)

SetId sets field value

func (*OrganizationExpanded) SetName

func (o *OrganizationExpanded) SetName(v string)

SetName sets field value

func (*OrganizationExpanded) SetOwner

func (o *OrganizationExpanded) SetOwner(v User)

SetOwner gets a reference to the given User and assigns it to the Owner field.

func (*OrganizationExpanded) SetOwnerId

func (o *OrganizationExpanded) SetOwnerId(v string)

SetOwnerId sets field value

func (*OrganizationExpanded) SetTotalStacks

func (o *OrganizationExpanded) SetTotalStacks(v int32)

SetTotalStacks gets a reference to the given int32 and assigns it to the TotalStacks field.

func (*OrganizationExpanded) SetTotalUsers

func (o *OrganizationExpanded) SetTotalUsers(v int32)

SetTotalUsers gets a reference to the given int32 and assigns it to the TotalUsers field.

func (*OrganizationExpanded) SetUpdatedAt

func (o *OrganizationExpanded) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (OrganizationExpanded) ToMap

func (o OrganizationExpanded) ToMap() (map[string]interface{}, error)

func (*OrganizationExpanded) UnmarshalJSON

func (o *OrganizationExpanded) UnmarshalJSON(data []byte) (err error)

type OrganizationFeature

type OrganizationFeature struct {
	OrganizationID       string    `json:"organizationID"`
	Name                 string    `json:"name"`
	CreatedAt            time.Time `json:"createdAt"`
	AdditionalProperties map[string]interface{}
}

OrganizationFeature struct for OrganizationFeature

func NewOrganizationFeature

func NewOrganizationFeature(organizationID string, name string, createdAt time.Time) *OrganizationFeature

NewOrganizationFeature instantiates a new OrganizationFeature object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationFeatureWithDefaults

func NewOrganizationFeatureWithDefaults() *OrganizationFeature

NewOrganizationFeatureWithDefaults instantiates a new OrganizationFeature object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationFeature) GetCreatedAt

func (o *OrganizationFeature) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*OrganizationFeature) GetCreatedAtOk

func (o *OrganizationFeature) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*OrganizationFeature) GetName

func (o *OrganizationFeature) GetName() string

GetName returns the Name field value

func (*OrganizationFeature) GetNameOk

func (o *OrganizationFeature) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OrganizationFeature) GetOrganizationID

func (o *OrganizationFeature) GetOrganizationID() string

GetOrganizationID returns the OrganizationID field value

func (*OrganizationFeature) GetOrganizationIDOk

func (o *OrganizationFeature) GetOrganizationIDOk() (*string, bool)

GetOrganizationIDOk returns a tuple with the OrganizationID field value and a boolean to check if the value has been set.

func (OrganizationFeature) MarshalJSON

func (o OrganizationFeature) MarshalJSON() ([]byte, error)

func (*OrganizationFeature) SetCreatedAt

func (o *OrganizationFeature) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*OrganizationFeature) SetName

func (o *OrganizationFeature) SetName(v string)

SetName sets field value

func (*OrganizationFeature) SetOrganizationID

func (o *OrganizationFeature) SetOrganizationID(v string)

SetOrganizationID sets field value

func (OrganizationFeature) ToMap

func (o OrganizationFeature) ToMap() (map[string]interface{}, error)

func (*OrganizationFeature) UnmarshalJSON

func (o *OrganizationFeature) UnmarshalJSON(data []byte) (err error)

type OrganizationUser

type OrganizationUser struct {
	Role                 Role   `json:"role"`
	Email                string `json:"email"`
	Id                   string `json:"id"`
	AdditionalProperties map[string]interface{}
}

OrganizationUser struct for OrganizationUser

func NewOrganizationUser

func NewOrganizationUser(role Role, email string, id string) *OrganizationUser

NewOrganizationUser instantiates a new OrganizationUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationUserWithDefaults

func NewOrganizationUserWithDefaults() *OrganizationUser

NewOrganizationUserWithDefaults instantiates a new OrganizationUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationUser) GetEmail

func (o *OrganizationUser) GetEmail() string

GetEmail returns the Email field value

func (*OrganizationUser) GetEmailOk

func (o *OrganizationUser) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*OrganizationUser) GetId

func (o *OrganizationUser) GetId() string

GetId returns the Id field value

func (*OrganizationUser) GetIdOk

func (o *OrganizationUser) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OrganizationUser) GetRole

func (o *OrganizationUser) GetRole() Role

GetRole returns the Role field value

func (*OrganizationUser) GetRoleOk

func (o *OrganizationUser) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (OrganizationUser) MarshalJSON

func (o OrganizationUser) MarshalJSON() ([]byte, error)

func (*OrganizationUser) SetEmail

func (o *OrganizationUser) SetEmail(v string)

SetEmail sets field value

func (*OrganizationUser) SetId

func (o *OrganizationUser) SetId(v string)

SetId sets field value

func (*OrganizationUser) SetRole

func (o *OrganizationUser) SetRole(v Role)

SetRole sets field value

func (OrganizationUser) ToMap

func (o OrganizationUser) ToMap() (map[string]interface{}, error)

func (*OrganizationUser) UnmarshalJSON

func (o *OrganizationUser) UnmarshalJSON(data []byte) (err error)

type PrivateRegion

type PrivateRegion struct {
	Id                   string               `json:"id"`
	BaseUrl              string               `json:"baseUrl"`
	CreatedAt            string               `json:"createdAt"`
	Active               bool                 `json:"active"`
	LastPing             *time.Time           `json:"lastPing,omitempty"`
	Name                 string               `json:"name"`
	Capabilities         RegionCapability     `json:"capabilities"`
	AgentID              string               `json:"agentID"`
	Outdated             bool                 `json:"outdated"`
	CreatorId            *string              `json:"creatorId,omitempty"`
	Version              *string              `json:"version,omitempty"`
	OrganizationID       string               `json:"organizationID"`
	CreatorID            string               `json:"creatorID"`
	Secret               *PrivateRegionSecret `json:"secret,omitempty"`
	AdditionalProperties map[string]interface{}
}

PrivateRegion struct for PrivateRegion

func NewPrivateRegion

func NewPrivateRegion(id string, baseUrl string, createdAt string, active bool, name string, capabilities RegionCapability, agentID string, outdated bool, organizationID string, creatorID string) *PrivateRegion

NewPrivateRegion instantiates a new PrivateRegion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrivateRegionWithDefaults

func NewPrivateRegionWithDefaults() *PrivateRegion

NewPrivateRegionWithDefaults instantiates a new PrivateRegion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PrivateRegion) GetActive

func (o *PrivateRegion) GetActive() bool

GetActive returns the Active field value

func (*PrivateRegion) GetActiveOk

func (o *PrivateRegion) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetAgentID

func (o *PrivateRegion) GetAgentID() string

GetAgentID returns the AgentID field value

func (*PrivateRegion) GetAgentIDOk

func (o *PrivateRegion) GetAgentIDOk() (*string, bool)

GetAgentIDOk returns a tuple with the AgentID field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetBaseUrl

func (o *PrivateRegion) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value

func (*PrivateRegion) GetBaseUrlOk

func (o *PrivateRegion) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetCapabilities

func (o *PrivateRegion) GetCapabilities() RegionCapability

GetCapabilities returns the Capabilities field value

func (*PrivateRegion) GetCapabilitiesOk

func (o *PrivateRegion) GetCapabilitiesOk() (*RegionCapability, bool)

GetCapabilitiesOk returns a tuple with the Capabilities field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetCreatedAt

func (o *PrivateRegion) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*PrivateRegion) GetCreatedAtOk

func (o *PrivateRegion) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetCreatorID

func (o *PrivateRegion) GetCreatorID() string

GetCreatorID returns the CreatorID field value

func (*PrivateRegion) GetCreatorIDOk

func (o *PrivateRegion) GetCreatorIDOk() (*string, bool)

GetCreatorIDOk returns a tuple with the CreatorID field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetCreatorId

func (o *PrivateRegion) GetCreatorId() string

GetCreatorId returns the CreatorId field value if set, zero value otherwise.

func (*PrivateRegion) GetCreatorIdOk

func (o *PrivateRegion) GetCreatorIdOk() (*string, bool)

GetCreatorIdOk returns a tuple with the CreatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegion) GetId

func (o *PrivateRegion) GetId() string

GetId returns the Id field value

func (*PrivateRegion) GetIdOk

func (o *PrivateRegion) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetLastPing

func (o *PrivateRegion) GetLastPing() time.Time

GetLastPing returns the LastPing field value if set, zero value otherwise.

func (*PrivateRegion) GetLastPingOk

func (o *PrivateRegion) GetLastPingOk() (*time.Time, bool)

GetLastPingOk returns a tuple with the LastPing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegion) GetName

func (o *PrivateRegion) GetName() string

GetName returns the Name field value

func (*PrivateRegion) GetNameOk

func (o *PrivateRegion) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetOrganizationID

func (o *PrivateRegion) GetOrganizationID() string

GetOrganizationID returns the OrganizationID field value

func (*PrivateRegion) GetOrganizationIDOk

func (o *PrivateRegion) GetOrganizationIDOk() (*string, bool)

GetOrganizationIDOk returns a tuple with the OrganizationID field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetOutdated

func (o *PrivateRegion) GetOutdated() bool

GetOutdated returns the Outdated field value

func (*PrivateRegion) GetOutdatedOk

func (o *PrivateRegion) GetOutdatedOk() (*bool, bool)

GetOutdatedOk returns a tuple with the Outdated field value and a boolean to check if the value has been set.

func (*PrivateRegion) GetSecret

func (o *PrivateRegion) GetSecret() PrivateRegionSecret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*PrivateRegion) GetSecretOk

func (o *PrivateRegion) GetSecretOk() (*PrivateRegionSecret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegion) GetVersion

func (o *PrivateRegion) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*PrivateRegion) GetVersionOk

func (o *PrivateRegion) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegion) HasCreatorId

func (o *PrivateRegion) HasCreatorId() bool

HasCreatorId returns a boolean if a field has been set.

func (*PrivateRegion) HasLastPing

func (o *PrivateRegion) HasLastPing() bool

HasLastPing returns a boolean if a field has been set.

func (*PrivateRegion) HasSecret

func (o *PrivateRegion) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*PrivateRegion) HasVersion

func (o *PrivateRegion) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (PrivateRegion) MarshalJSON

func (o PrivateRegion) MarshalJSON() ([]byte, error)

func (*PrivateRegion) SetActive

func (o *PrivateRegion) SetActive(v bool)

SetActive sets field value

func (*PrivateRegion) SetAgentID

func (o *PrivateRegion) SetAgentID(v string)

SetAgentID sets field value

func (*PrivateRegion) SetBaseUrl

func (o *PrivateRegion) SetBaseUrl(v string)

SetBaseUrl sets field value

func (*PrivateRegion) SetCapabilities

func (o *PrivateRegion) SetCapabilities(v RegionCapability)

SetCapabilities sets field value

func (*PrivateRegion) SetCreatedAt

func (o *PrivateRegion) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*PrivateRegion) SetCreatorID

func (o *PrivateRegion) SetCreatorID(v string)

SetCreatorID sets field value

func (*PrivateRegion) SetCreatorId

func (o *PrivateRegion) SetCreatorId(v string)

SetCreatorId gets a reference to the given string and assigns it to the CreatorId field.

func (*PrivateRegion) SetId

func (o *PrivateRegion) SetId(v string)

SetId sets field value

func (*PrivateRegion) SetLastPing

func (o *PrivateRegion) SetLastPing(v time.Time)

SetLastPing gets a reference to the given time.Time and assigns it to the LastPing field.

func (*PrivateRegion) SetName

func (o *PrivateRegion) SetName(v string)

SetName sets field value

func (*PrivateRegion) SetOrganizationID

func (o *PrivateRegion) SetOrganizationID(v string)

SetOrganizationID sets field value

func (*PrivateRegion) SetOutdated

func (o *PrivateRegion) SetOutdated(v bool)

SetOutdated sets field value

func (*PrivateRegion) SetSecret

func (o *PrivateRegion) SetSecret(v PrivateRegionSecret)

SetSecret gets a reference to the given PrivateRegionSecret and assigns it to the Secret field.

func (*PrivateRegion) SetVersion

func (o *PrivateRegion) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (PrivateRegion) ToMap

func (o PrivateRegion) ToMap() (map[string]interface{}, error)

func (*PrivateRegion) UnmarshalJSON

func (o *PrivateRegion) UnmarshalJSON(data []byte) (err error)

type PrivateRegionSecret

type PrivateRegionSecret struct {
	LastDigits           string  `json:"lastDigits"`
	Clear                *string `json:"clear,omitempty"`
	AdditionalProperties map[string]interface{}
}

PrivateRegionSecret struct for PrivateRegionSecret

func NewPrivateRegionSecret

func NewPrivateRegionSecret(lastDigits string) *PrivateRegionSecret

NewPrivateRegionSecret instantiates a new PrivateRegionSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrivateRegionSecretWithDefaults

func NewPrivateRegionSecretWithDefaults() *PrivateRegionSecret

NewPrivateRegionSecretWithDefaults instantiates a new PrivateRegionSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PrivateRegionSecret) GetClear

func (o *PrivateRegionSecret) GetClear() string

GetClear returns the Clear field value if set, zero value otherwise.

func (*PrivateRegionSecret) GetClearOk

func (o *PrivateRegionSecret) GetClearOk() (*string, bool)

GetClearOk returns a tuple with the Clear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegionSecret) GetLastDigits

func (o *PrivateRegionSecret) GetLastDigits() string

GetLastDigits returns the LastDigits field value

func (*PrivateRegionSecret) GetLastDigitsOk

func (o *PrivateRegionSecret) GetLastDigitsOk() (*string, bool)

GetLastDigitsOk returns a tuple with the LastDigits field value and a boolean to check if the value has been set.

func (*PrivateRegionSecret) HasClear

func (o *PrivateRegionSecret) HasClear() bool

HasClear returns a boolean if a field has been set.

func (PrivateRegionSecret) MarshalJSON

func (o PrivateRegionSecret) MarshalJSON() ([]byte, error)

func (*PrivateRegionSecret) SetClear

func (o *PrivateRegionSecret) SetClear(v string)

SetClear gets a reference to the given string and assigns it to the Clear field.

func (*PrivateRegionSecret) SetLastDigits

func (o *PrivateRegionSecret) SetLastDigits(v string)

SetLastDigits sets field value

func (PrivateRegionSecret) ToMap

func (o PrivateRegionSecret) ToMap() (map[string]interface{}, error)

func (*PrivateRegionSecret) UnmarshalJSON

func (o *PrivateRegionSecret) UnmarshalJSON(data []byte) (err error)

type PublicRegion

type PublicRegion struct {
	Id                   string           `json:"id"`
	BaseUrl              string           `json:"baseUrl"`
	CreatedAt            string           `json:"createdAt"`
	Active               bool             `json:"active"`
	LastPing             *time.Time       `json:"lastPing,omitempty"`
	Name                 string           `json:"name"`
	Capabilities         RegionCapability `json:"capabilities"`
	AgentID              string           `json:"agentID"`
	Outdated             bool             `json:"outdated"`
	CreatorId            *string          `json:"creatorId,omitempty"`
	Version              *string          `json:"version,omitempty"`
	Production           bool             `json:"production"`
	AdditionalProperties map[string]interface{}
}

PublicRegion struct for PublicRegion

func NewPublicRegion

func NewPublicRegion(id string, baseUrl string, createdAt string, active bool, name string, capabilities RegionCapability, agentID string, outdated bool, production bool) *PublicRegion

NewPublicRegion instantiates a new PublicRegion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublicRegionWithDefaults

func NewPublicRegionWithDefaults() *PublicRegion

NewPublicRegionWithDefaults instantiates a new PublicRegion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublicRegion) GetActive

func (o *PublicRegion) GetActive() bool

GetActive returns the Active field value

func (*PublicRegion) GetActiveOk

func (o *PublicRegion) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*PublicRegion) GetAgentID

func (o *PublicRegion) GetAgentID() string

GetAgentID returns the AgentID field value

func (*PublicRegion) GetAgentIDOk

func (o *PublicRegion) GetAgentIDOk() (*string, bool)

GetAgentIDOk returns a tuple with the AgentID field value and a boolean to check if the value has been set.

func (*PublicRegion) GetBaseUrl

func (o *PublicRegion) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value

func (*PublicRegion) GetBaseUrlOk

func (o *PublicRegion) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value and a boolean to check if the value has been set.

func (*PublicRegion) GetCapabilities

func (o *PublicRegion) GetCapabilities() RegionCapability

GetCapabilities returns the Capabilities field value

func (*PublicRegion) GetCapabilitiesOk

func (o *PublicRegion) GetCapabilitiesOk() (*RegionCapability, bool)

GetCapabilitiesOk returns a tuple with the Capabilities field value and a boolean to check if the value has been set.

func (*PublicRegion) GetCreatedAt

func (o *PublicRegion) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*PublicRegion) GetCreatedAtOk

func (o *PublicRegion) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*PublicRegion) GetCreatorId

func (o *PublicRegion) GetCreatorId() string

GetCreatorId returns the CreatorId field value if set, zero value otherwise.

func (*PublicRegion) GetCreatorIdOk

func (o *PublicRegion) GetCreatorIdOk() (*string, bool)

GetCreatorIdOk returns a tuple with the CreatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicRegion) GetId

func (o *PublicRegion) GetId() string

GetId returns the Id field value

func (*PublicRegion) GetIdOk

func (o *PublicRegion) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PublicRegion) GetLastPing

func (o *PublicRegion) GetLastPing() time.Time

GetLastPing returns the LastPing field value if set, zero value otherwise.

func (*PublicRegion) GetLastPingOk

func (o *PublicRegion) GetLastPingOk() (*time.Time, bool)

GetLastPingOk returns a tuple with the LastPing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicRegion) GetName

func (o *PublicRegion) GetName() string

GetName returns the Name field value

func (*PublicRegion) GetNameOk

func (o *PublicRegion) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PublicRegion) GetOutdated

func (o *PublicRegion) GetOutdated() bool

GetOutdated returns the Outdated field value

func (*PublicRegion) GetOutdatedOk

func (o *PublicRegion) GetOutdatedOk() (*bool, bool)

GetOutdatedOk returns a tuple with the Outdated field value and a boolean to check if the value has been set.

func (*PublicRegion) GetProduction

func (o *PublicRegion) GetProduction() bool

GetProduction returns the Production field value

func (*PublicRegion) GetProductionOk

func (o *PublicRegion) GetProductionOk() (*bool, bool)

GetProductionOk returns a tuple with the Production field value and a boolean to check if the value has been set.

func (*PublicRegion) GetVersion

func (o *PublicRegion) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*PublicRegion) GetVersionOk

func (o *PublicRegion) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicRegion) HasCreatorId

func (o *PublicRegion) HasCreatorId() bool

HasCreatorId returns a boolean if a field has been set.

func (*PublicRegion) HasLastPing

func (o *PublicRegion) HasLastPing() bool

HasLastPing returns a boolean if a field has been set.

func (*PublicRegion) HasVersion

func (o *PublicRegion) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (PublicRegion) MarshalJSON

func (o PublicRegion) MarshalJSON() ([]byte, error)

func (*PublicRegion) SetActive

func (o *PublicRegion) SetActive(v bool)

SetActive sets field value

func (*PublicRegion) SetAgentID

func (o *PublicRegion) SetAgentID(v string)

SetAgentID sets field value

func (*PublicRegion) SetBaseUrl

func (o *PublicRegion) SetBaseUrl(v string)

SetBaseUrl sets field value

func (*PublicRegion) SetCapabilities

func (o *PublicRegion) SetCapabilities(v RegionCapability)

SetCapabilities sets field value

func (*PublicRegion) SetCreatedAt

func (o *PublicRegion) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*PublicRegion) SetCreatorId

func (o *PublicRegion) SetCreatorId(v string)

SetCreatorId gets a reference to the given string and assigns it to the CreatorId field.

func (*PublicRegion) SetId

func (o *PublicRegion) SetId(v string)

SetId sets field value

func (*PublicRegion) SetLastPing

func (o *PublicRegion) SetLastPing(v time.Time)

SetLastPing gets a reference to the given time.Time and assigns it to the LastPing field.

func (*PublicRegion) SetName

func (o *PublicRegion) SetName(v string)

SetName sets field value

func (*PublicRegion) SetOutdated

func (o *PublicRegion) SetOutdated(v bool)

SetOutdated sets field value

func (*PublicRegion) SetProduction

func (o *PublicRegion) SetProduction(v bool)

SetProduction sets field value

func (*PublicRegion) SetVersion

func (o *PublicRegion) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (PublicRegion) ToMap

func (o PublicRegion) ToMap() (map[string]interface{}, error)

func (*PublicRegion) UnmarshalJSON

func (o *PublicRegion) UnmarshalJSON(data []byte) (err error)

type ReadOrganizationResponse

type ReadOrganizationResponse struct {
	Data                 *OrganizationExpanded `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReadOrganizationResponse struct for ReadOrganizationResponse

func NewReadOrganizationResponse

func NewReadOrganizationResponse() *ReadOrganizationResponse

NewReadOrganizationResponse instantiates a new ReadOrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReadOrganizationResponseWithDefaults

func NewReadOrganizationResponseWithDefaults() *ReadOrganizationResponse

NewReadOrganizationResponseWithDefaults instantiates a new ReadOrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReadOrganizationResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ReadOrganizationResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadOrganizationResponse) HasData

func (o *ReadOrganizationResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ReadOrganizationResponse) MarshalJSON

func (o ReadOrganizationResponse) MarshalJSON() ([]byte, error)

func (*ReadOrganizationResponse) SetData

SetData gets a reference to the given OrganizationExpanded and assigns it to the Data field.

func (ReadOrganizationResponse) ToMap

func (o ReadOrganizationResponse) ToMap() (map[string]interface{}, error)

func (*ReadOrganizationResponse) UnmarshalJSON

func (o *ReadOrganizationResponse) UnmarshalJSON(data []byte) (err error)

type ReadOrganizationUserResponse

type ReadOrganizationUserResponse struct {
	Data                 *OrganizationUser `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReadOrganizationUserResponse struct for ReadOrganizationUserResponse

func NewReadOrganizationUserResponse

func NewReadOrganizationUserResponse() *ReadOrganizationUserResponse

NewReadOrganizationUserResponse instantiates a new ReadOrganizationUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReadOrganizationUserResponseWithDefaults

func NewReadOrganizationUserResponseWithDefaults() *ReadOrganizationUserResponse

NewReadOrganizationUserResponseWithDefaults instantiates a new ReadOrganizationUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReadOrganizationUserResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ReadOrganizationUserResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadOrganizationUserResponse) HasData

func (o *ReadOrganizationUserResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ReadOrganizationUserResponse) MarshalJSON

func (o ReadOrganizationUserResponse) MarshalJSON() ([]byte, error)

func (*ReadOrganizationUserResponse) SetData

SetData gets a reference to the given OrganizationUser and assigns it to the Data field.

func (ReadOrganizationUserResponse) ToMap

func (o ReadOrganizationUserResponse) ToMap() (map[string]interface{}, error)

func (*ReadOrganizationUserResponse) UnmarshalJSON

func (o *ReadOrganizationUserResponse) UnmarshalJSON(data []byte) (err error)

type ReadStackUserAccess

type ReadStackUserAccess struct {
	Data                 *StackUserAccess `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReadStackUserAccess struct for ReadStackUserAccess

func NewReadStackUserAccess

func NewReadStackUserAccess() *ReadStackUserAccess

NewReadStackUserAccess instantiates a new ReadStackUserAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReadStackUserAccessWithDefaults

func NewReadStackUserAccessWithDefaults() *ReadStackUserAccess

NewReadStackUserAccessWithDefaults instantiates a new ReadStackUserAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReadStackUserAccess) GetData

func (o *ReadStackUserAccess) GetData() StackUserAccess

GetData returns the Data field value if set, zero value otherwise.

func (*ReadStackUserAccess) GetDataOk

func (o *ReadStackUserAccess) GetDataOk() (*StackUserAccess, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadStackUserAccess) HasData

func (o *ReadStackUserAccess) HasData() bool

HasData returns a boolean if a field has been set.

func (ReadStackUserAccess) MarshalJSON

func (o ReadStackUserAccess) MarshalJSON() ([]byte, error)

func (*ReadStackUserAccess) SetData

func (o *ReadStackUserAccess) SetData(v StackUserAccess)

SetData gets a reference to the given StackUserAccess and assigns it to the Data field.

func (ReadStackUserAccess) ToMap

func (o ReadStackUserAccess) ToMap() (map[string]interface{}, error)

func (*ReadStackUserAccess) UnmarshalJSON

func (o *ReadStackUserAccess) UnmarshalJSON(data []byte) (err error)

type ReadUserResponse

type ReadUserResponse struct {
	Data                 *User `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReadUserResponse struct for ReadUserResponse

func NewReadUserResponse

func NewReadUserResponse() *ReadUserResponse

NewReadUserResponse instantiates a new ReadUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReadUserResponseWithDefaults

func NewReadUserResponseWithDefaults() *ReadUserResponse

NewReadUserResponseWithDefaults instantiates a new ReadUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReadUserResponse) GetData

func (o *ReadUserResponse) GetData() User

GetData returns the Data field value if set, zero value otherwise.

func (*ReadUserResponse) GetDataOk

func (o *ReadUserResponse) GetDataOk() (*User, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadUserResponse) HasData

func (o *ReadUserResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (ReadUserResponse) MarshalJSON

func (o ReadUserResponse) MarshalJSON() ([]byte, error)

func (*ReadUserResponse) SetData

func (o *ReadUserResponse) SetData(v User)

SetData gets a reference to the given User and assigns it to the Data field.

func (ReadUserResponse) ToMap

func (o ReadUserResponse) ToMap() (map[string]interface{}, error)

func (*ReadUserResponse) UnmarshalJSON

func (o *ReadUserResponse) UnmarshalJSON(data []byte) (err error)

type Region

type Region struct {
	Id                   string           `json:"id"`
	BaseUrl              string           `json:"baseUrl"`
	CreatedAt            string           `json:"createdAt"`
	Active               bool             `json:"active"`
	LastPing             *time.Time       `json:"lastPing,omitempty"`
	Name                 string           `json:"name"`
	Capabilities         RegionCapability `json:"capabilities"`
	AgentID              string           `json:"agentID"`
	Outdated             bool             `json:"outdated"`
	CreatorId            *string          `json:"creatorId,omitempty"`
	Version              *string          `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

Region struct for Region

func NewRegion

func NewRegion(id string, baseUrl string, createdAt string, active bool, name string, capabilities RegionCapability, agentID string, outdated bool) *Region

NewRegion instantiates a new Region object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegionWithDefaults

func NewRegionWithDefaults() *Region

NewRegionWithDefaults instantiates a new Region object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Region) GetActive

func (o *Region) GetActive() bool

GetActive returns the Active field value

func (*Region) GetActiveOk

func (o *Region) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*Region) GetAgentID

func (o *Region) GetAgentID() string

GetAgentID returns the AgentID field value

func (*Region) GetAgentIDOk

func (o *Region) GetAgentIDOk() (*string, bool)

GetAgentIDOk returns a tuple with the AgentID field value and a boolean to check if the value has been set.

func (*Region) GetBaseUrl

func (o *Region) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value

func (*Region) GetBaseUrlOk

func (o *Region) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value and a boolean to check if the value has been set.

func (*Region) GetCapabilities

func (o *Region) GetCapabilities() RegionCapability

GetCapabilities returns the Capabilities field value

func (*Region) GetCapabilitiesOk

func (o *Region) GetCapabilitiesOk() (*RegionCapability, bool)

GetCapabilitiesOk returns a tuple with the Capabilities field value and a boolean to check if the value has been set.

func (*Region) GetCreatedAt

func (o *Region) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*Region) GetCreatedAtOk

func (o *Region) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*Region) GetCreatorId

func (o *Region) GetCreatorId() string

GetCreatorId returns the CreatorId field value if set, zero value otherwise.

func (*Region) GetCreatorIdOk

func (o *Region) GetCreatorIdOk() (*string, bool)

GetCreatorIdOk returns a tuple with the CreatorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) GetId

func (o *Region) GetId() string

GetId returns the Id field value

func (*Region) GetIdOk

func (o *Region) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Region) GetLastPing

func (o *Region) GetLastPing() time.Time

GetLastPing returns the LastPing field value if set, zero value otherwise.

func (*Region) GetLastPingOk

func (o *Region) GetLastPingOk() (*time.Time, bool)

GetLastPingOk returns a tuple with the LastPing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) GetName

func (o *Region) GetName() string

GetName returns the Name field value

func (*Region) GetNameOk

func (o *Region) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Region) GetOutdated

func (o *Region) GetOutdated() bool

GetOutdated returns the Outdated field value

func (*Region) GetOutdatedOk

func (o *Region) GetOutdatedOk() (*bool, bool)

GetOutdatedOk returns a tuple with the Outdated field value and a boolean to check if the value has been set.

func (*Region) GetVersion

func (o *Region) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Region) GetVersionOk

func (o *Region) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) HasCreatorId

func (o *Region) HasCreatorId() bool

HasCreatorId returns a boolean if a field has been set.

func (*Region) HasLastPing

func (o *Region) HasLastPing() bool

HasLastPing returns a boolean if a field has been set.

func (*Region) HasVersion

func (o *Region) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Region) MarshalJSON

func (o Region) MarshalJSON() ([]byte, error)

func (*Region) SetActive

func (o *Region) SetActive(v bool)

SetActive sets field value

func (*Region) SetAgentID

func (o *Region) SetAgentID(v string)

SetAgentID sets field value

func (*Region) SetBaseUrl

func (o *Region) SetBaseUrl(v string)

SetBaseUrl sets field value

func (*Region) SetCapabilities

func (o *Region) SetCapabilities(v RegionCapability)

SetCapabilities sets field value

func (*Region) SetCreatedAt

func (o *Region) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*Region) SetCreatorId

func (o *Region) SetCreatorId(v string)

SetCreatorId gets a reference to the given string and assigns it to the CreatorId field.

func (*Region) SetId

func (o *Region) SetId(v string)

SetId sets field value

func (*Region) SetLastPing

func (o *Region) SetLastPing(v time.Time)

SetLastPing gets a reference to the given time.Time and assigns it to the LastPing field.

func (*Region) SetName

func (o *Region) SetName(v string)

SetName sets field value

func (*Region) SetOutdated

func (o *Region) SetOutdated(v bool)

SetOutdated sets field value

func (*Region) SetVersion

func (o *Region) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Region) ToMap

func (o Region) ToMap() (map[string]interface{}, error)

func (*Region) UnmarshalJSON

func (o *Region) UnmarshalJSON(data []byte) (err error)

type RegionCapability

type RegionCapability struct {
	MODULE_LIST          []string `json:"MODULE_LIST,omitempty"`
	EE                   []string `json:"EE,omitempty"`
	AdditionalProperties map[string]interface{}
}

RegionCapability struct for RegionCapability

func NewRegionCapability

func NewRegionCapability() *RegionCapability

NewRegionCapability instantiates a new RegionCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegionCapabilityWithDefaults

func NewRegionCapabilityWithDefaults() *RegionCapability

NewRegionCapabilityWithDefaults instantiates a new RegionCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegionCapability) GetEE

func (o *RegionCapability) GetEE() []string

GetEE returns the EE field value if set, zero value otherwise.

func (*RegionCapability) GetEEOk

func (o *RegionCapability) GetEEOk() ([]string, bool)

GetEEOk returns a tuple with the EE field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionCapability) GetMODULE_LIST

func (o *RegionCapability) GetMODULE_LIST() []string

GetMODULE_LIST returns the MODULE_LIST field value if set, zero value otherwise.

func (*RegionCapability) GetMODULE_LISTOk

func (o *RegionCapability) GetMODULE_LISTOk() ([]string, bool)

GetMODULE_LISTOk returns a tuple with the MODULE_LIST field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionCapability) HasEE

func (o *RegionCapability) HasEE() bool

HasEE returns a boolean if a field has been set.

func (*RegionCapability) HasMODULE_LIST

func (o *RegionCapability) HasMODULE_LIST() bool

HasMODULE_LIST returns a boolean if a field has been set.

func (RegionCapability) MarshalJSON

func (o RegionCapability) MarshalJSON() ([]byte, error)

func (*RegionCapability) SetEE

func (o *RegionCapability) SetEE(v []string)

SetEE gets a reference to the given []string and assigns it to the EE field.

func (*RegionCapability) SetMODULE_LIST

func (o *RegionCapability) SetMODULE_LIST(v []string)

SetMODULE_LIST gets a reference to the given []string and assigns it to the MODULE_LIST field.

func (RegionCapability) ToMap

func (o RegionCapability) ToMap() (map[string]interface{}, error)

func (*RegionCapability) UnmarshalJSON

func (o *RegionCapability) UnmarshalJSON(data []byte) (err error)

type RegionCapabilityKeys

type RegionCapabilityKeys string

RegionCapabilityKeys the model 'RegionCapabilityKeys'

const (
	MODULE_LIST RegionCapabilityKeys = "MODULE_LIST"
	EE          RegionCapabilityKeys = "EE"
)

List of RegionCapabilityKeys

func NewRegionCapabilityKeysFromValue

func NewRegionCapabilityKeysFromValue(v string) (*RegionCapabilityKeys, error)

NewRegionCapabilityKeysFromValue returns a pointer to a valid RegionCapabilityKeys for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegionCapabilityKeys) IsValid

func (v RegionCapabilityKeys) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegionCapabilityKeys) Ptr

Ptr returns reference to RegionCapabilityKeys value

func (*RegionCapabilityKeys) UnmarshalJSON

func (v *RegionCapabilityKeys) UnmarshalJSON(src []byte) error

type Role

type Role string

Role the model 'Role'

const (
	NONE  Role = "NONE"
	ADMIN Role = "ADMIN"
	GUEST Role = "GUEST"
)

List of Role

func NewRoleFromValue

func NewRoleFromValue(v string) (*Role, error)

NewRoleFromValue returns a pointer to a valid Role for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Role) IsValid

func (v Role) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Role) Ptr

func (v Role) Ptr() *Role

Ptr returns reference to Role value

func (*Role) UnmarshalJSON

func (v *Role) UnmarshalJSON(src []byte) error

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerInfo

type ServerInfo struct {
	Version              string       `json:"version"`
	Capabilities         []Capability `json:"capabilities,omitempty"`
	ConsoleURL           *string      `json:"consoleURL,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServerInfo struct for ServerInfo

func NewServerInfo

func NewServerInfo(version string) *ServerInfo

NewServerInfo instantiates a new ServerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServerInfoWithDefaults

func NewServerInfoWithDefaults() *ServerInfo

NewServerInfoWithDefaults instantiates a new ServerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServerInfo) GetCapabilities

func (o *ServerInfo) GetCapabilities() []Capability

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*ServerInfo) GetCapabilitiesOk

func (o *ServerInfo) GetCapabilitiesOk() ([]Capability, bool)

GetCapabilitiesOk returns a tuple with the Capabilities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServerInfo) GetConsoleURL

func (o *ServerInfo) GetConsoleURL() string

GetConsoleURL returns the ConsoleURL field value if set, zero value otherwise.

func (*ServerInfo) GetConsoleURLOk

func (o *ServerInfo) GetConsoleURLOk() (*string, bool)

GetConsoleURLOk returns a tuple with the ConsoleURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServerInfo) GetVersion

func (o *ServerInfo) GetVersion() string

GetVersion returns the Version field value

func (*ServerInfo) GetVersionOk

func (o *ServerInfo) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*ServerInfo) HasCapabilities

func (o *ServerInfo) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*ServerInfo) HasConsoleURL

func (o *ServerInfo) HasConsoleURL() bool

HasConsoleURL returns a boolean if a field has been set.

func (ServerInfo) MarshalJSON

func (o ServerInfo) MarshalJSON() ([]byte, error)

func (*ServerInfo) SetCapabilities

func (o *ServerInfo) SetCapabilities(v []Capability)

SetCapabilities gets a reference to the given []Capability and assigns it to the Capabilities field.

func (*ServerInfo) SetConsoleURL

func (o *ServerInfo) SetConsoleURL(v string)

SetConsoleURL gets a reference to the given string and assigns it to the ConsoleURL field.

func (*ServerInfo) SetVersion

func (o *ServerInfo) SetVersion(v string)

SetVersion sets field value

func (ServerInfo) ToMap

func (o ServerInfo) ToMap() (map[string]interface{}, error)

func (*ServerInfo) UnmarshalJSON

func (o *ServerInfo) UnmarshalJSON(data []byte) (err error)

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Stack

type Stack struct {
	// Stack name
	Name     string             `json:"name"`
	Metadata *map[string]string `json:"metadata,omitempty"`
	// Supported only with agent version >= v0.7.0
	Version                  *string    `json:"version,omitempty"`
	Status                   string     `json:"status"`
	State                    string     `json:"state"`
	ExpectedStatus           string     `json:"expectedStatus"`
	LastStateUpdate          time.Time  `json:"lastStateUpdate"`
	LastExpectedStatusUpdate time.Time  `json:"lastExpectedStatusUpdate"`
	LastStatusUpdate         time.Time  `json:"lastStatusUpdate"`
	WarnedAt                 *time.Time `json:"warnedAt,omitempty"`
	DisposableSince          *time.Time `json:"disposableSince,omitempty"`
	// Stack is reachable through Stargate
	Reachable bool `json:"reachable"`
	// Last time the stack was reachable
	LastReachableUpdate *time.Time `json:"lastReachableUpdate,omitempty"`
	// Stack ID
	Id string `json:"id"`
	// Organization ID
	OrganizationId string `json:"organizationId"`
	// Base stack uri
	Uri string `json:"uri"`
	// The region where the stack is installed
	RegionID             string     `json:"regionID"`
	StargateEnabled      bool       `json:"stargateEnabled"`
	CreatedAt            *time.Time `json:"createdAt,omitempty"`
	DeletedAt            *time.Time `json:"deletedAt,omitempty"`
	DisabledAt           *time.Time `json:"disabledAt,omitempty"`
	AuditEnabled         *bool      `json:"auditEnabled,omitempty"`
	Synchronised         bool       `json:"synchronised"`
	UpdatedAt            *time.Time `json:"updatedAt,omitempty"`
	AdditionalProperties map[string]interface{}
}

Stack struct for Stack

func NewStack

func NewStack(name string, status string, state string, expectedStatus string, lastStateUpdate time.Time, lastExpectedStatusUpdate time.Time, lastStatusUpdate time.Time, reachable bool, id string, organizationId string, uri string, regionID string, stargateEnabled bool, synchronised bool) *Stack

NewStack instantiates a new Stack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackWithDefaults

func NewStackWithDefaults() *Stack

NewStackWithDefaults instantiates a new Stack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Stack) GetAuditEnabled

func (o *Stack) GetAuditEnabled() bool

GetAuditEnabled returns the AuditEnabled field value if set, zero value otherwise.

func (*Stack) GetAuditEnabledOk

func (o *Stack) GetAuditEnabledOk() (*bool, bool)

GetAuditEnabledOk returns a tuple with the AuditEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetCreatedAt

func (o *Stack) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Stack) GetCreatedAtOk

func (o *Stack) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetDeletedAt

func (o *Stack) GetDeletedAt() time.Time

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Stack) GetDeletedAtOk

func (o *Stack) GetDeletedAtOk() (*time.Time, bool)

GetDeletedAtOk returns a tuple with the DeletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetDisabledAt

func (o *Stack) GetDisabledAt() time.Time

GetDisabledAt returns the DisabledAt field value if set, zero value otherwise.

func (*Stack) GetDisabledAtOk

func (o *Stack) GetDisabledAtOk() (*time.Time, bool)

GetDisabledAtOk returns a tuple with the DisabledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetDisposableSince

func (o *Stack) GetDisposableSince() time.Time

GetDisposableSince returns the DisposableSince field value if set, zero value otherwise.

func (*Stack) GetDisposableSinceOk

func (o *Stack) GetDisposableSinceOk() (*time.Time, bool)

GetDisposableSinceOk returns a tuple with the DisposableSince field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetExpectedStatus

func (o *Stack) GetExpectedStatus() string

GetExpectedStatus returns the ExpectedStatus field value

func (*Stack) GetExpectedStatusOk

func (o *Stack) GetExpectedStatusOk() (*string, bool)

GetExpectedStatusOk returns a tuple with the ExpectedStatus field value and a boolean to check if the value has been set.

func (*Stack) GetId

func (o *Stack) GetId() string

GetId returns the Id field value

func (*Stack) GetIdOk

func (o *Stack) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Stack) GetLastExpectedStatusUpdate

func (o *Stack) GetLastExpectedStatusUpdate() time.Time

GetLastExpectedStatusUpdate returns the LastExpectedStatusUpdate field value

func (*Stack) GetLastExpectedStatusUpdateOk

func (o *Stack) GetLastExpectedStatusUpdateOk() (*time.Time, bool)

GetLastExpectedStatusUpdateOk returns a tuple with the LastExpectedStatusUpdate field value and a boolean to check if the value has been set.

func (*Stack) GetLastReachableUpdate

func (o *Stack) GetLastReachableUpdate() time.Time

GetLastReachableUpdate returns the LastReachableUpdate field value if set, zero value otherwise.

func (*Stack) GetLastReachableUpdateOk

func (o *Stack) GetLastReachableUpdateOk() (*time.Time, bool)

GetLastReachableUpdateOk returns a tuple with the LastReachableUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetLastStateUpdate

func (o *Stack) GetLastStateUpdate() time.Time

GetLastStateUpdate returns the LastStateUpdate field value

func (*Stack) GetLastStateUpdateOk

func (o *Stack) GetLastStateUpdateOk() (*time.Time, bool)

GetLastStateUpdateOk returns a tuple with the LastStateUpdate field value and a boolean to check if the value has been set.

func (*Stack) GetLastStatusUpdate

func (o *Stack) GetLastStatusUpdate() time.Time

GetLastStatusUpdate returns the LastStatusUpdate field value

func (*Stack) GetLastStatusUpdateOk

func (o *Stack) GetLastStatusUpdateOk() (*time.Time, bool)

GetLastStatusUpdateOk returns a tuple with the LastStatusUpdate field value and a boolean to check if the value has been set.

func (*Stack) GetMetadata

func (o *Stack) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Stack) GetMetadataOk

func (o *Stack) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetName

func (o *Stack) GetName() string

GetName returns the Name field value

func (*Stack) GetNameOk

func (o *Stack) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Stack) GetOrganizationId

func (o *Stack) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value

func (*Stack) GetOrganizationIdOk

func (o *Stack) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*Stack) GetReachable

func (o *Stack) GetReachable() bool

GetReachable returns the Reachable field value

func (*Stack) GetReachableOk

func (o *Stack) GetReachableOk() (*bool, bool)

GetReachableOk returns a tuple with the Reachable field value and a boolean to check if the value has been set.

func (*Stack) GetRegionID

func (o *Stack) GetRegionID() string

GetRegionID returns the RegionID field value

func (*Stack) GetRegionIDOk

func (o *Stack) GetRegionIDOk() (*string, bool)

GetRegionIDOk returns a tuple with the RegionID field value and a boolean to check if the value has been set.

func (*Stack) GetStargateEnabled

func (o *Stack) GetStargateEnabled() bool

GetStargateEnabled returns the StargateEnabled field value

func (*Stack) GetStargateEnabledOk

func (o *Stack) GetStargateEnabledOk() (*bool, bool)

GetStargateEnabledOk returns a tuple with the StargateEnabled field value and a boolean to check if the value has been set.

func (*Stack) GetState

func (o *Stack) GetState() string

GetState returns the State field value

func (*Stack) GetStateOk

func (o *Stack) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*Stack) GetStatus

func (o *Stack) GetStatus() string

GetStatus returns the Status field value

func (*Stack) GetStatusOk

func (o *Stack) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Stack) GetSynchronised

func (o *Stack) GetSynchronised() bool

GetSynchronised returns the Synchronised field value

func (*Stack) GetSynchronisedOk

func (o *Stack) GetSynchronisedOk() (*bool, bool)

GetSynchronisedOk returns a tuple with the Synchronised field value and a boolean to check if the value has been set.

func (*Stack) GetUpdatedAt

func (o *Stack) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Stack) GetUpdatedAtOk

func (o *Stack) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetUri

func (o *Stack) GetUri() string

GetUri returns the Uri field value

func (*Stack) GetUriOk

func (o *Stack) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value and a boolean to check if the value has been set.

func (*Stack) GetVersion

func (o *Stack) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Stack) GetVersionOk

func (o *Stack) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetWarnedAt

func (o *Stack) GetWarnedAt() time.Time

GetWarnedAt returns the WarnedAt field value if set, zero value otherwise.

func (*Stack) GetWarnedAtOk

func (o *Stack) GetWarnedAtOk() (*time.Time, bool)

GetWarnedAtOk returns a tuple with the WarnedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) HasAuditEnabled

func (o *Stack) HasAuditEnabled() bool

HasAuditEnabled returns a boolean if a field has been set.

func (*Stack) HasCreatedAt

func (o *Stack) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Stack) HasDeletedAt

func (o *Stack) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Stack) HasDisabledAt

func (o *Stack) HasDisabledAt() bool

HasDisabledAt returns a boolean if a field has been set.

func (*Stack) HasDisposableSince

func (o *Stack) HasDisposableSince() bool

HasDisposableSince returns a boolean if a field has been set.

func (*Stack) HasLastReachableUpdate

func (o *Stack) HasLastReachableUpdate() bool

HasLastReachableUpdate returns a boolean if a field has been set.

func (*Stack) HasMetadata

func (o *Stack) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Stack) HasUpdatedAt

func (o *Stack) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Stack) HasVersion

func (o *Stack) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*Stack) HasWarnedAt

func (o *Stack) HasWarnedAt() bool

HasWarnedAt returns a boolean if a field has been set.

func (Stack) MarshalJSON

func (o Stack) MarshalJSON() ([]byte, error)

func (*Stack) SetAuditEnabled

func (o *Stack) SetAuditEnabled(v bool)

SetAuditEnabled gets a reference to the given bool and assigns it to the AuditEnabled field.

func (*Stack) SetCreatedAt

func (o *Stack) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Stack) SetDeletedAt

func (o *Stack) SetDeletedAt(v time.Time)

SetDeletedAt gets a reference to the given time.Time and assigns it to the DeletedAt field.

func (*Stack) SetDisabledAt

func (o *Stack) SetDisabledAt(v time.Time)

SetDisabledAt gets a reference to the given time.Time and assigns it to the DisabledAt field.

func (*Stack) SetDisposableSince

func (o *Stack) SetDisposableSince(v time.Time)

SetDisposableSince gets a reference to the given time.Time and assigns it to the DisposableSince field.

func (*Stack) SetExpectedStatus

func (o *Stack) SetExpectedStatus(v string)

SetExpectedStatus sets field value

func (*Stack) SetId

func (o *Stack) SetId(v string)

SetId sets field value

func (*Stack) SetLastExpectedStatusUpdate

func (o *Stack) SetLastExpectedStatusUpdate(v time.Time)

SetLastExpectedStatusUpdate sets field value

func (*Stack) SetLastReachableUpdate

func (o *Stack) SetLastReachableUpdate(v time.Time)

SetLastReachableUpdate gets a reference to the given time.Time and assigns it to the LastReachableUpdate field.

func (*Stack) SetLastStateUpdate

func (o *Stack) SetLastStateUpdate(v time.Time)

SetLastStateUpdate sets field value

func (*Stack) SetLastStatusUpdate

func (o *Stack) SetLastStatusUpdate(v time.Time)

SetLastStatusUpdate sets field value

func (*Stack) SetMetadata

func (o *Stack) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*Stack) SetName

func (o *Stack) SetName(v string)

SetName sets field value

func (*Stack) SetOrganizationId

func (o *Stack) SetOrganizationId(v string)

SetOrganizationId sets field value

func (*Stack) SetReachable

func (o *Stack) SetReachable(v bool)

SetReachable sets field value

func (*Stack) SetRegionID

func (o *Stack) SetRegionID(v string)

SetRegionID sets field value

func (*Stack) SetStargateEnabled

func (o *Stack) SetStargateEnabled(v bool)

SetStargateEnabled sets field value

func (*Stack) SetState

func (o *Stack) SetState(v string)

SetState sets field value

func (*Stack) SetStatus

func (o *Stack) SetStatus(v string)

SetStatus sets field value

func (*Stack) SetSynchronised

func (o *Stack) SetSynchronised(v bool)

SetSynchronised sets field value

func (*Stack) SetUpdatedAt

func (o *Stack) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Stack) SetUri

func (o *Stack) SetUri(v string)

SetUri sets field value

func (*Stack) SetVersion

func (o *Stack) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*Stack) SetWarnedAt

func (o *Stack) SetWarnedAt(v time.Time)

SetWarnedAt gets a reference to the given time.Time and assigns it to the WarnedAt field.

func (Stack) ToMap

func (o Stack) ToMap() (map[string]interface{}, error)

func (*Stack) UnmarshalJSON

func (o *Stack) UnmarshalJSON(data []byte) (err error)

type StackData

type StackData struct {
	// Stack name
	Name                 string             `json:"name"`
	Metadata             *map[string]string `json:"metadata,omitempty"`
	AdditionalProperties map[string]interface{}
}

StackData struct for StackData

func NewStackData

func NewStackData(name string) *StackData

NewStackData instantiates a new StackData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackDataWithDefaults

func NewStackDataWithDefaults() *StackData

NewStackDataWithDefaults instantiates a new StackData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackData) GetMetadata

func (o *StackData) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*StackData) GetMetadataOk

func (o *StackData) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackData) GetName

func (o *StackData) GetName() string

GetName returns the Name field value

func (*StackData) GetNameOk

func (o *StackData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*StackData) HasMetadata

func (o *StackData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (StackData) MarshalJSON

func (o StackData) MarshalJSON() ([]byte, error)

func (*StackData) SetMetadata

func (o *StackData) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*StackData) SetName

func (o *StackData) SetName(v string)

SetName sets field value

func (StackData) ToMap

func (o StackData) ToMap() (map[string]interface{}, error)

func (*StackData) UnmarshalJSON

func (o *StackData) UnmarshalJSON(data []byte) (err error)

type StackLifeCycle

type StackLifeCycle struct {
	Status                   string     `json:"status"`
	State                    string     `json:"state"`
	ExpectedStatus           string     `json:"expectedStatus"`
	LastStateUpdate          time.Time  `json:"lastStateUpdate"`
	LastExpectedStatusUpdate time.Time  `json:"lastExpectedStatusUpdate"`
	LastStatusUpdate         time.Time  `json:"lastStatusUpdate"`
	WarnedAt                 *time.Time `json:"warnedAt,omitempty"`
	DisposableSince          *time.Time `json:"disposableSince,omitempty"`
	AdditionalProperties     map[string]interface{}
}

StackLifeCycle struct for StackLifeCycle

func NewStackLifeCycle

func NewStackLifeCycle(status string, state string, expectedStatus string, lastStateUpdate time.Time, lastExpectedStatusUpdate time.Time, lastStatusUpdate time.Time) *StackLifeCycle

NewStackLifeCycle instantiates a new StackLifeCycle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackLifeCycleWithDefaults

func NewStackLifeCycleWithDefaults() *StackLifeCycle

NewStackLifeCycleWithDefaults instantiates a new StackLifeCycle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackLifeCycle) GetDisposableSince

func (o *StackLifeCycle) GetDisposableSince() time.Time

GetDisposableSince returns the DisposableSince field value if set, zero value otherwise.

func (*StackLifeCycle) GetDisposableSinceOk

func (o *StackLifeCycle) GetDisposableSinceOk() (*time.Time, bool)

GetDisposableSinceOk returns a tuple with the DisposableSince field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackLifeCycle) GetExpectedStatus

func (o *StackLifeCycle) GetExpectedStatus() string

GetExpectedStatus returns the ExpectedStatus field value

func (*StackLifeCycle) GetExpectedStatusOk

func (o *StackLifeCycle) GetExpectedStatusOk() (*string, bool)

GetExpectedStatusOk returns a tuple with the ExpectedStatus field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetLastExpectedStatusUpdate

func (o *StackLifeCycle) GetLastExpectedStatusUpdate() time.Time

GetLastExpectedStatusUpdate returns the LastExpectedStatusUpdate field value

func (*StackLifeCycle) GetLastExpectedStatusUpdateOk

func (o *StackLifeCycle) GetLastExpectedStatusUpdateOk() (*time.Time, bool)

GetLastExpectedStatusUpdateOk returns a tuple with the LastExpectedStatusUpdate field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetLastStateUpdate

func (o *StackLifeCycle) GetLastStateUpdate() time.Time

GetLastStateUpdate returns the LastStateUpdate field value

func (*StackLifeCycle) GetLastStateUpdateOk

func (o *StackLifeCycle) GetLastStateUpdateOk() (*time.Time, bool)

GetLastStateUpdateOk returns a tuple with the LastStateUpdate field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetLastStatusUpdate

func (o *StackLifeCycle) GetLastStatusUpdate() time.Time

GetLastStatusUpdate returns the LastStatusUpdate field value

func (*StackLifeCycle) GetLastStatusUpdateOk

func (o *StackLifeCycle) GetLastStatusUpdateOk() (*time.Time, bool)

GetLastStatusUpdateOk returns a tuple with the LastStatusUpdate field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetState

func (o *StackLifeCycle) GetState() string

GetState returns the State field value

func (*StackLifeCycle) GetStateOk

func (o *StackLifeCycle) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetStatus

func (o *StackLifeCycle) GetStatus() string

GetStatus returns the Status field value

func (*StackLifeCycle) GetStatusOk

func (o *StackLifeCycle) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*StackLifeCycle) GetWarnedAt

func (o *StackLifeCycle) GetWarnedAt() time.Time

GetWarnedAt returns the WarnedAt field value if set, zero value otherwise.

func (*StackLifeCycle) GetWarnedAtOk

func (o *StackLifeCycle) GetWarnedAtOk() (*time.Time, bool)

GetWarnedAtOk returns a tuple with the WarnedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackLifeCycle) HasDisposableSince

func (o *StackLifeCycle) HasDisposableSince() bool

HasDisposableSince returns a boolean if a field has been set.

func (*StackLifeCycle) HasWarnedAt

func (o *StackLifeCycle) HasWarnedAt() bool

HasWarnedAt returns a boolean if a field has been set.

func (StackLifeCycle) MarshalJSON

func (o StackLifeCycle) MarshalJSON() ([]byte, error)

func (*StackLifeCycle) SetDisposableSince

func (o *StackLifeCycle) SetDisposableSince(v time.Time)

SetDisposableSince gets a reference to the given time.Time and assigns it to the DisposableSince field.

func (*StackLifeCycle) SetExpectedStatus

func (o *StackLifeCycle) SetExpectedStatus(v string)

SetExpectedStatus sets field value

func (*StackLifeCycle) SetLastExpectedStatusUpdate

func (o *StackLifeCycle) SetLastExpectedStatusUpdate(v time.Time)

SetLastExpectedStatusUpdate sets field value

func (*StackLifeCycle) SetLastStateUpdate

func (o *StackLifeCycle) SetLastStateUpdate(v time.Time)

SetLastStateUpdate sets field value

func (*StackLifeCycle) SetLastStatusUpdate

func (o *StackLifeCycle) SetLastStatusUpdate(v time.Time)

SetLastStatusUpdate sets field value

func (*StackLifeCycle) SetState

func (o *StackLifeCycle) SetState(v string)

SetState sets field value

func (*StackLifeCycle) SetStatus

func (o *StackLifeCycle) SetStatus(v string)

SetStatus sets field value

func (*StackLifeCycle) SetWarnedAt

func (o *StackLifeCycle) SetWarnedAt(v time.Time)

SetWarnedAt gets a reference to the given time.Time and assigns it to the WarnedAt field.

func (StackLifeCycle) ToMap

func (o StackLifeCycle) ToMap() (map[string]interface{}, error)

func (*StackLifeCycle) UnmarshalJSON

func (o *StackLifeCycle) UnmarshalJSON(data []byte) (err error)

type StackReachability

type StackReachability struct {
	// Stack is reachable through Stargate
	Reachable bool `json:"reachable"`
	// Last time the stack was reachable
	LastReachableUpdate  *time.Time `json:"lastReachableUpdate,omitempty"`
	AdditionalProperties map[string]interface{}
}

StackReachability struct for StackReachability

func NewStackReachability

func NewStackReachability(reachable bool) *StackReachability

NewStackReachability instantiates a new StackReachability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReachabilityWithDefaults

func NewStackReachabilityWithDefaults() *StackReachability

NewStackReachabilityWithDefaults instantiates a new StackReachability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReachability) GetLastReachableUpdate

func (o *StackReachability) GetLastReachableUpdate() time.Time

GetLastReachableUpdate returns the LastReachableUpdate field value if set, zero value otherwise.

func (*StackReachability) GetLastReachableUpdateOk

func (o *StackReachability) GetLastReachableUpdateOk() (*time.Time, bool)

GetLastReachableUpdateOk returns a tuple with the LastReachableUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReachability) GetReachable

func (o *StackReachability) GetReachable() bool

GetReachable returns the Reachable field value

func (*StackReachability) GetReachableOk

func (o *StackReachability) GetReachableOk() (*bool, bool)

GetReachableOk returns a tuple with the Reachable field value and a boolean to check if the value has been set.

func (*StackReachability) HasLastReachableUpdate

func (o *StackReachability) HasLastReachableUpdate() bool

HasLastReachableUpdate returns a boolean if a field has been set.

func (StackReachability) MarshalJSON

func (o StackReachability) MarshalJSON() ([]byte, error)

func (*StackReachability) SetLastReachableUpdate

func (o *StackReachability) SetLastReachableUpdate(v time.Time)

SetLastReachableUpdate gets a reference to the given time.Time and assigns it to the LastReachableUpdate field.

func (*StackReachability) SetReachable

func (o *StackReachability) SetReachable(v bool)

SetReachable sets field value

func (StackReachability) ToMap

func (o StackReachability) ToMap() (map[string]interface{}, error)

func (*StackReachability) UnmarshalJSON

func (o *StackReachability) UnmarshalJSON(data []byte) (err error)

type StackUserAccess

type StackUserAccess struct {
	// Stack ID
	StackId string `json:"stackId"`
	// User ID
	UserId string `json:"userId"`
	// User email
	Email                string `json:"email"`
	Role                 Role   `json:"role"`
	AdditionalProperties map[string]interface{}
}

StackUserAccess struct for StackUserAccess

func NewStackUserAccess

func NewStackUserAccess(stackId string, userId string, email string, role Role) *StackUserAccess

NewStackUserAccess instantiates a new StackUserAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackUserAccessWithDefaults

func NewStackUserAccessWithDefaults() *StackUserAccess

NewStackUserAccessWithDefaults instantiates a new StackUserAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackUserAccess) GetEmail

func (o *StackUserAccess) GetEmail() string

GetEmail returns the Email field value

func (*StackUserAccess) GetEmailOk

func (o *StackUserAccess) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*StackUserAccess) GetRole

func (o *StackUserAccess) GetRole() Role

GetRole returns the Role field value

func (*StackUserAccess) GetRoleOk

func (o *StackUserAccess) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (*StackUserAccess) GetStackId

func (o *StackUserAccess) GetStackId() string

GetStackId returns the StackId field value

func (*StackUserAccess) GetStackIdOk

func (o *StackUserAccess) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value and a boolean to check if the value has been set.

func (*StackUserAccess) GetUserId

func (o *StackUserAccess) GetUserId() string

GetUserId returns the UserId field value

func (*StackUserAccess) GetUserIdOk

func (o *StackUserAccess) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (StackUserAccess) MarshalJSON

func (o StackUserAccess) MarshalJSON() ([]byte, error)

func (*StackUserAccess) SetEmail

func (o *StackUserAccess) SetEmail(v string)

SetEmail sets field value

func (*StackUserAccess) SetRole

func (o *StackUserAccess) SetRole(v Role)

SetRole sets field value

func (*StackUserAccess) SetStackId

func (o *StackUserAccess) SetStackId(v string)

SetStackId sets field value

func (*StackUserAccess) SetUserId

func (o *StackUserAccess) SetUserId(v string)

SetUserId sets field value

func (StackUserAccess) ToMap

func (o StackUserAccess) ToMap() (map[string]interface{}, error)

func (*StackUserAccess) UnmarshalJSON

func (o *StackUserAccess) UnmarshalJSON(data []byte) (err error)

type StackUserAccessResponse

type StackUserAccessResponse struct {
	Data                 []StackUserAccess `json:"data,omitempty"`
	AdditionalProperties map[string]interface{}
}

StackUserAccessResponse struct for StackUserAccessResponse

func NewStackUserAccessResponse

func NewStackUserAccessResponse() *StackUserAccessResponse

NewStackUserAccessResponse instantiates a new StackUserAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackUserAccessResponseWithDefaults

func NewStackUserAccessResponseWithDefaults() *StackUserAccessResponse

NewStackUserAccessResponseWithDefaults instantiates a new StackUserAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackUserAccessResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*StackUserAccessResponse) GetDataOk

func (o *StackUserAccessResponse) GetDataOk() ([]StackUserAccess, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackUserAccessResponse) HasData

func (o *StackUserAccessResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (StackUserAccessResponse) MarshalJSON

func (o StackUserAccessResponse) MarshalJSON() ([]byte, error)

func (*StackUserAccessResponse) SetData

func (o *StackUserAccessResponse) SetData(v []StackUserAccess)

SetData gets a reference to the given []StackUserAccess and assigns it to the Data field.

func (StackUserAccessResponse) ToMap

func (o StackUserAccessResponse) ToMap() (map[string]interface{}, error)

func (*StackUserAccessResponse) UnmarshalJSON

func (o *StackUserAccessResponse) UnmarshalJSON(data []byte) (err error)

type StackVersion

type StackVersion struct {
	// Supported only with agent version >= v0.7.0
	Version              *string `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

StackVersion struct for StackVersion

func NewStackVersion

func NewStackVersion() *StackVersion

NewStackVersion instantiates a new StackVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackVersionWithDefaults

func NewStackVersionWithDefaults() *StackVersion

NewStackVersionWithDefaults instantiates a new StackVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackVersion) GetVersion

func (o *StackVersion) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*StackVersion) GetVersionOk

func (o *StackVersion) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackVersion) HasVersion

func (o *StackVersion) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (StackVersion) MarshalJSON

func (o StackVersion) MarshalJSON() ([]byte, error)

func (*StackVersion) SetVersion

func (o *StackVersion) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (StackVersion) ToMap

func (o StackVersion) ToMap() (map[string]interface{}, error)

func (*StackVersion) UnmarshalJSON

func (o *StackVersion) UnmarshalJSON(data []byte) (err error)

type SystemRole

type SystemRole string

SystemRole the model 'SystemRole'

const (
	USER   SystemRole = "USER"
	SYSTEM SystemRole = "SYSTEM"
)

List of SystemRole

func NewSystemRoleFromValue

func NewSystemRoleFromValue(v string) (*SystemRole, error)

NewSystemRoleFromValue returns a pointer to a valid SystemRole for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SystemRole) IsValid

func (v SystemRole) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SystemRole) Ptr

func (v SystemRole) Ptr() *SystemRole

Ptr returns reference to SystemRole value

func (*SystemRole) UnmarshalJSON

func (v *SystemRole) UnmarshalJSON(src []byte) error

type UpdateOrganizationUserRequest

type UpdateOrganizationUserRequest struct {
	Role                 Role `json:"role"`
	AdditionalProperties map[string]interface{}
}

UpdateOrganizationUserRequest struct for UpdateOrganizationUserRequest

func NewUpdateOrganizationUserRequest

func NewUpdateOrganizationUserRequest(role Role) *UpdateOrganizationUserRequest

NewUpdateOrganizationUserRequest instantiates a new UpdateOrganizationUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateOrganizationUserRequestWithDefaults

func NewUpdateOrganizationUserRequestWithDefaults() *UpdateOrganizationUserRequest

NewUpdateOrganizationUserRequestWithDefaults instantiates a new UpdateOrganizationUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateOrganizationUserRequest) GetRole

func (o *UpdateOrganizationUserRequest) GetRole() Role

GetRole returns the Role field value

func (*UpdateOrganizationUserRequest) GetRoleOk

func (o *UpdateOrganizationUserRequest) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (UpdateOrganizationUserRequest) MarshalJSON

func (o UpdateOrganizationUserRequest) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationUserRequest) SetRole

func (o *UpdateOrganizationUserRequest) SetRole(v Role)

SetRole sets field value

func (UpdateOrganizationUserRequest) ToMap

func (o UpdateOrganizationUserRequest) ToMap() (map[string]interface{}, error)

func (*UpdateOrganizationUserRequest) UnmarshalJSON

func (o *UpdateOrganizationUserRequest) UnmarshalJSON(data []byte) (err error)

type UpdateStackRequest

type UpdateStackRequest struct {
	// Stack name
	Name                 string             `json:"name"`
	Metadata             *map[string]string `json:"metadata,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateStackRequest struct for UpdateStackRequest

func NewUpdateStackRequest

func NewUpdateStackRequest(name string) *UpdateStackRequest

NewUpdateStackRequest instantiates a new UpdateStackRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateStackRequestWithDefaults

func NewUpdateStackRequestWithDefaults() *UpdateStackRequest

NewUpdateStackRequestWithDefaults instantiates a new UpdateStackRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateStackRequest) GetMetadata

func (o *UpdateStackRequest) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UpdateStackRequest) GetMetadataOk

func (o *UpdateStackRequest) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateStackRequest) GetName

func (o *UpdateStackRequest) GetName() string

GetName returns the Name field value

func (*UpdateStackRequest) GetNameOk

func (o *UpdateStackRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateStackRequest) HasMetadata

func (o *UpdateStackRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (UpdateStackRequest) MarshalJSON

func (o UpdateStackRequest) MarshalJSON() ([]byte, error)

func (*UpdateStackRequest) SetMetadata

func (o *UpdateStackRequest) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*UpdateStackRequest) SetName

func (o *UpdateStackRequest) SetName(v string)

SetName sets field value

func (UpdateStackRequest) ToMap

func (o UpdateStackRequest) ToMap() (map[string]interface{}, error)

func (*UpdateStackRequest) UnmarshalJSON

func (o *UpdateStackRequest) UnmarshalJSON(data []byte) (err error)

type UpdateStackUserRequest

type UpdateStackUserRequest struct {
	Role                 Role `json:"role"`
	AdditionalProperties map[string]interface{}
}

UpdateStackUserRequest struct for UpdateStackUserRequest

func NewUpdateStackUserRequest

func NewUpdateStackUserRequest(role Role) *UpdateStackUserRequest

NewUpdateStackUserRequest instantiates a new UpdateStackUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateStackUserRequestWithDefaults

func NewUpdateStackUserRequestWithDefaults() *UpdateStackUserRequest

NewUpdateStackUserRequestWithDefaults instantiates a new UpdateStackUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateStackUserRequest) GetRole

func (o *UpdateStackUserRequest) GetRole() Role

GetRole returns the Role field value

func (*UpdateStackUserRequest) GetRoleOk

func (o *UpdateStackUserRequest) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (UpdateStackUserRequest) MarshalJSON

func (o UpdateStackUserRequest) MarshalJSON() ([]byte, error)

func (*UpdateStackUserRequest) SetRole

func (o *UpdateStackUserRequest) SetRole(v Role)

SetRole sets field value

func (UpdateStackUserRequest) ToMap

func (o UpdateStackUserRequest) ToMap() (map[string]interface{}, error)

func (*UpdateStackUserRequest) UnmarshalJSON

func (o *UpdateStackUserRequest) UnmarshalJSON(data []byte) (err error)

type User

type User struct {
	Email string `json:"email"`
	// User ID
	Id                   string      `json:"id"`
	Role                 *SystemRole `json:"role,omitempty"`
	AdditionalProperties map[string]interface{}
}

User struct for User

func NewUser

func NewUser(email string, id string) *User

NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*User) GetEmail

func (o *User) GetEmail() string

GetEmail returns the Email field value

func (*User) GetEmailOk

func (o *User) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*User) GetId

func (o *User) GetId() string

GetId returns the Id field value

func (*User) GetIdOk

func (o *User) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*User) GetRole

func (o *User) GetRole() SystemRole

GetRole returns the Role field value if set, zero value otherwise.

func (*User) GetRoleOk

func (o *User) GetRoleOk() (*SystemRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasRole

func (o *User) HasRole() bool

HasRole returns a boolean if a field has been set.

func (User) MarshalJSON

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetEmail

func (o *User) SetEmail(v string)

SetEmail sets field value

func (*User) SetId

func (o *User) SetId(v string)

SetId sets field value

func (*User) SetRole

func (o *User) SetRole(v SystemRole)

SetRole gets a reference to the given SystemRole and assigns it to the Role field.

func (User) ToMap

func (o User) ToMap() (map[string]interface{}, error)

func (*User) UnmarshalJSON

func (o *User) UnmarshalJSON(data []byte) (err error)

type UserData

type UserData struct {
	Email                string `json:"email"`
	AdditionalProperties map[string]interface{}
}

UserData struct for UserData

func NewUserData

func NewUserData(email string) *UserData

NewUserData instantiates a new UserData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserDataWithDefaults

func NewUserDataWithDefaults() *UserData

NewUserDataWithDefaults instantiates a new UserData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserData) GetEmail

func (o *UserData) GetEmail() string

GetEmail returns the Email field value

func (*UserData) GetEmailOk

func (o *UserData) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (UserData) MarshalJSON

func (o UserData) MarshalJSON() ([]byte, error)

func (*UserData) SetEmail

func (o *UserData) SetEmail(v string)

SetEmail sets field value

func (UserData) ToMap

func (o UserData) ToMap() (map[string]interface{}, error)

func (*UserData) UnmarshalJSON

func (o *UserData) UnmarshalJSON(data []byte) (err error)

type Version

type Version struct {
	Name                 string            `json:"name"`
	Versions             map[string]string `json:"versions"`
	RegionID             string            `json:"regionID"`
	AdditionalProperties map[string]interface{}
}

Version struct for Version

func NewVersion

func NewVersion(name string, versions map[string]string, regionID string) *Version

NewVersion instantiates a new Version object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVersionWithDefaults

func NewVersionWithDefaults() *Version

NewVersionWithDefaults instantiates a new Version object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Version) GetName

func (o *Version) GetName() string

GetName returns the Name field value

func (*Version) GetNameOk

func (o *Version) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Version) GetRegionID

func (o *Version) GetRegionID() string

GetRegionID returns the RegionID field value

func (*Version) GetRegionIDOk

func (o *Version) GetRegionIDOk() (*string, bool)

GetRegionIDOk returns a tuple with the RegionID field value and a boolean to check if the value has been set.

func (*Version) GetVersions

func (o *Version) GetVersions() map[string]string

GetVersions returns the Versions field value

func (*Version) GetVersionsOk

func (o *Version) GetVersionsOk() (*map[string]string, bool)

GetVersionsOk returns a tuple with the Versions field value and a boolean to check if the value has been set.

func (Version) MarshalJSON

func (o Version) MarshalJSON() ([]byte, error)

func (*Version) SetName

func (o *Version) SetName(v string)

SetName sets field value

func (*Version) SetRegionID

func (o *Version) SetRegionID(v string)

SetRegionID sets field value

func (*Version) SetVersions

func (o *Version) SetVersions(v map[string]string)

SetVersions sets field value

func (Version) ToMap

func (o Version) ToMap() (map[string]interface{}, error)

func (*Version) UnmarshalJSON

func (o *Version) UnmarshalJSON(data []byte) (err error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL