citrixquickcreate

package
v1.0.8 Latest Latest
Warning

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

Go to latest
Published: Nov 12, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

README

Go API client for citrixquickcreate

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: DaaSTechPreview
  • Package version: 1.0.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/net/context

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

import citrixquickcreate "github.com/citrix/citrix-daas-rest-go/citrixquickcreate"

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 sw.ContextServerIndex of type int.

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

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

ctx := context.WithValue(context.Background(), citrixquickcreate.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 sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://api.cloud.com/quickcreateservice

Class Method HTTP request Description
AccountQCS AddAccountAsync Post /{customerId}/accounts Add a account
AccountQCS DeleteCustomerAccountAsync Delete /{customerId}/accounts/{accountId} Deletes the account configured for the specified customer
AccountQCS GetAccountResourcesAsync Post /{customerId}/accounts/{accountId}/resources/$search Get the account resources for the specified customer
AccountQCS GetCustomerAccountAsync Get /{customerId}/accounts/{accountId} Get the account configured for the specified customer
AccountQCS GetCustomerAccountResourcesAsync Post /{customerId}/accounts/resources/$search Get the account resources for the specified customer
AccountQCS GetCustomerAccountTaskAsync Get /{customerId}/accounts/{accountId}/tasks/{taskId} Gets account task
AccountQCS GetCustomerAccountsAsync Get /{customerId}/accounts Get the accounts configured for the specified customer
AccountQCS InititateAccountTaskAsync Post /{customerId}/accounts/{accountId}/tasks Registers account BYOL account
AccountQCS UpdateCustomerAccountAsync Patch /{customerId}/accounts/{accountId} Updates the account access keys for the specified customer
ConnectionQCS AddResourceConnectionAsync Post /{customerId}/accounts/{accountId}/connections/$initiate Adds resource connection asyncronously
ConnectionQCS GetAllResourceConnectionsAsync Get /{customerId}/connections Gets all resource connections without specifying account
ConnectionQCS GetResourceConnectionAsync Get /{customerId}/accounts/{accountId}/connections/{connectionId} Gets resource connection
ConnectionQCS GetResourceConnectionsAsync Get /{customerId}/accounts/{accountId}/connections Gets resource connections
ConnectionQCS ModifyResourceConnectionAsync Patch /{customerId}/accounts/{accountId}/connections/{connectionId} Modifies connection
ConnectionQCS RemoveResourceConnectionAsync Delete /{customerId}/accounts/{accountId}/connections/{connectionId} Removes connection
DeploymentQCS AddMachineAsync Post /{customerId}/deployments/{deploymentId}/$addMachines Adds machine to deployment
DeploymentQCS DeleteDeploymentAsync Delete /{customerId}/deployments/{deploymentId} Delete deployment
DeploymentQCS GetDeploymentAsync Get /{customerId}/deployments/{deploymentId} Gets deployment with vdas
DeploymentQCS GetDeploymentsAsync Get /{customerId}/deployments Gets deployments
DeploymentQCS InitiateDeleteDeploymentAsync Post /{customerId}/deployments/{deploymentId}/$initiateDelete Initiate delete deployment
DeploymentQCS InitiateDeploymentAsync Post /{customerId}/deployments/$initiate Initiates deployment
DeploymentQCS InitiateRemoveMachineAsync Post /{customerId}/deployments/{deploymentId}/machines/{machineId}/$initiateDelete Initiate removal of machine from deployment
DeploymentQCS PatchMachinesAsync Patch /{customerId}/deployments/{deploymentId}/machines Turn on or off the deployment mode for deployment machines
DeploymentQCS RemoveMachineAsync Delete /{customerId}/deployments/{deploymentId}/machines/{machineId} Removes machine to deployment
DeploymentQCS RemoveMachinesAsync Post /{customerId}/deployments/{deploymentId}/machines/$delete Removes machines from deployment
DeploymentQCS RestartMachineAsync Post /{customerId}/deployments/{deploymentId}/machines/{machineId}/$restart Restart a machine
DeploymentQCS SaveAsImageAsync Post /{customerId}/deployments/{deploymentId}/machines/{machineId}/$saveAsImage Save image to account
DeploymentQCS UpdateDeploymentImageAsync Post /{customerId}/deployments/{deploymentId}/image/$update Update image for a deployment
DeploymentQCS UpdateDeploymentPropertiesAsync Post /{customerId}/deployments/{deploymentId}/$update Updates deployment properties
DeploymentQCS UpdateMachineAsync Post /{customerId}/deployments/{deploymentId}/machines/{machineId}/$update Updates machine in deployment
ImageQCS CopyImageAsync Post /{customerId}/accounts/{accountId}/images/{imageId}/$copy Makes a copy of a workspace image
ImageQCS GetImageAsync Get /{customerId}/accounts/{accountId}/images/{imageId} Gets image from workspace
ImageQCS GetImagesAsync Get /{customerId}/accounts/{accountId}/images Gets images from workspace
ImageQCS ImportImageAsync Post /{customerId}/accounts/{accountId}/images/$import Imports image to workspace
ImageQCS RemoveImageAsync Delete /{customerId}/accounts/{accountId}/images/{imageId} Removes image to workspace
TasksQCS GetTaskAsync Get /{customerId}/tasks/{taskId} Get the status of a task

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

CWSAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		sw.ContextAPIKeys,
		map[string]sw.APIKey{
			"Authorization": {Key: "API_KEY_STRING"},
		},
	)
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 (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// 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 AllowedAccountStateEnumValues = []AccountState{
	"AUTHENTICATED",
	"PENDING",
	"ERROR",
	"UNKNOWN",
}

All allowed values of AccountState enum

View Source
var AllowedAccountTaskOperationTypeEnumValues = []AccountTaskOperationType{
	"AWS_BYOL_REGISTRATION",
	"DELETE_CONNECTOR",
}

All allowed values of AccountTaskOperationType enum

View Source
var AllowedAccountTypeEnumValues = []AccountType{
	"AWSEDC",
}

All allowed values of AccountType enum

View Source
var AllowedAllocationTypeEnumValues = []AllocationType{
	"Unknown",
	"Static",
	"Random",
}

All allowed values of AllocationType enum

View Source
var AllowedAwsAccountResourceTypeEnumValues = []AwsAccountResourceType{
	"AWS_DIRECTORY",
	"AWS_VPC",
	"AWS_SUBNET",
	"AWS_SECGROUP",
	"AWS_CIDRRANGE",
	"AWS_AMI",
	"AWS_REGIONS",
	"AWS_BYOL_REGISTRATION",
	"AWS_CITRIXIAMUSER",
	"AWS_CLOUDFORMATION",
	"AWS_EC2_INSTANCE_TYPE",
	"AWS_EC2_KEY_PAIR",
}

All allowed values of AwsAccountResourceType enum

View Source
var AllowedAwsEdcAccountAuthTypeEnumValues = []AwsEdcAccountAuthType{
	"ASSUME_ROLE",
	"ACCESS_KEY",
}

All allowed values of AwsEdcAccountAuthType enum

View Source
var AllowedAwsEdcAmiImageArchitectureEnumValues = []AwsEdcAmiImageArchitecture{
	"ARM64",
	"I386",
	"X86_64",
}

All allowed values of AwsEdcAmiImageArchitecture enum

View Source
var AllowedAwsEdcAmiImageBootModeEnumValues = []AwsEdcAmiImageBootMode{
	"LEGACYBIOS",
	"UEFI",
}

All allowed values of AwsEdcAmiImageBootMode enum

View Source
var AllowedAwsEdcAmiImagePlatformEnumValues = []AwsEdcAmiImagePlatform{
	"WINDOWS",
	"LINUX",
}

All allowed values of AwsEdcAmiImagePlatform enum

View Source
var AllowedAwsEdcAmiImageStatusEnumValues = []AwsEdcAmiImageStatus{
	"AVAILABLE",
	"DEREGISTERED",
	"ERROR",
	"FAILED",
	"INVALID",
	"PENDING",
	"TRANSIENT",
}

All allowed values of AwsEdcAmiImageStatus enum

View Source
var AllowedAwsEdcAmiImageTypeEnumValues = []AwsEdcAmiImageType{
	"KERNEL",
	"MACHINE",
	"RAMDISK",
}

All allowed values of AwsEdcAmiImageType enum

View Source
var AllowedAwsEdcAmiImageVirtualizationEnumValues = []AwsEdcAmiImageVirtualization{
	"HVM",
	"PARAVIRTUAL",
}

All allowed values of AwsEdcAmiImageVirtualization enum

View Source
var AllowedAwsEdcAmiImportApplicationsEnumValues = []AwsEdcAmiImportApplications{
	"Microsoft_Office_2019",
	"None",
}

All allowed values of AwsEdcAmiImportApplications enum

View Source
var AllowedAwsEdcDedicatedTenancyStateEnumValues = []AwsEdcDedicatedTenancyState{
	"DISABLED",
	"PENDING",
	"FAILED",
	"COMPLETED",
}

All allowed values of AwsEdcDedicatedTenancyState enum

View Source
var AllowedAwsEdcDirectoryRegistrationStatusEnumValues = []AwsEdcDirectoryRegistrationStatus{
	"REGISTERED",
	"REGISTERING",
	"DEREGISTERED",
	"DEREGISTERING",
	"ERROR",
}

All allowed values of AwsEdcDirectoryRegistrationStatus enum

View Source
var AllowedAwsEdcDirectorySizeEnumValues = []AwsEdcDirectorySize{
	"SMALL",
	"LARGE",
}

All allowed values of AwsEdcDirectorySize enum

View Source
var AllowedAwsEdcDirectoryStatusEnumValues = []AwsEdcDirectoryStatus{
	"ACTIVE",
	"CREATED",
	"CREATING",
	"DELETED",
	"DELETING",
	"FAILED",
	"IMPARED",
	"INOPERABLE",
	"REQUESTED",
	"RESTOREFAILED",
	"RESTORING",
}

All allowed values of AwsEdcDirectoryStatus enum

View Source
var AllowedAwsEdcDirectoryTenancyEnumValues = []AwsEdcDirectoryTenancy{
	"SHARED",
	"DEDICATED",
}

All allowed values of AwsEdcDirectoryTenancy enum

View Source
var AllowedAwsEdcDirectoryTypeEnumValues = []AwsEdcDirectoryType{
	"ADCONNECTOR",
	"AD_CONNECTOR",
	"SIMPLEAD",
	"SIMPLE_AD",
	"MICROSOFTAD",
	"SHAREDMICROSOFTAD",
}

All allowed values of AwsEdcDirectoryType enum

View Source
var AllowedAwsEdcSubnetStatusEnumValues = []AwsEdcSubnetStatus{
	"AVAILABLE",
	"PENDING",
}

All allowed values of AwsEdcSubnetStatus enum

View Source
var AllowedAwsEdcVpcStateEnumValues = []AwsEdcVpcState{
	"AVAILABLE",
	"PENDING",
}

All allowed values of AwsEdcVpcState enum

View Source
var AllowedAwsEdcVpcTenancyEnumValues = []AwsEdcVpcTenancy{
	"DEDICATED",
	"DEFAULT",
	"HOST",
}

All allowed values of AwsEdcVpcTenancy enum

View Source
var AllowedAwsEdcWorkspaceComputeEnumValues = []AwsEdcWorkspaceCompute{
	"GRAPHICS",
	"GRAPHICSPRO",
	"GRAPHICS_G4DN",
	"GRAPHICSPRO_G4DN",
	"PERFORMANCE",
	"POWER",
	"POWERPRO",
	"STANDARD",
	"VALUE",
}

All allowed values of AwsEdcWorkspaceCompute enum

View Source
var AllowedAwsEdcWorkspaceImageIngestionProcessEnumValues = []AwsEdcWorkspaceImageIngestionProcess{
	"BYOL_REGULAR_BYOP",
	"BYOL_GRAPHICS_G4DN_BYOP",
}

All allowed values of AwsEdcWorkspaceImageIngestionProcess enum

View Source
var AllowedAwsEdcWorkspaceImageStateEnumValues = []AwsEdcWorkspaceImageState{
	"AVAILABLE",
	"ERROR",
	"PENDING",
	"ERROR_INVALID_ACCOUNT",
}

All allowed values of AwsEdcWorkspaceImageState enum

View Source
var AllowedAwsEdcWorkspaceImageTenancyEnumValues = []AwsEdcWorkspaceImageTenancy{
	"DEDICATED",
	"DEFAULT",
}

All allowed values of AwsEdcWorkspaceImageTenancy enum

View Source
var AllowedAwsEdcWorkspaceRunningModeEnumValues = []AwsEdcWorkspaceRunningMode{
	"ALWAYS_ON",
	"AUTO_STOP",
	"MANUAL",
}

All allowed values of AwsEdcWorkspaceRunningMode enum

View Source
var AllowedAwsEdcWorkspaceStateEnumValues = []AwsEdcWorkspaceState{
	"PENDING",
	"AVAILABLE",
	"ADMIN_MAINTANCE",
	"ERROR",
	"STOPPED",
	"STOPPING",
	"SUSPENDED",
	"TERMINATED",
	"TERMINATING",
	"STARTING",
	"REBOOTING",
	"MAINTENANCE",
	"IMPARED",
	"UNHEALTHY",
	"UPDATING",
}

All allowed values of AwsEdcWorkspaceState enum

View Source
var AllowedCommissionTaskOperationTypeEnumValues = []CommissionTaskOperationType{
	"DECOMMISSION",
	"DELETE",
	"RECOMMISSION",
	"POWER_RESOURCES",
}

All allowed values of CommissionTaskOperationType enum

View Source
var AllowedConnectionStateEnumValues = []ConnectionState{
	"PENDING",
	"ACTIVE",
	"DELETING",
	"PROVISIONING_CONNECTORS",
	"ERROR",
	"ERROR_INVALID_ACCOUNT",
}

All allowed values of ConnectionState enum

View Source
var AllowedDeploymentStateEnumValues = []DeploymentState{
	"PENDING",
	"ACTIVE",
	"UPDATING",
	"DELETING",
	"ERROR",
	"DELETED",
	"ERROR_INVALID_ACCOUNT",
	"SYNCING_MACHINES",
}

All allowed values of DeploymentState enum

View Source
var AllowedDeploymentTaskOperationTypeEnumValues = []DeploymentTaskOperationType{
	"CREATE_DEPLOYMENT",
	"ADD_MACHINES",
	"REMOVE_MACHINES",
	"UPDATE_MACHINES",
	"UPDATE_IMAGE",
	"UPDATE_DEPLOYMENT_PROPERTIES",
	"DELETE_DEPLOYMENT",
	"UPDATE_DEPLOYMENT_IMAGE",
	"SAVE_AS_IMAGE",
	"SYNC_MACHINES",
}

All allowed values of DeploymentTaskOperationType enum

View Source
var AllowedDeploymentWarningTypeEnumValues = []DeploymentWarningType{
	"AwsEdcDeploymentMachineFailedToCreate",
	"AwsEdcDeploymentMachineExistsForUser",
	"AwsEdcDeploymentMachineFailedToDelete",
	"AwsEdcDeploymentMachineFailedToDeleteGeneric",
	"AwsEdcDeploymentMachineFailedToDeleteMachineNotFound",
	"DeploymentAddMachinesFailedGeneric",
	"InsufficientWorkspaceBundleQuota",
	"InsufficientWorkspaceServiceQuota",
	"AwsEdcDeploymentFailedToDelete",
	"AwsEdcDeploymentMachineFailedToUpdate",
	"DeploymentAddMachinesPartialSuccess",
	"AwsEdcDeploymentFailedToUpdateRunningMode",
	"AwsEdcDeploymentBundleFailedToUpdateImage",
	"AwsEdcSaveMachineAsImageFailed",
}

All allowed values of DeploymentWarningType enum

View Source
var AllowedErasureSwitchEnumValues = []ErasureSwitch{
	"DryRun",
	"Confirm",
}

All allowed values of ErasureSwitch enum

View Source
var AllowedGroupLicenseOperationStatusEnumValues = []GroupLicenseOperationStatus{
	"Pending",
	"Running",
	"Completed",
	"Failed",
}

All allowed values of GroupLicenseOperationStatus enum

View Source
var AllowedGroupLicenseOperationTypeEnumValues = []GroupLicenseOperationType{
	"Assignment",
	"Unassignment",
}

All allowed values of GroupLicenseOperationType enum

View Source
var AllowedLicenseStateEnumValues = []LicenseState{
	"Active",
	"Inactive",
}

All allowed values of LicenseState enum

View Source
var AllowedNamingSchemeTypeEnumValues = []NamingSchemeType{
	"Unknown",
	"None",
	"Numeric",
	"Alphabetic",
	"Unicode",
}

All allowed values of NamingSchemeType enum

View Source
var AllowedOperatingSystemTypeEnumValues = []OperatingSystemType{
	"WINDOWS",
	"LINUX",
}

All allowed values of OperatingSystemType enum

View Source
var AllowedPowerModeEnumValues = []PowerMode{
	"Off",
	"On",
}

All allowed values of PowerMode enum

View Source
var AllowedPowerResponseCodeEnumValues = []PowerResponseCode{
	"Success",
	"Unassigned",
	"NoLicensesAvailable",
	"ActivationFailed",
	"Unknown",
}

All allowed values of PowerResponseCode enum

View Source
var AllowedPowerStateEnumValues = []PowerState{
	"Running",
	"PoweredOff",
	"Unknown",
}

All allowed values of PowerState enum

View Source
var AllowedProvisioningTypeEnumValues = []ProvisioningType{
	"Dedicated",
	"Shared",
	"UnknownFutureValue",
}

All allowed values of ProvisioningType enum

View Source
var AllowedRegistrationStateEnumValues = []RegistrationState{
	"Unknown",
	"Unregistered",
	"Initializing",
	"Registered",
	"AgentError",
}

All allowed values of RegistrationState enum

View Source
var AllowedResourceConnectionTaskOperationTypeEnumValues = []ResourceConnectionTaskOperationType{
	"ADD_CONNECTION",
	"ADD_CONNECTORS",
	"ADD_CONNECTOR_APPLIANCES",
	"REMOVE_CONNECTION",
}

All allowed values of ResourceConnectionTaskOperationType enum

View Source
var AllowedResourceConnectionWarningTypeEnumValues = []ResourceConnectionWarningType{
	"ResourceConnectionFailedToAddConnectors",
}

All allowed values of ResourceConnectionWarningType enum

View Source
var AllowedSessionChangeHostingActionEnumValues = []SessionChangeHostingAction{
	"Unknown",
	"Nothing",
	"Suspend",
	"Shutdown",
}

All allowed values of SessionChangeHostingAction enum

View Source
var AllowedSessionStateEnumValues = []SessionState{
	"Unknown",
	"Connected",
	"Active",
	"Disconnected",
}

All allowed values of SessionState enum

View Source
var AllowedSessionSupportEnumValues = []SessionSupport{
	"Unknown",
	"SingleSession",
	"MultiSession",
}

All allowed values of SessionSupport enum

View Source
var AllowedTaskStateEnumValues = []TaskState{
	"PENDING",
	"ACTIVE",
	"PROCESSING",
	"ERROR",
	"COMPLETED",
}

All allowed values of TaskState enum

View Source
var AllowedTaskTypeEnumValues = []TaskType{
	"ACCOUNT",
	"DEPLOYMENT",
	"RESOURCE_CONNECTION",
	"COMMISSION",
	"WORKER_TEST",
}

All allowed values of TaskType enum

View Source
var AllowedTenancyTypeEnumValues = []TenancyType{
	"Unknown",
	"Shared",
	"Instance",
	"Host",
}

All allowed values of TenancyType enum

View Source
var AllowedUpdateAccountOperationTypeEnumValues = []UpdateAccountOperationType{
	"RenameAccount",
	"UpdateAwsEdcAccountCredentials",
}

All allowed values of UpdateAccountOperationType 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 {
	AccountQCS *AccountQCSService

	ConnectionQCS *ConnectionQCSService

	DeploymentQCS *DeploymentQCSService

	ImageQCS *ImageQCSService

	TasksQCS *TasksQCSService
	// contains filtered or unexported fields
}

APIClient manages communication with the Quick Create Service for DaaS Quick Deploy with AWS WorkSpaces Core - Tech Preview API vDaaSTechPreview 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 Account

type Account struct {
	AccountType AccountType `json:"accountType"`
	// ID of the account
	AccountId NullableString `json:"accountId,omitempty"`
	// Name of the account
	Name                          NullableString                 `json:"name,omitempty"`
	AccountState                  *AccountState                  `json:"accountState,omitempty"`
	AssociatedDeployments         []AssociatedDeployment         `json:"associatedDeployments,omitempty"`
	AssociatedResourceConnections []AssociatedResourceConnection `json:"associatedResourceConnections,omitempty"`
	AssociatedImages              []AssociatedImage              `json:"associatedImages,omitempty"`
	// Indicates whether the account is Citrix managed
	CitrixManaged *bool `json:"citrixManaged,omitempty"`
	// The error message for account
	ErrorMessage NullableString `json:"errorMessage,omitempty"`
	// Warnings and errors associated with the account
	Warnings []AccountWarning `json:"warnings,omitempty"`
}

Account Account

func NewAccount

func NewAccount(accountType AccountType) *Account

NewAccount instantiates a new Account 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 NewAccountWithDefaults

func NewAccountWithDefaults() *Account

NewAccountWithDefaults instantiates a new Account 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 (*Account) GetAccountId

func (o *Account) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAccountIdOk

func (o *Account) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetAccountState

func (o *Account) GetAccountState() AccountState

GetAccountState returns the AccountState field value if set, zero value otherwise.

func (*Account) GetAccountStateOk

func (o *Account) GetAccountStateOk() (*AccountState, bool)

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

func (*Account) GetAccountType

func (o *Account) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*Account) GetAccountTypeOk

func (o *Account) GetAccountTypeOk() (*AccountType, bool)

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

func (*Account) GetAssociatedDeployments

func (o *Account) GetAssociatedDeployments() []AssociatedDeployment

GetAssociatedDeployments returns the AssociatedDeployments field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAssociatedDeploymentsOk

func (o *Account) GetAssociatedDeploymentsOk() ([]AssociatedDeployment, bool)

GetAssociatedDeploymentsOk returns a tuple with the AssociatedDeployments field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetAssociatedImages

func (o *Account) GetAssociatedImages() []AssociatedImage

GetAssociatedImages returns the AssociatedImages field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAssociatedImagesOk

func (o *Account) GetAssociatedImagesOk() ([]AssociatedImage, bool)

GetAssociatedImagesOk returns a tuple with the AssociatedImages field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetAssociatedResourceConnections

func (o *Account) GetAssociatedResourceConnections() []AssociatedResourceConnection

GetAssociatedResourceConnections returns the AssociatedResourceConnections field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAssociatedResourceConnectionsOk

func (o *Account) GetAssociatedResourceConnectionsOk() ([]AssociatedResourceConnection, bool)

GetAssociatedResourceConnectionsOk returns a tuple with the AssociatedResourceConnections field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetCitrixManaged

func (o *Account) GetCitrixManaged() bool

GetCitrixManaged returns the CitrixManaged field value if set, zero value otherwise.

func (*Account) GetCitrixManagedOk

func (o *Account) GetCitrixManagedOk() (*bool, bool)

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

func (*Account) GetErrorMessage

func (o *Account) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetErrorMessageOk

func (o *Account) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetName

func (o *Account) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetWarnings

func (o *Account) GetWarnings() []AccountWarning

GetWarnings returns the Warnings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetWarningsOk

func (o *Account) GetWarningsOk() ([]AccountWarning, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) HasAccountId

func (o *Account) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*Account) HasAccountState

func (o *Account) HasAccountState() bool

HasAccountState returns a boolean if a field has been set.

func (*Account) HasAssociatedDeployments

func (o *Account) HasAssociatedDeployments() bool

HasAssociatedDeployments returns a boolean if a field has been set.

func (*Account) HasAssociatedImages

func (o *Account) HasAssociatedImages() bool

HasAssociatedImages returns a boolean if a field has been set.

func (*Account) HasAssociatedResourceConnections

func (o *Account) HasAssociatedResourceConnections() bool

HasAssociatedResourceConnections returns a boolean if a field has been set.

func (*Account) HasCitrixManaged

func (o *Account) HasCitrixManaged() bool

HasCitrixManaged returns a boolean if a field has been set.

func (*Account) HasErrorMessage

func (o *Account) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*Account) HasName

func (o *Account) HasName() bool

HasName returns a boolean if a field has been set.

func (*Account) HasWarnings

func (o *Account) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (Account) MarshalJSON

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

func (*Account) SetAccountId

func (o *Account) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*Account) SetAccountIdNil

func (o *Account) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*Account) SetAccountState

func (o *Account) SetAccountState(v AccountState)

SetAccountState gets a reference to the given AccountState and assigns it to the AccountState field.

func (*Account) SetAccountType

func (o *Account) SetAccountType(v AccountType)

SetAccountType sets field value

func (*Account) SetAssociatedDeployments

func (o *Account) SetAssociatedDeployments(v []AssociatedDeployment)

SetAssociatedDeployments gets a reference to the given []AssociatedDeployment and assigns it to the AssociatedDeployments field.

func (*Account) SetAssociatedImages

func (o *Account) SetAssociatedImages(v []AssociatedImage)

SetAssociatedImages gets a reference to the given []AssociatedImage and assigns it to the AssociatedImages field.

func (*Account) SetAssociatedResourceConnections

func (o *Account) SetAssociatedResourceConnections(v []AssociatedResourceConnection)

SetAssociatedResourceConnections gets a reference to the given []AssociatedResourceConnection and assigns it to the AssociatedResourceConnections field.

func (*Account) SetCitrixManaged

func (o *Account) SetCitrixManaged(v bool)

SetCitrixManaged gets a reference to the given bool and assigns it to the CitrixManaged field.

func (*Account) SetErrorMessage

func (o *Account) SetErrorMessage(v string)

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

func (*Account) SetErrorMessageNil

func (o *Account) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*Account) SetName

func (o *Account) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Account) SetNameNil

func (o *Account) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Account) SetWarnings

func (o *Account) SetWarnings(v []AccountWarning)

SetWarnings gets a reference to the given []AccountWarning and assigns it to the Warnings field.

func (Account) ToMap

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

func (*Account) UnsetAccountId

func (o *Account) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*Account) UnsetErrorMessage

func (o *Account) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*Account) UnsetName

func (o *Account) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type AccountQCSAddAccountAsyncRequest

type AccountQCSAddAccountAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSAddAccountAsyncRequest) Body

Configuration of the account to add

func (AccountQCSAddAccountAsyncRequest) CitrixTransactionId

func (r AccountQCSAddAccountAsyncRequest) CitrixTransactionId(citrixTransactionId string) AccountQCSAddAccountAsyncRequest

The Transaction Id.

func (AccountQCSAddAccountAsyncRequest) Execute

type AccountQCSDeleteCustomerAccountAsyncRequest

type AccountQCSDeleteCustomerAccountAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSDeleteCustomerAccountAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSDeleteCustomerAccountAsyncRequest) Execute

type AccountQCSGetAccountResourcesAsyncRequest

type AccountQCSGetAccountResourcesAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSGetAccountResourcesAsyncRequest) Body

Search request

func (AccountQCSGetAccountResourcesAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSGetAccountResourcesAsyncRequest) Execute

type AccountQCSGetCustomerAccountAsyncRequest

type AccountQCSGetCustomerAccountAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSGetCustomerAccountAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSGetCustomerAccountAsyncRequest) Execute

type AccountQCSGetCustomerAccountResourcesAsyncRequest

type AccountQCSGetCustomerAccountResourcesAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSGetCustomerAccountResourcesAsyncRequest) Body

Search request

func (AccountQCSGetCustomerAccountResourcesAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSGetCustomerAccountResourcesAsyncRequest) Execute

type AccountQCSGetCustomerAccountTaskAsyncRequest

type AccountQCSGetCustomerAccountTaskAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSGetCustomerAccountTaskAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSGetCustomerAccountTaskAsyncRequest) Execute

type AccountQCSGetCustomerAccountsAsyncRequest

type AccountQCSGetCustomerAccountsAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSGetCustomerAccountsAsyncRequest) AccountType

Account Type

func (AccountQCSGetCustomerAccountsAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSGetCustomerAccountsAsyncRequest) Execute

func (AccountQCSGetCustomerAccountsAsyncRequest) FetchDetails

If true, checks if all accounts have the required set of permissions for assume role tasks

type AccountQCSInititateAccountTaskAsyncRequest

type AccountQCSInititateAccountTaskAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSInititateAccountTaskAsyncRequest) Body

Task request

func (AccountQCSInititateAccountTaskAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSInititateAccountTaskAsyncRequest) Execute

type AccountQCSService

type AccountQCSService service

AccountQCSService AccountQCS service

func (*AccountQCSService) AddAccountAsync

func (a *AccountQCSService) AddAccountAsync(ctx context.Context, customerId string) AccountQCSAddAccountAsyncRequest

AddAccountAsync Add a account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return AccountQCSAddAccountAsyncRequest

func (*AccountQCSService) AddAccountAsyncExecute

Execute executes the request

@return AwsEdcAccount

func (*AccountQCSService) DeleteCustomerAccountAsync

func (a *AccountQCSService) DeleteCustomerAccountAsync(ctx context.Context, customerId string, accountId string) AccountQCSDeleteCustomerAccountAsyncRequest

DeleteCustomerAccountAsync Deletes the account configured for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@return AccountQCSDeleteCustomerAccountAsyncRequest

func (*AccountQCSService) DeleteCustomerAccountAsyncExecute

func (a *AccountQCSService) DeleteCustomerAccountAsyncExecute(r AccountQCSDeleteCustomerAccountAsyncRequest) (*http.Response, error)

Execute executes the request

func (*AccountQCSService) GetAccountResourcesAsync

func (a *AccountQCSService) GetAccountResourcesAsync(ctx context.Context, customerId string, accountId string) AccountQCSGetAccountResourcesAsyncRequest

GetAccountResourcesAsync Get the account resources for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@return AccountQCSGetAccountResourcesAsyncRequest

func (*AccountQCSService) GetAccountResourcesAsyncExecute

Execute executes the request

@return AccountResources

func (*AccountQCSService) GetCustomerAccountAsync

func (a *AccountQCSService) GetCustomerAccountAsync(ctx context.Context, customerId string, accountId string) AccountQCSGetCustomerAccountAsyncRequest

GetCustomerAccountAsync Get the account configured for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@return AccountQCSGetCustomerAccountAsyncRequest

func (*AccountQCSService) GetCustomerAccountAsyncExecute

Execute executes the request

@return AwsEdcAccount

func (*AccountQCSService) GetCustomerAccountResourcesAsync

func (a *AccountQCSService) GetCustomerAccountResourcesAsync(ctx context.Context, customerId string) AccountQCSGetCustomerAccountResourcesAsyncRequest

GetCustomerAccountResourcesAsync Get the account resources for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return AccountQCSGetCustomerAccountResourcesAsyncRequest

func (*AccountQCSService) GetCustomerAccountResourcesAsyncExecute

func (a *AccountQCSService) GetCustomerAccountResourcesAsyncExecute(r AccountQCSGetCustomerAccountResourcesAsyncRequest) (*AccountResources, *http.Response, error)

Execute executes the request

@return AccountResources

func (*AccountQCSService) GetCustomerAccountTaskAsync

func (a *AccountQCSService) GetCustomerAccountTaskAsync(ctx context.Context, customerId string, accountId string, taskId string) AccountQCSGetCustomerAccountTaskAsyncRequest

GetCustomerAccountTaskAsync Gets account task

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@param taskId ID of task
@return AccountQCSGetCustomerAccountTaskAsyncRequest

func (*AccountQCSService) GetCustomerAccountTaskAsyncExecute

func (a *AccountQCSService) GetCustomerAccountTaskAsyncExecute(r AccountQCSGetCustomerAccountTaskAsyncRequest) (*AccountTask, *http.Response, error)

Execute executes the request

@return AccountTask

func (*AccountQCSService) GetCustomerAccountsAsync

func (a *AccountQCSService) GetCustomerAccountsAsync(ctx context.Context, customerId string) AccountQCSGetCustomerAccountsAsyncRequest

GetCustomerAccountsAsync Get the accounts configured for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return AccountQCSGetCustomerAccountsAsyncRequest

func (*AccountQCSService) GetCustomerAccountsAsyncExecute

func (a *AccountQCSService) GetCustomerAccountsAsyncExecute(r AccountQCSGetCustomerAccountsAsyncRequest) (*Accounts, *http.Response, error)

Execute executes the request

@return Accounts

func (*AccountQCSService) InititateAccountTaskAsync

func (a *AccountQCSService) InititateAccountTaskAsync(ctx context.Context, customerId string, accountId string) AccountQCSInititateAccountTaskAsyncRequest

InititateAccountTaskAsync Registers account BYOL account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@return AccountQCSInititateAccountTaskAsyncRequest

func (*AccountQCSService) InititateAccountTaskAsyncExecute

Execute executes the request

@return AwsEdcRegisterAccount

func (*AccountQCSService) UpdateCustomerAccountAsync

func (a *AccountQCSService) UpdateCustomerAccountAsync(ctx context.Context, customerId string, accountId string) AccountQCSUpdateCustomerAccountAsyncRequest

UpdateCustomerAccountAsync Updates the account access keys for the specified customer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@return AccountQCSUpdateCustomerAccountAsyncRequest

func (*AccountQCSService) UpdateCustomerAccountAsyncExecute

func (a *AccountQCSService) UpdateCustomerAccountAsyncExecute(r AccountQCSUpdateCustomerAccountAsyncRequest) (*http.Response, error)

Execute executes the request

type AccountQCSUpdateCustomerAccountAsyncRequest

type AccountQCSUpdateCustomerAccountAsyncRequest struct {
	ApiService *AccountQCSService
	// contains filtered or unexported fields
}

func (AccountQCSUpdateCustomerAccountAsyncRequest) CitrixTransactionId

The Transaction Id.

func (AccountQCSUpdateCustomerAccountAsyncRequest) Execute

func (AccountQCSUpdateCustomerAccountAsyncRequest) UpdateCustomerAccountAsyncRequest

func (r AccountQCSUpdateCustomerAccountAsyncRequest) UpdateCustomerAccountAsyncRequest(updateCustomerAccountAsyncRequest UpdateCustomerAccountAsyncRequest) AccountQCSUpdateCustomerAccountAsyncRequest

Configuration of the account to update

type AccountResource

type AccountResource struct {
	AccountType AccountType `json:"accountType"`
	// Account Id
	AccountId NullableString `json:"accountId,omitempty"`
	// Resource Id
	ResourceId NullableString `json:"resourceId,omitempty"`
}

AccountResource Base class for a resource associated with an account

func NewAccountResource

func NewAccountResource(accountType AccountType) *AccountResource

NewAccountResource instantiates a new AccountResource 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 NewAccountResourceWithDefaults

func NewAccountResourceWithDefaults() *AccountResource

NewAccountResourceWithDefaults instantiates a new AccountResource 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 (*AccountResource) GetAccountId

func (o *AccountResource) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountResource) GetAccountIdOk

func (o *AccountResource) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountResource) GetAccountType

func (o *AccountResource) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*AccountResource) GetAccountTypeOk

func (o *AccountResource) GetAccountTypeOk() (*AccountType, bool)

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

func (*AccountResource) GetResourceId

func (o *AccountResource) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountResource) GetResourceIdOk

func (o *AccountResource) GetResourceIdOk() (*string, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountResource) HasAccountId

func (o *AccountResource) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*AccountResource) HasResourceId

func (o *AccountResource) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (AccountResource) MarshalJSON

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

func (*AccountResource) SetAccountId

func (o *AccountResource) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*AccountResource) SetAccountIdNil

func (o *AccountResource) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*AccountResource) SetAccountType

func (o *AccountResource) SetAccountType(v AccountType)

SetAccountType sets field value

func (*AccountResource) SetResourceId

func (o *AccountResource) SetResourceId(v string)

SetResourceId gets a reference to the given NullableString and assigns it to the ResourceId field.

func (*AccountResource) SetResourceIdNil

func (o *AccountResource) SetResourceIdNil()

SetResourceIdNil sets the value for ResourceId to be an explicit nil

func (AccountResource) ToMap

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

func (*AccountResource) UnsetAccountId

func (o *AccountResource) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*AccountResource) UnsetResourceId

func (o *AccountResource) UnsetResourceId()

UnsetResourceId ensures that no value is present for ResourceId, not even an explicit nil

type AccountResources

type AccountResources struct {
	// Enumerable of account resource
	Items []AccountResourcesItemsInner `json:"items,omitempty"`
}

AccountResources Enumerable of account resource

func NewAccountResources

func NewAccountResources() *AccountResources

NewAccountResources instantiates a new AccountResources 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 NewAccountResourcesWithDefaults

func NewAccountResourcesWithDefaults() *AccountResources

NewAccountResourcesWithDefaults instantiates a new AccountResources 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 (*AccountResources) GetItems

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountResources) GetItemsOk

func (o *AccountResources) GetItemsOk() ([]AccountResourcesItemsInner, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountResources) HasItems

func (o *AccountResources) HasItems() bool

HasItems returns a boolean if a field has been set.

func (AccountResources) MarshalJSON

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

func (*AccountResources) SetItems

SetItems gets a reference to the given []AccountResourcesItemsInner and assigns it to the Items field.

func (AccountResources) ToMap

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

type AccountResourcesItemsInner added in v1.0.2

type AccountResourcesItemsInner struct {
	AwsEdcAccountResourceAmiImage         *AwsEdcAccountResourceAmiImage
	AwsEdcAccountResourceByolRegistration *AwsEdcAccountResourceByolRegistration
	AwsEdcAccountResourceCidrRange        *AwsEdcAccountResourceCidrRange
	AwsEdcAccountResourceDirectory        *AwsEdcAccountResourceDirectory
	AwsEdcAccountResourceEc2InstanceType  *AwsEdcAccountResourceEc2InstanceType
	AwsEdcAccountResourceFile             *AwsEdcAccountResourceFile
	AwsEdcAccountResourceKeyPair          *AwsEdcAccountResourceKeyPair
	AwsEdcAccountResourceRegion           *AwsEdcAccountResourceRegion
	AwsEdcAccountResourceSecurityGroup    *AwsEdcAccountResourceSecurityGroup
	AwsEdcAccountResourceSubnet           *AwsEdcAccountResourceSubnet
	AwsEdcAccountResourceVpc              *AwsEdcAccountResourceVpc
}

AccountResourcesItemsInner - struct for AccountResourcesItemsInner

func AwsEdcAccountResourceAmiImageAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceAmiImageAsAccountResourcesItemsInner(v *AwsEdcAccountResourceAmiImage) AccountResourcesItemsInner

AwsEdcAccountResourceAmiImageAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceAmiImage wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceByolRegistrationAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceByolRegistrationAsAccountResourcesItemsInner(v *AwsEdcAccountResourceByolRegistration) AccountResourcesItemsInner

AwsEdcAccountResourceByolRegistrationAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceByolRegistration wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceCidrRangeAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceCidrRangeAsAccountResourcesItemsInner(v *AwsEdcAccountResourceCidrRange) AccountResourcesItemsInner

AwsEdcAccountResourceCidrRangeAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceCidrRange wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceDirectoryAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceDirectoryAsAccountResourcesItemsInner(v *AwsEdcAccountResourceDirectory) AccountResourcesItemsInner

AwsEdcAccountResourceDirectoryAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceDirectory wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceEc2InstanceTypeAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceEc2InstanceTypeAsAccountResourcesItemsInner(v *AwsEdcAccountResourceEc2InstanceType) AccountResourcesItemsInner

AwsEdcAccountResourceEc2InstanceTypeAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceEc2InstanceType wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceFileAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceFileAsAccountResourcesItemsInner(v *AwsEdcAccountResourceFile) AccountResourcesItemsInner

AwsEdcAccountResourceFileAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceFile wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceKeyPairAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceKeyPairAsAccountResourcesItemsInner(v *AwsEdcAccountResourceKeyPair) AccountResourcesItemsInner

AwsEdcAccountResourceKeyPairAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceKeyPair wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceRegionAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceRegionAsAccountResourcesItemsInner(v *AwsEdcAccountResourceRegion) AccountResourcesItemsInner

AwsEdcAccountResourceRegionAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceRegion wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceSecurityGroupAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceSecurityGroupAsAccountResourcesItemsInner(v *AwsEdcAccountResourceSecurityGroup) AccountResourcesItemsInner

AwsEdcAccountResourceSecurityGroupAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceSecurityGroup wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceSubnetAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceSubnetAsAccountResourcesItemsInner(v *AwsEdcAccountResourceSubnet) AccountResourcesItemsInner

AwsEdcAccountResourceSubnetAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceSubnet wrapped in AccountResourcesItemsInner

func AwsEdcAccountResourceVpcAsAccountResourcesItemsInner added in v1.0.2

func AwsEdcAccountResourceVpcAsAccountResourcesItemsInner(v *AwsEdcAccountResourceVpc) AccountResourcesItemsInner

AwsEdcAccountResourceVpcAsAccountResourcesItemsInner is a convenience function that returns AwsEdcAccountResourceVpc wrapped in AccountResourcesItemsInner

func (*AccountResourcesItemsInner) GetActualInstance added in v1.0.2

func (obj *AccountResourcesItemsInner) GetActualInstance() interface{}

Get the actual instance

func (AccountResourcesItemsInner) MarshalJSON added in v1.0.2

func (src AccountResourcesItemsInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AccountResourcesItemsInner) UnmarshalJSON added in v1.0.2

func (dst *AccountResourcesItemsInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type AccountState

type AccountState string

AccountState State of the account

const (
	ACCOUNTSTATE_AUTHENTICATED AccountState = "AUTHENTICATED"
	ACCOUNTSTATE_PENDING       AccountState = "PENDING"
	ACCOUNTSTATE_ERROR         AccountState = "ERROR"
	ACCOUNTSTATE_UNKNOWN       AccountState = "UNKNOWN"
)

List of AccountState

func NewAccountStateFromValue

func NewAccountStateFromValue(v string) (*AccountState, error)

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

func (AccountState) IsValid

func (v AccountState) IsValid() bool

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

func (AccountState) Ptr

func (v AccountState) Ptr() *AccountState

Ptr returns reference to AccountState value

func (*AccountState) UnmarshalJSON

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

type AccountTask

type AccountTask struct {
	TaskBase
	Operation NullableAccountTaskOperationType `json:"operation"`
	// Account Id this task is working on
	AccountId NullableString `json:"accountId,omitempty"`
}

AccountTask Enumerable of AccountTask

func NewAccountTask

func NewAccountTask(operation NullableAccountTaskOperationType, taskType TaskType) *AccountTask

NewAccountTask instantiates a new AccountTask 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 NewAccountTaskWithDefaults

func NewAccountTaskWithDefaults() *AccountTask

NewAccountTaskWithDefaults instantiates a new AccountTask 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 (*AccountTask) GetAccountId

func (o *AccountTask) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountTask) GetAccountIdOk

func (o *AccountTask) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountTask) GetOperation

func (o *AccountTask) GetOperation() AccountTaskOperationType

GetOperation returns the Operation field value If the value is explicit nil, the zero value for AccountTaskOperationType will be returned

func (*AccountTask) GetOperationOk

func (o *AccountTask) GetOperationOk() (*AccountTaskOperationType, bool)

GetOperationOk returns a tuple with the Operation field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountTask) HasAccountId

func (o *AccountTask) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (AccountTask) MarshalJSON

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

func (*AccountTask) SetAccountId

func (o *AccountTask) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*AccountTask) SetAccountIdNil

func (o *AccountTask) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*AccountTask) SetOperation

func (o *AccountTask) SetOperation(v AccountTaskOperationType)

SetOperation sets field value

func (AccountTask) ToMap

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

func (*AccountTask) UnsetAccountId

func (o *AccountTask) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

type AccountTaskOperationType

type AccountTaskOperationType string

AccountTaskOperationType Resource connection tasks

const (
	ACCOUNTTASKOPERATIONTYPE_AWS_BYOL_REGISTRATION AccountTaskOperationType = "AWS_BYOL_REGISTRATION"
	ACCOUNTTASKOPERATIONTYPE_DELETE_CONNECTOR      AccountTaskOperationType = "DELETE_CONNECTOR"
)

List of AccountTaskOperationType

func NewAccountTaskOperationTypeFromValue

func NewAccountTaskOperationTypeFromValue(v string) (*AccountTaskOperationType, error)

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

func (AccountTaskOperationType) IsValid

func (v AccountTaskOperationType) IsValid() bool

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

func (AccountTaskOperationType) Ptr

Ptr returns reference to AccountTaskOperationType value

func (*AccountTaskOperationType) UnmarshalJSON

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

type AccountType

type AccountType string

AccountType the model 'AccountType'

const (
	ACCOUNTTYPE_AWSEDC AccountType = "AWSEDC"
)

List of AccountType

func NewAccountTypeFromValue

func NewAccountTypeFromValue(v string) (*AccountType, error)

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

func (AccountType) IsValid

func (v AccountType) IsValid() bool

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

func (AccountType) Ptr

func (v AccountType) Ptr() *AccountType

Ptr returns reference to AccountType value

func (*AccountType) UnmarshalJSON

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

type AccountWarning

type AccountWarning struct {
	// The warning message
	Warning NullableString `json:"warning,omitempty"`
	// Indicates if the warning should be treated as an error
	IsError *bool `json:"isError,omitempty"`
	// Indicates if the warning message can be cleared out by the user
	IsDismissible *bool `json:"isDismissible,omitempty"`
}

AccountWarning struct for AccountWarning

func NewAccountWarning

func NewAccountWarning() *AccountWarning

NewAccountWarning instantiates a new AccountWarning 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 NewAccountWarningWithDefaults

func NewAccountWarningWithDefaults() *AccountWarning

NewAccountWarningWithDefaults instantiates a new AccountWarning 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 (*AccountWarning) GetIsDismissible

func (o *AccountWarning) GetIsDismissible() bool

GetIsDismissible returns the IsDismissible field value if set, zero value otherwise.

func (*AccountWarning) GetIsDismissibleOk

func (o *AccountWarning) GetIsDismissibleOk() (*bool, bool)

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

func (*AccountWarning) GetIsError

func (o *AccountWarning) GetIsError() bool

GetIsError returns the IsError field value if set, zero value otherwise.

func (*AccountWarning) GetIsErrorOk

func (o *AccountWarning) GetIsErrorOk() (*bool, bool)

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

func (*AccountWarning) GetWarning

func (o *AccountWarning) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountWarning) GetWarningOk

func (o *AccountWarning) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountWarning) HasIsDismissible

func (o *AccountWarning) HasIsDismissible() bool

HasIsDismissible returns a boolean if a field has been set.

func (*AccountWarning) HasIsError

func (o *AccountWarning) HasIsError() bool

HasIsError returns a boolean if a field has been set.

func (*AccountWarning) HasWarning

func (o *AccountWarning) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (AccountWarning) MarshalJSON

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

func (*AccountWarning) SetIsDismissible

func (o *AccountWarning) SetIsDismissible(v bool)

SetIsDismissible gets a reference to the given bool and assigns it to the IsDismissible field.

func (*AccountWarning) SetIsError

func (o *AccountWarning) SetIsError(v bool)

SetIsError gets a reference to the given bool and assigns it to the IsError field.

func (*AccountWarning) SetWarning

func (o *AccountWarning) SetWarning(v string)

SetWarning gets a reference to the given NullableString and assigns it to the Warning field.

func (*AccountWarning) SetWarningNil

func (o *AccountWarning) SetWarningNil()

SetWarningNil sets the value for Warning to be an explicit nil

func (AccountWarning) ToMap

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

func (*AccountWarning) UnsetWarning

func (o *AccountWarning) UnsetWarning()

UnsetWarning ensures that no value is present for Warning, not even an explicit nil

type Accounts

type Accounts struct {
	// Enumerable of Account
	Items []AwsEdcAccount `json:"items,omitempty"`
}

Accounts Enumerable of Account

func NewAccounts

func NewAccounts() *Accounts

NewAccounts instantiates a new Accounts 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 NewAccountsWithDefaults

func NewAccountsWithDefaults() *Accounts

NewAccountsWithDefaults instantiates a new Accounts 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 (*Accounts) GetItems

func (o *Accounts) GetItems() []AwsEdcAccount

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Accounts) GetItemsOk

func (o *Accounts) GetItemsOk() ([]AwsEdcAccount, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Accounts) HasItems

func (o *Accounts) HasItems() bool

HasItems returns a boolean if a field has been set.

func (Accounts) MarshalJSON

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

func (*Accounts) SetItems

func (o *Accounts) SetItems(v []AwsEdcAccount)

SetItems gets a reference to the given []AwsEdcAccount and assigns it to the Items field.

func (Accounts) ToMap

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

type ActiveConnection

type ActiveConnection struct {
	// AAD TenantId to connect/disconnect
	TenantId NullableString `json:"tenantId,omitempty"`
}

ActiveConnection struct for ActiveConnection

func NewActiveConnection

func NewActiveConnection() *ActiveConnection

NewActiveConnection instantiates a new ActiveConnection 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 NewActiveConnectionWithDefaults

func NewActiveConnectionWithDefaults() *ActiveConnection

NewActiveConnectionWithDefaults instantiates a new ActiveConnection 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 (*ActiveConnection) GetTenantId

func (o *ActiveConnection) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActiveConnection) GetTenantIdOk

func (o *ActiveConnection) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActiveConnection) HasTenantId

func (o *ActiveConnection) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ActiveConnection) MarshalJSON

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

func (*ActiveConnection) SetTenantId

func (o *ActiveConnection) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*ActiveConnection) SetTenantIdNil

func (o *ActiveConnection) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (ActiveConnection) ToMap

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

func (*ActiveConnection) UnsetTenantId

func (o *ActiveConnection) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ActiveTenantUserLicenses

type ActiveTenantUserLicenses struct {
	// AAD Tenant of which the licensed users are part of
	TenantId NullableString `json:"tenantId,omitempty"`
	// User IDs of users with active licenses for which we want to revoke HDX License
	LicensedUsers []string `json:"licensedUsers,omitempty"`
}

ActiveTenantUserLicenses struct for ActiveTenantUserLicenses

func NewActiveTenantUserLicenses

func NewActiveTenantUserLicenses() *ActiveTenantUserLicenses

NewActiveTenantUserLicenses instantiates a new ActiveTenantUserLicenses 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 NewActiveTenantUserLicensesWithDefaults

func NewActiveTenantUserLicensesWithDefaults() *ActiveTenantUserLicenses

NewActiveTenantUserLicensesWithDefaults instantiates a new ActiveTenantUserLicenses 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 (*ActiveTenantUserLicenses) GetLicensedUsers

func (o *ActiveTenantUserLicenses) GetLicensedUsers() []string

GetLicensedUsers returns the LicensedUsers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActiveTenantUserLicenses) GetLicensedUsersOk

func (o *ActiveTenantUserLicenses) GetLicensedUsersOk() ([]string, bool)

GetLicensedUsersOk returns a tuple with the LicensedUsers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActiveTenantUserLicenses) GetTenantId

func (o *ActiveTenantUserLicenses) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActiveTenantUserLicenses) GetTenantIdOk

func (o *ActiveTenantUserLicenses) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActiveTenantUserLicenses) HasLicensedUsers

func (o *ActiveTenantUserLicenses) HasLicensedUsers() bool

HasLicensedUsers returns a boolean if a field has been set.

func (*ActiveTenantUserLicenses) HasTenantId

func (o *ActiveTenantUserLicenses) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ActiveTenantUserLicenses) MarshalJSON

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

func (*ActiveTenantUserLicenses) SetLicensedUsers

func (o *ActiveTenantUserLicenses) SetLicensedUsers(v []string)

SetLicensedUsers gets a reference to the given []string and assigns it to the LicensedUsers field.

func (*ActiveTenantUserLicenses) SetTenantId

func (o *ActiveTenantUserLicenses) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*ActiveTenantUserLicenses) SetTenantIdNil

func (o *ActiveTenantUserLicenses) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (ActiveTenantUserLicenses) ToMap

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

func (*ActiveTenantUserLicenses) UnsetTenantId

func (o *ActiveTenantUserLicenses) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type AddAccount

type AddAccount struct {
	AccountType AccountType `json:"accountType"`
	// The name of the account to create
	Name string `json:"name"`
}

AddAccount Adds account

func NewAddAccount

func NewAddAccount(accountType AccountType, name string) *AddAccount

NewAddAccount instantiates a new AddAccount 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 NewAddAccountWithDefaults

func NewAddAccountWithDefaults() *AddAccount

NewAddAccountWithDefaults instantiates a new AddAccount 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 (*AddAccount) GetAccountType

func (o *AddAccount) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*AddAccount) GetAccountTypeOk

func (o *AddAccount) GetAccountTypeOk() (*AccountType, bool)

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

func (*AddAccount) GetName

func (o *AddAccount) GetName() string

GetName returns the Name field value

func (*AddAccount) GetNameOk

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

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

func (AddAccount) MarshalJSON

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

func (*AddAccount) SetAccountType

func (o *AddAccount) SetAccountType(v AccountType)

SetAccountType sets field value

func (*AddAccount) SetName

func (o *AddAccount) SetName(v string)

SetName sets field value

func (AddAccount) ToMap

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

type AddAwsEdcAccount

type AddAwsEdcAccount struct {
	AddAccount
	// The ID of Access Key associated with the account
	AwsAccessKeyId NullableString `json:"awsAccessKeyId,omitempty"`
	// The secret associated with access key for the account
	AwsSecretAccessKey NullableString `json:"awsSecretAccessKey,omitempty"`
	// The AWS region the account is associated with
	AwsRegion *string `json:"awsRegion,omitempty"`
	// The ARN of the role to assume when making requests in this account
	AwsRoleArn NullableString `json:"awsRoleArn,omitempty"`
	// The ARN external ID to use when assuming the role
	AwsExternalId NullableString `json:"awsExternalId,omitempty"`
	// Indicates if the associated AWS EDC account has BYOL support is enabled\\r\\nBy default we expect customer to use BYOL configuration to be enabled at this moment
	AwsByolFeatureEnabled NullableBool `json:"awsByolFeatureEnabled,omitempty"`
}

AddAwsEdcAccount struct for AddAwsEdcAccount

func NewAddAwsEdcAccount

func NewAddAwsEdcAccount(accountType AccountType, name string) *AddAwsEdcAccount

NewAddAwsEdcAccount instantiates a new AddAwsEdcAccount 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 NewAddAwsEdcAccountWithDefaults

func NewAddAwsEdcAccountWithDefaults() *AddAwsEdcAccount

NewAddAwsEdcAccountWithDefaults instantiates a new AddAwsEdcAccount 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 (*AddAwsEdcAccount) GetAwsAccessKeyId

func (o *AddAwsEdcAccount) GetAwsAccessKeyId() string

GetAwsAccessKeyId returns the AwsAccessKeyId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcAccount) GetAwsAccessKeyIdOk

func (o *AddAwsEdcAccount) GetAwsAccessKeyIdOk() (*string, bool)

GetAwsAccessKeyIdOk returns a tuple with the AwsAccessKeyId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcAccount) GetAwsByolFeatureEnabled

func (o *AddAwsEdcAccount) GetAwsByolFeatureEnabled() bool

GetAwsByolFeatureEnabled returns the AwsByolFeatureEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcAccount) GetAwsByolFeatureEnabledOk

func (o *AddAwsEdcAccount) GetAwsByolFeatureEnabledOk() (*bool, bool)

GetAwsByolFeatureEnabledOk returns a tuple with the AwsByolFeatureEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcAccount) GetAwsExternalId

func (o *AddAwsEdcAccount) GetAwsExternalId() string

GetAwsExternalId returns the AwsExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcAccount) GetAwsExternalIdOk

func (o *AddAwsEdcAccount) GetAwsExternalIdOk() (*string, bool)

GetAwsExternalIdOk returns a tuple with the AwsExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcAccount) GetAwsRegion

func (o *AddAwsEdcAccount) GetAwsRegion() string

GetAwsRegion returns the AwsRegion field value if set, zero value otherwise.

func (*AddAwsEdcAccount) GetAwsRegionOk

func (o *AddAwsEdcAccount) GetAwsRegionOk() (*string, bool)

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

func (*AddAwsEdcAccount) GetAwsRoleArn

func (o *AddAwsEdcAccount) GetAwsRoleArn() string

GetAwsRoleArn returns the AwsRoleArn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcAccount) GetAwsRoleArnOk

func (o *AddAwsEdcAccount) GetAwsRoleArnOk() (*string, bool)

GetAwsRoleArnOk returns a tuple with the AwsRoleArn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcAccount) GetAwsSecretAccessKey

func (o *AddAwsEdcAccount) GetAwsSecretAccessKey() string

GetAwsSecretAccessKey returns the AwsSecretAccessKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcAccount) GetAwsSecretAccessKeyOk

func (o *AddAwsEdcAccount) GetAwsSecretAccessKeyOk() (*string, bool)

GetAwsSecretAccessKeyOk returns a tuple with the AwsSecretAccessKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcAccount) HasAwsAccessKeyId

func (o *AddAwsEdcAccount) HasAwsAccessKeyId() bool

HasAwsAccessKeyId returns a boolean if a field has been set.

func (*AddAwsEdcAccount) HasAwsByolFeatureEnabled

func (o *AddAwsEdcAccount) HasAwsByolFeatureEnabled() bool

HasAwsByolFeatureEnabled returns a boolean if a field has been set.

func (*AddAwsEdcAccount) HasAwsExternalId

func (o *AddAwsEdcAccount) HasAwsExternalId() bool

HasAwsExternalId returns a boolean if a field has been set.

func (*AddAwsEdcAccount) HasAwsRegion

func (o *AddAwsEdcAccount) HasAwsRegion() bool

HasAwsRegion returns a boolean if a field has been set.

func (*AddAwsEdcAccount) HasAwsRoleArn

func (o *AddAwsEdcAccount) HasAwsRoleArn() bool

HasAwsRoleArn returns a boolean if a field has been set.

func (*AddAwsEdcAccount) HasAwsSecretAccessKey

func (o *AddAwsEdcAccount) HasAwsSecretAccessKey() bool

HasAwsSecretAccessKey returns a boolean if a field has been set.

func (AddAwsEdcAccount) MarshalJSON

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

func (*AddAwsEdcAccount) SetAwsAccessKeyId

func (o *AddAwsEdcAccount) SetAwsAccessKeyId(v string)

SetAwsAccessKeyId gets a reference to the given NullableString and assigns it to the AwsAccessKeyId field.

func (*AddAwsEdcAccount) SetAwsAccessKeyIdNil

func (o *AddAwsEdcAccount) SetAwsAccessKeyIdNil()

SetAwsAccessKeyIdNil sets the value for AwsAccessKeyId to be an explicit nil

func (*AddAwsEdcAccount) SetAwsByolFeatureEnabled

func (o *AddAwsEdcAccount) SetAwsByolFeatureEnabled(v bool)

SetAwsByolFeatureEnabled gets a reference to the given NullableBool and assigns it to the AwsByolFeatureEnabled field.

func (*AddAwsEdcAccount) SetAwsByolFeatureEnabledNil

func (o *AddAwsEdcAccount) SetAwsByolFeatureEnabledNil()

SetAwsByolFeatureEnabledNil sets the value for AwsByolFeatureEnabled to be an explicit nil

func (*AddAwsEdcAccount) SetAwsExternalId

func (o *AddAwsEdcAccount) SetAwsExternalId(v string)

SetAwsExternalId gets a reference to the given NullableString and assigns it to the AwsExternalId field.

func (*AddAwsEdcAccount) SetAwsExternalIdNil

func (o *AddAwsEdcAccount) SetAwsExternalIdNil()

SetAwsExternalIdNil sets the value for AwsExternalId to be an explicit nil

func (*AddAwsEdcAccount) SetAwsRegion

func (o *AddAwsEdcAccount) SetAwsRegion(v string)

SetAwsRegion gets a reference to the given string and assigns it to the AwsRegion field.

func (*AddAwsEdcAccount) SetAwsRoleArn

func (o *AddAwsEdcAccount) SetAwsRoleArn(v string)

SetAwsRoleArn gets a reference to the given NullableString and assigns it to the AwsRoleArn field.

func (*AddAwsEdcAccount) SetAwsRoleArnNil

func (o *AddAwsEdcAccount) SetAwsRoleArnNil()

SetAwsRoleArnNil sets the value for AwsRoleArn to be an explicit nil

func (*AddAwsEdcAccount) SetAwsSecretAccessKey

func (o *AddAwsEdcAccount) SetAwsSecretAccessKey(v string)

SetAwsSecretAccessKey gets a reference to the given NullableString and assigns it to the AwsSecretAccessKey field.

func (*AddAwsEdcAccount) SetAwsSecretAccessKeyNil

func (o *AddAwsEdcAccount) SetAwsSecretAccessKeyNil()

SetAwsSecretAccessKeyNil sets the value for AwsSecretAccessKey to be an explicit nil

func (AddAwsEdcAccount) ToMap

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

func (*AddAwsEdcAccount) UnsetAwsAccessKeyId

func (o *AddAwsEdcAccount) UnsetAwsAccessKeyId()

UnsetAwsAccessKeyId ensures that no value is present for AwsAccessKeyId, not even an explicit nil

func (*AddAwsEdcAccount) UnsetAwsByolFeatureEnabled

func (o *AddAwsEdcAccount) UnsetAwsByolFeatureEnabled()

UnsetAwsByolFeatureEnabled ensures that no value is present for AwsByolFeatureEnabled, not even an explicit nil

func (*AddAwsEdcAccount) UnsetAwsExternalId

func (o *AddAwsEdcAccount) UnsetAwsExternalId()

UnsetAwsExternalId ensures that no value is present for AwsExternalId, not even an explicit nil

func (*AddAwsEdcAccount) UnsetAwsRoleArn

func (o *AddAwsEdcAccount) UnsetAwsRoleArn()

UnsetAwsRoleArn ensures that no value is present for AwsRoleArn, not even an explicit nil

func (*AddAwsEdcAccount) UnsetAwsSecretAccessKey

func (o *AddAwsEdcAccount) UnsetAwsSecretAccessKey()

UnsetAwsSecretAccessKey ensures that no value is present for AwsSecretAccessKey, not even an explicit nil

type AddAwsEdcDeploymentMachines

type AddAwsEdcDeploymentMachines struct {
	AddDeploymentMachines
	// Configuration for individual workspace
	Workspaces []AddAwsEdcWorkspace `json:"workspaces,omitempty"`
}

AddAwsEdcDeploymentMachines struct for AddAwsEdcDeploymentMachines

func NewAddAwsEdcDeploymentMachines

func NewAddAwsEdcDeploymentMachines(accountType AccountType) *AddAwsEdcDeploymentMachines

NewAddAwsEdcDeploymentMachines instantiates a new AddAwsEdcDeploymentMachines 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 NewAddAwsEdcDeploymentMachinesWithDefaults

func NewAddAwsEdcDeploymentMachinesWithDefaults() *AddAwsEdcDeploymentMachines

NewAddAwsEdcDeploymentMachinesWithDefaults instantiates a new AddAwsEdcDeploymentMachines 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 (*AddAwsEdcDeploymentMachines) GetWorkspaces

func (o *AddAwsEdcDeploymentMachines) GetWorkspaces() []AddAwsEdcWorkspace

GetWorkspaces returns the Workspaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDeploymentMachines) GetWorkspacesOk

func (o *AddAwsEdcDeploymentMachines) GetWorkspacesOk() ([]AddAwsEdcWorkspace, bool)

GetWorkspacesOk returns a tuple with the Workspaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDeploymentMachines) HasWorkspaces

func (o *AddAwsEdcDeploymentMachines) HasWorkspaces() bool

HasWorkspaces returns a boolean if a field has been set.

func (AddAwsEdcDeploymentMachines) MarshalJSON

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

func (*AddAwsEdcDeploymentMachines) SetWorkspaces

func (o *AddAwsEdcDeploymentMachines) SetWorkspaces(v []AddAwsEdcWorkspace)

SetWorkspaces gets a reference to the given []AddAwsEdcWorkspace and assigns it to the Workspaces field.

func (AddAwsEdcDeploymentMachines) ToMap

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

type AddAwsEdcDirectoryConnection

type AddAwsEdcDirectoryConnection struct {
	AddResourceConnection
	// Directory Id
	DirectoryId NullableString `json:"directoryId,omitempty"`
	// First Subnet Id
	Subnet1Id NullableString `json:"subnet1Id,omitempty"`
	// Second Subnet Id
	Subnet2Id NullableString                 `json:"subnet2Id,omitempty"`
	Tenancy   NullableAwsEdcDirectoryTenancy `json:"tenancy,omitempty"`
	// Enable Work Docs
	EnableWorkDocs *bool `json:"enableWorkDocs,omitempty"`
	// Enable Local Administrator
	UserEnabledAsLocalAdministrator *bool `json:"userEnabledAsLocalAdministrator,omitempty"`
	// The identifier of the security group
	SecurityGroupId NullableString `json:"securityGroupId,omitempty"`
	// The default OU for workspace directories
	DefaultOu NullableString `json:"defaultOu,omitempty"`
	// Indicates if maintenance mode is enabled for workspaces
	EnableMaintenanceMode *bool `json:"enableMaintenanceMode,omitempty"`
}

AddAwsEdcDirectoryConnection struct for AddAwsEdcDirectoryConnection

func NewAddAwsEdcDirectoryConnection

func NewAddAwsEdcDirectoryConnection(accountType AccountType, name string) *AddAwsEdcDirectoryConnection

NewAddAwsEdcDirectoryConnection instantiates a new AddAwsEdcDirectoryConnection 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 NewAddAwsEdcDirectoryConnectionWithDefaults

func NewAddAwsEdcDirectoryConnectionWithDefaults() *AddAwsEdcDirectoryConnection

NewAddAwsEdcDirectoryConnectionWithDefaults instantiates a new AddAwsEdcDirectoryConnection 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 (*AddAwsEdcDirectoryConnection) GetDefaultOu

func (o *AddAwsEdcDirectoryConnection) GetDefaultOu() string

GetDefaultOu returns the DefaultOu field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetDefaultOuOk

func (o *AddAwsEdcDirectoryConnection) GetDefaultOuOk() (*string, bool)

GetDefaultOuOk returns a tuple with the DefaultOu field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetDirectoryId

func (o *AddAwsEdcDirectoryConnection) GetDirectoryId() string

GetDirectoryId returns the DirectoryId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetDirectoryIdOk

func (o *AddAwsEdcDirectoryConnection) GetDirectoryIdOk() (*string, bool)

GetDirectoryIdOk returns a tuple with the DirectoryId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetEnableMaintenanceMode

func (o *AddAwsEdcDirectoryConnection) GetEnableMaintenanceMode() bool

GetEnableMaintenanceMode returns the EnableMaintenanceMode field value if set, zero value otherwise.

func (*AddAwsEdcDirectoryConnection) GetEnableMaintenanceModeOk

func (o *AddAwsEdcDirectoryConnection) GetEnableMaintenanceModeOk() (*bool, bool)

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

func (*AddAwsEdcDirectoryConnection) GetEnableWorkDocs

func (o *AddAwsEdcDirectoryConnection) GetEnableWorkDocs() bool

GetEnableWorkDocs returns the EnableWorkDocs field value if set, zero value otherwise.

func (*AddAwsEdcDirectoryConnection) GetEnableWorkDocsOk

func (o *AddAwsEdcDirectoryConnection) GetEnableWorkDocsOk() (*bool, bool)

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

func (*AddAwsEdcDirectoryConnection) GetSecurityGroupId

func (o *AddAwsEdcDirectoryConnection) GetSecurityGroupId() string

GetSecurityGroupId returns the SecurityGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetSecurityGroupIdOk

func (o *AddAwsEdcDirectoryConnection) GetSecurityGroupIdOk() (*string, bool)

GetSecurityGroupIdOk returns a tuple with the SecurityGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetSubnet1Id

func (o *AddAwsEdcDirectoryConnection) GetSubnet1Id() string

GetSubnet1Id returns the Subnet1Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetSubnet1IdOk

func (o *AddAwsEdcDirectoryConnection) GetSubnet1IdOk() (*string, bool)

GetSubnet1IdOk returns a tuple with the Subnet1Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetSubnet2Id

func (o *AddAwsEdcDirectoryConnection) GetSubnet2Id() string

GetSubnet2Id returns the Subnet2Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetSubnet2IdOk

func (o *AddAwsEdcDirectoryConnection) GetSubnet2IdOk() (*string, bool)

GetSubnet2IdOk returns a tuple with the Subnet2Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetTenancy

GetTenancy returns the Tenancy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcDirectoryConnection) GetTenancyOk

GetTenancyOk returns a tuple with the Tenancy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator

func (o *AddAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator() bool

GetUserEnabledAsLocalAdministrator returns the UserEnabledAsLocalAdministrator field value if set, zero value otherwise.

func (*AddAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk

func (o *AddAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk() (*bool, bool)

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

func (*AddAwsEdcDirectoryConnection) HasDefaultOu

func (o *AddAwsEdcDirectoryConnection) HasDefaultOu() bool

HasDefaultOu returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasDirectoryId

func (o *AddAwsEdcDirectoryConnection) HasDirectoryId() bool

HasDirectoryId returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasEnableMaintenanceMode

func (o *AddAwsEdcDirectoryConnection) HasEnableMaintenanceMode() bool

HasEnableMaintenanceMode returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasEnableWorkDocs

func (o *AddAwsEdcDirectoryConnection) HasEnableWorkDocs() bool

HasEnableWorkDocs returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasSecurityGroupId

func (o *AddAwsEdcDirectoryConnection) HasSecurityGroupId() bool

HasSecurityGroupId returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasSubnet1Id

func (o *AddAwsEdcDirectoryConnection) HasSubnet1Id() bool

HasSubnet1Id returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasSubnet2Id

func (o *AddAwsEdcDirectoryConnection) HasSubnet2Id() bool

HasSubnet2Id returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasTenancy

func (o *AddAwsEdcDirectoryConnection) HasTenancy() bool

HasTenancy returns a boolean if a field has been set.

func (*AddAwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator

func (o *AddAwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator() bool

HasUserEnabledAsLocalAdministrator returns a boolean if a field has been set.

func (AddAwsEdcDirectoryConnection) MarshalJSON

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

func (*AddAwsEdcDirectoryConnection) SetDefaultOu

func (o *AddAwsEdcDirectoryConnection) SetDefaultOu(v string)

SetDefaultOu gets a reference to the given NullableString and assigns it to the DefaultOu field.

func (*AddAwsEdcDirectoryConnection) SetDefaultOuNil

func (o *AddAwsEdcDirectoryConnection) SetDefaultOuNil()

SetDefaultOuNil sets the value for DefaultOu to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetDirectoryId

func (o *AddAwsEdcDirectoryConnection) SetDirectoryId(v string)

SetDirectoryId gets a reference to the given NullableString and assigns it to the DirectoryId field.

func (*AddAwsEdcDirectoryConnection) SetDirectoryIdNil

func (o *AddAwsEdcDirectoryConnection) SetDirectoryIdNil()

SetDirectoryIdNil sets the value for DirectoryId to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetEnableMaintenanceMode

func (o *AddAwsEdcDirectoryConnection) SetEnableMaintenanceMode(v bool)

SetEnableMaintenanceMode gets a reference to the given bool and assigns it to the EnableMaintenanceMode field.

func (*AddAwsEdcDirectoryConnection) SetEnableWorkDocs

func (o *AddAwsEdcDirectoryConnection) SetEnableWorkDocs(v bool)

SetEnableWorkDocs gets a reference to the given bool and assigns it to the EnableWorkDocs field.

func (*AddAwsEdcDirectoryConnection) SetSecurityGroupId

func (o *AddAwsEdcDirectoryConnection) SetSecurityGroupId(v string)

SetSecurityGroupId gets a reference to the given NullableString and assigns it to the SecurityGroupId field.

func (*AddAwsEdcDirectoryConnection) SetSecurityGroupIdNil

func (o *AddAwsEdcDirectoryConnection) SetSecurityGroupIdNil()

SetSecurityGroupIdNil sets the value for SecurityGroupId to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetSubnet1Id

func (o *AddAwsEdcDirectoryConnection) SetSubnet1Id(v string)

SetSubnet1Id gets a reference to the given NullableString and assigns it to the Subnet1Id field.

func (*AddAwsEdcDirectoryConnection) SetSubnet1IdNil

func (o *AddAwsEdcDirectoryConnection) SetSubnet1IdNil()

SetSubnet1IdNil sets the value for Subnet1Id to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetSubnet2Id

func (o *AddAwsEdcDirectoryConnection) SetSubnet2Id(v string)

SetSubnet2Id gets a reference to the given NullableString and assigns it to the Subnet2Id field.

func (*AddAwsEdcDirectoryConnection) SetSubnet2IdNil

func (o *AddAwsEdcDirectoryConnection) SetSubnet2IdNil()

SetSubnet2IdNil sets the value for Subnet2Id to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetTenancy

SetTenancy gets a reference to the given NullableAwsEdcDirectoryTenancy and assigns it to the Tenancy field.

func (*AddAwsEdcDirectoryConnection) SetTenancyNil

func (o *AddAwsEdcDirectoryConnection) SetTenancyNil()

SetTenancyNil sets the value for Tenancy to be an explicit nil

func (*AddAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator

func (o *AddAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator(v bool)

SetUserEnabledAsLocalAdministrator gets a reference to the given bool and assigns it to the UserEnabledAsLocalAdministrator field.

func (AddAwsEdcDirectoryConnection) ToMap

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

func (*AddAwsEdcDirectoryConnection) UnsetDefaultOu

func (o *AddAwsEdcDirectoryConnection) UnsetDefaultOu()

UnsetDefaultOu ensures that no value is present for DefaultOu, not even an explicit nil

func (*AddAwsEdcDirectoryConnection) UnsetDirectoryId

func (o *AddAwsEdcDirectoryConnection) UnsetDirectoryId()

UnsetDirectoryId ensures that no value is present for DirectoryId, not even an explicit nil

func (*AddAwsEdcDirectoryConnection) UnsetSecurityGroupId

func (o *AddAwsEdcDirectoryConnection) UnsetSecurityGroupId()

UnsetSecurityGroupId ensures that no value is present for SecurityGroupId, not even an explicit nil

func (*AddAwsEdcDirectoryConnection) UnsetSubnet1Id

func (o *AddAwsEdcDirectoryConnection) UnsetSubnet1Id()

UnsetSubnet1Id ensures that no value is present for Subnet1Id, not even an explicit nil

func (*AddAwsEdcDirectoryConnection) UnsetSubnet2Id

func (o *AddAwsEdcDirectoryConnection) UnsetSubnet2Id()

UnsetSubnet2Id ensures that no value is present for Subnet2Id, not even an explicit nil

func (*AddAwsEdcDirectoryConnection) UnsetTenancy

func (o *AddAwsEdcDirectoryConnection) UnsetTenancy()

UnsetTenancy ensures that no value is present for Tenancy, not even an explicit nil

type AddAwsEdcWorkspace

type AddAwsEdcWorkspace struct {
	// Username associated with workspace
	Username NullableString `json:"username,omitempty"`
	// Size of operating system volume
	RootVolumeSize *int32 `json:"rootVolumeSize,omitempty"`
	// Size of user storage volume
	UserVolumeSize *int32                             `json:"userVolumeSize,omitempty"`
	RunningMode    NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
}

AddAwsEdcWorkspace Configuration for individual workspace

func NewAddAwsEdcWorkspace

func NewAddAwsEdcWorkspace() *AddAwsEdcWorkspace

NewAddAwsEdcWorkspace instantiates a new AddAwsEdcWorkspace 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 NewAddAwsEdcWorkspaceWithDefaults

func NewAddAwsEdcWorkspaceWithDefaults() *AddAwsEdcWorkspace

NewAddAwsEdcWorkspaceWithDefaults instantiates a new AddAwsEdcWorkspace 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 (*AddAwsEdcWorkspace) GetRootVolumeSize

func (o *AddAwsEdcWorkspace) GetRootVolumeSize() int32

GetRootVolumeSize returns the RootVolumeSize field value if set, zero value otherwise.

func (*AddAwsEdcWorkspace) GetRootVolumeSizeOk

func (o *AddAwsEdcWorkspace) GetRootVolumeSizeOk() (*int32, bool)

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

func (*AddAwsEdcWorkspace) GetRunningMode

func (o *AddAwsEdcWorkspace) GetRunningMode() AwsEdcWorkspaceRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcWorkspace) GetRunningModeOk

func (o *AddAwsEdcWorkspace) GetRunningModeOk() (*AwsEdcWorkspaceRunningMode, bool)

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcWorkspace) GetUserVolumeSize

func (o *AddAwsEdcWorkspace) GetUserVolumeSize() int32

GetUserVolumeSize returns the UserVolumeSize field value if set, zero value otherwise.

func (*AddAwsEdcWorkspace) GetUserVolumeSizeOk

func (o *AddAwsEdcWorkspace) GetUserVolumeSizeOk() (*int32, bool)

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

func (*AddAwsEdcWorkspace) GetUsername

func (o *AddAwsEdcWorkspace) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddAwsEdcWorkspace) GetUsernameOk

func (o *AddAwsEdcWorkspace) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddAwsEdcWorkspace) HasRootVolumeSize

func (o *AddAwsEdcWorkspace) HasRootVolumeSize() bool

HasRootVolumeSize returns a boolean if a field has been set.

func (*AddAwsEdcWorkspace) HasRunningMode

func (o *AddAwsEdcWorkspace) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*AddAwsEdcWorkspace) HasUserVolumeSize

func (o *AddAwsEdcWorkspace) HasUserVolumeSize() bool

HasUserVolumeSize returns a boolean if a field has been set.

func (*AddAwsEdcWorkspace) HasUsername

func (o *AddAwsEdcWorkspace) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AddAwsEdcWorkspace) MarshalJSON

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

func (*AddAwsEdcWorkspace) SetRootVolumeSize

func (o *AddAwsEdcWorkspace) SetRootVolumeSize(v int32)

SetRootVolumeSize gets a reference to the given int32 and assigns it to the RootVolumeSize field.

func (*AddAwsEdcWorkspace) SetRunningMode

func (o *AddAwsEdcWorkspace) SetRunningMode(v AwsEdcWorkspaceRunningMode)

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*AddAwsEdcWorkspace) SetRunningModeNil

func (o *AddAwsEdcWorkspace) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*AddAwsEdcWorkspace) SetUserVolumeSize

func (o *AddAwsEdcWorkspace) SetUserVolumeSize(v int32)

SetUserVolumeSize gets a reference to the given int32 and assigns it to the UserVolumeSize field.

func (*AddAwsEdcWorkspace) SetUsername

func (o *AddAwsEdcWorkspace) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*AddAwsEdcWorkspace) SetUsernameNil

func (o *AddAwsEdcWorkspace) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (AddAwsEdcWorkspace) ToMap

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

func (*AddAwsEdcWorkspace) UnsetRunningMode

func (o *AddAwsEdcWorkspace) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*AddAwsEdcWorkspace) UnsetUsername

func (o *AddAwsEdcWorkspace) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type AddDeploymentMachines

type AddDeploymentMachines struct {
	AccountType AccountType `json:"accountType"`
}

AddDeploymentMachines Adds machines to deployment

func NewAddDeploymentMachines

func NewAddDeploymentMachines(accountType AccountType) *AddDeploymentMachines

NewAddDeploymentMachines instantiates a new AddDeploymentMachines 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 NewAddDeploymentMachinesWithDefaults

func NewAddDeploymentMachinesWithDefaults() *AddDeploymentMachines

NewAddDeploymentMachinesWithDefaults instantiates a new AddDeploymentMachines 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 (*AddDeploymentMachines) GetAccountType

func (o *AddDeploymentMachines) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*AddDeploymentMachines) GetAccountTypeOk

func (o *AddDeploymentMachines) GetAccountTypeOk() (*AccountType, bool)

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

func (AddDeploymentMachines) MarshalJSON

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

func (*AddDeploymentMachines) SetAccountType

func (o *AddDeploymentMachines) SetAccountType(v AccountType)

SetAccountType sets field value

func (AddDeploymentMachines) ToMap

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

type AddResourceConnection

type AddResourceConnection struct {
	AccountType AccountType `json:"accountType"`
	// The name of the resource connection to create
	Name string `json:"name"`
	// Zone id
	ZoneId NullableString `json:"zoneId,omitempty"`
	// The ID of the CC resource location  Ignored if ZoneId is specified
	ResourceLocationId NullableString `json:"resourceLocationId,omitempty"`
	// The ID of the resource connection to be added
	ConnectionId NullableString `json:"connectionId,omitempty"`
}

AddResourceConnection Adds resource connection

func NewAddResourceConnection

func NewAddResourceConnection(accountType AccountType, name string) *AddResourceConnection

NewAddResourceConnection instantiates a new AddResourceConnection 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 NewAddResourceConnectionWithDefaults

func NewAddResourceConnectionWithDefaults() *AddResourceConnection

NewAddResourceConnectionWithDefaults instantiates a new AddResourceConnection 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 (*AddResourceConnection) GetAccountType

func (o *AddResourceConnection) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*AddResourceConnection) GetAccountTypeOk

func (o *AddResourceConnection) GetAccountTypeOk() (*AccountType, bool)

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

func (*AddResourceConnection) GetConnectionId

func (o *AddResourceConnection) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddResourceConnection) GetConnectionIdOk

func (o *AddResourceConnection) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddResourceConnection) GetName

func (o *AddResourceConnection) GetName() string

GetName returns the Name field value

func (*AddResourceConnection) GetNameOk

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

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

func (*AddResourceConnection) GetResourceLocationId

func (o *AddResourceConnection) GetResourceLocationId() string

GetResourceLocationId returns the ResourceLocationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddResourceConnection) GetResourceLocationIdOk

func (o *AddResourceConnection) GetResourceLocationIdOk() (*string, bool)

GetResourceLocationIdOk returns a tuple with the ResourceLocationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddResourceConnection) GetZoneId

func (o *AddResourceConnection) GetZoneId() string

GetZoneId returns the ZoneId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AddResourceConnection) GetZoneIdOk

func (o *AddResourceConnection) GetZoneIdOk() (*string, bool)

GetZoneIdOk returns a tuple with the ZoneId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AddResourceConnection) HasConnectionId

func (o *AddResourceConnection) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*AddResourceConnection) HasResourceLocationId

func (o *AddResourceConnection) HasResourceLocationId() bool

HasResourceLocationId returns a boolean if a field has been set.

func (*AddResourceConnection) HasZoneId

func (o *AddResourceConnection) HasZoneId() bool

HasZoneId returns a boolean if a field has been set.

func (AddResourceConnection) MarshalJSON

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

func (*AddResourceConnection) SetAccountType

func (o *AddResourceConnection) SetAccountType(v AccountType)

SetAccountType sets field value

func (*AddResourceConnection) SetConnectionId

func (o *AddResourceConnection) SetConnectionId(v string)

SetConnectionId gets a reference to the given NullableString and assigns it to the ConnectionId field.

func (*AddResourceConnection) SetConnectionIdNil

func (o *AddResourceConnection) SetConnectionIdNil()

SetConnectionIdNil sets the value for ConnectionId to be an explicit nil

func (*AddResourceConnection) SetName

func (o *AddResourceConnection) SetName(v string)

SetName sets field value

func (*AddResourceConnection) SetResourceLocationId

func (o *AddResourceConnection) SetResourceLocationId(v string)

SetResourceLocationId gets a reference to the given NullableString and assigns it to the ResourceLocationId field.

func (*AddResourceConnection) SetResourceLocationIdNil

func (o *AddResourceConnection) SetResourceLocationIdNil()

SetResourceLocationIdNil sets the value for ResourceLocationId to be an explicit nil

func (*AddResourceConnection) SetZoneId

func (o *AddResourceConnection) SetZoneId(v string)

SetZoneId gets a reference to the given NullableString and assigns it to the ZoneId field.

func (*AddResourceConnection) SetZoneIdNil

func (o *AddResourceConnection) SetZoneIdNil()

SetZoneIdNil sets the value for ZoneId to be an explicit nil

func (AddResourceConnection) ToMap

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

func (*AddResourceConnection) UnsetConnectionId

func (o *AddResourceConnection) UnsetConnectionId()

UnsetConnectionId ensures that no value is present for ConnectionId, not even an explicit nil

func (*AddResourceConnection) UnsetResourceLocationId

func (o *AddResourceConnection) UnsetResourceLocationId()

UnsetResourceLocationId ensures that no value is present for ResourceLocationId, not even an explicit nil

func (*AddResourceConnection) UnsetZoneId

func (o *AddResourceConnection) UnsetZoneId()

UnsetZoneId ensures that no value is present for ZoneId, not even an explicit nil

type AllocationType

type AllocationType string

AllocationType Machine allocation type, indicating how machines are allocated to users.

const (
	ALLOCATIONTYPE_UNKNOWN AllocationType = "Unknown"
	ALLOCATIONTYPE_STATIC  AllocationType = "Static"
	ALLOCATIONTYPE_RANDOM  AllocationType = "Random"
)

List of AllocationType

func NewAllocationTypeFromValue

func NewAllocationTypeFromValue(v string) (*AllocationType, error)

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

func (AllocationType) IsValid

func (v AllocationType) IsValid() bool

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

func (AllocationType) Ptr

func (v AllocationType) Ptr() *AllocationType

Ptr returns reference to AllocationType value

func (*AllocationType) UnmarshalJSON

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

type AssociatedDeployment

type AssociatedDeployment struct {
	// Deployment Id
	DeploymentId NullableString `json:"deploymentId,omitempty"`
	// Deployment Name
	DeploymentName NullableString `json:"deploymentName,omitempty"`
}

AssociatedDeployment struct for AssociatedDeployment

func NewAssociatedDeployment

func NewAssociatedDeployment() *AssociatedDeployment

NewAssociatedDeployment instantiates a new AssociatedDeployment 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 NewAssociatedDeploymentWithDefaults

func NewAssociatedDeploymentWithDefaults() *AssociatedDeployment

NewAssociatedDeploymentWithDefaults instantiates a new AssociatedDeployment 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 (*AssociatedDeployment) GetDeploymentId

func (o *AssociatedDeployment) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedDeployment) GetDeploymentIdOk

func (o *AssociatedDeployment) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedDeployment) GetDeploymentName

func (o *AssociatedDeployment) GetDeploymentName() string

GetDeploymentName returns the DeploymentName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedDeployment) GetDeploymentNameOk

func (o *AssociatedDeployment) GetDeploymentNameOk() (*string, bool)

GetDeploymentNameOk returns a tuple with the DeploymentName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedDeployment) HasDeploymentId

func (o *AssociatedDeployment) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*AssociatedDeployment) HasDeploymentName

func (o *AssociatedDeployment) HasDeploymentName() bool

HasDeploymentName returns a boolean if a field has been set.

func (AssociatedDeployment) MarshalJSON

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

func (*AssociatedDeployment) SetDeploymentId

func (o *AssociatedDeployment) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given NullableString and assigns it to the DeploymentId field.

func (*AssociatedDeployment) SetDeploymentIdNil

func (o *AssociatedDeployment) SetDeploymentIdNil()

SetDeploymentIdNil sets the value for DeploymentId to be an explicit nil

func (*AssociatedDeployment) SetDeploymentName

func (o *AssociatedDeployment) SetDeploymentName(v string)

SetDeploymentName gets a reference to the given NullableString and assigns it to the DeploymentName field.

func (*AssociatedDeployment) SetDeploymentNameNil

func (o *AssociatedDeployment) SetDeploymentNameNil()

SetDeploymentNameNil sets the value for DeploymentName to be an explicit nil

func (AssociatedDeployment) ToMap

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

func (*AssociatedDeployment) UnsetDeploymentId

func (o *AssociatedDeployment) UnsetDeploymentId()

UnsetDeploymentId ensures that no value is present for DeploymentId, not even an explicit nil

func (*AssociatedDeployment) UnsetDeploymentName

func (o *AssociatedDeployment) UnsetDeploymentName()

UnsetDeploymentName ensures that no value is present for DeploymentName, not even an explicit nil

type AssociatedImage

type AssociatedImage struct {
	// Image Id
	ImageId NullableString `json:"imageId,omitempty"`
	// Image Name
	ImageName NullableString `json:"imageName,omitempty"`
}

AssociatedImage struct for AssociatedImage

func NewAssociatedImage

func NewAssociatedImage() *AssociatedImage

NewAssociatedImage instantiates a new AssociatedImage 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 NewAssociatedImageWithDefaults

func NewAssociatedImageWithDefaults() *AssociatedImage

NewAssociatedImageWithDefaults instantiates a new AssociatedImage 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 (*AssociatedImage) GetImageId

func (o *AssociatedImage) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedImage) GetImageIdOk

func (o *AssociatedImage) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedImage) GetImageName

func (o *AssociatedImage) GetImageName() string

GetImageName returns the ImageName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedImage) GetImageNameOk

func (o *AssociatedImage) GetImageNameOk() (*string, bool)

GetImageNameOk returns a tuple with the ImageName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedImage) HasImageId

func (o *AssociatedImage) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*AssociatedImage) HasImageName

func (o *AssociatedImage) HasImageName() bool

HasImageName returns a boolean if a field has been set.

func (AssociatedImage) MarshalJSON

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

func (*AssociatedImage) SetImageId

func (o *AssociatedImage) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*AssociatedImage) SetImageIdNil

func (o *AssociatedImage) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (*AssociatedImage) SetImageName

func (o *AssociatedImage) SetImageName(v string)

SetImageName gets a reference to the given NullableString and assigns it to the ImageName field.

func (*AssociatedImage) SetImageNameNil

func (o *AssociatedImage) SetImageNameNil()

SetImageNameNil sets the value for ImageName to be an explicit nil

func (AssociatedImage) ToMap

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

func (*AssociatedImage) UnsetImageId

func (o *AssociatedImage) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

func (*AssociatedImage) UnsetImageName

func (o *AssociatedImage) UnsetImageName()

UnsetImageName ensures that no value is present for ImageName, not even an explicit nil

type AssociatedResourceConnection

type AssociatedResourceConnection struct {
	// Resource Connection Id
	ResourceConnectionId NullableString `json:"resourceConnectionId,omitempty"`
	// Resource Connection Name
	ResourceConnectionName NullableString `json:"resourceConnectionName,omitempty"`
}

AssociatedResourceConnection struct for AssociatedResourceConnection

func NewAssociatedResourceConnection

func NewAssociatedResourceConnection() *AssociatedResourceConnection

NewAssociatedResourceConnection instantiates a new AssociatedResourceConnection 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 NewAssociatedResourceConnectionWithDefaults

func NewAssociatedResourceConnectionWithDefaults() *AssociatedResourceConnection

NewAssociatedResourceConnectionWithDefaults instantiates a new AssociatedResourceConnection 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 (*AssociatedResourceConnection) GetResourceConnectionId

func (o *AssociatedResourceConnection) GetResourceConnectionId() string

GetResourceConnectionId returns the ResourceConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedResourceConnection) GetResourceConnectionIdOk

func (o *AssociatedResourceConnection) GetResourceConnectionIdOk() (*string, bool)

GetResourceConnectionIdOk returns a tuple with the ResourceConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedResourceConnection) GetResourceConnectionName

func (o *AssociatedResourceConnection) GetResourceConnectionName() string

GetResourceConnectionName returns the ResourceConnectionName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssociatedResourceConnection) GetResourceConnectionNameOk

func (o *AssociatedResourceConnection) GetResourceConnectionNameOk() (*string, bool)

GetResourceConnectionNameOk returns a tuple with the ResourceConnectionName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssociatedResourceConnection) HasResourceConnectionId

func (o *AssociatedResourceConnection) HasResourceConnectionId() bool

HasResourceConnectionId returns a boolean if a field has been set.

func (*AssociatedResourceConnection) HasResourceConnectionName

func (o *AssociatedResourceConnection) HasResourceConnectionName() bool

HasResourceConnectionName returns a boolean if a field has been set.

func (AssociatedResourceConnection) MarshalJSON

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

func (*AssociatedResourceConnection) SetResourceConnectionId

func (o *AssociatedResourceConnection) SetResourceConnectionId(v string)

SetResourceConnectionId gets a reference to the given NullableString and assigns it to the ResourceConnectionId field.

func (*AssociatedResourceConnection) SetResourceConnectionIdNil

func (o *AssociatedResourceConnection) SetResourceConnectionIdNil()

SetResourceConnectionIdNil sets the value for ResourceConnectionId to be an explicit nil

func (*AssociatedResourceConnection) SetResourceConnectionName

func (o *AssociatedResourceConnection) SetResourceConnectionName(v string)

SetResourceConnectionName gets a reference to the given NullableString and assigns it to the ResourceConnectionName field.

func (*AssociatedResourceConnection) SetResourceConnectionNameNil

func (o *AssociatedResourceConnection) SetResourceConnectionNameNil()

SetResourceConnectionNameNil sets the value for ResourceConnectionName to be an explicit nil

func (AssociatedResourceConnection) ToMap

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

func (*AssociatedResourceConnection) UnsetResourceConnectionId

func (o *AssociatedResourceConnection) UnsetResourceConnectionId()

UnsetResourceConnectionId ensures that no value is present for ResourceConnectionId, not even an explicit nil

func (*AssociatedResourceConnection) UnsetResourceConnectionName

func (o *AssociatedResourceConnection) UnsetResourceConnectionName()

UnsetResourceConnectionName ensures that no value is present for ResourceConnectionName, not even an explicit nil

type AwsAccountResourceType

type AwsAccountResourceType string

AwsAccountResourceType Types of resources that can be located from an AWS account

const (
	AWSACCOUNTRESOURCETYPE_DIRECTORY         AwsAccountResourceType = "AWS_DIRECTORY"
	AWSACCOUNTRESOURCETYPE_VPC               AwsAccountResourceType = "AWS_VPC"
	AWSACCOUNTRESOURCETYPE_SUBNET            AwsAccountResourceType = "AWS_SUBNET"
	AWSACCOUNTRESOURCETYPE_SECGROUP          AwsAccountResourceType = "AWS_SECGROUP"
	AWSACCOUNTRESOURCETYPE_CIDRRANGE         AwsAccountResourceType = "AWS_CIDRRANGE"
	AWSACCOUNTRESOURCETYPE_AMI               AwsAccountResourceType = "AWS_AMI"
	AWSACCOUNTRESOURCETYPE_REGIONS           AwsAccountResourceType = "AWS_REGIONS"
	AWSACCOUNTRESOURCETYPE_BYOL_REGISTRATION AwsAccountResourceType = "AWS_BYOL_REGISTRATION"
	AWSACCOUNTRESOURCETYPE_CITRIXIAMUSER     AwsAccountResourceType = "AWS_CITRIXIAMUSER"
	AWSACCOUNTRESOURCETYPE_CLOUDFORMATION    AwsAccountResourceType = "AWS_CLOUDFORMATION"
	AWSACCOUNTRESOURCETYPE_EC2_INSTANCE_TYPE AwsAccountResourceType = "AWS_EC2_INSTANCE_TYPE"
	AWSACCOUNTRESOURCETYPE_EC2_KEY_PAIR      AwsAccountResourceType = "AWS_EC2_KEY_PAIR"
)

List of AwsAccountResourceType

func NewAwsAccountResourceTypeFromValue

func NewAwsAccountResourceTypeFromValue(v string) (*AwsAccountResourceType, error)

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

func (AwsAccountResourceType) IsValid

func (v AwsAccountResourceType) IsValid() bool

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

func (AwsAccountResourceType) Ptr

Ptr returns reference to AwsAccountResourceType value

func (*AwsAccountResourceType) UnmarshalJSON

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

type AwsEdcAccount

type AwsEdcAccount struct {
	Account
	// Indicates if the associated AWS EDC account has BYOL support enabled
	ByolAccount *bool `json:"byolAccount,omitempty"`
	// The CIDR range that is associated with this account
	ByolCidrRange NullableString `json:"byolCidrRange,omitempty"`
	// ID of the AWS Account
	AwsAccount NullableString `json:"awsAccount,omitempty"`
	// The AWS region the account is associated with
	AwsRegion NullableString `json:"awsRegion,omitempty"`
	// Indicates the list of missing permissions in the role associated with the account
	AwsEdcMissingRolePermissions []AwsEdcMissingRolePermissions `json:"awsEdcMissingRolePermissions,omitempty"`
	// Indicates if the associated AWS EDC account has BYOL feature is enabled
	AwsByolFeatureEnabled NullableBool           `json:"awsByolFeatureEnabled,omitempty"`
	AwsAuthType           *AwsEdcAccountAuthType `json:"awsAuthType,omitempty"`
}

AwsEdcAccount struct for AwsEdcAccount

func NewAwsEdcAccount

func NewAwsEdcAccount(accountType AccountType) *AwsEdcAccount

NewAwsEdcAccount instantiates a new AwsEdcAccount 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 NewAwsEdcAccountWithDefaults

func NewAwsEdcAccountWithDefaults() *AwsEdcAccount

NewAwsEdcAccountWithDefaults instantiates a new AwsEdcAccount 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 (*AwsEdcAccount) GetAwsAccount

func (o *AwsEdcAccount) GetAwsAccount() string

GetAwsAccount returns the AwsAccount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccount) GetAwsAccountOk

func (o *AwsEdcAccount) GetAwsAccountOk() (*string, bool)

GetAwsAccountOk returns a tuple with the AwsAccount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccount) GetAwsAuthType

func (o *AwsEdcAccount) GetAwsAuthType() AwsEdcAccountAuthType

GetAwsAuthType returns the AwsAuthType field value if set, zero value otherwise.

func (*AwsEdcAccount) GetAwsAuthTypeOk

func (o *AwsEdcAccount) GetAwsAuthTypeOk() (*AwsEdcAccountAuthType, bool)

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

func (*AwsEdcAccount) GetAwsByolFeatureEnabled

func (o *AwsEdcAccount) GetAwsByolFeatureEnabled() bool

GetAwsByolFeatureEnabled returns the AwsByolFeatureEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccount) GetAwsByolFeatureEnabledOk

func (o *AwsEdcAccount) GetAwsByolFeatureEnabledOk() (*bool, bool)

GetAwsByolFeatureEnabledOk returns a tuple with the AwsByolFeatureEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccount) GetAwsEdcMissingRolePermissions

func (o *AwsEdcAccount) GetAwsEdcMissingRolePermissions() []AwsEdcMissingRolePermissions

GetAwsEdcMissingRolePermissions returns the AwsEdcMissingRolePermissions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccount) GetAwsEdcMissingRolePermissionsOk

func (o *AwsEdcAccount) GetAwsEdcMissingRolePermissionsOk() ([]AwsEdcMissingRolePermissions, bool)

GetAwsEdcMissingRolePermissionsOk returns a tuple with the AwsEdcMissingRolePermissions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccount) GetAwsRegion

func (o *AwsEdcAccount) GetAwsRegion() string

GetAwsRegion returns the AwsRegion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccount) GetAwsRegionOk

func (o *AwsEdcAccount) GetAwsRegionOk() (*string, bool)

GetAwsRegionOk returns a tuple with the AwsRegion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccount) GetByolAccount

func (o *AwsEdcAccount) GetByolAccount() bool

GetByolAccount returns the ByolAccount field value if set, zero value otherwise.

func (*AwsEdcAccount) GetByolAccountOk

func (o *AwsEdcAccount) GetByolAccountOk() (*bool, bool)

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

func (*AwsEdcAccount) GetByolCidrRange

func (o *AwsEdcAccount) GetByolCidrRange() string

GetByolCidrRange returns the ByolCidrRange field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccount) GetByolCidrRangeOk

func (o *AwsEdcAccount) GetByolCidrRangeOk() (*string, bool)

GetByolCidrRangeOk returns a tuple with the ByolCidrRange field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccount) HasAwsAccount

func (o *AwsEdcAccount) HasAwsAccount() bool

HasAwsAccount returns a boolean if a field has been set.

func (*AwsEdcAccount) HasAwsAuthType

func (o *AwsEdcAccount) HasAwsAuthType() bool

HasAwsAuthType returns a boolean if a field has been set.

func (*AwsEdcAccount) HasAwsByolFeatureEnabled

func (o *AwsEdcAccount) HasAwsByolFeatureEnabled() bool

HasAwsByolFeatureEnabled returns a boolean if a field has been set.

func (*AwsEdcAccount) HasAwsEdcMissingRolePermissions

func (o *AwsEdcAccount) HasAwsEdcMissingRolePermissions() bool

HasAwsEdcMissingRolePermissions returns a boolean if a field has been set.

func (*AwsEdcAccount) HasAwsRegion

func (o *AwsEdcAccount) HasAwsRegion() bool

HasAwsRegion returns a boolean if a field has been set.

func (*AwsEdcAccount) HasByolAccount

func (o *AwsEdcAccount) HasByolAccount() bool

HasByolAccount returns a boolean if a field has been set.

func (*AwsEdcAccount) HasByolCidrRange

func (o *AwsEdcAccount) HasByolCidrRange() bool

HasByolCidrRange returns a boolean if a field has been set.

func (AwsEdcAccount) MarshalJSON

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

func (*AwsEdcAccount) SetAwsAccount

func (o *AwsEdcAccount) SetAwsAccount(v string)

SetAwsAccount gets a reference to the given NullableString and assigns it to the AwsAccount field.

func (*AwsEdcAccount) SetAwsAccountNil

func (o *AwsEdcAccount) SetAwsAccountNil()

SetAwsAccountNil sets the value for AwsAccount to be an explicit nil

func (*AwsEdcAccount) SetAwsAuthType

func (o *AwsEdcAccount) SetAwsAuthType(v AwsEdcAccountAuthType)

SetAwsAuthType gets a reference to the given AwsEdcAccountAuthType and assigns it to the AwsAuthType field.

func (*AwsEdcAccount) SetAwsByolFeatureEnabled

func (o *AwsEdcAccount) SetAwsByolFeatureEnabled(v bool)

SetAwsByolFeatureEnabled gets a reference to the given NullableBool and assigns it to the AwsByolFeatureEnabled field.

func (*AwsEdcAccount) SetAwsByolFeatureEnabledNil

func (o *AwsEdcAccount) SetAwsByolFeatureEnabledNil()

SetAwsByolFeatureEnabledNil sets the value for AwsByolFeatureEnabled to be an explicit nil

func (*AwsEdcAccount) SetAwsEdcMissingRolePermissions

func (o *AwsEdcAccount) SetAwsEdcMissingRolePermissions(v []AwsEdcMissingRolePermissions)

SetAwsEdcMissingRolePermissions gets a reference to the given []AwsEdcMissingRolePermissions and assigns it to the AwsEdcMissingRolePermissions field.

func (*AwsEdcAccount) SetAwsRegion

func (o *AwsEdcAccount) SetAwsRegion(v string)

SetAwsRegion gets a reference to the given NullableString and assigns it to the AwsRegion field.

func (*AwsEdcAccount) SetAwsRegionNil

func (o *AwsEdcAccount) SetAwsRegionNil()

SetAwsRegionNil sets the value for AwsRegion to be an explicit nil

func (*AwsEdcAccount) SetByolAccount

func (o *AwsEdcAccount) SetByolAccount(v bool)

SetByolAccount gets a reference to the given bool and assigns it to the ByolAccount field.

func (*AwsEdcAccount) SetByolCidrRange

func (o *AwsEdcAccount) SetByolCidrRange(v string)

SetByolCidrRange gets a reference to the given NullableString and assigns it to the ByolCidrRange field.

func (*AwsEdcAccount) SetByolCidrRangeNil

func (o *AwsEdcAccount) SetByolCidrRangeNil()

SetByolCidrRangeNil sets the value for ByolCidrRange to be an explicit nil

func (AwsEdcAccount) ToMap

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

func (*AwsEdcAccount) UnsetAwsAccount

func (o *AwsEdcAccount) UnsetAwsAccount()

UnsetAwsAccount ensures that no value is present for AwsAccount, not even an explicit nil

func (*AwsEdcAccount) UnsetAwsByolFeatureEnabled

func (o *AwsEdcAccount) UnsetAwsByolFeatureEnabled()

UnsetAwsByolFeatureEnabled ensures that no value is present for AwsByolFeatureEnabled, not even an explicit nil

func (*AwsEdcAccount) UnsetAwsRegion

func (o *AwsEdcAccount) UnsetAwsRegion()

UnsetAwsRegion ensures that no value is present for AwsRegion, not even an explicit nil

func (*AwsEdcAccount) UnsetByolCidrRange

func (o *AwsEdcAccount) UnsetByolCidrRange()

UnsetByolCidrRange ensures that no value is present for ByolCidrRange, not even an explicit nil

type AwsEdcAccountAuthType

type AwsEdcAccountAuthType string

AwsEdcAccountAuthType the model 'AwsEdcAccountAuthType'

const (
	AWSEDCACCOUNTAUTHTYPE_ASSUME_ROLE AwsEdcAccountAuthType = "ASSUME_ROLE"
	AWSEDCACCOUNTAUTHTYPE_ACCESS_KEY  AwsEdcAccountAuthType = "ACCESS_KEY"
)

List of AwsEdcAccountAuthType

func NewAwsEdcAccountAuthTypeFromValue

func NewAwsEdcAccountAuthTypeFromValue(v string) (*AwsEdcAccountAuthType, error)

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

func (AwsEdcAccountAuthType) IsValid

func (v AwsEdcAccountAuthType) IsValid() bool

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

func (AwsEdcAccountAuthType) Ptr

Ptr returns reference to AwsEdcAccountAuthType value

func (*AwsEdcAccountAuthType) UnmarshalJSON

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

type AwsEdcAccountByolRegistrationTask

type AwsEdcAccountByolRegistrationTask struct {
	AccountTask
	//
	DedicatedTenancyManagementCidrRange NullableString `json:"dedicatedTenancyManagementCidrRange,omitempty"`
	//
	DedicatedTenancySupportEnabled NullableBool                        `json:"dedicatedTenancySupportEnabled,omitempty"`
	ModificationState              NullableAwsEdcDedicatedTenancyState `json:"modificationState,omitempty"`
	//
	ErrorCode NullableString `json:"errorCode,omitempty"`
	//
	ErrorMessage NullableString `json:"errorMessage,omitempty"`
}

AwsEdcAccountByolRegistrationTask Task status for a Aws BYOL Registration task

func NewAwsEdcAccountByolRegistrationTask

func NewAwsEdcAccountByolRegistrationTask(taskType TaskType) *AwsEdcAccountByolRegistrationTask

NewAwsEdcAccountByolRegistrationTask instantiates a new AwsEdcAccountByolRegistrationTask 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 NewAwsEdcAccountByolRegistrationTaskWithDefaults

func NewAwsEdcAccountByolRegistrationTaskWithDefaults() *AwsEdcAccountByolRegistrationTask

NewAwsEdcAccountByolRegistrationTaskWithDefaults instantiates a new AwsEdcAccountByolRegistrationTask 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 (*AwsEdcAccountByolRegistrationTask) GetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountByolRegistrationTask) GetDedicatedTenancyManagementCidrRange() string

GetDedicatedTenancyManagementCidrRange returns the DedicatedTenancyManagementCidrRange field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountByolRegistrationTask) GetDedicatedTenancyManagementCidrRangeOk

func (o *AwsEdcAccountByolRegistrationTask) GetDedicatedTenancyManagementCidrRangeOk() (*string, bool)

GetDedicatedTenancyManagementCidrRangeOk returns a tuple with the DedicatedTenancyManagementCidrRange field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountByolRegistrationTask) GetDedicatedTenancySupportEnabled

func (o *AwsEdcAccountByolRegistrationTask) GetDedicatedTenancySupportEnabled() bool

GetDedicatedTenancySupportEnabled returns the DedicatedTenancySupportEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountByolRegistrationTask) GetDedicatedTenancySupportEnabledOk

func (o *AwsEdcAccountByolRegistrationTask) GetDedicatedTenancySupportEnabledOk() (*bool, bool)

GetDedicatedTenancySupportEnabledOk returns a tuple with the DedicatedTenancySupportEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountByolRegistrationTask) GetErrorCode

func (o *AwsEdcAccountByolRegistrationTask) GetErrorCode() string

GetErrorCode returns the ErrorCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountByolRegistrationTask) GetErrorCodeOk

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

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountByolRegistrationTask) GetErrorMessage

func (o *AwsEdcAccountByolRegistrationTask) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountByolRegistrationTask) GetErrorMessageOk

func (o *AwsEdcAccountByolRegistrationTask) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountByolRegistrationTask) GetModificationState

GetModificationState returns the ModificationState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountByolRegistrationTask) GetModificationStateOk

func (o *AwsEdcAccountByolRegistrationTask) GetModificationStateOk() (*AwsEdcDedicatedTenancyState, bool)

GetModificationStateOk returns a tuple with the ModificationState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountByolRegistrationTask) HasDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountByolRegistrationTask) HasDedicatedTenancyManagementCidrRange() bool

HasDedicatedTenancyManagementCidrRange returns a boolean if a field has been set.

func (*AwsEdcAccountByolRegistrationTask) HasDedicatedTenancySupportEnabled

func (o *AwsEdcAccountByolRegistrationTask) HasDedicatedTenancySupportEnabled() bool

HasDedicatedTenancySupportEnabled returns a boolean if a field has been set.

func (*AwsEdcAccountByolRegistrationTask) HasErrorCode

func (o *AwsEdcAccountByolRegistrationTask) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*AwsEdcAccountByolRegistrationTask) HasErrorMessage

func (o *AwsEdcAccountByolRegistrationTask) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*AwsEdcAccountByolRegistrationTask) HasModificationState

func (o *AwsEdcAccountByolRegistrationTask) HasModificationState() bool

HasModificationState returns a boolean if a field has been set.

func (AwsEdcAccountByolRegistrationTask) MarshalJSON

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

func (*AwsEdcAccountByolRegistrationTask) SetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountByolRegistrationTask) SetDedicatedTenancyManagementCidrRange(v string)

SetDedicatedTenancyManagementCidrRange gets a reference to the given NullableString and assigns it to the DedicatedTenancyManagementCidrRange field.

func (*AwsEdcAccountByolRegistrationTask) SetDedicatedTenancyManagementCidrRangeNil

func (o *AwsEdcAccountByolRegistrationTask) SetDedicatedTenancyManagementCidrRangeNil()

SetDedicatedTenancyManagementCidrRangeNil sets the value for DedicatedTenancyManagementCidrRange to be an explicit nil

func (*AwsEdcAccountByolRegistrationTask) SetDedicatedTenancySupportEnabled

func (o *AwsEdcAccountByolRegistrationTask) SetDedicatedTenancySupportEnabled(v bool)

SetDedicatedTenancySupportEnabled gets a reference to the given NullableBool and assigns it to the DedicatedTenancySupportEnabled field.

func (*AwsEdcAccountByolRegistrationTask) SetDedicatedTenancySupportEnabledNil

func (o *AwsEdcAccountByolRegistrationTask) SetDedicatedTenancySupportEnabledNil()

SetDedicatedTenancySupportEnabledNil sets the value for DedicatedTenancySupportEnabled to be an explicit nil

func (*AwsEdcAccountByolRegistrationTask) SetErrorCode

func (o *AwsEdcAccountByolRegistrationTask) SetErrorCode(v string)

SetErrorCode gets a reference to the given NullableString and assigns it to the ErrorCode field.

func (*AwsEdcAccountByolRegistrationTask) SetErrorCodeNil

func (o *AwsEdcAccountByolRegistrationTask) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*AwsEdcAccountByolRegistrationTask) SetErrorMessage

func (o *AwsEdcAccountByolRegistrationTask) SetErrorMessage(v string)

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

func (*AwsEdcAccountByolRegistrationTask) SetErrorMessageNil

func (o *AwsEdcAccountByolRegistrationTask) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AwsEdcAccountByolRegistrationTask) SetModificationState

SetModificationState gets a reference to the given NullableAwsEdcDedicatedTenancyState and assigns it to the ModificationState field.

func (*AwsEdcAccountByolRegistrationTask) SetModificationStateNil

func (o *AwsEdcAccountByolRegistrationTask) SetModificationStateNil()

SetModificationStateNil sets the value for ModificationState to be an explicit nil

func (AwsEdcAccountByolRegistrationTask) ToMap

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

func (*AwsEdcAccountByolRegistrationTask) UnsetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountByolRegistrationTask) UnsetDedicatedTenancyManagementCidrRange()

UnsetDedicatedTenancyManagementCidrRange ensures that no value is present for DedicatedTenancyManagementCidrRange, not even an explicit nil

func (*AwsEdcAccountByolRegistrationTask) UnsetDedicatedTenancySupportEnabled

func (o *AwsEdcAccountByolRegistrationTask) UnsetDedicatedTenancySupportEnabled()

UnsetDedicatedTenancySupportEnabled ensures that no value is present for DedicatedTenancySupportEnabled, not even an explicit nil

func (*AwsEdcAccountByolRegistrationTask) UnsetErrorCode

func (o *AwsEdcAccountByolRegistrationTask) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*AwsEdcAccountByolRegistrationTask) UnsetErrorMessage

func (o *AwsEdcAccountByolRegistrationTask) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*AwsEdcAccountByolRegistrationTask) UnsetModificationState

func (o *AwsEdcAccountByolRegistrationTask) UnsetModificationState()

UnsetModificationState ensures that no value is present for ModificationState, not even an explicit nil

type AwsEdcAccountResource

type AwsEdcAccountResource struct {
	AccountResource
	ResourceType AwsAccountResourceType `json:"resourceType"`
}

AwsEdcAccountResource struct for AwsEdcAccountResource

func NewAwsEdcAccountResource

func NewAwsEdcAccountResource(resourceType AwsAccountResourceType, accountType AccountType) *AwsEdcAccountResource

NewAwsEdcAccountResource instantiates a new AwsEdcAccountResource 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 NewAwsEdcAccountResourceWithDefaults

func NewAwsEdcAccountResourceWithDefaults() *AwsEdcAccountResource

NewAwsEdcAccountResourceWithDefaults instantiates a new AwsEdcAccountResource 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 (*AwsEdcAccountResource) GetResourceType

func (o *AwsEdcAccountResource) GetResourceType() AwsAccountResourceType

GetResourceType returns the ResourceType field value

func (*AwsEdcAccountResource) GetResourceTypeOk

func (o *AwsEdcAccountResource) GetResourceTypeOk() (*AwsAccountResourceType, bool)

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

func (AwsEdcAccountResource) MarshalJSON

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

func (*AwsEdcAccountResource) SetResourceType

func (o *AwsEdcAccountResource) SetResourceType(v AwsAccountResourceType)

SetResourceType sets field value

func (AwsEdcAccountResource) ToMap

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

type AwsEdcAccountResourceAmiImage

type AwsEdcAccountResourceAmiImage struct {
	AwsEdcAccountResource
	// Image Id
	ImageId NullableString `json:"imageId,omitempty"`
	// Image Name
	Name NullableString `json:"name,omitempty"`
	// Image Description
	Description NullableString               `json:"description,omitempty"`
	Status      NullableAwsEdcAmiImageStatus `json:"status,omitempty"`
	// Image Location
	Location           NullableString                       `json:"location,omitempty"`
	ImageType          NullableAwsEdcAmiImageType           `json:"imageType,omitempty"`
	PlatformType       NullableAwsEdcAmiImagePlatform       `json:"platformType,omitempty"`
	BootMode           NullableAwsEdcAmiImageBootMode       `json:"bootMode,omitempty"`
	ArchitectureType   NullableAwsEdcAmiImageArchitecture   `json:"architectureType,omitempty"`
	VirtualizationType NullableAwsEdcAmiImageVirtualization `json:"virtualizationType,omitempty"`
	// Image IsPublic
	Public NullableBool `json:"public,omitempty"`
	// Image Tags
	Tags []Tag `json:"tags,omitempty"`
}

AwsEdcAccountResourceAmiImage struct for AwsEdcAccountResourceAmiImage

func NewAwsEdcAccountResourceAmiImage

func NewAwsEdcAccountResourceAmiImage(accountType AccountType) *AwsEdcAccountResourceAmiImage

NewAwsEdcAccountResourceAmiImage instantiates a new AwsEdcAccountResourceAmiImage 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 NewAwsEdcAccountResourceAmiImageWithDefaults

func NewAwsEdcAccountResourceAmiImageWithDefaults() *AwsEdcAccountResourceAmiImage

NewAwsEdcAccountResourceAmiImageWithDefaults instantiates a new AwsEdcAccountResourceAmiImage 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 (*AwsEdcAccountResourceAmiImage) GetArchitectureType

GetArchitectureType returns the ArchitectureType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetArchitectureTypeOk

func (o *AwsEdcAccountResourceAmiImage) GetArchitectureTypeOk() (*AwsEdcAmiImageArchitecture, bool)

GetArchitectureTypeOk returns a tuple with the ArchitectureType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetBootMode

GetBootMode returns the BootMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetBootModeOk

GetBootModeOk returns a tuple with the BootMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetDescription

func (o *AwsEdcAccountResourceAmiImage) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetDescriptionOk

func (o *AwsEdcAccountResourceAmiImage) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetImageId

func (o *AwsEdcAccountResourceAmiImage) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetImageIdOk

func (o *AwsEdcAccountResourceAmiImage) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetImageType

GetImageType returns the ImageType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetImageTypeOk

func (o *AwsEdcAccountResourceAmiImage) GetImageTypeOk() (*AwsEdcAmiImageType, bool)

GetImageTypeOk returns a tuple with the ImageType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetLocation

func (o *AwsEdcAccountResourceAmiImage) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetLocationOk

func (o *AwsEdcAccountResourceAmiImage) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetName

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetPlatformType

GetPlatformType returns the PlatformType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetPlatformTypeOk

func (o *AwsEdcAccountResourceAmiImage) GetPlatformTypeOk() (*AwsEdcAmiImagePlatform, bool)

GetPlatformTypeOk returns a tuple with the PlatformType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetPublic

func (o *AwsEdcAccountResourceAmiImage) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetPublicOk

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

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetStatus

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetTags

func (o *AwsEdcAccountResourceAmiImage) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetTagsOk

func (o *AwsEdcAccountResourceAmiImage) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) GetVirtualizationType

GetVirtualizationType returns the VirtualizationType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceAmiImage) GetVirtualizationTypeOk

func (o *AwsEdcAccountResourceAmiImage) GetVirtualizationTypeOk() (*AwsEdcAmiImageVirtualization, bool)

GetVirtualizationTypeOk returns a tuple with the VirtualizationType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceAmiImage) HasArchitectureType

func (o *AwsEdcAccountResourceAmiImage) HasArchitectureType() bool

HasArchitectureType returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasBootMode

func (o *AwsEdcAccountResourceAmiImage) HasBootMode() bool

HasBootMode returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasDescription

func (o *AwsEdcAccountResourceAmiImage) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasImageId

func (o *AwsEdcAccountResourceAmiImage) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasImageType

func (o *AwsEdcAccountResourceAmiImage) HasImageType() bool

HasImageType returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasLocation

func (o *AwsEdcAccountResourceAmiImage) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasName

func (o *AwsEdcAccountResourceAmiImage) HasName() bool

HasName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasPlatformType

func (o *AwsEdcAccountResourceAmiImage) HasPlatformType() bool

HasPlatformType returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasPublic

func (o *AwsEdcAccountResourceAmiImage) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasStatus

func (o *AwsEdcAccountResourceAmiImage) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasTags

func (o *AwsEdcAccountResourceAmiImage) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AwsEdcAccountResourceAmiImage) HasVirtualizationType

func (o *AwsEdcAccountResourceAmiImage) HasVirtualizationType() bool

HasVirtualizationType returns a boolean if a field has been set.

func (AwsEdcAccountResourceAmiImage) MarshalJSON

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

func (*AwsEdcAccountResourceAmiImage) SetArchitectureType

SetArchitectureType gets a reference to the given NullableAwsEdcAmiImageArchitecture and assigns it to the ArchitectureType field.

func (*AwsEdcAccountResourceAmiImage) SetArchitectureTypeNil

func (o *AwsEdcAccountResourceAmiImage) SetArchitectureTypeNil()

SetArchitectureTypeNil sets the value for ArchitectureType to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetBootMode

SetBootMode gets a reference to the given NullableAwsEdcAmiImageBootMode and assigns it to the BootMode field.

func (*AwsEdcAccountResourceAmiImage) SetBootModeNil

func (o *AwsEdcAccountResourceAmiImage) SetBootModeNil()

SetBootModeNil sets the value for BootMode to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetDescription

func (o *AwsEdcAccountResourceAmiImage) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*AwsEdcAccountResourceAmiImage) SetDescriptionNil

func (o *AwsEdcAccountResourceAmiImage) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetImageId

func (o *AwsEdcAccountResourceAmiImage) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*AwsEdcAccountResourceAmiImage) SetImageIdNil

func (o *AwsEdcAccountResourceAmiImage) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetImageType

SetImageType gets a reference to the given NullableAwsEdcAmiImageType and assigns it to the ImageType field.

func (*AwsEdcAccountResourceAmiImage) SetImageTypeNil

func (o *AwsEdcAccountResourceAmiImage) SetImageTypeNil()

SetImageTypeNil sets the value for ImageType to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetLocation

func (o *AwsEdcAccountResourceAmiImage) SetLocation(v string)

SetLocation gets a reference to the given NullableString and assigns it to the Location field.

func (*AwsEdcAccountResourceAmiImage) SetLocationNil

func (o *AwsEdcAccountResourceAmiImage) SetLocationNil()

SetLocationNil sets the value for Location to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetName

func (o *AwsEdcAccountResourceAmiImage) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*AwsEdcAccountResourceAmiImage) SetNameNil

func (o *AwsEdcAccountResourceAmiImage) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetPlatformType

SetPlatformType gets a reference to the given NullableAwsEdcAmiImagePlatform and assigns it to the PlatformType field.

func (*AwsEdcAccountResourceAmiImage) SetPlatformTypeNil

func (o *AwsEdcAccountResourceAmiImage) SetPlatformTypeNil()

SetPlatformTypeNil sets the value for PlatformType to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetPublic

func (o *AwsEdcAccountResourceAmiImage) SetPublic(v bool)

SetPublic gets a reference to the given NullableBool and assigns it to the Public field.

func (*AwsEdcAccountResourceAmiImage) SetPublicNil

func (o *AwsEdcAccountResourceAmiImage) SetPublicNil()

SetPublicNil sets the value for Public to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetStatus

SetStatus gets a reference to the given NullableAwsEdcAmiImageStatus and assigns it to the Status field.

func (*AwsEdcAccountResourceAmiImage) SetStatusNil

func (o *AwsEdcAccountResourceAmiImage) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AwsEdcAccountResourceAmiImage) SetTags

func (o *AwsEdcAccountResourceAmiImage) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*AwsEdcAccountResourceAmiImage) SetVirtualizationType

func (o *AwsEdcAccountResourceAmiImage) SetVirtualizationType(v AwsEdcAmiImageVirtualization)

SetVirtualizationType gets a reference to the given NullableAwsEdcAmiImageVirtualization and assigns it to the VirtualizationType field.

func (*AwsEdcAccountResourceAmiImage) SetVirtualizationTypeNil

func (o *AwsEdcAccountResourceAmiImage) SetVirtualizationTypeNil()

SetVirtualizationTypeNil sets the value for VirtualizationType to be an explicit nil

func (AwsEdcAccountResourceAmiImage) ToMap

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

func (*AwsEdcAccountResourceAmiImage) UnsetArchitectureType

func (o *AwsEdcAccountResourceAmiImage) UnsetArchitectureType()

UnsetArchitectureType ensures that no value is present for ArchitectureType, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetBootMode

func (o *AwsEdcAccountResourceAmiImage) UnsetBootMode()

UnsetBootMode ensures that no value is present for BootMode, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetDescription

func (o *AwsEdcAccountResourceAmiImage) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetImageId

func (o *AwsEdcAccountResourceAmiImage) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetImageType

func (o *AwsEdcAccountResourceAmiImage) UnsetImageType()

UnsetImageType ensures that no value is present for ImageType, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetLocation

func (o *AwsEdcAccountResourceAmiImage) UnsetLocation()

UnsetLocation ensures that no value is present for Location, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetName

func (o *AwsEdcAccountResourceAmiImage) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetPlatformType

func (o *AwsEdcAccountResourceAmiImage) UnsetPlatformType()

UnsetPlatformType ensures that no value is present for PlatformType, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetPublic

func (o *AwsEdcAccountResourceAmiImage) UnsetPublic()

UnsetPublic ensures that no value is present for Public, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetStatus

func (o *AwsEdcAccountResourceAmiImage) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AwsEdcAccountResourceAmiImage) UnsetVirtualizationType

func (o *AwsEdcAccountResourceAmiImage) UnsetVirtualizationType()

UnsetVirtualizationType ensures that no value is present for VirtualizationType, not even an explicit nil

type AwsEdcAccountResourceByolRegistration

type AwsEdcAccountResourceByolRegistration struct {
	AwsEdcAccountResource
	// Specifies if dedicated tenancy support is enabled
	DedicatedTenancySupportEnabled *bool `json:"dedicatedTenancySupportEnabled,omitempty"`
	// The CIDR range used in dedicated tenancy
	DedicatedTenancyManagementCidrRange NullableString `json:"dedicatedTenancyManagementCidrRange,omitempty"`
}

AwsEdcAccountResourceByolRegistration struct for AwsEdcAccountResourceByolRegistration

func NewAwsEdcAccountResourceByolRegistration

func NewAwsEdcAccountResourceByolRegistration(accountType AccountType) *AwsEdcAccountResourceByolRegistration

NewAwsEdcAccountResourceByolRegistration instantiates a new AwsEdcAccountResourceByolRegistration 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 NewAwsEdcAccountResourceByolRegistrationWithDefaults

func NewAwsEdcAccountResourceByolRegistrationWithDefaults() *AwsEdcAccountResourceByolRegistration

NewAwsEdcAccountResourceByolRegistrationWithDefaults instantiates a new AwsEdcAccountResourceByolRegistration 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 (*AwsEdcAccountResourceByolRegistration) GetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountResourceByolRegistration) GetDedicatedTenancyManagementCidrRange() string

GetDedicatedTenancyManagementCidrRange returns the DedicatedTenancyManagementCidrRange field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceByolRegistration) GetDedicatedTenancyManagementCidrRangeOk

func (o *AwsEdcAccountResourceByolRegistration) GetDedicatedTenancyManagementCidrRangeOk() (*string, bool)

GetDedicatedTenancyManagementCidrRangeOk returns a tuple with the DedicatedTenancyManagementCidrRange field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceByolRegistration) GetDedicatedTenancySupportEnabled

func (o *AwsEdcAccountResourceByolRegistration) GetDedicatedTenancySupportEnabled() bool

GetDedicatedTenancySupportEnabled returns the DedicatedTenancySupportEnabled field value if set, zero value otherwise.

func (*AwsEdcAccountResourceByolRegistration) GetDedicatedTenancySupportEnabledOk

func (o *AwsEdcAccountResourceByolRegistration) GetDedicatedTenancySupportEnabledOk() (*bool, bool)

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

func (*AwsEdcAccountResourceByolRegistration) HasDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountResourceByolRegistration) HasDedicatedTenancyManagementCidrRange() bool

HasDedicatedTenancyManagementCidrRange returns a boolean if a field has been set.

func (*AwsEdcAccountResourceByolRegistration) HasDedicatedTenancySupportEnabled

func (o *AwsEdcAccountResourceByolRegistration) HasDedicatedTenancySupportEnabled() bool

HasDedicatedTenancySupportEnabled returns a boolean if a field has been set.

func (AwsEdcAccountResourceByolRegistration) MarshalJSON

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

func (*AwsEdcAccountResourceByolRegistration) SetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountResourceByolRegistration) SetDedicatedTenancyManagementCidrRange(v string)

SetDedicatedTenancyManagementCidrRange gets a reference to the given NullableString and assigns it to the DedicatedTenancyManagementCidrRange field.

func (*AwsEdcAccountResourceByolRegistration) SetDedicatedTenancyManagementCidrRangeNil

func (o *AwsEdcAccountResourceByolRegistration) SetDedicatedTenancyManagementCidrRangeNil()

SetDedicatedTenancyManagementCidrRangeNil sets the value for DedicatedTenancyManagementCidrRange to be an explicit nil

func (*AwsEdcAccountResourceByolRegistration) SetDedicatedTenancySupportEnabled

func (o *AwsEdcAccountResourceByolRegistration) SetDedicatedTenancySupportEnabled(v bool)

SetDedicatedTenancySupportEnabled gets a reference to the given bool and assigns it to the DedicatedTenancySupportEnabled field.

func (AwsEdcAccountResourceByolRegistration) ToMap

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

func (*AwsEdcAccountResourceByolRegistration) UnsetDedicatedTenancyManagementCidrRange

func (o *AwsEdcAccountResourceByolRegistration) UnsetDedicatedTenancyManagementCidrRange()

UnsetDedicatedTenancyManagementCidrRange ensures that no value is present for DedicatedTenancyManagementCidrRange, not even an explicit nil

type AwsEdcAccountResourceCidrRange

type AwsEdcAccountResourceCidrRange struct {
	AwsEdcAccountResource
	// Base Cidr Range
	BaseCidrRange NullableString `json:"baseCidrRange,omitempty"`
	// Derived Cidr Ranges
	DerivedCidrRanges []string `json:"derivedCidrRanges,omitempty"`
}

AwsEdcAccountResourceCidrRange struct for AwsEdcAccountResourceCidrRange

func NewAwsEdcAccountResourceCidrRange

func NewAwsEdcAccountResourceCidrRange(accountType AccountType) *AwsEdcAccountResourceCidrRange

NewAwsEdcAccountResourceCidrRange instantiates a new AwsEdcAccountResourceCidrRange 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 NewAwsEdcAccountResourceCidrRangeWithDefaults

func NewAwsEdcAccountResourceCidrRangeWithDefaults() *AwsEdcAccountResourceCidrRange

NewAwsEdcAccountResourceCidrRangeWithDefaults instantiates a new AwsEdcAccountResourceCidrRange 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 (*AwsEdcAccountResourceCidrRange) GetBaseCidrRange

func (o *AwsEdcAccountResourceCidrRange) GetBaseCidrRange() string

GetBaseCidrRange returns the BaseCidrRange field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceCidrRange) GetBaseCidrRangeOk

func (o *AwsEdcAccountResourceCidrRange) GetBaseCidrRangeOk() (*string, bool)

GetBaseCidrRangeOk returns a tuple with the BaseCidrRange field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceCidrRange) GetDerivedCidrRanges

func (o *AwsEdcAccountResourceCidrRange) GetDerivedCidrRanges() []string

GetDerivedCidrRanges returns the DerivedCidrRanges field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceCidrRange) GetDerivedCidrRangesOk

func (o *AwsEdcAccountResourceCidrRange) GetDerivedCidrRangesOk() ([]string, bool)

GetDerivedCidrRangesOk returns a tuple with the DerivedCidrRanges field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceCidrRange) HasBaseCidrRange

func (o *AwsEdcAccountResourceCidrRange) HasBaseCidrRange() bool

HasBaseCidrRange returns a boolean if a field has been set.

func (*AwsEdcAccountResourceCidrRange) HasDerivedCidrRanges

func (o *AwsEdcAccountResourceCidrRange) HasDerivedCidrRanges() bool

HasDerivedCidrRanges returns a boolean if a field has been set.

func (AwsEdcAccountResourceCidrRange) MarshalJSON

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

func (*AwsEdcAccountResourceCidrRange) SetBaseCidrRange

func (o *AwsEdcAccountResourceCidrRange) SetBaseCidrRange(v string)

SetBaseCidrRange gets a reference to the given NullableString and assigns it to the BaseCidrRange field.

func (*AwsEdcAccountResourceCidrRange) SetBaseCidrRangeNil

func (o *AwsEdcAccountResourceCidrRange) SetBaseCidrRangeNil()

SetBaseCidrRangeNil sets the value for BaseCidrRange to be an explicit nil

func (*AwsEdcAccountResourceCidrRange) SetDerivedCidrRanges

func (o *AwsEdcAccountResourceCidrRange) SetDerivedCidrRanges(v []string)

SetDerivedCidrRanges gets a reference to the given []string and assigns it to the DerivedCidrRanges field.

func (AwsEdcAccountResourceCidrRange) ToMap

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

func (*AwsEdcAccountResourceCidrRange) UnsetBaseCidrRange

func (o *AwsEdcAccountResourceCidrRange) UnsetBaseCidrRange()

UnsetBaseCidrRange ensures that no value is present for BaseCidrRange, not even an explicit nil

type AwsEdcAccountResourceDirectory

type AwsEdcAccountResourceDirectory struct {
	AwsEdcAccountResource
	// Directory ID
	DirectoryId NullableString `json:"directoryId,omitempty"`
	// Directory Name
	Name NullableString `json:"name,omitempty"`
	// Directory Description
	Description NullableString `json:"description,omitempty"`
	// Directory Domain
	Domain NullableString `json:"domain,omitempty"`
	// Directory Organizational Unit
	DefaultOU          NullableString                            `json:"defaultOU,omitempty"`
	Type               NullableAwsEdcDirectoryType               `json:"type,omitempty"`
	Size               NullableAwsEdcDirectorySize               `json:"size,omitempty"`
	Status             NullableAwsEdcDirectoryStatus             `json:"status,omitempty"`
	RegistrationStatus NullableAwsEdcDirectoryRegistrationStatus `json:"registrationStatus,omitempty"`
	Tenancy            NullableAwsEdcDirectoryTenancy            `json:"tenancy,omitempty"`
	// Directory associated VPC
	VpcId NullableString `json:"vpcId,omitempty"`
	// Directory associated Security Group
	SecurityGroupId NullableString `json:"securityGroupId,omitempty"`
	// Directory associated Subnets
	SubnetIds []string `json:"subnetIds,omitempty"`
}

AwsEdcAccountResourceDirectory struct for AwsEdcAccountResourceDirectory

func NewAwsEdcAccountResourceDirectory

func NewAwsEdcAccountResourceDirectory(accountType AccountType) *AwsEdcAccountResourceDirectory

NewAwsEdcAccountResourceDirectory instantiates a new AwsEdcAccountResourceDirectory 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 NewAwsEdcAccountResourceDirectoryWithDefaults

func NewAwsEdcAccountResourceDirectoryWithDefaults() *AwsEdcAccountResourceDirectory

NewAwsEdcAccountResourceDirectoryWithDefaults instantiates a new AwsEdcAccountResourceDirectory 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 (*AwsEdcAccountResourceDirectory) GetDefaultOU

func (o *AwsEdcAccountResourceDirectory) GetDefaultOU() string

GetDefaultOU returns the DefaultOU field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetDefaultOUOk

func (o *AwsEdcAccountResourceDirectory) GetDefaultOUOk() (*string, bool)

GetDefaultOUOk returns a tuple with the DefaultOU field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetDescription

func (o *AwsEdcAccountResourceDirectory) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetDescriptionOk

func (o *AwsEdcAccountResourceDirectory) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetDirectoryId

func (o *AwsEdcAccountResourceDirectory) GetDirectoryId() string

GetDirectoryId returns the DirectoryId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetDirectoryIdOk

func (o *AwsEdcAccountResourceDirectory) GetDirectoryIdOk() (*string, bool)

GetDirectoryIdOk returns a tuple with the DirectoryId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetDomain

func (o *AwsEdcAccountResourceDirectory) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetDomainOk

func (o *AwsEdcAccountResourceDirectory) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetName

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetRegistrationStatus

GetRegistrationStatus returns the RegistrationStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetRegistrationStatusOk

GetRegistrationStatusOk returns a tuple with the RegistrationStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetSecurityGroupId

func (o *AwsEdcAccountResourceDirectory) GetSecurityGroupId() string

GetSecurityGroupId returns the SecurityGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetSecurityGroupIdOk

func (o *AwsEdcAccountResourceDirectory) GetSecurityGroupIdOk() (*string, bool)

GetSecurityGroupIdOk returns a tuple with the SecurityGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetSize

GetSize returns the Size field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetSizeOk

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetStatus

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetSubnetIds

func (o *AwsEdcAccountResourceDirectory) GetSubnetIds() []string

GetSubnetIds returns the SubnetIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetSubnetIdsOk

func (o *AwsEdcAccountResourceDirectory) GetSubnetIdsOk() ([]string, bool)

GetSubnetIdsOk returns a tuple with the SubnetIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetTenancy

GetTenancy returns the Tenancy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetTenancyOk

GetTenancyOk returns a tuple with the Tenancy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetType

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetTypeOk

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) GetVpcId

func (o *AwsEdcAccountResourceDirectory) GetVpcId() string

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceDirectory) GetVpcIdOk

func (o *AwsEdcAccountResourceDirectory) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceDirectory) HasDefaultOU

func (o *AwsEdcAccountResourceDirectory) HasDefaultOU() bool

HasDefaultOU returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasDescription

func (o *AwsEdcAccountResourceDirectory) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasDirectoryId

func (o *AwsEdcAccountResourceDirectory) HasDirectoryId() bool

HasDirectoryId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasDomain

func (o *AwsEdcAccountResourceDirectory) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasName

func (o *AwsEdcAccountResourceDirectory) HasName() bool

HasName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasRegistrationStatus

func (o *AwsEdcAccountResourceDirectory) HasRegistrationStatus() bool

HasRegistrationStatus returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasSecurityGroupId

func (o *AwsEdcAccountResourceDirectory) HasSecurityGroupId() bool

HasSecurityGroupId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasSize

func (o *AwsEdcAccountResourceDirectory) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasStatus

func (o *AwsEdcAccountResourceDirectory) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasSubnetIds

func (o *AwsEdcAccountResourceDirectory) HasSubnetIds() bool

HasSubnetIds returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasTenancy

func (o *AwsEdcAccountResourceDirectory) HasTenancy() bool

HasTenancy returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasType

func (o *AwsEdcAccountResourceDirectory) HasType() bool

HasType returns a boolean if a field has been set.

func (*AwsEdcAccountResourceDirectory) HasVpcId

func (o *AwsEdcAccountResourceDirectory) HasVpcId() bool

HasVpcId returns a boolean if a field has been set.

func (AwsEdcAccountResourceDirectory) MarshalJSON

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

func (*AwsEdcAccountResourceDirectory) SetDefaultOU

func (o *AwsEdcAccountResourceDirectory) SetDefaultOU(v string)

SetDefaultOU gets a reference to the given NullableString and assigns it to the DefaultOU field.

func (*AwsEdcAccountResourceDirectory) SetDefaultOUNil

func (o *AwsEdcAccountResourceDirectory) SetDefaultOUNil()

SetDefaultOUNil sets the value for DefaultOU to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetDescription

func (o *AwsEdcAccountResourceDirectory) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*AwsEdcAccountResourceDirectory) SetDescriptionNil

func (o *AwsEdcAccountResourceDirectory) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetDirectoryId

func (o *AwsEdcAccountResourceDirectory) SetDirectoryId(v string)

SetDirectoryId gets a reference to the given NullableString and assigns it to the DirectoryId field.

func (*AwsEdcAccountResourceDirectory) SetDirectoryIdNil

func (o *AwsEdcAccountResourceDirectory) SetDirectoryIdNil()

SetDirectoryIdNil sets the value for DirectoryId to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetDomain

func (o *AwsEdcAccountResourceDirectory) SetDomain(v string)

SetDomain gets a reference to the given NullableString and assigns it to the Domain field.

func (*AwsEdcAccountResourceDirectory) SetDomainNil

func (o *AwsEdcAccountResourceDirectory) SetDomainNil()

SetDomainNil sets the value for Domain to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetName

func (o *AwsEdcAccountResourceDirectory) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*AwsEdcAccountResourceDirectory) SetNameNil

func (o *AwsEdcAccountResourceDirectory) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetRegistrationStatus

SetRegistrationStatus gets a reference to the given NullableAwsEdcDirectoryRegistrationStatus and assigns it to the RegistrationStatus field.

func (*AwsEdcAccountResourceDirectory) SetRegistrationStatusNil

func (o *AwsEdcAccountResourceDirectory) SetRegistrationStatusNil()

SetRegistrationStatusNil sets the value for RegistrationStatus to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetSecurityGroupId

func (o *AwsEdcAccountResourceDirectory) SetSecurityGroupId(v string)

SetSecurityGroupId gets a reference to the given NullableString and assigns it to the SecurityGroupId field.

func (*AwsEdcAccountResourceDirectory) SetSecurityGroupIdNil

func (o *AwsEdcAccountResourceDirectory) SetSecurityGroupIdNil()

SetSecurityGroupIdNil sets the value for SecurityGroupId to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetSize

SetSize gets a reference to the given NullableAwsEdcDirectorySize and assigns it to the Size field.

func (*AwsEdcAccountResourceDirectory) SetSizeNil

func (o *AwsEdcAccountResourceDirectory) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetStatus

SetStatus gets a reference to the given NullableAwsEdcDirectoryStatus and assigns it to the Status field.

func (*AwsEdcAccountResourceDirectory) SetStatusNil

func (o *AwsEdcAccountResourceDirectory) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetSubnetIds

func (o *AwsEdcAccountResourceDirectory) SetSubnetIds(v []string)

SetSubnetIds gets a reference to the given []string and assigns it to the SubnetIds field.

func (*AwsEdcAccountResourceDirectory) SetTenancy

SetTenancy gets a reference to the given NullableAwsEdcDirectoryTenancy and assigns it to the Tenancy field.

func (*AwsEdcAccountResourceDirectory) SetTenancyNil

func (o *AwsEdcAccountResourceDirectory) SetTenancyNil()

SetTenancyNil sets the value for Tenancy to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetType

SetType gets a reference to the given NullableAwsEdcDirectoryType and assigns it to the Type field.

func (*AwsEdcAccountResourceDirectory) SetTypeNil

func (o *AwsEdcAccountResourceDirectory) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*AwsEdcAccountResourceDirectory) SetVpcId

func (o *AwsEdcAccountResourceDirectory) SetVpcId(v string)

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*AwsEdcAccountResourceDirectory) SetVpcIdNil

func (o *AwsEdcAccountResourceDirectory) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (AwsEdcAccountResourceDirectory) ToMap

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

func (*AwsEdcAccountResourceDirectory) UnsetDefaultOU

func (o *AwsEdcAccountResourceDirectory) UnsetDefaultOU()

UnsetDefaultOU ensures that no value is present for DefaultOU, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetDescription

func (o *AwsEdcAccountResourceDirectory) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetDirectoryId

func (o *AwsEdcAccountResourceDirectory) UnsetDirectoryId()

UnsetDirectoryId ensures that no value is present for DirectoryId, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetDomain

func (o *AwsEdcAccountResourceDirectory) UnsetDomain()

UnsetDomain ensures that no value is present for Domain, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetName

func (o *AwsEdcAccountResourceDirectory) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetRegistrationStatus

func (o *AwsEdcAccountResourceDirectory) UnsetRegistrationStatus()

UnsetRegistrationStatus ensures that no value is present for RegistrationStatus, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetSecurityGroupId

func (o *AwsEdcAccountResourceDirectory) UnsetSecurityGroupId()

UnsetSecurityGroupId ensures that no value is present for SecurityGroupId, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetSize

func (o *AwsEdcAccountResourceDirectory) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetStatus

func (o *AwsEdcAccountResourceDirectory) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetTenancy

func (o *AwsEdcAccountResourceDirectory) UnsetTenancy()

UnsetTenancy ensures that no value is present for Tenancy, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetType

func (o *AwsEdcAccountResourceDirectory) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*AwsEdcAccountResourceDirectory) UnsetVpcId

func (o *AwsEdcAccountResourceDirectory) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

type AwsEdcAccountResourceEc2InstanceType

type AwsEdcAccountResourceEc2InstanceType struct {
	AwsEdcAccountResource
	Name       NullableString `json:"name,omitempty"`
	VCpus      NullableInt32  `json:"vCpus,omitempty"`
	MemoryInMB NullableInt64  `json:"memoryInMB,omitempty"`
	IsDefault  *bool          `json:"isDefault,omitempty"`
}

AwsEdcAccountResourceEc2InstanceType struct for AwsEdcAccountResourceEc2InstanceType

func NewAwsEdcAccountResourceEc2InstanceType

func NewAwsEdcAccountResourceEc2InstanceType(accountType AccountType) *AwsEdcAccountResourceEc2InstanceType

NewAwsEdcAccountResourceEc2InstanceType instantiates a new AwsEdcAccountResourceEc2InstanceType 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 NewAwsEdcAccountResourceEc2InstanceTypeWithDefaults

func NewAwsEdcAccountResourceEc2InstanceTypeWithDefaults() *AwsEdcAccountResourceEc2InstanceType

NewAwsEdcAccountResourceEc2InstanceTypeWithDefaults instantiates a new AwsEdcAccountResourceEc2InstanceType 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 (*AwsEdcAccountResourceEc2InstanceType) GetIsDefault

func (o *AwsEdcAccountResourceEc2InstanceType) GetIsDefault() bool

GetIsDefault returns the IsDefault field value if set, zero value otherwise.

func (*AwsEdcAccountResourceEc2InstanceType) GetIsDefaultOk

func (o *AwsEdcAccountResourceEc2InstanceType) GetIsDefaultOk() (*bool, bool)

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

func (*AwsEdcAccountResourceEc2InstanceType) GetMemoryInMB

func (o *AwsEdcAccountResourceEc2InstanceType) GetMemoryInMB() int64

GetMemoryInMB returns the MemoryInMB field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceEc2InstanceType) GetMemoryInMBOk

func (o *AwsEdcAccountResourceEc2InstanceType) GetMemoryInMBOk() (*int64, bool)

GetMemoryInMBOk returns a tuple with the MemoryInMB field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceEc2InstanceType) GetName

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceEc2InstanceType) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceEc2InstanceType) GetVCpus

GetVCpus returns the VCpus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceEc2InstanceType) GetVCpusOk

func (o *AwsEdcAccountResourceEc2InstanceType) GetVCpusOk() (*int32, bool)

GetVCpusOk returns a tuple with the VCpus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceEc2InstanceType) HasIsDefault

func (o *AwsEdcAccountResourceEc2InstanceType) HasIsDefault() bool

HasIsDefault returns a boolean if a field has been set.

func (*AwsEdcAccountResourceEc2InstanceType) HasMemoryInMB

func (o *AwsEdcAccountResourceEc2InstanceType) HasMemoryInMB() bool

HasMemoryInMB returns a boolean if a field has been set.

func (*AwsEdcAccountResourceEc2InstanceType) HasName

HasName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceEc2InstanceType) HasVCpus

HasVCpus returns a boolean if a field has been set.

func (AwsEdcAccountResourceEc2InstanceType) MarshalJSON

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

func (*AwsEdcAccountResourceEc2InstanceType) SetIsDefault

func (o *AwsEdcAccountResourceEc2InstanceType) SetIsDefault(v bool)

SetIsDefault gets a reference to the given bool and assigns it to the IsDefault field.

func (*AwsEdcAccountResourceEc2InstanceType) SetMemoryInMB

func (o *AwsEdcAccountResourceEc2InstanceType) SetMemoryInMB(v int64)

SetMemoryInMB gets a reference to the given NullableInt64 and assigns it to the MemoryInMB field.

func (*AwsEdcAccountResourceEc2InstanceType) SetMemoryInMBNil

func (o *AwsEdcAccountResourceEc2InstanceType) SetMemoryInMBNil()

SetMemoryInMBNil sets the value for MemoryInMB to be an explicit nil

func (*AwsEdcAccountResourceEc2InstanceType) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*AwsEdcAccountResourceEc2InstanceType) SetNameNil

func (o *AwsEdcAccountResourceEc2InstanceType) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AwsEdcAccountResourceEc2InstanceType) SetVCpus

SetVCpus gets a reference to the given NullableInt32 and assigns it to the VCpus field.

func (*AwsEdcAccountResourceEc2InstanceType) SetVCpusNil

func (o *AwsEdcAccountResourceEc2InstanceType) SetVCpusNil()

SetVCpusNil sets the value for VCpus to be an explicit nil

func (AwsEdcAccountResourceEc2InstanceType) ToMap

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

func (*AwsEdcAccountResourceEc2InstanceType) UnsetMemoryInMB

func (o *AwsEdcAccountResourceEc2InstanceType) UnsetMemoryInMB()

UnsetMemoryInMB ensures that no value is present for MemoryInMB, not even an explicit nil

func (*AwsEdcAccountResourceEc2InstanceType) UnsetName

func (o *AwsEdcAccountResourceEc2InstanceType) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AwsEdcAccountResourceEc2InstanceType) UnsetVCpus

func (o *AwsEdcAccountResourceEc2InstanceType) UnsetVCpus()

UnsetVCpus ensures that no value is present for VCpus, not even an explicit nil

type AwsEdcAccountResourceFile

type AwsEdcAccountResourceFile struct {
	AwsEdcAccountResource
	// The file data as an array of bytes
	FileContent NullableString `json:"fileContent,omitempty"`
	// Suggested file name
	FileName NullableString `json:"fileName,omitempty"`
	// The type of content in the file
	ContentType NullableString `json:"contentType,omitempty"`
}

AwsEdcAccountResourceFile Represents a resource associated with an account that can be saved as a file

func NewAwsEdcAccountResourceFile

func NewAwsEdcAccountResourceFile(accountType AccountType) *AwsEdcAccountResourceFile

NewAwsEdcAccountResourceFile instantiates a new AwsEdcAccountResourceFile 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 NewAwsEdcAccountResourceFileWithDefaults

func NewAwsEdcAccountResourceFileWithDefaults() *AwsEdcAccountResourceFile

NewAwsEdcAccountResourceFileWithDefaults instantiates a new AwsEdcAccountResourceFile 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 (*AwsEdcAccountResourceFile) GetContentType

func (o *AwsEdcAccountResourceFile) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceFile) GetContentTypeOk

func (o *AwsEdcAccountResourceFile) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceFile) GetFileContent

func (o *AwsEdcAccountResourceFile) GetFileContent() string

GetFileContent returns the FileContent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceFile) GetFileContentOk

func (o *AwsEdcAccountResourceFile) GetFileContentOk() (*string, bool)

GetFileContentOk returns a tuple with the FileContent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceFile) GetFileName

func (o *AwsEdcAccountResourceFile) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceFile) GetFileNameOk

func (o *AwsEdcAccountResourceFile) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceFile) HasContentType

func (o *AwsEdcAccountResourceFile) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*AwsEdcAccountResourceFile) HasFileContent

func (o *AwsEdcAccountResourceFile) HasFileContent() bool

HasFileContent returns a boolean if a field has been set.

func (*AwsEdcAccountResourceFile) HasFileName

func (o *AwsEdcAccountResourceFile) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (AwsEdcAccountResourceFile) MarshalJSON

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

func (*AwsEdcAccountResourceFile) SetContentType

func (o *AwsEdcAccountResourceFile) SetContentType(v string)

SetContentType gets a reference to the given NullableString and assigns it to the ContentType field.

func (*AwsEdcAccountResourceFile) SetContentTypeNil

func (o *AwsEdcAccountResourceFile) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*AwsEdcAccountResourceFile) SetFileContent

func (o *AwsEdcAccountResourceFile) SetFileContent(v string)

SetFileContent gets a reference to the given NullableString and assigns it to the FileContent field.

func (*AwsEdcAccountResourceFile) SetFileContentNil

func (o *AwsEdcAccountResourceFile) SetFileContentNil()

SetFileContentNil sets the value for FileContent to be an explicit nil

func (*AwsEdcAccountResourceFile) SetFileName

func (o *AwsEdcAccountResourceFile) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*AwsEdcAccountResourceFile) SetFileNameNil

func (o *AwsEdcAccountResourceFile) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (AwsEdcAccountResourceFile) ToMap

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

func (*AwsEdcAccountResourceFile) UnsetContentType

func (o *AwsEdcAccountResourceFile) UnsetContentType()

UnsetContentType ensures that no value is present for ContentType, not even an explicit nil

func (*AwsEdcAccountResourceFile) UnsetFileContent

func (o *AwsEdcAccountResourceFile) UnsetFileContent()

UnsetFileContent ensures that no value is present for FileContent, not even an explicit nil

func (*AwsEdcAccountResourceFile) UnsetFileName

func (o *AwsEdcAccountResourceFile) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

type AwsEdcAccountResourceKeyPair

type AwsEdcAccountResourceKeyPair struct {
	AwsEdcAccountResource
	// Name of Key Pari
	KeyName NullableString `json:"keyName,omitempty"`
	// Vpc Tags
	Tags []Tag `json:"tags,omitempty"`
}

AwsEdcAccountResourceKeyPair struct for AwsEdcAccountResourceKeyPair

func NewAwsEdcAccountResourceKeyPair

func NewAwsEdcAccountResourceKeyPair(accountType AccountType) *AwsEdcAccountResourceKeyPair

NewAwsEdcAccountResourceKeyPair instantiates a new AwsEdcAccountResourceKeyPair 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 NewAwsEdcAccountResourceKeyPairWithDefaults

func NewAwsEdcAccountResourceKeyPairWithDefaults() *AwsEdcAccountResourceKeyPair

NewAwsEdcAccountResourceKeyPairWithDefaults instantiates a new AwsEdcAccountResourceKeyPair 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 (*AwsEdcAccountResourceKeyPair) GetKeyName

func (o *AwsEdcAccountResourceKeyPair) GetKeyName() string

GetKeyName returns the KeyName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceKeyPair) GetKeyNameOk

func (o *AwsEdcAccountResourceKeyPair) GetKeyNameOk() (*string, bool)

GetKeyNameOk returns a tuple with the KeyName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceKeyPair) GetTags

func (o *AwsEdcAccountResourceKeyPair) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceKeyPair) GetTagsOk

func (o *AwsEdcAccountResourceKeyPair) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceKeyPair) HasKeyName

func (o *AwsEdcAccountResourceKeyPair) HasKeyName() bool

HasKeyName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceKeyPair) HasTags

func (o *AwsEdcAccountResourceKeyPair) HasTags() bool

HasTags returns a boolean if a field has been set.

func (AwsEdcAccountResourceKeyPair) MarshalJSON

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

func (*AwsEdcAccountResourceKeyPair) SetKeyName

func (o *AwsEdcAccountResourceKeyPair) SetKeyName(v string)

SetKeyName gets a reference to the given NullableString and assigns it to the KeyName field.

func (*AwsEdcAccountResourceKeyPair) SetKeyNameNil

func (o *AwsEdcAccountResourceKeyPair) SetKeyNameNil()

SetKeyNameNil sets the value for KeyName to be an explicit nil

func (*AwsEdcAccountResourceKeyPair) SetTags

func (o *AwsEdcAccountResourceKeyPair) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (AwsEdcAccountResourceKeyPair) ToMap

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

func (*AwsEdcAccountResourceKeyPair) UnsetKeyName

func (o *AwsEdcAccountResourceKeyPair) UnsetKeyName()

UnsetKeyName ensures that no value is present for KeyName, not even an explicit nil

type AwsEdcAccountResourceRegion

type AwsEdcAccountResourceRegion struct {
	AwsEdcAccountResource
	// The names of the regions
	RegionNames []string `json:"regionNames,omitempty"`
	// The list of regions including their names, codes and supported az ids
	Regions []AwsWorkspaceRegion `json:"regions,omitempty"`
}

AwsEdcAccountResourceRegion struct for AwsEdcAccountResourceRegion

func NewAwsEdcAccountResourceRegion

func NewAwsEdcAccountResourceRegion(accountType AccountType) *AwsEdcAccountResourceRegion

NewAwsEdcAccountResourceRegion instantiates a new AwsEdcAccountResourceRegion 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 NewAwsEdcAccountResourceRegionWithDefaults

func NewAwsEdcAccountResourceRegionWithDefaults() *AwsEdcAccountResourceRegion

NewAwsEdcAccountResourceRegionWithDefaults instantiates a new AwsEdcAccountResourceRegion 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 (*AwsEdcAccountResourceRegion) GetRegionNames

func (o *AwsEdcAccountResourceRegion) GetRegionNames() []string

GetRegionNames returns the RegionNames field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceRegion) GetRegionNamesOk

func (o *AwsEdcAccountResourceRegion) GetRegionNamesOk() ([]string, bool)

GetRegionNamesOk returns a tuple with the RegionNames field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceRegion) GetRegions

GetRegions returns the Regions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceRegion) GetRegionsOk

func (o *AwsEdcAccountResourceRegion) GetRegionsOk() ([]AwsWorkspaceRegion, bool)

GetRegionsOk returns a tuple with the Regions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceRegion) HasRegionNames

func (o *AwsEdcAccountResourceRegion) HasRegionNames() bool

HasRegionNames returns a boolean if a field has been set.

func (*AwsEdcAccountResourceRegion) HasRegions

func (o *AwsEdcAccountResourceRegion) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (AwsEdcAccountResourceRegion) MarshalJSON

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

func (*AwsEdcAccountResourceRegion) SetRegionNames

func (o *AwsEdcAccountResourceRegion) SetRegionNames(v []string)

SetRegionNames gets a reference to the given []string and assigns it to the RegionNames field.

func (*AwsEdcAccountResourceRegion) SetRegions

SetRegions gets a reference to the given []AwsWorkspaceRegion and assigns it to the Regions field.

func (AwsEdcAccountResourceRegion) ToMap

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

type AwsEdcAccountResourceSecurityGroup

type AwsEdcAccountResourceSecurityGroup struct {
	AwsEdcAccountResource
	// Security Group Id
	SecurityGroupId NullableString `json:"securityGroupId,omitempty"`
	// Security Group Name
	Name NullableString `json:"name,omitempty"`
	// Security Group Description
	Description NullableString `json:"description,omitempty"`
	// Security Group VpcId
	VpcId NullableString `json:"vpcId,omitempty"`
	// Security Group Inbound Permissions
	InboundPermissions []IpPermission `json:"inboundPermissions,omitempty"`
	// Security Group Outbound Permissions
	OutboundPermissions []IpPermission `json:"outboundPermissions,omitempty"`
	// Security Group Tags
	Tags []Tag `json:"tags,omitempty"`
}

AwsEdcAccountResourceSecurityGroup struct for AwsEdcAccountResourceSecurityGroup

func NewAwsEdcAccountResourceSecurityGroup

func NewAwsEdcAccountResourceSecurityGroup(accountType AccountType) *AwsEdcAccountResourceSecurityGroup

NewAwsEdcAccountResourceSecurityGroup instantiates a new AwsEdcAccountResourceSecurityGroup 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 NewAwsEdcAccountResourceSecurityGroupWithDefaults

func NewAwsEdcAccountResourceSecurityGroupWithDefaults() *AwsEdcAccountResourceSecurityGroup

NewAwsEdcAccountResourceSecurityGroupWithDefaults instantiates a new AwsEdcAccountResourceSecurityGroup 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 (*AwsEdcAccountResourceSecurityGroup) GetDescription

func (o *AwsEdcAccountResourceSecurityGroup) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetDescriptionOk

func (o *AwsEdcAccountResourceSecurityGroup) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetInboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) GetInboundPermissions() []IpPermission

GetInboundPermissions returns the InboundPermissions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetInboundPermissionsOk

func (o *AwsEdcAccountResourceSecurityGroup) GetInboundPermissionsOk() ([]IpPermission, bool)

GetInboundPermissionsOk returns a tuple with the InboundPermissions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetName

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetOutboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) GetOutboundPermissions() []IpPermission

GetOutboundPermissions returns the OutboundPermissions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetOutboundPermissionsOk

func (o *AwsEdcAccountResourceSecurityGroup) GetOutboundPermissionsOk() ([]IpPermission, bool)

GetOutboundPermissionsOk returns a tuple with the OutboundPermissions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetSecurityGroupId

func (o *AwsEdcAccountResourceSecurityGroup) GetSecurityGroupId() string

GetSecurityGroupId returns the SecurityGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetSecurityGroupIdOk

func (o *AwsEdcAccountResourceSecurityGroup) GetSecurityGroupIdOk() (*string, bool)

GetSecurityGroupIdOk returns a tuple with the SecurityGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetTags

func (o *AwsEdcAccountResourceSecurityGroup) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetTagsOk

func (o *AwsEdcAccountResourceSecurityGroup) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) GetVpcId

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSecurityGroup) GetVpcIdOk

func (o *AwsEdcAccountResourceSecurityGroup) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSecurityGroup) HasDescription

func (o *AwsEdcAccountResourceSecurityGroup) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasInboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) HasInboundPermissions() bool

HasInboundPermissions returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasName

HasName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasOutboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) HasOutboundPermissions() bool

HasOutboundPermissions returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasSecurityGroupId

func (o *AwsEdcAccountResourceSecurityGroup) HasSecurityGroupId() bool

HasSecurityGroupId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasTags

HasTags returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSecurityGroup) HasVpcId

HasVpcId returns a boolean if a field has been set.

func (AwsEdcAccountResourceSecurityGroup) MarshalJSON

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

func (*AwsEdcAccountResourceSecurityGroup) SetDescription

func (o *AwsEdcAccountResourceSecurityGroup) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*AwsEdcAccountResourceSecurityGroup) SetDescriptionNil

func (o *AwsEdcAccountResourceSecurityGroup) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) SetInboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) SetInboundPermissions(v []IpPermission)

SetInboundPermissions gets a reference to the given []IpPermission and assigns it to the InboundPermissions field.

func (*AwsEdcAccountResourceSecurityGroup) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*AwsEdcAccountResourceSecurityGroup) SetNameNil

func (o *AwsEdcAccountResourceSecurityGroup) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) SetOutboundPermissions

func (o *AwsEdcAccountResourceSecurityGroup) SetOutboundPermissions(v []IpPermission)

SetOutboundPermissions gets a reference to the given []IpPermission and assigns it to the OutboundPermissions field.

func (*AwsEdcAccountResourceSecurityGroup) SetSecurityGroupId

func (o *AwsEdcAccountResourceSecurityGroup) SetSecurityGroupId(v string)

SetSecurityGroupId gets a reference to the given NullableString and assigns it to the SecurityGroupId field.

func (*AwsEdcAccountResourceSecurityGroup) SetSecurityGroupIdNil

func (o *AwsEdcAccountResourceSecurityGroup) SetSecurityGroupIdNil()

SetSecurityGroupIdNil sets the value for SecurityGroupId to be an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) SetTags

func (o *AwsEdcAccountResourceSecurityGroup) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*AwsEdcAccountResourceSecurityGroup) SetVpcId

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*AwsEdcAccountResourceSecurityGroup) SetVpcIdNil

func (o *AwsEdcAccountResourceSecurityGroup) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (AwsEdcAccountResourceSecurityGroup) ToMap

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

func (*AwsEdcAccountResourceSecurityGroup) UnsetDescription

func (o *AwsEdcAccountResourceSecurityGroup) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) UnsetName

func (o *AwsEdcAccountResourceSecurityGroup) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) UnsetSecurityGroupId

func (o *AwsEdcAccountResourceSecurityGroup) UnsetSecurityGroupId()

UnsetSecurityGroupId ensures that no value is present for SecurityGroupId, not even an explicit nil

func (*AwsEdcAccountResourceSecurityGroup) UnsetVpcId

func (o *AwsEdcAccountResourceSecurityGroup) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

type AwsEdcAccountResourceSubnet

type AwsEdcAccountResourceSubnet struct {
	AwsEdcAccountResource
	// Subnet Id
	SubnetId NullableString             `json:"subnetId,omitempty"`
	Status   NullableAwsEdcSubnetStatus `json:"status,omitempty"`
	// Subnet Status
	SubnetArn NullableString `json:"subnetArn,omitempty"`
	// Subnet CIDR Block
	CidrBlock NullableString `json:"cidrBlock,omitempty"`
	// Subnet Vpc Id
	VpcId NullableString `json:"vpcId,omitempty"`
	// The AWS region where the subnet is located
	AwsRegion NullableString `json:"awsRegion,omitempty"`
	// Subnet Availability Zone Id
	AvailabilityZoneId NullableString `json:"availabilityZoneId,omitempty"`
	// Subnet Availability Zone
	AvailabilityZone NullableString `json:"availabilityZone,omitempty"`
	// Subnet Tags
	Tags []Tag `json:"tags,omitempty"`
	// The name of the subnet
	Name NullableString `json:"name,omitempty"`
	// Indicates if the subnet can be used for Managed Capacity deployments
	IsSupportedByAwsManagedCapacity *bool `json:"isSupportedByAwsManagedCapacity,omitempty"`
}

AwsEdcAccountResourceSubnet struct for AwsEdcAccountResourceSubnet

func NewAwsEdcAccountResourceSubnet

func NewAwsEdcAccountResourceSubnet(accountType AccountType) *AwsEdcAccountResourceSubnet

NewAwsEdcAccountResourceSubnet instantiates a new AwsEdcAccountResourceSubnet 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 NewAwsEdcAccountResourceSubnetWithDefaults

func NewAwsEdcAccountResourceSubnetWithDefaults() *AwsEdcAccountResourceSubnet

NewAwsEdcAccountResourceSubnetWithDefaults instantiates a new AwsEdcAccountResourceSubnet 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 (*AwsEdcAccountResourceSubnet) GetAvailabilityZone

func (o *AwsEdcAccountResourceSubnet) GetAvailabilityZone() string

GetAvailabilityZone returns the AvailabilityZone field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetAvailabilityZoneId

func (o *AwsEdcAccountResourceSubnet) GetAvailabilityZoneId() string

GetAvailabilityZoneId returns the AvailabilityZoneId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetAvailabilityZoneIdOk

func (o *AwsEdcAccountResourceSubnet) GetAvailabilityZoneIdOk() (*string, bool)

GetAvailabilityZoneIdOk returns a tuple with the AvailabilityZoneId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetAvailabilityZoneOk

func (o *AwsEdcAccountResourceSubnet) GetAvailabilityZoneOk() (*string, bool)

GetAvailabilityZoneOk returns a tuple with the AvailabilityZone field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetAwsRegion

func (o *AwsEdcAccountResourceSubnet) GetAwsRegion() string

GetAwsRegion returns the AwsRegion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetAwsRegionOk

func (o *AwsEdcAccountResourceSubnet) GetAwsRegionOk() (*string, bool)

GetAwsRegionOk returns a tuple with the AwsRegion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetCidrBlock

func (o *AwsEdcAccountResourceSubnet) GetCidrBlock() string

GetCidrBlock returns the CidrBlock field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetCidrBlockOk

func (o *AwsEdcAccountResourceSubnet) GetCidrBlockOk() (*string, bool)

GetCidrBlockOk returns a tuple with the CidrBlock field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetIsSupportedByAwsManagedCapacity

func (o *AwsEdcAccountResourceSubnet) GetIsSupportedByAwsManagedCapacity() bool

GetIsSupportedByAwsManagedCapacity returns the IsSupportedByAwsManagedCapacity field value if set, zero value otherwise.

func (*AwsEdcAccountResourceSubnet) GetIsSupportedByAwsManagedCapacityOk

func (o *AwsEdcAccountResourceSubnet) GetIsSupportedByAwsManagedCapacityOk() (*bool, bool)

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

func (*AwsEdcAccountResourceSubnet) GetName

func (o *AwsEdcAccountResourceSubnet) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetStatus

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetSubnetArn

func (o *AwsEdcAccountResourceSubnet) GetSubnetArn() string

GetSubnetArn returns the SubnetArn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetSubnetArnOk

func (o *AwsEdcAccountResourceSubnet) GetSubnetArnOk() (*string, bool)

GetSubnetArnOk returns a tuple with the SubnetArn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetSubnetId

func (o *AwsEdcAccountResourceSubnet) GetSubnetId() string

GetSubnetId returns the SubnetId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetSubnetIdOk

func (o *AwsEdcAccountResourceSubnet) GetSubnetIdOk() (*string, bool)

GetSubnetIdOk returns a tuple with the SubnetId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetTags

func (o *AwsEdcAccountResourceSubnet) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetTagsOk

func (o *AwsEdcAccountResourceSubnet) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) GetVpcId

func (o *AwsEdcAccountResourceSubnet) GetVpcId() string

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceSubnet) GetVpcIdOk

func (o *AwsEdcAccountResourceSubnet) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceSubnet) HasAvailabilityZone

func (o *AwsEdcAccountResourceSubnet) HasAvailabilityZone() bool

HasAvailabilityZone returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasAvailabilityZoneId

func (o *AwsEdcAccountResourceSubnet) HasAvailabilityZoneId() bool

HasAvailabilityZoneId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasAwsRegion

func (o *AwsEdcAccountResourceSubnet) HasAwsRegion() bool

HasAwsRegion returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasCidrBlock

func (o *AwsEdcAccountResourceSubnet) HasCidrBlock() bool

HasCidrBlock returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasIsSupportedByAwsManagedCapacity

func (o *AwsEdcAccountResourceSubnet) HasIsSupportedByAwsManagedCapacity() bool

HasIsSupportedByAwsManagedCapacity returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasName

func (o *AwsEdcAccountResourceSubnet) HasName() bool

HasName returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasStatus

func (o *AwsEdcAccountResourceSubnet) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasSubnetArn

func (o *AwsEdcAccountResourceSubnet) HasSubnetArn() bool

HasSubnetArn returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasSubnetId

func (o *AwsEdcAccountResourceSubnet) HasSubnetId() bool

HasSubnetId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasTags

func (o *AwsEdcAccountResourceSubnet) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AwsEdcAccountResourceSubnet) HasVpcId

func (o *AwsEdcAccountResourceSubnet) HasVpcId() bool

HasVpcId returns a boolean if a field has been set.

func (AwsEdcAccountResourceSubnet) MarshalJSON

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

func (*AwsEdcAccountResourceSubnet) SetAvailabilityZone

func (o *AwsEdcAccountResourceSubnet) SetAvailabilityZone(v string)

SetAvailabilityZone gets a reference to the given NullableString and assigns it to the AvailabilityZone field.

func (*AwsEdcAccountResourceSubnet) SetAvailabilityZoneId

func (o *AwsEdcAccountResourceSubnet) SetAvailabilityZoneId(v string)

SetAvailabilityZoneId gets a reference to the given NullableString and assigns it to the AvailabilityZoneId field.

func (*AwsEdcAccountResourceSubnet) SetAvailabilityZoneIdNil

func (o *AwsEdcAccountResourceSubnet) SetAvailabilityZoneIdNil()

SetAvailabilityZoneIdNil sets the value for AvailabilityZoneId to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetAvailabilityZoneNil

func (o *AwsEdcAccountResourceSubnet) SetAvailabilityZoneNil()

SetAvailabilityZoneNil sets the value for AvailabilityZone to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetAwsRegion

func (o *AwsEdcAccountResourceSubnet) SetAwsRegion(v string)

SetAwsRegion gets a reference to the given NullableString and assigns it to the AwsRegion field.

func (*AwsEdcAccountResourceSubnet) SetAwsRegionNil

func (o *AwsEdcAccountResourceSubnet) SetAwsRegionNil()

SetAwsRegionNil sets the value for AwsRegion to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetCidrBlock

func (o *AwsEdcAccountResourceSubnet) SetCidrBlock(v string)

SetCidrBlock gets a reference to the given NullableString and assigns it to the CidrBlock field.

func (*AwsEdcAccountResourceSubnet) SetCidrBlockNil

func (o *AwsEdcAccountResourceSubnet) SetCidrBlockNil()

SetCidrBlockNil sets the value for CidrBlock to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetIsSupportedByAwsManagedCapacity

func (o *AwsEdcAccountResourceSubnet) SetIsSupportedByAwsManagedCapacity(v bool)

SetIsSupportedByAwsManagedCapacity gets a reference to the given bool and assigns it to the IsSupportedByAwsManagedCapacity field.

func (*AwsEdcAccountResourceSubnet) SetName

func (o *AwsEdcAccountResourceSubnet) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*AwsEdcAccountResourceSubnet) SetNameNil

func (o *AwsEdcAccountResourceSubnet) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetStatus

SetStatus gets a reference to the given NullableAwsEdcSubnetStatus and assigns it to the Status field.

func (*AwsEdcAccountResourceSubnet) SetStatusNil

func (o *AwsEdcAccountResourceSubnet) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetSubnetArn

func (o *AwsEdcAccountResourceSubnet) SetSubnetArn(v string)

SetSubnetArn gets a reference to the given NullableString and assigns it to the SubnetArn field.

func (*AwsEdcAccountResourceSubnet) SetSubnetArnNil

func (o *AwsEdcAccountResourceSubnet) SetSubnetArnNil()

SetSubnetArnNil sets the value for SubnetArn to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetSubnetId

func (o *AwsEdcAccountResourceSubnet) SetSubnetId(v string)

SetSubnetId gets a reference to the given NullableString and assigns it to the SubnetId field.

func (*AwsEdcAccountResourceSubnet) SetSubnetIdNil

func (o *AwsEdcAccountResourceSubnet) SetSubnetIdNil()

SetSubnetIdNil sets the value for SubnetId to be an explicit nil

func (*AwsEdcAccountResourceSubnet) SetTags

func (o *AwsEdcAccountResourceSubnet) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*AwsEdcAccountResourceSubnet) SetVpcId

func (o *AwsEdcAccountResourceSubnet) SetVpcId(v string)

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*AwsEdcAccountResourceSubnet) SetVpcIdNil

func (o *AwsEdcAccountResourceSubnet) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (AwsEdcAccountResourceSubnet) ToMap

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

func (*AwsEdcAccountResourceSubnet) UnsetAvailabilityZone

func (o *AwsEdcAccountResourceSubnet) UnsetAvailabilityZone()

UnsetAvailabilityZone ensures that no value is present for AvailabilityZone, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetAvailabilityZoneId

func (o *AwsEdcAccountResourceSubnet) UnsetAvailabilityZoneId()

UnsetAvailabilityZoneId ensures that no value is present for AvailabilityZoneId, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetAwsRegion

func (o *AwsEdcAccountResourceSubnet) UnsetAwsRegion()

UnsetAwsRegion ensures that no value is present for AwsRegion, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetCidrBlock

func (o *AwsEdcAccountResourceSubnet) UnsetCidrBlock()

UnsetCidrBlock ensures that no value is present for CidrBlock, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetName

func (o *AwsEdcAccountResourceSubnet) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetStatus

func (o *AwsEdcAccountResourceSubnet) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetSubnetArn

func (o *AwsEdcAccountResourceSubnet) UnsetSubnetArn()

UnsetSubnetArn ensures that no value is present for SubnetArn, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetSubnetId

func (o *AwsEdcAccountResourceSubnet) UnsetSubnetId()

UnsetSubnetId ensures that no value is present for SubnetId, not even an explicit nil

func (*AwsEdcAccountResourceSubnet) UnsetVpcId

func (o *AwsEdcAccountResourceSubnet) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

type AwsEdcAccountResourceVpc

type AwsEdcAccountResourceVpc struct {
	AwsEdcAccountResource
	// Vpc Id
	VpcId      NullableString           `json:"vpcId,omitempty"`
	Status     NullableAwsEdcVpcState   `json:"status,omitempty"`
	VpcTenancy NullableAwsEdcVpcTenancy `json:"vpcTenancy,omitempty"`
	// Vpc CIDR Block
	CidrBlock NullableString `json:"cidrBlock,omitempty"`
	// Vpc Tags
	Tags []Tag `json:"tags,omitempty"`
}

AwsEdcAccountResourceVpc struct for AwsEdcAccountResourceVpc

func NewAwsEdcAccountResourceVpc

func NewAwsEdcAccountResourceVpc(accountType AccountType) *AwsEdcAccountResourceVpc

NewAwsEdcAccountResourceVpc instantiates a new AwsEdcAccountResourceVpc 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 NewAwsEdcAccountResourceVpcWithDefaults

func NewAwsEdcAccountResourceVpcWithDefaults() *AwsEdcAccountResourceVpc

NewAwsEdcAccountResourceVpcWithDefaults instantiates a new AwsEdcAccountResourceVpc 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 (*AwsEdcAccountResourceVpc) GetCidrBlock

func (o *AwsEdcAccountResourceVpc) GetCidrBlock() string

GetCidrBlock returns the CidrBlock field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceVpc) GetCidrBlockOk

func (o *AwsEdcAccountResourceVpc) GetCidrBlockOk() (*string, bool)

GetCidrBlockOk returns a tuple with the CidrBlock field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceVpc) GetStatus

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceVpc) GetStatusOk

func (o *AwsEdcAccountResourceVpc) GetStatusOk() (*AwsEdcVpcState, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceVpc) GetTags

func (o *AwsEdcAccountResourceVpc) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceVpc) GetTagsOk

func (o *AwsEdcAccountResourceVpc) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceVpc) GetVpcId

func (o *AwsEdcAccountResourceVpc) GetVpcId() string

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceVpc) GetVpcIdOk

func (o *AwsEdcAccountResourceVpc) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceVpc) GetVpcTenancy

func (o *AwsEdcAccountResourceVpc) GetVpcTenancy() AwsEdcVpcTenancy

GetVpcTenancy returns the VpcTenancy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcAccountResourceVpc) GetVpcTenancyOk

func (o *AwsEdcAccountResourceVpc) GetVpcTenancyOk() (*AwsEdcVpcTenancy, bool)

GetVpcTenancyOk returns a tuple with the VpcTenancy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcAccountResourceVpc) HasCidrBlock

func (o *AwsEdcAccountResourceVpc) HasCidrBlock() bool

HasCidrBlock returns a boolean if a field has been set.

func (*AwsEdcAccountResourceVpc) HasStatus

func (o *AwsEdcAccountResourceVpc) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AwsEdcAccountResourceVpc) HasTags

func (o *AwsEdcAccountResourceVpc) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AwsEdcAccountResourceVpc) HasVpcId

func (o *AwsEdcAccountResourceVpc) HasVpcId() bool

HasVpcId returns a boolean if a field has been set.

func (*AwsEdcAccountResourceVpc) HasVpcTenancy

func (o *AwsEdcAccountResourceVpc) HasVpcTenancy() bool

HasVpcTenancy returns a boolean if a field has been set.

func (AwsEdcAccountResourceVpc) MarshalJSON

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

func (*AwsEdcAccountResourceVpc) SetCidrBlock

func (o *AwsEdcAccountResourceVpc) SetCidrBlock(v string)

SetCidrBlock gets a reference to the given NullableString and assigns it to the CidrBlock field.

func (*AwsEdcAccountResourceVpc) SetCidrBlockNil

func (o *AwsEdcAccountResourceVpc) SetCidrBlockNil()

SetCidrBlockNil sets the value for CidrBlock to be an explicit nil

func (*AwsEdcAccountResourceVpc) SetStatus

func (o *AwsEdcAccountResourceVpc) SetStatus(v AwsEdcVpcState)

SetStatus gets a reference to the given NullableAwsEdcVpcState and assigns it to the Status field.

func (*AwsEdcAccountResourceVpc) SetStatusNil

func (o *AwsEdcAccountResourceVpc) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AwsEdcAccountResourceVpc) SetTags

func (o *AwsEdcAccountResourceVpc) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*AwsEdcAccountResourceVpc) SetVpcId

func (o *AwsEdcAccountResourceVpc) SetVpcId(v string)

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*AwsEdcAccountResourceVpc) SetVpcIdNil

func (o *AwsEdcAccountResourceVpc) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (*AwsEdcAccountResourceVpc) SetVpcTenancy

func (o *AwsEdcAccountResourceVpc) SetVpcTenancy(v AwsEdcVpcTenancy)

SetVpcTenancy gets a reference to the given NullableAwsEdcVpcTenancy and assigns it to the VpcTenancy field.

func (*AwsEdcAccountResourceVpc) SetVpcTenancyNil

func (o *AwsEdcAccountResourceVpc) SetVpcTenancyNil()

SetVpcTenancyNil sets the value for VpcTenancy to be an explicit nil

func (AwsEdcAccountResourceVpc) ToMap

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

func (*AwsEdcAccountResourceVpc) UnsetCidrBlock

func (o *AwsEdcAccountResourceVpc) UnsetCidrBlock()

UnsetCidrBlock ensures that no value is present for CidrBlock, not even an explicit nil

func (*AwsEdcAccountResourceVpc) UnsetStatus

func (o *AwsEdcAccountResourceVpc) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AwsEdcAccountResourceVpc) UnsetVpcId

func (o *AwsEdcAccountResourceVpc) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

func (*AwsEdcAccountResourceVpc) UnsetVpcTenancy

func (o *AwsEdcAccountResourceVpc) UnsetVpcTenancy()

UnsetVpcTenancy ensures that no value is present for VpcTenancy, not even an explicit nil

type AwsEdcAmiImageArchitecture

type AwsEdcAmiImageArchitecture string

AwsEdcAmiImageArchitecture the model 'AwsEdcAmiImageArchitecture'

const (
	AWSEDCAMIIMAGEARCHITECTURE_ARM64  AwsEdcAmiImageArchitecture = "ARM64"
	AWSEDCAMIIMAGEARCHITECTURE_I386   AwsEdcAmiImageArchitecture = "I386"
	AWSEDCAMIIMAGEARCHITECTURE_X86_64 AwsEdcAmiImageArchitecture = "X86_64"
)

List of AwsEdcAmiImageArchitecture

func NewAwsEdcAmiImageArchitectureFromValue

func NewAwsEdcAmiImageArchitectureFromValue(v string) (*AwsEdcAmiImageArchitecture, error)

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

func (AwsEdcAmiImageArchitecture) IsValid

func (v AwsEdcAmiImageArchitecture) IsValid() bool

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

func (AwsEdcAmiImageArchitecture) Ptr

Ptr returns reference to AwsEdcAmiImageArchitecture value

func (*AwsEdcAmiImageArchitecture) UnmarshalJSON

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

type AwsEdcAmiImageBootMode

type AwsEdcAmiImageBootMode string

AwsEdcAmiImageBootMode the model 'AwsEdcAmiImageBootMode'

const (
	AWSEDCAMIIMAGEBOOTMODE_LEGACYBIOS AwsEdcAmiImageBootMode = "LEGACYBIOS"
	AWSEDCAMIIMAGEBOOTMODE_UEFI       AwsEdcAmiImageBootMode = "UEFI"
)

List of AwsEdcAmiImageBootMode

func NewAwsEdcAmiImageBootModeFromValue

func NewAwsEdcAmiImageBootModeFromValue(v string) (*AwsEdcAmiImageBootMode, error)

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

func (AwsEdcAmiImageBootMode) IsValid

func (v AwsEdcAmiImageBootMode) IsValid() bool

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

func (AwsEdcAmiImageBootMode) Ptr

Ptr returns reference to AwsEdcAmiImageBootMode value

func (*AwsEdcAmiImageBootMode) UnmarshalJSON

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

type AwsEdcAmiImagePlatform

type AwsEdcAmiImagePlatform string

AwsEdcAmiImagePlatform the model 'AwsEdcAmiImagePlatform'

const (
	AWSEDCAMIIMAGEPLATFORM_WINDOWS AwsEdcAmiImagePlatform = "WINDOWS"
	AWSEDCAMIIMAGEPLATFORM_LINUX   AwsEdcAmiImagePlatform = "LINUX"
)

List of AwsEdcAmiImagePlatform

func NewAwsEdcAmiImagePlatformFromValue

func NewAwsEdcAmiImagePlatformFromValue(v string) (*AwsEdcAmiImagePlatform, error)

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

func (AwsEdcAmiImagePlatform) IsValid

func (v AwsEdcAmiImagePlatform) IsValid() bool

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

func (AwsEdcAmiImagePlatform) Ptr

Ptr returns reference to AwsEdcAmiImagePlatform value

func (*AwsEdcAmiImagePlatform) UnmarshalJSON

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

type AwsEdcAmiImageStatus

type AwsEdcAmiImageStatus string

AwsEdcAmiImageStatus the model 'AwsEdcAmiImageStatus'

const (
	AWSEDCAMIIMAGESTATUS_AVAILABLE    AwsEdcAmiImageStatus = "AVAILABLE"
	AWSEDCAMIIMAGESTATUS_DEREGISTERED AwsEdcAmiImageStatus = "DEREGISTERED"
	AWSEDCAMIIMAGESTATUS_ERROR        AwsEdcAmiImageStatus = "ERROR"
	AWSEDCAMIIMAGESTATUS_FAILED       AwsEdcAmiImageStatus = "FAILED"
	AWSEDCAMIIMAGESTATUS_INVALID      AwsEdcAmiImageStatus = "INVALID"
	AWSEDCAMIIMAGESTATUS_PENDING      AwsEdcAmiImageStatus = "PENDING"
	AWSEDCAMIIMAGESTATUS_TRANSIENT    AwsEdcAmiImageStatus = "TRANSIENT"
)

List of AwsEdcAmiImageStatus

func NewAwsEdcAmiImageStatusFromValue

func NewAwsEdcAmiImageStatusFromValue(v string) (*AwsEdcAmiImageStatus, error)

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

func (AwsEdcAmiImageStatus) IsValid

func (v AwsEdcAmiImageStatus) IsValid() bool

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

func (AwsEdcAmiImageStatus) Ptr

Ptr returns reference to AwsEdcAmiImageStatus value

func (*AwsEdcAmiImageStatus) UnmarshalJSON

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

type AwsEdcAmiImageType

type AwsEdcAmiImageType string

AwsEdcAmiImageType the model 'AwsEdcAmiImageType'

const (
	AWSEDCAMIIMAGETYPE_KERNEL  AwsEdcAmiImageType = "KERNEL"
	AWSEDCAMIIMAGETYPE_MACHINE AwsEdcAmiImageType = "MACHINE"
	AWSEDCAMIIMAGETYPE_RAMDISK AwsEdcAmiImageType = "RAMDISK"
)

List of AwsEdcAmiImageType

func NewAwsEdcAmiImageTypeFromValue

func NewAwsEdcAmiImageTypeFromValue(v string) (*AwsEdcAmiImageType, error)

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

func (AwsEdcAmiImageType) IsValid

func (v AwsEdcAmiImageType) IsValid() bool

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

func (AwsEdcAmiImageType) Ptr

Ptr returns reference to AwsEdcAmiImageType value

func (*AwsEdcAmiImageType) UnmarshalJSON

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

type AwsEdcAmiImageVirtualization

type AwsEdcAmiImageVirtualization string

AwsEdcAmiImageVirtualization the model 'AwsEdcAmiImageVirtualization'

const (
	AWSEDCAMIIMAGEVIRTUALIZATION_HVM         AwsEdcAmiImageVirtualization = "HVM"
	AWSEDCAMIIMAGEVIRTUALIZATION_PARAVIRTUAL AwsEdcAmiImageVirtualization = "PARAVIRTUAL"
)

List of AwsEdcAmiImageVirtualization

func NewAwsEdcAmiImageVirtualizationFromValue

func NewAwsEdcAmiImageVirtualizationFromValue(v string) (*AwsEdcAmiImageVirtualization, error)

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

func (AwsEdcAmiImageVirtualization) IsValid

func (v AwsEdcAmiImageVirtualization) IsValid() bool

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

func (AwsEdcAmiImageVirtualization) Ptr

Ptr returns reference to AwsEdcAmiImageVirtualization value

func (*AwsEdcAmiImageVirtualization) UnmarshalJSON

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

type AwsEdcAmiImportApplications

type AwsEdcAmiImportApplications string

AwsEdcAmiImportApplications Applications that can be installed on imported image

const (
	AWSEDCAMIIMPORTAPPLICATIONS_MICROSOFT_OFFICE_2019 AwsEdcAmiImportApplications = "Microsoft_Office_2019"
	AWSEDCAMIIMPORTAPPLICATIONS_NONE                  AwsEdcAmiImportApplications = "None"
)

List of AwsEdcAmiImportApplications

func NewAwsEdcAmiImportApplicationsFromValue

func NewAwsEdcAmiImportApplicationsFromValue(v string) (*AwsEdcAmiImportApplications, error)

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

func (AwsEdcAmiImportApplications) IsValid

func (v AwsEdcAmiImportApplications) IsValid() bool

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

func (AwsEdcAmiImportApplications) Ptr

Ptr returns reference to AwsEdcAmiImportApplications value

func (*AwsEdcAmiImportApplications) UnmarshalJSON

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

type AwsEdcDedicatedTenancyState

type AwsEdcDedicatedTenancyState string

AwsEdcDedicatedTenancyState the model 'AwsEdcDedicatedTenancyState'

const (
	AWSEDCDEDICATEDTENANCYSTATE_DISABLED  AwsEdcDedicatedTenancyState = "DISABLED"
	AWSEDCDEDICATEDTENANCYSTATE_PENDING   AwsEdcDedicatedTenancyState = "PENDING"
	AWSEDCDEDICATEDTENANCYSTATE_FAILED    AwsEdcDedicatedTenancyState = "FAILED"
	AWSEDCDEDICATEDTENANCYSTATE_COMPLETED AwsEdcDedicatedTenancyState = "COMPLETED"
)

List of AwsEdcDedicatedTenancyState

func NewAwsEdcDedicatedTenancyStateFromValue

func NewAwsEdcDedicatedTenancyStateFromValue(v string) (*AwsEdcDedicatedTenancyState, error)

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

func (AwsEdcDedicatedTenancyState) IsValid

func (v AwsEdcDedicatedTenancyState) IsValid() bool

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

func (AwsEdcDedicatedTenancyState) Ptr

Ptr returns reference to AwsEdcDedicatedTenancyState value

func (*AwsEdcDedicatedTenancyState) UnmarshalJSON

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

type AwsEdcDeployment

type AwsEdcDeployment struct {
	Deployment
	ComputeType NullableAwsEdcWorkspaceCompute `json:"computeType,omitempty"`
	// Size of operating system volume for bundle creation
	RootVolumeSize NullableInt32 `json:"rootVolumeSize,omitempty"`
	// Size of user storage volume for bundle creation
	UserVolumeSize NullableInt32 `json:"userVolumeSize,omitempty"`
	// Is root and user storage volume encrypted
	VolumesEncrypted NullableBool `json:"volumesEncrypted,omitempty"`
	// Volume encryption key
	VolumesEncryptionKey NullableString `json:"volumesEncryptionKey,omitempty"`
	// Image Id
	ImageId NullableString `json:"imageId,omitempty"`
	// Image Name
	ImageName   NullableString                     `json:"imageName,omitempty"`
	RunningMode NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
	// Configuration for individual workspace
	Workspaces []AwsEdcDeploymentMachine `json:"workspaces,omitempty"`
	// Image Name
	UserDecoupledWorkspaces NullableBool `json:"userDecoupledWorkspaces,omitempty"`
	// The name of the directory associated with the deployment
	DirectoryName NullableString `json:"directoryName,omitempty"`
}

AwsEdcDeployment struct for AwsEdcDeployment

func NewAwsEdcDeployment

func NewAwsEdcDeployment(accountType AccountType) *AwsEdcDeployment

NewAwsEdcDeployment instantiates a new AwsEdcDeployment 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 NewAwsEdcDeploymentWithDefaults

func NewAwsEdcDeploymentWithDefaults() *AwsEdcDeployment

NewAwsEdcDeploymentWithDefaults instantiates a new AwsEdcDeployment 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 (*AwsEdcDeployment) GetComputeType

func (o *AwsEdcDeployment) GetComputeType() AwsEdcWorkspaceCompute

GetComputeType returns the ComputeType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetComputeTypeOk

func (o *AwsEdcDeployment) GetComputeTypeOk() (*AwsEdcWorkspaceCompute, bool)

GetComputeTypeOk returns a tuple with the ComputeType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetDirectoryName

func (o *AwsEdcDeployment) GetDirectoryName() string

GetDirectoryName returns the DirectoryName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetDirectoryNameOk

func (o *AwsEdcDeployment) GetDirectoryNameOk() (*string, bool)

GetDirectoryNameOk returns a tuple with the DirectoryName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetImageId

func (o *AwsEdcDeployment) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetImageIdOk

func (o *AwsEdcDeployment) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetImageName

func (o *AwsEdcDeployment) GetImageName() string

GetImageName returns the ImageName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetImageNameOk

func (o *AwsEdcDeployment) GetImageNameOk() (*string, bool)

GetImageNameOk returns a tuple with the ImageName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetRootVolumeSize

func (o *AwsEdcDeployment) GetRootVolumeSize() int32

GetRootVolumeSize returns the RootVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetRootVolumeSizeOk

func (o *AwsEdcDeployment) GetRootVolumeSizeOk() (*int32, bool)

GetRootVolumeSizeOk returns a tuple with the RootVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetRunningMode

func (o *AwsEdcDeployment) GetRunningMode() AwsEdcWorkspaceRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetRunningModeOk

func (o *AwsEdcDeployment) GetRunningModeOk() (*AwsEdcWorkspaceRunningMode, bool)

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetUserDecoupledWorkspaces added in v1.0.0

func (o *AwsEdcDeployment) GetUserDecoupledWorkspaces() bool

GetUserDecoupledWorkspaces returns the UserDecoupledWorkspaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetUserDecoupledWorkspacesOk added in v1.0.0

func (o *AwsEdcDeployment) GetUserDecoupledWorkspacesOk() (*bool, bool)

GetUserDecoupledWorkspacesOk returns a tuple with the UserDecoupledWorkspaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetUserVolumeSize

func (o *AwsEdcDeployment) GetUserVolumeSize() int32

GetUserVolumeSize returns the UserVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetUserVolumeSizeOk

func (o *AwsEdcDeployment) GetUserVolumeSizeOk() (*int32, bool)

GetUserVolumeSizeOk returns a tuple with the UserVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetVolumesEncrypted added in v1.0.0

func (o *AwsEdcDeployment) GetVolumesEncrypted() bool

GetVolumesEncrypted returns the VolumesEncrypted field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetVolumesEncryptedOk added in v1.0.0

func (o *AwsEdcDeployment) GetVolumesEncryptedOk() (*bool, bool)

GetVolumesEncryptedOk returns a tuple with the VolumesEncrypted field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetVolumesEncryptionKey added in v1.0.0

func (o *AwsEdcDeployment) GetVolumesEncryptionKey() string

GetVolumesEncryptionKey returns the VolumesEncryptionKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetVolumesEncryptionKeyOk added in v1.0.0

func (o *AwsEdcDeployment) GetVolumesEncryptionKeyOk() (*string, bool)

GetVolumesEncryptionKeyOk returns a tuple with the VolumesEncryptionKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) GetWorkspaces

func (o *AwsEdcDeployment) GetWorkspaces() []AwsEdcDeploymentMachine

GetWorkspaces returns the Workspaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeployment) GetWorkspacesOk

func (o *AwsEdcDeployment) GetWorkspacesOk() ([]AwsEdcDeploymentMachine, bool)

GetWorkspacesOk returns a tuple with the Workspaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeployment) HasComputeType

func (o *AwsEdcDeployment) HasComputeType() bool

HasComputeType returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasDirectoryName

func (o *AwsEdcDeployment) HasDirectoryName() bool

HasDirectoryName returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasImageId

func (o *AwsEdcDeployment) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasImageName

func (o *AwsEdcDeployment) HasImageName() bool

HasImageName returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasRootVolumeSize

func (o *AwsEdcDeployment) HasRootVolumeSize() bool

HasRootVolumeSize returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasRunningMode

func (o *AwsEdcDeployment) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasUserDecoupledWorkspaces added in v1.0.0

func (o *AwsEdcDeployment) HasUserDecoupledWorkspaces() bool

HasUserDecoupledWorkspaces returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasUserVolumeSize

func (o *AwsEdcDeployment) HasUserVolumeSize() bool

HasUserVolumeSize returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasVolumesEncrypted added in v1.0.0

func (o *AwsEdcDeployment) HasVolumesEncrypted() bool

HasVolumesEncrypted returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasVolumesEncryptionKey added in v1.0.0

func (o *AwsEdcDeployment) HasVolumesEncryptionKey() bool

HasVolumesEncryptionKey returns a boolean if a field has been set.

func (*AwsEdcDeployment) HasWorkspaces

func (o *AwsEdcDeployment) HasWorkspaces() bool

HasWorkspaces returns a boolean if a field has been set.

func (AwsEdcDeployment) MarshalJSON

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

func (*AwsEdcDeployment) SetComputeType

func (o *AwsEdcDeployment) SetComputeType(v AwsEdcWorkspaceCompute)

SetComputeType gets a reference to the given NullableAwsEdcWorkspaceCompute and assigns it to the ComputeType field.

func (*AwsEdcDeployment) SetComputeTypeNil

func (o *AwsEdcDeployment) SetComputeTypeNil()

SetComputeTypeNil sets the value for ComputeType to be an explicit nil

func (*AwsEdcDeployment) SetDirectoryName

func (o *AwsEdcDeployment) SetDirectoryName(v string)

SetDirectoryName gets a reference to the given NullableString and assigns it to the DirectoryName field.

func (*AwsEdcDeployment) SetDirectoryNameNil

func (o *AwsEdcDeployment) SetDirectoryNameNil()

SetDirectoryNameNil sets the value for DirectoryName to be an explicit nil

func (*AwsEdcDeployment) SetImageId

func (o *AwsEdcDeployment) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*AwsEdcDeployment) SetImageIdNil

func (o *AwsEdcDeployment) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (*AwsEdcDeployment) SetImageName

func (o *AwsEdcDeployment) SetImageName(v string)

SetImageName gets a reference to the given NullableString and assigns it to the ImageName field.

func (*AwsEdcDeployment) SetImageNameNil

func (o *AwsEdcDeployment) SetImageNameNil()

SetImageNameNil sets the value for ImageName to be an explicit nil

func (*AwsEdcDeployment) SetRootVolumeSize

func (o *AwsEdcDeployment) SetRootVolumeSize(v int32)

SetRootVolumeSize gets a reference to the given NullableInt32 and assigns it to the RootVolumeSize field.

func (*AwsEdcDeployment) SetRootVolumeSizeNil

func (o *AwsEdcDeployment) SetRootVolumeSizeNil()

SetRootVolumeSizeNil sets the value for RootVolumeSize to be an explicit nil

func (*AwsEdcDeployment) SetRunningMode

func (o *AwsEdcDeployment) SetRunningMode(v AwsEdcWorkspaceRunningMode)

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*AwsEdcDeployment) SetRunningModeNil

func (o *AwsEdcDeployment) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*AwsEdcDeployment) SetUserDecoupledWorkspaces added in v1.0.0

func (o *AwsEdcDeployment) SetUserDecoupledWorkspaces(v bool)

SetUserDecoupledWorkspaces gets a reference to the given NullableBool and assigns it to the UserDecoupledWorkspaces field.

func (*AwsEdcDeployment) SetUserDecoupledWorkspacesNil added in v1.0.0

func (o *AwsEdcDeployment) SetUserDecoupledWorkspacesNil()

SetUserDecoupledWorkspacesNil sets the value for UserDecoupledWorkspaces to be an explicit nil

func (*AwsEdcDeployment) SetUserVolumeSize

func (o *AwsEdcDeployment) SetUserVolumeSize(v int32)

SetUserVolumeSize gets a reference to the given NullableInt32 and assigns it to the UserVolumeSize field.

func (*AwsEdcDeployment) SetUserVolumeSizeNil

func (o *AwsEdcDeployment) SetUserVolumeSizeNil()

SetUserVolumeSizeNil sets the value for UserVolumeSize to be an explicit nil

func (*AwsEdcDeployment) SetVolumesEncrypted added in v1.0.0

func (o *AwsEdcDeployment) SetVolumesEncrypted(v bool)

SetVolumesEncrypted gets a reference to the given NullableBool and assigns it to the VolumesEncrypted field.

func (*AwsEdcDeployment) SetVolumesEncryptedNil added in v1.0.0

func (o *AwsEdcDeployment) SetVolumesEncryptedNil()

SetVolumesEncryptedNil sets the value for VolumesEncrypted to be an explicit nil

func (*AwsEdcDeployment) SetVolumesEncryptionKey added in v1.0.0

func (o *AwsEdcDeployment) SetVolumesEncryptionKey(v string)

SetVolumesEncryptionKey gets a reference to the given NullableString and assigns it to the VolumesEncryptionKey field.

func (*AwsEdcDeployment) SetVolumesEncryptionKeyNil added in v1.0.0

func (o *AwsEdcDeployment) SetVolumesEncryptionKeyNil()

SetVolumesEncryptionKeyNil sets the value for VolumesEncryptionKey to be an explicit nil

func (*AwsEdcDeployment) SetWorkspaces

func (o *AwsEdcDeployment) SetWorkspaces(v []AwsEdcDeploymentMachine)

SetWorkspaces gets a reference to the given []AwsEdcDeploymentMachine and assigns it to the Workspaces field.

func (AwsEdcDeployment) ToMap

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

func (*AwsEdcDeployment) UnsetComputeType

func (o *AwsEdcDeployment) UnsetComputeType()

UnsetComputeType ensures that no value is present for ComputeType, not even an explicit nil

func (*AwsEdcDeployment) UnsetDirectoryName

func (o *AwsEdcDeployment) UnsetDirectoryName()

UnsetDirectoryName ensures that no value is present for DirectoryName, not even an explicit nil

func (*AwsEdcDeployment) UnsetImageId

func (o *AwsEdcDeployment) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

func (*AwsEdcDeployment) UnsetImageName

func (o *AwsEdcDeployment) UnsetImageName()

UnsetImageName ensures that no value is present for ImageName, not even an explicit nil

func (*AwsEdcDeployment) UnsetRootVolumeSize

func (o *AwsEdcDeployment) UnsetRootVolumeSize()

UnsetRootVolumeSize ensures that no value is present for RootVolumeSize, not even an explicit nil

func (*AwsEdcDeployment) UnsetRunningMode

func (o *AwsEdcDeployment) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*AwsEdcDeployment) UnsetUserDecoupledWorkspaces added in v1.0.0

func (o *AwsEdcDeployment) UnsetUserDecoupledWorkspaces()

UnsetUserDecoupledWorkspaces ensures that no value is present for UserDecoupledWorkspaces, not even an explicit nil

func (*AwsEdcDeployment) UnsetUserVolumeSize

func (o *AwsEdcDeployment) UnsetUserVolumeSize()

UnsetUserVolumeSize ensures that no value is present for UserVolumeSize, not even an explicit nil

func (*AwsEdcDeployment) UnsetVolumesEncrypted added in v1.0.0

func (o *AwsEdcDeployment) UnsetVolumesEncrypted()

UnsetVolumesEncrypted ensures that no value is present for VolumesEncrypted, not even an explicit nil

func (*AwsEdcDeployment) UnsetVolumesEncryptionKey added in v1.0.0

func (o *AwsEdcDeployment) UnsetVolumesEncryptionKey()

UnsetVolumesEncryptionKey ensures that no value is present for VolumesEncryptionKey, not even an explicit nil

type AwsEdcDeploymentMachine

type AwsEdcDeploymentMachine struct {
	DeploymentMachine
	// Workspace Id
	WorkspaceId NullableString `json:"workspaceId,omitempty"`
	// Username associated with workspace
	Username NullableString `json:"username,omitempty"`
	// Size of operating system volume
	RootVolumeSize NullableInt32 `json:"rootVolumeSize,omitempty"`
	// Size of user storage volume
	UserVolumeSize NullableInt32 `json:"userVolumeSize,omitempty"`
	// Is operating system volume encrypted
	RootVolumeEncrypted *bool `json:"rootVolumeEncrypted,omitempty"`
	// Is user storage volume encrypted
	UserVolumeEncrypted *bool                              `json:"userVolumeEncrypted,omitempty"`
	ComputeType         NullableAwsEdcWorkspaceCompute     `json:"computeType,omitempty"`
	RunningMode         NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
	WorkspaceStatus     NullableAwsEdcWorkspaceState       `json:"workspaceStatus,omitempty"`
	// Error Message
	ErrorMessage NullableString `json:"errorMessage,omitempty"`
}

AwsEdcDeploymentMachine Configuration for individual workspace

func NewAwsEdcDeploymentMachine

func NewAwsEdcDeploymentMachine(accountType AccountType) *AwsEdcDeploymentMachine

NewAwsEdcDeploymentMachine instantiates a new AwsEdcDeploymentMachine 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 NewAwsEdcDeploymentMachineWithDefaults

func NewAwsEdcDeploymentMachineWithDefaults() *AwsEdcDeploymentMachine

NewAwsEdcDeploymentMachineWithDefaults instantiates a new AwsEdcDeploymentMachine 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 (*AwsEdcDeploymentMachine) GetComputeType

func (o *AwsEdcDeploymentMachine) GetComputeType() AwsEdcWorkspaceCompute

GetComputeType returns the ComputeType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetComputeTypeOk

func (o *AwsEdcDeploymentMachine) GetComputeTypeOk() (*AwsEdcWorkspaceCompute, bool)

GetComputeTypeOk returns a tuple with the ComputeType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetErrorMessage

func (o *AwsEdcDeploymentMachine) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetErrorMessageOk

func (o *AwsEdcDeploymentMachine) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetRootVolumeEncrypted

func (o *AwsEdcDeploymentMachine) GetRootVolumeEncrypted() bool

GetRootVolumeEncrypted returns the RootVolumeEncrypted field value if set, zero value otherwise.

func (*AwsEdcDeploymentMachine) GetRootVolumeEncryptedOk

func (o *AwsEdcDeploymentMachine) GetRootVolumeEncryptedOk() (*bool, bool)

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

func (*AwsEdcDeploymentMachine) GetRootVolumeSize

func (o *AwsEdcDeploymentMachine) GetRootVolumeSize() int32

GetRootVolumeSize returns the RootVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetRootVolumeSizeOk

func (o *AwsEdcDeploymentMachine) GetRootVolumeSizeOk() (*int32, bool)

GetRootVolumeSizeOk returns a tuple with the RootVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetRunningModeOk

func (o *AwsEdcDeploymentMachine) GetRunningModeOk() (*AwsEdcWorkspaceRunningMode, bool)

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetUserVolumeEncrypted

func (o *AwsEdcDeploymentMachine) GetUserVolumeEncrypted() bool

GetUserVolumeEncrypted returns the UserVolumeEncrypted field value if set, zero value otherwise.

func (*AwsEdcDeploymentMachine) GetUserVolumeEncryptedOk

func (o *AwsEdcDeploymentMachine) GetUserVolumeEncryptedOk() (*bool, bool)

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

func (*AwsEdcDeploymentMachine) GetUserVolumeSize

func (o *AwsEdcDeploymentMachine) GetUserVolumeSize() int32

GetUserVolumeSize returns the UserVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetUserVolumeSizeOk

func (o *AwsEdcDeploymentMachine) GetUserVolumeSizeOk() (*int32, bool)

GetUserVolumeSizeOk returns a tuple with the UserVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetUsername

func (o *AwsEdcDeploymentMachine) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetUsernameOk

func (o *AwsEdcDeploymentMachine) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetWorkspaceId

func (o *AwsEdcDeploymentMachine) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetWorkspaceIdOk

func (o *AwsEdcDeploymentMachine) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) GetWorkspaceStatus

func (o *AwsEdcDeploymentMachine) GetWorkspaceStatus() AwsEdcWorkspaceState

GetWorkspaceStatus returns the WorkspaceStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDeploymentMachine) GetWorkspaceStatusOk

func (o *AwsEdcDeploymentMachine) GetWorkspaceStatusOk() (*AwsEdcWorkspaceState, bool)

GetWorkspaceStatusOk returns a tuple with the WorkspaceStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDeploymentMachine) HasComputeType

func (o *AwsEdcDeploymentMachine) HasComputeType() bool

HasComputeType returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasErrorMessage

func (o *AwsEdcDeploymentMachine) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasRootVolumeEncrypted

func (o *AwsEdcDeploymentMachine) HasRootVolumeEncrypted() bool

HasRootVolumeEncrypted returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasRootVolumeSize

func (o *AwsEdcDeploymentMachine) HasRootVolumeSize() bool

HasRootVolumeSize returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasRunningMode

func (o *AwsEdcDeploymentMachine) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasUserVolumeEncrypted

func (o *AwsEdcDeploymentMachine) HasUserVolumeEncrypted() bool

HasUserVolumeEncrypted returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasUserVolumeSize

func (o *AwsEdcDeploymentMachine) HasUserVolumeSize() bool

HasUserVolumeSize returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasUsername

func (o *AwsEdcDeploymentMachine) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasWorkspaceId

func (o *AwsEdcDeploymentMachine) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (*AwsEdcDeploymentMachine) HasWorkspaceStatus

func (o *AwsEdcDeploymentMachine) HasWorkspaceStatus() bool

HasWorkspaceStatus returns a boolean if a field has been set.

func (AwsEdcDeploymentMachine) MarshalJSON

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

func (*AwsEdcDeploymentMachine) SetComputeType

func (o *AwsEdcDeploymentMachine) SetComputeType(v AwsEdcWorkspaceCompute)

SetComputeType gets a reference to the given NullableAwsEdcWorkspaceCompute and assigns it to the ComputeType field.

func (*AwsEdcDeploymentMachine) SetComputeTypeNil

func (o *AwsEdcDeploymentMachine) SetComputeTypeNil()

SetComputeTypeNil sets the value for ComputeType to be an explicit nil

func (*AwsEdcDeploymentMachine) SetErrorMessage

func (o *AwsEdcDeploymentMachine) SetErrorMessage(v string)

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

func (*AwsEdcDeploymentMachine) SetErrorMessageNil

func (o *AwsEdcDeploymentMachine) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AwsEdcDeploymentMachine) SetRootVolumeEncrypted

func (o *AwsEdcDeploymentMachine) SetRootVolumeEncrypted(v bool)

SetRootVolumeEncrypted gets a reference to the given bool and assigns it to the RootVolumeEncrypted field.

func (*AwsEdcDeploymentMachine) SetRootVolumeSize

func (o *AwsEdcDeploymentMachine) SetRootVolumeSize(v int32)

SetRootVolumeSize gets a reference to the given NullableInt32 and assigns it to the RootVolumeSize field.

func (*AwsEdcDeploymentMachine) SetRootVolumeSizeNil

func (o *AwsEdcDeploymentMachine) SetRootVolumeSizeNil()

SetRootVolumeSizeNil sets the value for RootVolumeSize to be an explicit nil

func (*AwsEdcDeploymentMachine) SetRunningMode

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*AwsEdcDeploymentMachine) SetRunningModeNil

func (o *AwsEdcDeploymentMachine) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*AwsEdcDeploymentMachine) SetUserVolumeEncrypted

func (o *AwsEdcDeploymentMachine) SetUserVolumeEncrypted(v bool)

SetUserVolumeEncrypted gets a reference to the given bool and assigns it to the UserVolumeEncrypted field.

func (*AwsEdcDeploymentMachine) SetUserVolumeSize

func (o *AwsEdcDeploymentMachine) SetUserVolumeSize(v int32)

SetUserVolumeSize gets a reference to the given NullableInt32 and assigns it to the UserVolumeSize field.

func (*AwsEdcDeploymentMachine) SetUserVolumeSizeNil

func (o *AwsEdcDeploymentMachine) SetUserVolumeSizeNil()

SetUserVolumeSizeNil sets the value for UserVolumeSize to be an explicit nil

func (*AwsEdcDeploymentMachine) SetUsername

func (o *AwsEdcDeploymentMachine) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*AwsEdcDeploymentMachine) SetUsernameNil

func (o *AwsEdcDeploymentMachine) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (*AwsEdcDeploymentMachine) SetWorkspaceId

func (o *AwsEdcDeploymentMachine) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*AwsEdcDeploymentMachine) SetWorkspaceIdNil

func (o *AwsEdcDeploymentMachine) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (*AwsEdcDeploymentMachine) SetWorkspaceStatus

func (o *AwsEdcDeploymentMachine) SetWorkspaceStatus(v AwsEdcWorkspaceState)

SetWorkspaceStatus gets a reference to the given NullableAwsEdcWorkspaceState and assigns it to the WorkspaceStatus field.

func (*AwsEdcDeploymentMachine) SetWorkspaceStatusNil

func (o *AwsEdcDeploymentMachine) SetWorkspaceStatusNil()

SetWorkspaceStatusNil sets the value for WorkspaceStatus to be an explicit nil

func (AwsEdcDeploymentMachine) ToMap

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

func (*AwsEdcDeploymentMachine) UnsetComputeType

func (o *AwsEdcDeploymentMachine) UnsetComputeType()

UnsetComputeType ensures that no value is present for ComputeType, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetErrorMessage

func (o *AwsEdcDeploymentMachine) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetRootVolumeSize

func (o *AwsEdcDeploymentMachine) UnsetRootVolumeSize()

UnsetRootVolumeSize ensures that no value is present for RootVolumeSize, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetRunningMode

func (o *AwsEdcDeploymentMachine) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetUserVolumeSize

func (o *AwsEdcDeploymentMachine) UnsetUserVolumeSize()

UnsetUserVolumeSize ensures that no value is present for UserVolumeSize, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetUsername

func (o *AwsEdcDeploymentMachine) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetWorkspaceId

func (o *AwsEdcDeploymentMachine) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

func (*AwsEdcDeploymentMachine) UnsetWorkspaceStatus

func (o *AwsEdcDeploymentMachine) UnsetWorkspaceStatus()

UnsetWorkspaceStatus ensures that no value is present for WorkspaceStatus, not even an explicit nil

type AwsEdcDirectoryConnection

type AwsEdcDirectoryConnection struct {
	ResourceConnection
	// Directory Id
	DirectoryId        NullableString                     `json:"directoryId,omitempty"`
	RegistrationStatus *AwsEdcDirectoryRegistrationStatus `json:"registrationStatus,omitempty"`
	// Directory Name
	DirectoryName NullableString `json:"directoryName,omitempty"`
	// Directory Vpc
	VpcId NullableString `json:"vpcId,omitempty"`
	// First Subnet Id
	Subnet1Id NullableString `json:"subnet1Id,omitempty"`
	// Second Subnet Id
	Subnet2Id NullableString                 `json:"subnet2Id,omitempty"`
	Tenancy   NullableAwsEdcDirectoryTenancy `json:"tenancy,omitempty"`
	// Enable Work Docs
	EnableWorkDocs NullableBool `json:"enableWorkDocs,omitempty"`
	// Enable Local Administrator
	UserEnabledAsLocalAdministrator NullableBool `json:"userEnabledAsLocalAdministrator,omitempty"`
	// Enable Internet Access
	EnableInternetAccess NullableBool `json:"enableInternetAccess,omitempty"`
	// Enable Maintanance Mode
	EnableMaintananceMode NullableBool `json:"enableMaintananceMode,omitempty"`
	// Custom Security Group Id
	SecurityGroupId NullableString `json:"securityGroupId,omitempty"`
	// Custom Organizational Unit
	DefaultOU NullableString `json:"defaultOU,omitempty"`
	// Any error message
	ErrorMessage NullableString `json:"errorMessage,omitempty"`
}

AwsEdcDirectoryConnection struct for AwsEdcDirectoryConnection

func NewAwsEdcDirectoryConnection

func NewAwsEdcDirectoryConnection(accountType AccountType, connectionId string, name string, citrixManaged bool) *AwsEdcDirectoryConnection

NewAwsEdcDirectoryConnection instantiates a new AwsEdcDirectoryConnection 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 NewAwsEdcDirectoryConnectionWithDefaults

func NewAwsEdcDirectoryConnectionWithDefaults() *AwsEdcDirectoryConnection

NewAwsEdcDirectoryConnectionWithDefaults instantiates a new AwsEdcDirectoryConnection 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 (*AwsEdcDirectoryConnection) GetDefaultOU

func (o *AwsEdcDirectoryConnection) GetDefaultOU() string

GetDefaultOU returns the DefaultOU field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetDefaultOUOk

func (o *AwsEdcDirectoryConnection) GetDefaultOUOk() (*string, bool)

GetDefaultOUOk returns a tuple with the DefaultOU field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetDirectoryId

func (o *AwsEdcDirectoryConnection) GetDirectoryId() string

GetDirectoryId returns the DirectoryId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetDirectoryIdOk

func (o *AwsEdcDirectoryConnection) GetDirectoryIdOk() (*string, bool)

GetDirectoryIdOk returns a tuple with the DirectoryId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetDirectoryName

func (o *AwsEdcDirectoryConnection) GetDirectoryName() string

GetDirectoryName returns the DirectoryName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetDirectoryNameOk

func (o *AwsEdcDirectoryConnection) GetDirectoryNameOk() (*string, bool)

GetDirectoryNameOk returns a tuple with the DirectoryName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetEnableInternetAccess

func (o *AwsEdcDirectoryConnection) GetEnableInternetAccess() bool

GetEnableInternetAccess returns the EnableInternetAccess field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetEnableInternetAccessOk

func (o *AwsEdcDirectoryConnection) GetEnableInternetAccessOk() (*bool, bool)

GetEnableInternetAccessOk returns a tuple with the EnableInternetAccess field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetEnableMaintananceMode

func (o *AwsEdcDirectoryConnection) GetEnableMaintananceMode() bool

GetEnableMaintananceMode returns the EnableMaintananceMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetEnableMaintananceModeOk

func (o *AwsEdcDirectoryConnection) GetEnableMaintananceModeOk() (*bool, bool)

GetEnableMaintananceModeOk returns a tuple with the EnableMaintananceMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetEnableWorkDocs

func (o *AwsEdcDirectoryConnection) GetEnableWorkDocs() bool

GetEnableWorkDocs returns the EnableWorkDocs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetEnableWorkDocsOk

func (o *AwsEdcDirectoryConnection) GetEnableWorkDocsOk() (*bool, bool)

GetEnableWorkDocsOk returns a tuple with the EnableWorkDocs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetErrorMessage

func (o *AwsEdcDirectoryConnection) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetErrorMessageOk

func (o *AwsEdcDirectoryConnection) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetRegistrationStatus

GetRegistrationStatus returns the RegistrationStatus field value if set, zero value otherwise.

func (*AwsEdcDirectoryConnection) GetRegistrationStatusOk

func (o *AwsEdcDirectoryConnection) GetRegistrationStatusOk() (*AwsEdcDirectoryRegistrationStatus, bool)

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

func (*AwsEdcDirectoryConnection) GetSecurityGroupId

func (o *AwsEdcDirectoryConnection) GetSecurityGroupId() string

GetSecurityGroupId returns the SecurityGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetSecurityGroupIdOk

func (o *AwsEdcDirectoryConnection) GetSecurityGroupIdOk() (*string, bool)

GetSecurityGroupIdOk returns a tuple with the SecurityGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetSubnet1Id

func (o *AwsEdcDirectoryConnection) GetSubnet1Id() string

GetSubnet1Id returns the Subnet1Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetSubnet1IdOk

func (o *AwsEdcDirectoryConnection) GetSubnet1IdOk() (*string, bool)

GetSubnet1IdOk returns a tuple with the Subnet1Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetSubnet2Id

func (o *AwsEdcDirectoryConnection) GetSubnet2Id() string

GetSubnet2Id returns the Subnet2Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetSubnet2IdOk

func (o *AwsEdcDirectoryConnection) GetSubnet2IdOk() (*string, bool)

GetSubnet2IdOk returns a tuple with the Subnet2Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetTenancy

GetTenancy returns the Tenancy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetTenancyOk

GetTenancyOk returns a tuple with the Tenancy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator

func (o *AwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator() bool

GetUserEnabledAsLocalAdministrator returns the UserEnabledAsLocalAdministrator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk

func (o *AwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk() (*bool, bool)

GetUserEnabledAsLocalAdministratorOk returns a tuple with the UserEnabledAsLocalAdministrator field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) GetVpcId

func (o *AwsEdcDirectoryConnection) GetVpcId() string

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcDirectoryConnection) GetVpcIdOk

func (o *AwsEdcDirectoryConnection) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcDirectoryConnection) HasDefaultOU

func (o *AwsEdcDirectoryConnection) HasDefaultOU() bool

HasDefaultOU returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasDirectoryId

func (o *AwsEdcDirectoryConnection) HasDirectoryId() bool

HasDirectoryId returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasDirectoryName

func (o *AwsEdcDirectoryConnection) HasDirectoryName() bool

HasDirectoryName returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasEnableInternetAccess

func (o *AwsEdcDirectoryConnection) HasEnableInternetAccess() bool

HasEnableInternetAccess returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasEnableMaintananceMode

func (o *AwsEdcDirectoryConnection) HasEnableMaintananceMode() bool

HasEnableMaintananceMode returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasEnableWorkDocs

func (o *AwsEdcDirectoryConnection) HasEnableWorkDocs() bool

HasEnableWorkDocs returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasErrorMessage

func (o *AwsEdcDirectoryConnection) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasRegistrationStatus

func (o *AwsEdcDirectoryConnection) HasRegistrationStatus() bool

HasRegistrationStatus returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasSecurityGroupId

func (o *AwsEdcDirectoryConnection) HasSecurityGroupId() bool

HasSecurityGroupId returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasSubnet1Id

func (o *AwsEdcDirectoryConnection) HasSubnet1Id() bool

HasSubnet1Id returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasSubnet2Id

func (o *AwsEdcDirectoryConnection) HasSubnet2Id() bool

HasSubnet2Id returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasTenancy

func (o *AwsEdcDirectoryConnection) HasTenancy() bool

HasTenancy returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator

func (o *AwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator() bool

HasUserEnabledAsLocalAdministrator returns a boolean if a field has been set.

func (*AwsEdcDirectoryConnection) HasVpcId

func (o *AwsEdcDirectoryConnection) HasVpcId() bool

HasVpcId returns a boolean if a field has been set.

func (AwsEdcDirectoryConnection) MarshalJSON

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

func (*AwsEdcDirectoryConnection) SetDefaultOU

func (o *AwsEdcDirectoryConnection) SetDefaultOU(v string)

SetDefaultOU gets a reference to the given NullableString and assigns it to the DefaultOU field.

func (*AwsEdcDirectoryConnection) SetDefaultOUNil

func (o *AwsEdcDirectoryConnection) SetDefaultOUNil()

SetDefaultOUNil sets the value for DefaultOU to be an explicit nil

func (*AwsEdcDirectoryConnection) SetDirectoryId

func (o *AwsEdcDirectoryConnection) SetDirectoryId(v string)

SetDirectoryId gets a reference to the given NullableString and assigns it to the DirectoryId field.

func (*AwsEdcDirectoryConnection) SetDirectoryIdNil

func (o *AwsEdcDirectoryConnection) SetDirectoryIdNil()

SetDirectoryIdNil sets the value for DirectoryId to be an explicit nil

func (*AwsEdcDirectoryConnection) SetDirectoryName

func (o *AwsEdcDirectoryConnection) SetDirectoryName(v string)

SetDirectoryName gets a reference to the given NullableString and assigns it to the DirectoryName field.

func (*AwsEdcDirectoryConnection) SetDirectoryNameNil

func (o *AwsEdcDirectoryConnection) SetDirectoryNameNil()

SetDirectoryNameNil sets the value for DirectoryName to be an explicit nil

func (*AwsEdcDirectoryConnection) SetEnableInternetAccess

func (o *AwsEdcDirectoryConnection) SetEnableInternetAccess(v bool)

SetEnableInternetAccess gets a reference to the given NullableBool and assigns it to the EnableInternetAccess field.

func (*AwsEdcDirectoryConnection) SetEnableInternetAccessNil

func (o *AwsEdcDirectoryConnection) SetEnableInternetAccessNil()

SetEnableInternetAccessNil sets the value for EnableInternetAccess to be an explicit nil

func (*AwsEdcDirectoryConnection) SetEnableMaintananceMode

func (o *AwsEdcDirectoryConnection) SetEnableMaintananceMode(v bool)

SetEnableMaintananceMode gets a reference to the given NullableBool and assigns it to the EnableMaintananceMode field.

func (*AwsEdcDirectoryConnection) SetEnableMaintananceModeNil

func (o *AwsEdcDirectoryConnection) SetEnableMaintananceModeNil()

SetEnableMaintananceModeNil sets the value for EnableMaintananceMode to be an explicit nil

func (*AwsEdcDirectoryConnection) SetEnableWorkDocs

func (o *AwsEdcDirectoryConnection) SetEnableWorkDocs(v bool)

SetEnableWorkDocs gets a reference to the given NullableBool and assigns it to the EnableWorkDocs field.

func (*AwsEdcDirectoryConnection) SetEnableWorkDocsNil

func (o *AwsEdcDirectoryConnection) SetEnableWorkDocsNil()

SetEnableWorkDocsNil sets the value for EnableWorkDocs to be an explicit nil

func (*AwsEdcDirectoryConnection) SetErrorMessage

func (o *AwsEdcDirectoryConnection) SetErrorMessage(v string)

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

func (*AwsEdcDirectoryConnection) SetErrorMessageNil

func (o *AwsEdcDirectoryConnection) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AwsEdcDirectoryConnection) SetRegistrationStatus

SetRegistrationStatus gets a reference to the given AwsEdcDirectoryRegistrationStatus and assigns it to the RegistrationStatus field.

func (*AwsEdcDirectoryConnection) SetSecurityGroupId

func (o *AwsEdcDirectoryConnection) SetSecurityGroupId(v string)

SetSecurityGroupId gets a reference to the given NullableString and assigns it to the SecurityGroupId field.

func (*AwsEdcDirectoryConnection) SetSecurityGroupIdNil

func (o *AwsEdcDirectoryConnection) SetSecurityGroupIdNil()

SetSecurityGroupIdNil sets the value for SecurityGroupId to be an explicit nil

func (*AwsEdcDirectoryConnection) SetSubnet1Id

func (o *AwsEdcDirectoryConnection) SetSubnet1Id(v string)

SetSubnet1Id gets a reference to the given NullableString and assigns it to the Subnet1Id field.

func (*AwsEdcDirectoryConnection) SetSubnet1IdNil

func (o *AwsEdcDirectoryConnection) SetSubnet1IdNil()

SetSubnet1IdNil sets the value for Subnet1Id to be an explicit nil

func (*AwsEdcDirectoryConnection) SetSubnet2Id

func (o *AwsEdcDirectoryConnection) SetSubnet2Id(v string)

SetSubnet2Id gets a reference to the given NullableString and assigns it to the Subnet2Id field.

func (*AwsEdcDirectoryConnection) SetSubnet2IdNil

func (o *AwsEdcDirectoryConnection) SetSubnet2IdNil()

SetSubnet2IdNil sets the value for Subnet2Id to be an explicit nil

func (*AwsEdcDirectoryConnection) SetTenancy

SetTenancy gets a reference to the given NullableAwsEdcDirectoryTenancy and assigns it to the Tenancy field.

func (*AwsEdcDirectoryConnection) SetTenancyNil

func (o *AwsEdcDirectoryConnection) SetTenancyNil()

SetTenancyNil sets the value for Tenancy to be an explicit nil

func (*AwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator

func (o *AwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator(v bool)

SetUserEnabledAsLocalAdministrator gets a reference to the given NullableBool and assigns it to the UserEnabledAsLocalAdministrator field.

func (*AwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministratorNil

func (o *AwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministratorNil()

SetUserEnabledAsLocalAdministratorNil sets the value for UserEnabledAsLocalAdministrator to be an explicit nil

func (*AwsEdcDirectoryConnection) SetVpcId

func (o *AwsEdcDirectoryConnection) SetVpcId(v string)

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*AwsEdcDirectoryConnection) SetVpcIdNil

func (o *AwsEdcDirectoryConnection) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (AwsEdcDirectoryConnection) ToMap

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

func (*AwsEdcDirectoryConnection) UnsetDefaultOU

func (o *AwsEdcDirectoryConnection) UnsetDefaultOU()

UnsetDefaultOU ensures that no value is present for DefaultOU, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetDirectoryId

func (o *AwsEdcDirectoryConnection) UnsetDirectoryId()

UnsetDirectoryId ensures that no value is present for DirectoryId, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetDirectoryName

func (o *AwsEdcDirectoryConnection) UnsetDirectoryName()

UnsetDirectoryName ensures that no value is present for DirectoryName, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetEnableInternetAccess

func (o *AwsEdcDirectoryConnection) UnsetEnableInternetAccess()

UnsetEnableInternetAccess ensures that no value is present for EnableInternetAccess, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetEnableMaintananceMode

func (o *AwsEdcDirectoryConnection) UnsetEnableMaintananceMode()

UnsetEnableMaintananceMode ensures that no value is present for EnableMaintananceMode, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetEnableWorkDocs

func (o *AwsEdcDirectoryConnection) UnsetEnableWorkDocs()

UnsetEnableWorkDocs ensures that no value is present for EnableWorkDocs, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetErrorMessage

func (o *AwsEdcDirectoryConnection) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetSecurityGroupId

func (o *AwsEdcDirectoryConnection) UnsetSecurityGroupId()

UnsetSecurityGroupId ensures that no value is present for SecurityGroupId, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetSubnet1Id

func (o *AwsEdcDirectoryConnection) UnsetSubnet1Id()

UnsetSubnet1Id ensures that no value is present for Subnet1Id, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetSubnet2Id

func (o *AwsEdcDirectoryConnection) UnsetSubnet2Id()

UnsetSubnet2Id ensures that no value is present for Subnet2Id, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetTenancy

func (o *AwsEdcDirectoryConnection) UnsetTenancy()

UnsetTenancy ensures that no value is present for Tenancy, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetUserEnabledAsLocalAdministrator

func (o *AwsEdcDirectoryConnection) UnsetUserEnabledAsLocalAdministrator()

UnsetUserEnabledAsLocalAdministrator ensures that no value is present for UserEnabledAsLocalAdministrator, not even an explicit nil

func (*AwsEdcDirectoryConnection) UnsetVpcId

func (o *AwsEdcDirectoryConnection) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

type AwsEdcDirectoryRegistrationStatus

type AwsEdcDirectoryRegistrationStatus string

AwsEdcDirectoryRegistrationStatus the model 'AwsEdcDirectoryRegistrationStatus'

const (
	AWSEDCDIRECTORYREGISTRATIONSTATUS_REGISTERED    AwsEdcDirectoryRegistrationStatus = "REGISTERED"
	AWSEDCDIRECTORYREGISTRATIONSTATUS_REGISTERING   AwsEdcDirectoryRegistrationStatus = "REGISTERING"
	AWSEDCDIRECTORYREGISTRATIONSTATUS_DEREGISTERED  AwsEdcDirectoryRegistrationStatus = "DEREGISTERED"
	AWSEDCDIRECTORYREGISTRATIONSTATUS_DEREGISTERING AwsEdcDirectoryRegistrationStatus = "DEREGISTERING"
	AWSEDCDIRECTORYREGISTRATIONSTATUS_ERROR         AwsEdcDirectoryRegistrationStatus = "ERROR"
)

List of AwsEdcDirectoryRegistrationStatus

func NewAwsEdcDirectoryRegistrationStatusFromValue

func NewAwsEdcDirectoryRegistrationStatusFromValue(v string) (*AwsEdcDirectoryRegistrationStatus, error)

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

func (AwsEdcDirectoryRegistrationStatus) IsValid

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

func (AwsEdcDirectoryRegistrationStatus) Ptr

Ptr returns reference to AwsEdcDirectoryRegistrationStatus value

func (*AwsEdcDirectoryRegistrationStatus) UnmarshalJSON

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

type AwsEdcDirectorySize

type AwsEdcDirectorySize string

AwsEdcDirectorySize the model 'AwsEdcDirectorySize'

const (
	AWSEDCDIRECTORYSIZE_SMALL AwsEdcDirectorySize = "SMALL"
	AWSEDCDIRECTORYSIZE_LARGE AwsEdcDirectorySize = "LARGE"
)

List of AwsEdcDirectorySize

func NewAwsEdcDirectorySizeFromValue

func NewAwsEdcDirectorySizeFromValue(v string) (*AwsEdcDirectorySize, error)

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

func (AwsEdcDirectorySize) IsValid

func (v AwsEdcDirectorySize) IsValid() bool

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

func (AwsEdcDirectorySize) Ptr

Ptr returns reference to AwsEdcDirectorySize value

func (*AwsEdcDirectorySize) UnmarshalJSON

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

type AwsEdcDirectoryStatus

type AwsEdcDirectoryStatus string

AwsEdcDirectoryStatus the model 'AwsEdcDirectoryStatus'

const (
	AWSEDCDIRECTORYSTATUS_ACTIVE        AwsEdcDirectoryStatus = "ACTIVE"
	AWSEDCDIRECTORYSTATUS_CREATED       AwsEdcDirectoryStatus = "CREATED"
	AWSEDCDIRECTORYSTATUS_CREATING      AwsEdcDirectoryStatus = "CREATING"
	AWSEDCDIRECTORYSTATUS_DELETED       AwsEdcDirectoryStatus = "DELETED"
	AWSEDCDIRECTORYSTATUS_DELETING      AwsEdcDirectoryStatus = "DELETING"
	AWSEDCDIRECTORYSTATUS_FAILED        AwsEdcDirectoryStatus = "FAILED"
	AWSEDCDIRECTORYSTATUS_IMPARED       AwsEdcDirectoryStatus = "IMPARED"
	AWSEDCDIRECTORYSTATUS_INOPERABLE    AwsEdcDirectoryStatus = "INOPERABLE"
	AWSEDCDIRECTORYSTATUS_REQUESTED     AwsEdcDirectoryStatus = "REQUESTED"
	AWSEDCDIRECTORYSTATUS_RESTOREFAILED AwsEdcDirectoryStatus = "RESTOREFAILED"
	AWSEDCDIRECTORYSTATUS_RESTORING     AwsEdcDirectoryStatus = "RESTORING"
)

List of AwsEdcDirectoryStatus

func NewAwsEdcDirectoryStatusFromValue

func NewAwsEdcDirectoryStatusFromValue(v string) (*AwsEdcDirectoryStatus, error)

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

func (AwsEdcDirectoryStatus) IsValid

func (v AwsEdcDirectoryStatus) IsValid() bool

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

func (AwsEdcDirectoryStatus) Ptr

Ptr returns reference to AwsEdcDirectoryStatus value

func (*AwsEdcDirectoryStatus) UnmarshalJSON

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

type AwsEdcDirectoryTenancy

type AwsEdcDirectoryTenancy string

AwsEdcDirectoryTenancy the model 'AwsEdcDirectoryTenancy'

const (
	AWSEDCDIRECTORYTENANCY_SHARED    AwsEdcDirectoryTenancy = "SHARED"
	AWSEDCDIRECTORYTENANCY_DEDICATED AwsEdcDirectoryTenancy = "DEDICATED"
)

List of AwsEdcDirectoryTenancy

func NewAwsEdcDirectoryTenancyFromValue

func NewAwsEdcDirectoryTenancyFromValue(v string) (*AwsEdcDirectoryTenancy, error)

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

func (AwsEdcDirectoryTenancy) IsValid

func (v AwsEdcDirectoryTenancy) IsValid() bool

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

func (AwsEdcDirectoryTenancy) Ptr

Ptr returns reference to AwsEdcDirectoryTenancy value

func (*AwsEdcDirectoryTenancy) UnmarshalJSON

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

type AwsEdcDirectoryType

type AwsEdcDirectoryType string

AwsEdcDirectoryType the model 'AwsEdcDirectoryType'

const (
	AWSEDCDIRECTORYTYPE_ADCONNECTOR       AwsEdcDirectoryType = "ADCONNECTOR"
	AWSEDCDIRECTORYTYPE_AD_CONNECTOR      AwsEdcDirectoryType = "AD_CONNECTOR"
	AWSEDCDIRECTORYTYPE_SIMPLEAD          AwsEdcDirectoryType = "SIMPLEAD"
	AWSEDCDIRECTORYTYPE_SIMPLE_AD         AwsEdcDirectoryType = "SIMPLE_AD"
	AWSEDCDIRECTORYTYPE_MICROSOFTAD       AwsEdcDirectoryType = "MICROSOFTAD"
	AWSEDCDIRECTORYTYPE_SHAREDMICROSOFTAD AwsEdcDirectoryType = "SHAREDMICROSOFTAD"
)

List of AwsEdcDirectoryType

func NewAwsEdcDirectoryTypeFromValue

func NewAwsEdcDirectoryTypeFromValue(v string) (*AwsEdcDirectoryType, error)

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

func (AwsEdcDirectoryType) IsValid

func (v AwsEdcDirectoryType) IsValid() bool

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

func (AwsEdcDirectoryType) Ptr

Ptr returns reference to AwsEdcDirectoryType value

func (*AwsEdcDirectoryType) UnmarshalJSON

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

type AwsEdcImage

type AwsEdcImage struct {
	Image
	// Provides additional status on image like  error message
	Status NullableString `json:"status,omitempty"`
	// Id of the Image on AWS
	AmazonImageId         NullableString                               `json:"amazonImageId,omitempty"`
	IngestionProcess      NullableAwsEdcWorkspaceImageIngestionProcess `json:"ingestionProcess,omitempty"`
	WorkspaceImageTenancy NullableAwsEdcWorkspaceImageTenancy          `json:"workspaceImageTenancy,omitempty"`
	WorkspaceImageState   NullableAwsEdcWorkspaceImageState            `json:"workspaceImageState,omitempty"`
	// The list of installed applications
	ApplicationList []AwsEdcAmiImportApplications `json:"applicationList,omitempty"`
}

AwsEdcImage struct for AwsEdcImage

func NewAwsEdcImage

func NewAwsEdcImage(accountType AccountType) *AwsEdcImage

NewAwsEdcImage instantiates a new AwsEdcImage 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 NewAwsEdcImageWithDefaults

func NewAwsEdcImageWithDefaults() *AwsEdcImage

NewAwsEdcImageWithDefaults instantiates a new AwsEdcImage 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 (*AwsEdcImage) GetAmazonImageId added in v1.0.0

func (o *AwsEdcImage) GetAmazonImageId() string

GetAmazonImageId returns the AmazonImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetAmazonImageIdOk added in v1.0.0

func (o *AwsEdcImage) GetAmazonImageIdOk() (*string, bool)

GetAmazonImageIdOk returns a tuple with the AmazonImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) GetApplicationList

func (o *AwsEdcImage) GetApplicationList() []AwsEdcAmiImportApplications

GetApplicationList returns the ApplicationList field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetApplicationListOk

func (o *AwsEdcImage) GetApplicationListOk() ([]AwsEdcAmiImportApplications, bool)

GetApplicationListOk returns a tuple with the ApplicationList field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) GetIngestionProcess

func (o *AwsEdcImage) GetIngestionProcess() AwsEdcWorkspaceImageIngestionProcess

GetIngestionProcess returns the IngestionProcess field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetIngestionProcessOk

func (o *AwsEdcImage) GetIngestionProcessOk() (*AwsEdcWorkspaceImageIngestionProcess, bool)

GetIngestionProcessOk returns a tuple with the IngestionProcess field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) GetStatus

func (o *AwsEdcImage) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetStatusOk

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

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) GetWorkspaceImageState

func (o *AwsEdcImage) GetWorkspaceImageState() AwsEdcWorkspaceImageState

GetWorkspaceImageState returns the WorkspaceImageState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetWorkspaceImageStateOk

func (o *AwsEdcImage) GetWorkspaceImageStateOk() (*AwsEdcWorkspaceImageState, bool)

GetWorkspaceImageStateOk returns a tuple with the WorkspaceImageState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) GetWorkspaceImageTenancy

func (o *AwsEdcImage) GetWorkspaceImageTenancy() AwsEdcWorkspaceImageTenancy

GetWorkspaceImageTenancy returns the WorkspaceImageTenancy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcImage) GetWorkspaceImageTenancyOk

func (o *AwsEdcImage) GetWorkspaceImageTenancyOk() (*AwsEdcWorkspaceImageTenancy, bool)

GetWorkspaceImageTenancyOk returns a tuple with the WorkspaceImageTenancy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcImage) HasAmazonImageId added in v1.0.0

func (o *AwsEdcImage) HasAmazonImageId() bool

HasAmazonImageId returns a boolean if a field has been set.

func (*AwsEdcImage) HasApplicationList

func (o *AwsEdcImage) HasApplicationList() bool

HasApplicationList returns a boolean if a field has been set.

func (*AwsEdcImage) HasIngestionProcess

func (o *AwsEdcImage) HasIngestionProcess() bool

HasIngestionProcess returns a boolean if a field has been set.

func (*AwsEdcImage) HasStatus

func (o *AwsEdcImage) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AwsEdcImage) HasWorkspaceImageState

func (o *AwsEdcImage) HasWorkspaceImageState() bool

HasWorkspaceImageState returns a boolean if a field has been set.

func (*AwsEdcImage) HasWorkspaceImageTenancy

func (o *AwsEdcImage) HasWorkspaceImageTenancy() bool

HasWorkspaceImageTenancy returns a boolean if a field has been set.

func (AwsEdcImage) MarshalJSON

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

func (*AwsEdcImage) SetAmazonImageId added in v1.0.0

func (o *AwsEdcImage) SetAmazonImageId(v string)

SetAmazonImageId gets a reference to the given NullableString and assigns it to the AmazonImageId field.

func (*AwsEdcImage) SetAmazonImageIdNil added in v1.0.0

func (o *AwsEdcImage) SetAmazonImageIdNil()

SetAmazonImageIdNil sets the value for AmazonImageId to be an explicit nil

func (*AwsEdcImage) SetApplicationList

func (o *AwsEdcImage) SetApplicationList(v []AwsEdcAmiImportApplications)

SetApplicationList gets a reference to the given []AwsEdcAmiImportApplications and assigns it to the ApplicationList field.

func (*AwsEdcImage) SetIngestionProcess

func (o *AwsEdcImage) SetIngestionProcess(v AwsEdcWorkspaceImageIngestionProcess)

SetIngestionProcess gets a reference to the given NullableAwsEdcWorkspaceImageIngestionProcess and assigns it to the IngestionProcess field.

func (*AwsEdcImage) SetIngestionProcessNil

func (o *AwsEdcImage) SetIngestionProcessNil()

SetIngestionProcessNil sets the value for IngestionProcess to be an explicit nil

func (*AwsEdcImage) SetStatus

func (o *AwsEdcImage) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*AwsEdcImage) SetStatusNil

func (o *AwsEdcImage) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AwsEdcImage) SetWorkspaceImageState

func (o *AwsEdcImage) SetWorkspaceImageState(v AwsEdcWorkspaceImageState)

SetWorkspaceImageState gets a reference to the given NullableAwsEdcWorkspaceImageState and assigns it to the WorkspaceImageState field.

func (*AwsEdcImage) SetWorkspaceImageStateNil

func (o *AwsEdcImage) SetWorkspaceImageStateNil()

SetWorkspaceImageStateNil sets the value for WorkspaceImageState to be an explicit nil

func (*AwsEdcImage) SetWorkspaceImageTenancy

func (o *AwsEdcImage) SetWorkspaceImageTenancy(v AwsEdcWorkspaceImageTenancy)

SetWorkspaceImageTenancy gets a reference to the given NullableAwsEdcWorkspaceImageTenancy and assigns it to the WorkspaceImageTenancy field.

func (*AwsEdcImage) SetWorkspaceImageTenancyNil

func (o *AwsEdcImage) SetWorkspaceImageTenancyNil()

SetWorkspaceImageTenancyNil sets the value for WorkspaceImageTenancy to be an explicit nil

func (AwsEdcImage) ToMap

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

func (*AwsEdcImage) UnsetAmazonImageId added in v1.0.0

func (o *AwsEdcImage) UnsetAmazonImageId()

UnsetAmazonImageId ensures that no value is present for AmazonImageId, not even an explicit nil

func (*AwsEdcImage) UnsetIngestionProcess

func (o *AwsEdcImage) UnsetIngestionProcess()

UnsetIngestionProcess ensures that no value is present for IngestionProcess, not even an explicit nil

func (*AwsEdcImage) UnsetStatus

func (o *AwsEdcImage) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AwsEdcImage) UnsetWorkspaceImageState

func (o *AwsEdcImage) UnsetWorkspaceImageState()

UnsetWorkspaceImageState ensures that no value is present for WorkspaceImageState, not even an explicit nil

func (*AwsEdcImage) UnsetWorkspaceImageTenancy

func (o *AwsEdcImage) UnsetWorkspaceImageTenancy()

UnsetWorkspaceImageTenancy ensures that no value is present for WorkspaceImageTenancy, not even an explicit nil

type AwsEdcMissingRolePermissions

type AwsEdcMissingRolePermissions struct {
	// Determines whether the permissions are Allowed or Denied
	Effect NullableString `json:"effect,omitempty"`
	// List of permissions
	Action []string `json:"action,omitempty"`
	// Target resources for the permissions
	Resource  NullableString                                `json:"resource,omitempty"`
	Condition NullableAwsEdcMissingRolePermissionsCondition `json:"condition,omitempty"`
}

AwsEdcMissingRolePermissions struct for AwsEdcMissingRolePermissions

func NewAwsEdcMissingRolePermissions

func NewAwsEdcMissingRolePermissions() *AwsEdcMissingRolePermissions

NewAwsEdcMissingRolePermissions instantiates a new AwsEdcMissingRolePermissions 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 NewAwsEdcMissingRolePermissionsWithDefaults

func NewAwsEdcMissingRolePermissionsWithDefaults() *AwsEdcMissingRolePermissions

NewAwsEdcMissingRolePermissionsWithDefaults instantiates a new AwsEdcMissingRolePermissions 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 (*AwsEdcMissingRolePermissions) GetAction

func (o *AwsEdcMissingRolePermissions) GetAction() []string

GetAction returns the Action field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcMissingRolePermissions) GetActionOk

func (o *AwsEdcMissingRolePermissions) GetActionOk() ([]string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcMissingRolePermissions) GetCondition

GetCondition returns the Condition field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcMissingRolePermissions) GetConditionOk

GetConditionOk returns a tuple with the Condition field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcMissingRolePermissions) GetEffect

func (o *AwsEdcMissingRolePermissions) GetEffect() string

GetEffect returns the Effect field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcMissingRolePermissions) GetEffectOk

func (o *AwsEdcMissingRolePermissions) GetEffectOk() (*string, bool)

GetEffectOk returns a tuple with the Effect field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcMissingRolePermissions) GetResource

func (o *AwsEdcMissingRolePermissions) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcMissingRolePermissions) GetResourceOk

func (o *AwsEdcMissingRolePermissions) GetResourceOk() (*string, bool)

GetResourceOk returns a tuple with the Resource field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcMissingRolePermissions) HasAction

func (o *AwsEdcMissingRolePermissions) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*AwsEdcMissingRolePermissions) HasCondition

func (o *AwsEdcMissingRolePermissions) HasCondition() bool

HasCondition returns a boolean if a field has been set.

func (*AwsEdcMissingRolePermissions) HasEffect

func (o *AwsEdcMissingRolePermissions) HasEffect() bool

HasEffect returns a boolean if a field has been set.

func (*AwsEdcMissingRolePermissions) HasResource

func (o *AwsEdcMissingRolePermissions) HasResource() bool

HasResource returns a boolean if a field has been set.

func (AwsEdcMissingRolePermissions) MarshalJSON

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

func (*AwsEdcMissingRolePermissions) SetAction

func (o *AwsEdcMissingRolePermissions) SetAction(v []string)

SetAction gets a reference to the given []string and assigns it to the Action field.

func (*AwsEdcMissingRolePermissions) SetCondition

SetCondition gets a reference to the given NullableAwsEdcMissingRolePermissionsCondition and assigns it to the Condition field.

func (*AwsEdcMissingRolePermissions) SetConditionNil

func (o *AwsEdcMissingRolePermissions) SetConditionNil()

SetConditionNil sets the value for Condition to be an explicit nil

func (*AwsEdcMissingRolePermissions) SetEffect

func (o *AwsEdcMissingRolePermissions) SetEffect(v string)

SetEffect gets a reference to the given NullableString and assigns it to the Effect field.

func (*AwsEdcMissingRolePermissions) SetEffectNil

func (o *AwsEdcMissingRolePermissions) SetEffectNil()

SetEffectNil sets the value for Effect to be an explicit nil

func (*AwsEdcMissingRolePermissions) SetResource

func (o *AwsEdcMissingRolePermissions) SetResource(v string)

SetResource gets a reference to the given NullableString and assigns it to the Resource field.

func (*AwsEdcMissingRolePermissions) SetResourceNil

func (o *AwsEdcMissingRolePermissions) SetResourceNil()

SetResourceNil sets the value for Resource to be an explicit nil

func (AwsEdcMissingRolePermissions) ToMap

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

func (*AwsEdcMissingRolePermissions) UnsetCondition

func (o *AwsEdcMissingRolePermissions) UnsetCondition()

UnsetCondition ensures that no value is present for Condition, not even an explicit nil

func (*AwsEdcMissingRolePermissions) UnsetEffect

func (o *AwsEdcMissingRolePermissions) UnsetEffect()

UnsetEffect ensures that no value is present for Effect, not even an explicit nil

func (*AwsEdcMissingRolePermissions) UnsetResource

func (o *AwsEdcMissingRolePermissions) UnsetResource()

UnsetResource ensures that no value is present for Resource, not even an explicit nil

type AwsEdcMissingRolePermissionsCondition

type AwsEdcMissingRolePermissionsCondition struct {
	StringEquals NullableExpression `json:"stringEquals,omitempty"`
}

AwsEdcMissingRolePermissionsCondition Condition statements

func NewAwsEdcMissingRolePermissionsCondition

func NewAwsEdcMissingRolePermissionsCondition() *AwsEdcMissingRolePermissionsCondition

NewAwsEdcMissingRolePermissionsCondition instantiates a new AwsEdcMissingRolePermissionsCondition 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 NewAwsEdcMissingRolePermissionsConditionWithDefaults

func NewAwsEdcMissingRolePermissionsConditionWithDefaults() *AwsEdcMissingRolePermissionsCondition

NewAwsEdcMissingRolePermissionsConditionWithDefaults instantiates a new AwsEdcMissingRolePermissionsCondition 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 (*AwsEdcMissingRolePermissionsCondition) GetStringEquals

GetStringEquals returns the StringEquals field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcMissingRolePermissionsCondition) GetStringEqualsOk

func (o *AwsEdcMissingRolePermissionsCondition) GetStringEqualsOk() (*Expression, bool)

GetStringEqualsOk returns a tuple with the StringEquals field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcMissingRolePermissionsCondition) HasStringEquals

func (o *AwsEdcMissingRolePermissionsCondition) HasStringEquals() bool

HasStringEquals returns a boolean if a field has been set.

func (AwsEdcMissingRolePermissionsCondition) MarshalJSON

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

func (*AwsEdcMissingRolePermissionsCondition) SetStringEquals

func (o *AwsEdcMissingRolePermissionsCondition) SetStringEquals(v Expression)

SetStringEquals gets a reference to the given NullableExpression and assigns it to the StringEquals field.

func (*AwsEdcMissingRolePermissionsCondition) SetStringEqualsNil

func (o *AwsEdcMissingRolePermissionsCondition) SetStringEqualsNil()

SetStringEqualsNil sets the value for StringEquals to be an explicit nil

func (AwsEdcMissingRolePermissionsCondition) ToMap

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

func (*AwsEdcMissingRolePermissionsCondition) UnsetStringEquals

func (o *AwsEdcMissingRolePermissionsCondition) UnsetStringEquals()

UnsetStringEquals ensures that no value is present for StringEquals, not even an explicit nil

type AwsEdcRegisterAccount

type AwsEdcRegisterAccount struct {
	RegisterAccount
	// Cidr range used for registration
	CidrRange NullableString `json:"cidrRange,omitempty"`
}

AwsEdcRegisterAccount struct for AwsEdcRegisterAccount

func NewAwsEdcRegisterAccount

func NewAwsEdcRegisterAccount(accountType AccountType) *AwsEdcRegisterAccount

NewAwsEdcRegisterAccount instantiates a new AwsEdcRegisterAccount 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 NewAwsEdcRegisterAccountWithDefaults

func NewAwsEdcRegisterAccountWithDefaults() *AwsEdcRegisterAccount

NewAwsEdcRegisterAccountWithDefaults instantiates a new AwsEdcRegisterAccount 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 (*AwsEdcRegisterAccount) GetCidrRange

func (o *AwsEdcRegisterAccount) GetCidrRange() string

GetCidrRange returns the CidrRange field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsEdcRegisterAccount) GetCidrRangeOk

func (o *AwsEdcRegisterAccount) GetCidrRangeOk() (*string, bool)

GetCidrRangeOk returns a tuple with the CidrRange field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsEdcRegisterAccount) HasCidrRange

func (o *AwsEdcRegisterAccount) HasCidrRange() bool

HasCidrRange returns a boolean if a field has been set.

func (AwsEdcRegisterAccount) MarshalJSON

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

func (*AwsEdcRegisterAccount) SetCidrRange

func (o *AwsEdcRegisterAccount) SetCidrRange(v string)

SetCidrRange gets a reference to the given NullableString and assigns it to the CidrRange field.

func (*AwsEdcRegisterAccount) SetCidrRangeNil

func (o *AwsEdcRegisterAccount) SetCidrRangeNil()

SetCidrRangeNil sets the value for CidrRange to be an explicit nil

func (AwsEdcRegisterAccount) ToMap

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

func (*AwsEdcRegisterAccount) UnsetCidrRange

func (o *AwsEdcRegisterAccount) UnsetCidrRange()

UnsetCidrRange ensures that no value is present for CidrRange, not even an explicit nil

type AwsEdcSubnetStatus

type AwsEdcSubnetStatus string

AwsEdcSubnetStatus the model 'AwsEdcSubnetStatus'

const (
	AWSEDCSUBNETSTATUS_AVAILABLE AwsEdcSubnetStatus = "AVAILABLE"
	AWSEDCSUBNETSTATUS_PENDING   AwsEdcSubnetStatus = "PENDING"
)

List of AwsEdcSubnetStatus

func NewAwsEdcSubnetStatusFromValue

func NewAwsEdcSubnetStatusFromValue(v string) (*AwsEdcSubnetStatus, error)

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

func (AwsEdcSubnetStatus) IsValid

func (v AwsEdcSubnetStatus) IsValid() bool

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

func (AwsEdcSubnetStatus) Ptr

Ptr returns reference to AwsEdcSubnetStatus value

func (*AwsEdcSubnetStatus) UnmarshalJSON

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

type AwsEdcVpcState

type AwsEdcVpcState string

AwsEdcVpcState Amazon.EC2.VpcState

const (
	AWSEDCVPCSTATE_AVAILABLE AwsEdcVpcState = "AVAILABLE"
	AWSEDCVPCSTATE_PENDING   AwsEdcVpcState = "PENDING"
)

List of AwsEdcVpcState

func NewAwsEdcVpcStateFromValue

func NewAwsEdcVpcStateFromValue(v string) (*AwsEdcVpcState, error)

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

func (AwsEdcVpcState) IsValid

func (v AwsEdcVpcState) IsValid() bool

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

func (AwsEdcVpcState) Ptr

func (v AwsEdcVpcState) Ptr() *AwsEdcVpcState

Ptr returns reference to AwsEdcVpcState value

func (*AwsEdcVpcState) UnmarshalJSON

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

type AwsEdcVpcTenancy

type AwsEdcVpcTenancy string

AwsEdcVpcTenancy the model 'AwsEdcVpcTenancy'

const (
	AWSEDCVPCTENANCY_DEDICATED AwsEdcVpcTenancy = "DEDICATED"
	AWSEDCVPCTENANCY_DEFAULT   AwsEdcVpcTenancy = "DEFAULT"
	AWSEDCVPCTENANCY_HOST      AwsEdcVpcTenancy = "HOST"
)

List of AwsEdcVpcTenancy

func NewAwsEdcVpcTenancyFromValue

func NewAwsEdcVpcTenancyFromValue(v string) (*AwsEdcVpcTenancy, error)

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

func (AwsEdcVpcTenancy) IsValid

func (v AwsEdcVpcTenancy) IsValid() bool

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

func (AwsEdcVpcTenancy) Ptr

Ptr returns reference to AwsEdcVpcTenancy value

func (*AwsEdcVpcTenancy) UnmarshalJSON

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

type AwsEdcWorkspaceCompute

type AwsEdcWorkspaceCompute string

AwsEdcWorkspaceCompute the model 'AwsEdcWorkspaceCompute'

const (
	AWSEDCWORKSPACECOMPUTE_GRAPHICS          AwsEdcWorkspaceCompute = "GRAPHICS"
	AWSEDCWORKSPACECOMPUTE_GRAPHICSPRO       AwsEdcWorkspaceCompute = "GRAPHICSPRO"
	AWSEDCWORKSPACECOMPUTE_GRAPHICS_G4_DN    AwsEdcWorkspaceCompute = "GRAPHICS_G4DN"
	AWSEDCWORKSPACECOMPUTE_GRAPHICSPRO_G4_DN AwsEdcWorkspaceCompute = "GRAPHICSPRO_G4DN"
	AWSEDCWORKSPACECOMPUTE_PERFORMANCE       AwsEdcWorkspaceCompute = "PERFORMANCE"
	AWSEDCWORKSPACECOMPUTE_POWER             AwsEdcWorkspaceCompute = "POWER"
	AWSEDCWORKSPACECOMPUTE_POWERPRO          AwsEdcWorkspaceCompute = "POWERPRO"
	AWSEDCWORKSPACECOMPUTE_STANDARD          AwsEdcWorkspaceCompute = "STANDARD"
	AWSEDCWORKSPACECOMPUTE_VALUE             AwsEdcWorkspaceCompute = "VALUE"
)

List of AwsEdcWorkspaceCompute

func NewAwsEdcWorkspaceComputeFromValue

func NewAwsEdcWorkspaceComputeFromValue(v string) (*AwsEdcWorkspaceCompute, error)

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

func (AwsEdcWorkspaceCompute) IsValid

func (v AwsEdcWorkspaceCompute) IsValid() bool

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

func (AwsEdcWorkspaceCompute) Ptr

Ptr returns reference to AwsEdcWorkspaceCompute value

func (*AwsEdcWorkspaceCompute) UnmarshalJSON

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

type AwsEdcWorkspaceImageIngestionProcess

type AwsEdcWorkspaceImageIngestionProcess string

AwsEdcWorkspaceImageIngestionProcess the model 'AwsEdcWorkspaceImageIngestionProcess'

const (
	AWSEDCWORKSPACEIMAGEINGESTIONPROCESS_REGULAR_BYOP        AwsEdcWorkspaceImageIngestionProcess = "BYOL_REGULAR_BYOP"
	AWSEDCWORKSPACEIMAGEINGESTIONPROCESS_GRAPHICS_G4_DN_BYOP AwsEdcWorkspaceImageIngestionProcess = "BYOL_GRAPHICS_G4DN_BYOP"
)

List of AwsEdcWorkspaceImageIngestionProcess

func NewAwsEdcWorkspaceImageIngestionProcessFromValue

func NewAwsEdcWorkspaceImageIngestionProcessFromValue(v string) (*AwsEdcWorkspaceImageIngestionProcess, error)

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

func (AwsEdcWorkspaceImageIngestionProcess) IsValid

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

func (AwsEdcWorkspaceImageIngestionProcess) Ptr

Ptr returns reference to AwsEdcWorkspaceImageIngestionProcess value

func (*AwsEdcWorkspaceImageIngestionProcess) UnmarshalJSON

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

type AwsEdcWorkspaceImageState

type AwsEdcWorkspaceImageState string

AwsEdcWorkspaceImageState the model 'AwsEdcWorkspaceImageState'

const (
	AWSEDCWORKSPACEIMAGESTATE_AVAILABLE             AwsEdcWorkspaceImageState = "AVAILABLE"
	AWSEDCWORKSPACEIMAGESTATE_ERROR                 AwsEdcWorkspaceImageState = "ERROR"
	AWSEDCWORKSPACEIMAGESTATE_PENDING               AwsEdcWorkspaceImageState = "PENDING"
	AWSEDCWORKSPACEIMAGESTATE_ERROR_INVALID_ACCOUNT AwsEdcWorkspaceImageState = "ERROR_INVALID_ACCOUNT"
)

List of AwsEdcWorkspaceImageState

func NewAwsEdcWorkspaceImageStateFromValue

func NewAwsEdcWorkspaceImageStateFromValue(v string) (*AwsEdcWorkspaceImageState, error)

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

func (AwsEdcWorkspaceImageState) IsValid

func (v AwsEdcWorkspaceImageState) IsValid() bool

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

func (AwsEdcWorkspaceImageState) Ptr

Ptr returns reference to AwsEdcWorkspaceImageState value

func (*AwsEdcWorkspaceImageState) UnmarshalJSON

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

type AwsEdcWorkspaceImageTenancy

type AwsEdcWorkspaceImageTenancy string

AwsEdcWorkspaceImageTenancy the model 'AwsEdcWorkspaceImageTenancy'

const (
	AWSEDCWORKSPACEIMAGETENANCY_DEDICATED AwsEdcWorkspaceImageTenancy = "DEDICATED"
	AWSEDCWORKSPACEIMAGETENANCY_DEFAULT   AwsEdcWorkspaceImageTenancy = "DEFAULT"
)

List of AwsEdcWorkspaceImageTenancy

func NewAwsEdcWorkspaceImageTenancyFromValue

func NewAwsEdcWorkspaceImageTenancyFromValue(v string) (*AwsEdcWorkspaceImageTenancy, error)

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

func (AwsEdcWorkspaceImageTenancy) IsValid

func (v AwsEdcWorkspaceImageTenancy) IsValid() bool

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

func (AwsEdcWorkspaceImageTenancy) Ptr

Ptr returns reference to AwsEdcWorkspaceImageTenancy value

func (*AwsEdcWorkspaceImageTenancy) UnmarshalJSON

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

type AwsEdcWorkspaceRunningMode

type AwsEdcWorkspaceRunningMode string

AwsEdcWorkspaceRunningMode the model 'AwsEdcWorkspaceRunningMode'

const (
	AWSEDCWORKSPACERUNNINGMODE_ALWAYS_ON AwsEdcWorkspaceRunningMode = "ALWAYS_ON"
	AWSEDCWORKSPACERUNNINGMODE_AUTO_STOP AwsEdcWorkspaceRunningMode = "AUTO_STOP"
	AWSEDCWORKSPACERUNNINGMODE_MANUAL    AwsEdcWorkspaceRunningMode = "MANUAL"
)

List of AwsEdcWorkspaceRunningMode

func NewAwsEdcWorkspaceRunningModeFromValue

func NewAwsEdcWorkspaceRunningModeFromValue(v string) (*AwsEdcWorkspaceRunningMode, error)

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

func (AwsEdcWorkspaceRunningMode) IsValid

func (v AwsEdcWorkspaceRunningMode) IsValid() bool

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

func (AwsEdcWorkspaceRunningMode) Ptr

Ptr returns reference to AwsEdcWorkspaceRunningMode value

func (*AwsEdcWorkspaceRunningMode) UnmarshalJSON

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

type AwsEdcWorkspaceState

type AwsEdcWorkspaceState string

AwsEdcWorkspaceState the model 'AwsEdcWorkspaceState'

const (
	AWSEDCWORKSPACESTATE_PENDING         AwsEdcWorkspaceState = "PENDING"
	AWSEDCWORKSPACESTATE_AVAILABLE       AwsEdcWorkspaceState = "AVAILABLE"
	AWSEDCWORKSPACESTATE_ADMIN_MAINTANCE AwsEdcWorkspaceState = "ADMIN_MAINTANCE"
	AWSEDCWORKSPACESTATE_ERROR           AwsEdcWorkspaceState = "ERROR"
	AWSEDCWORKSPACESTATE_STOPPED         AwsEdcWorkspaceState = "STOPPED"
	AWSEDCWORKSPACESTATE_STOPPING        AwsEdcWorkspaceState = "STOPPING"
	AWSEDCWORKSPACESTATE_SUSPENDED       AwsEdcWorkspaceState = "SUSPENDED"
	AWSEDCWORKSPACESTATE_TERMINATED      AwsEdcWorkspaceState = "TERMINATED"
	AWSEDCWORKSPACESTATE_TERMINATING     AwsEdcWorkspaceState = "TERMINATING"
	AWSEDCWORKSPACESTATE_STARTING        AwsEdcWorkspaceState = "STARTING"
	AWSEDCWORKSPACESTATE_REBOOTING       AwsEdcWorkspaceState = "REBOOTING"
	AWSEDCWORKSPACESTATE_MAINTENANCE     AwsEdcWorkspaceState = "MAINTENANCE"
	AWSEDCWORKSPACESTATE_IMPARED         AwsEdcWorkspaceState = "IMPARED"
	AWSEDCWORKSPACESTATE_UNHEALTHY       AwsEdcWorkspaceState = "UNHEALTHY"
	AWSEDCWORKSPACESTATE_UPDATING        AwsEdcWorkspaceState = "UPDATING"
)

List of AwsEdcWorkspaceState

func NewAwsEdcWorkspaceStateFromValue

func NewAwsEdcWorkspaceStateFromValue(v string) (*AwsEdcWorkspaceState, error)

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

func (AwsEdcWorkspaceState) IsValid

func (v AwsEdcWorkspaceState) IsValid() bool

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

func (AwsEdcWorkspaceState) Ptr

Ptr returns reference to AwsEdcWorkspaceState value

func (*AwsEdcWorkspaceState) UnmarshalJSON

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

type AwsWorkspaceRegion

type AwsWorkspaceRegion struct {
	// The code of the region
	RegionCode NullableString `json:"regionCode,omitempty"`
	// The name of the region
	RegionName NullableString `json:"regionName,omitempty"`
	// The availability zone Ids supported by the region
	SupportedAzIds NullableString `json:"supportedAzIds,omitempty"`
}

AwsWorkspaceRegion struct for AwsWorkspaceRegion

func NewAwsWorkspaceRegion

func NewAwsWorkspaceRegion() *AwsWorkspaceRegion

NewAwsWorkspaceRegion instantiates a new AwsWorkspaceRegion 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 NewAwsWorkspaceRegionWithDefaults

func NewAwsWorkspaceRegionWithDefaults() *AwsWorkspaceRegion

NewAwsWorkspaceRegionWithDefaults instantiates a new AwsWorkspaceRegion 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 (*AwsWorkspaceRegion) GetRegionCode

func (o *AwsWorkspaceRegion) GetRegionCode() string

GetRegionCode returns the RegionCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsWorkspaceRegion) GetRegionCodeOk

func (o *AwsWorkspaceRegion) GetRegionCodeOk() (*string, bool)

GetRegionCodeOk returns a tuple with the RegionCode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsWorkspaceRegion) GetRegionName

func (o *AwsWorkspaceRegion) GetRegionName() string

GetRegionName returns the RegionName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsWorkspaceRegion) GetRegionNameOk

func (o *AwsWorkspaceRegion) GetRegionNameOk() (*string, bool)

GetRegionNameOk returns a tuple with the RegionName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsWorkspaceRegion) GetSupportedAzIds

func (o *AwsWorkspaceRegion) GetSupportedAzIds() string

GetSupportedAzIds returns the SupportedAzIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AwsWorkspaceRegion) GetSupportedAzIdsOk

func (o *AwsWorkspaceRegion) GetSupportedAzIdsOk() (*string, bool)

GetSupportedAzIdsOk returns a tuple with the SupportedAzIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AwsWorkspaceRegion) HasRegionCode

func (o *AwsWorkspaceRegion) HasRegionCode() bool

HasRegionCode returns a boolean if a field has been set.

func (*AwsWorkspaceRegion) HasRegionName

func (o *AwsWorkspaceRegion) HasRegionName() bool

HasRegionName returns a boolean if a field has been set.

func (*AwsWorkspaceRegion) HasSupportedAzIds

func (o *AwsWorkspaceRegion) HasSupportedAzIds() bool

HasSupportedAzIds returns a boolean if a field has been set.

func (AwsWorkspaceRegion) MarshalJSON

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

func (*AwsWorkspaceRegion) SetRegionCode

func (o *AwsWorkspaceRegion) SetRegionCode(v string)

SetRegionCode gets a reference to the given NullableString and assigns it to the RegionCode field.

func (*AwsWorkspaceRegion) SetRegionCodeNil

func (o *AwsWorkspaceRegion) SetRegionCodeNil()

SetRegionCodeNil sets the value for RegionCode to be an explicit nil

func (*AwsWorkspaceRegion) SetRegionName

func (o *AwsWorkspaceRegion) SetRegionName(v string)

SetRegionName gets a reference to the given NullableString and assigns it to the RegionName field.

func (*AwsWorkspaceRegion) SetRegionNameNil

func (o *AwsWorkspaceRegion) SetRegionNameNil()

SetRegionNameNil sets the value for RegionName to be an explicit nil

func (*AwsWorkspaceRegion) SetSupportedAzIds

func (o *AwsWorkspaceRegion) SetSupportedAzIds(v string)

SetSupportedAzIds gets a reference to the given NullableString and assigns it to the SupportedAzIds field.

func (*AwsWorkspaceRegion) SetSupportedAzIdsNil

func (o *AwsWorkspaceRegion) SetSupportedAzIdsNil()

SetSupportedAzIdsNil sets the value for SupportedAzIds to be an explicit nil

func (AwsWorkspaceRegion) ToMap

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

func (*AwsWorkspaceRegion) UnsetRegionCode

func (o *AwsWorkspaceRegion) UnsetRegionCode()

UnsetRegionCode ensures that no value is present for RegionCode, not even an explicit nil

func (*AwsWorkspaceRegion) UnsetRegionName

func (o *AwsWorkspaceRegion) UnsetRegionName()

UnsetRegionName ensures that no value is present for RegionName, not even an explicit nil

func (*AwsWorkspaceRegion) UnsetSupportedAzIds

func (o *AwsWorkspaceRegion) UnsetSupportedAzIds()

UnsetSupportedAzIds ensures that no value is present for SupportedAzIds, not even an explicit nil

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 CommissionTask

type CommissionTask struct {
	TaskBase
	Operation NullableCommissionTaskOperationType `json:"operation,omitempty"`
}

CommissionTask struct for CommissionTask

func NewCommissionTask

func NewCommissionTask(taskType TaskType) *CommissionTask

NewCommissionTask instantiates a new CommissionTask 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 NewCommissionTaskWithDefaults

func NewCommissionTaskWithDefaults() *CommissionTask

NewCommissionTaskWithDefaults instantiates a new CommissionTask 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 (*CommissionTask) GetOperation

func (o *CommissionTask) GetOperation() CommissionTaskOperationType

GetOperation returns the Operation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommissionTask) GetOperationOk

func (o *CommissionTask) GetOperationOk() (*CommissionTaskOperationType, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CommissionTask) HasOperation

func (o *CommissionTask) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (CommissionTask) MarshalJSON

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

func (*CommissionTask) SetOperation

func (o *CommissionTask) SetOperation(v CommissionTaskOperationType)

SetOperation gets a reference to the given NullableCommissionTaskOperationType and assigns it to the Operation field.

func (*CommissionTask) SetOperationNil

func (o *CommissionTask) SetOperationNil()

SetOperationNil sets the value for Operation to be an explicit nil

func (CommissionTask) ToMap

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

func (*CommissionTask) UnsetOperation

func (o *CommissionTask) UnsetOperation()

UnsetOperation ensures that no value is present for Operation, not even an explicit nil

type CommissionTaskOperationType

type CommissionTaskOperationType string

CommissionTaskOperationType Commission tasks

const (
	COMMISSIONTASKOPERATIONTYPE_DECOMMISSION    CommissionTaskOperationType = "DECOMMISSION"
	COMMISSIONTASKOPERATIONTYPE_DELETE          CommissionTaskOperationType = "DELETE"
	COMMISSIONTASKOPERATIONTYPE_RECOMMISSION    CommissionTaskOperationType = "RECOMMISSION"
	COMMISSIONTASKOPERATIONTYPE_POWER_RESOURCES CommissionTaskOperationType = "POWER_RESOURCES"
)

List of CommissionTaskOperationType

func NewCommissionTaskOperationTypeFromValue

func NewCommissionTaskOperationTypeFromValue(v string) (*CommissionTaskOperationType, error)

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

func (CommissionTaskOperationType) IsValid

func (v CommissionTaskOperationType) IsValid() bool

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

func (CommissionTaskOperationType) Ptr

Ptr returns reference to CommissionTaskOperationType value

func (*CommissionTaskOperationType) UnmarshalJSON

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

type Compute

type Compute struct {
	Value NullableString `json:"value,omitempty"`
}

Compute struct for Compute

func NewCompute

func NewCompute() *Compute

NewCompute instantiates a new Compute 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 NewComputeWithDefaults

func NewComputeWithDefaults() *Compute

NewComputeWithDefaults instantiates a new Compute 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 (*Compute) GetValue

func (o *Compute) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Compute) GetValueOk

func (o *Compute) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Compute) HasValue

func (o *Compute) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Compute) MarshalJSON

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

func (*Compute) SetValue

func (o *Compute) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*Compute) SetValueNil

func (o *Compute) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (Compute) ToMap

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

func (*Compute) UnsetValue

func (o *Compute) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ConditionalExpression

type ConditionalExpression struct {
	StringEquals NullableExpression `json:"stringEquals,omitempty"`
}

ConditionalExpression struct for ConditionalExpression

func NewConditionalExpression

func NewConditionalExpression() *ConditionalExpression

NewConditionalExpression instantiates a new ConditionalExpression 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 NewConditionalExpressionWithDefaults

func NewConditionalExpressionWithDefaults() *ConditionalExpression

NewConditionalExpressionWithDefaults instantiates a new ConditionalExpression 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 (*ConditionalExpression) GetStringEquals

func (o *ConditionalExpression) GetStringEquals() Expression

GetStringEquals returns the StringEquals field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ConditionalExpression) GetStringEqualsOk

func (o *ConditionalExpression) GetStringEqualsOk() (*Expression, bool)

GetStringEqualsOk returns a tuple with the StringEquals field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConditionalExpression) HasStringEquals

func (o *ConditionalExpression) HasStringEquals() bool

HasStringEquals returns a boolean if a field has been set.

func (ConditionalExpression) MarshalJSON

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

func (*ConditionalExpression) SetStringEquals

func (o *ConditionalExpression) SetStringEquals(v Expression)

SetStringEquals gets a reference to the given NullableExpression and assigns it to the StringEquals field.

func (*ConditionalExpression) SetStringEqualsNil

func (o *ConditionalExpression) SetStringEqualsNil()

SetStringEqualsNil sets the value for StringEquals to be an explicit nil

func (ConditionalExpression) ToMap

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

func (*ConditionalExpression) UnsetStringEquals

func (o *ConditionalExpression) UnsetStringEquals()

UnsetStringEquals ensures that no value is present for StringEquals, not even an explicit nil

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
	Middleware       MiddlewareFunction
}

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 Connection

type Connection struct {
	// AAD TenantId to connect/disconnect
	TenantId NullableString `json:"tenantId,omitempty"`
}

Connection struct for Connection

func NewConnection

func NewConnection() *Connection

NewConnection instantiates a new Connection 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 NewConnectionWithDefaults

func NewConnectionWithDefaults() *Connection

NewConnectionWithDefaults instantiates a new Connection 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 (*Connection) GetTenantId

func (o *Connection) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Connection) GetTenantIdOk

func (o *Connection) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Connection) HasTenantId

func (o *Connection) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (Connection) MarshalJSON

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

func (*Connection) SetTenantId

func (o *Connection) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*Connection) SetTenantIdNil

func (o *Connection) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (Connection) ToMap

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

func (*Connection) UnsetTenantId

func (o *Connection) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ConnectionQCSAddResourceConnectionAsyncRequest

type ConnectionQCSAddResourceConnectionAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSAddResourceConnectionAsyncRequest) Body

Connection configuration

func (ConnectionQCSAddResourceConnectionAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSAddResourceConnectionAsyncRequest) Execute

type ConnectionQCSGetAllResourceConnectionsAsyncRequest

type ConnectionQCSGetAllResourceConnectionsAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSGetAllResourceConnectionsAsyncRequest) AccountType

Filtering parameter for account type

func (ConnectionQCSGetAllResourceConnectionsAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSGetAllResourceConnectionsAsyncRequest) Execute

type ConnectionQCSGetResourceConnectionAsyncRequest

type ConnectionQCSGetResourceConnectionAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSGetResourceConnectionAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSGetResourceConnectionAsyncRequest) Execute

type ConnectionQCSGetResourceConnectionsAsyncRequest

type ConnectionQCSGetResourceConnectionsAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSGetResourceConnectionsAsyncRequest) CitrixManaged

citrix managed connections

func (ConnectionQCSGetResourceConnectionsAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSGetResourceConnectionsAsyncRequest) Execute

type ConnectionQCSModifyResourceConnectionAsyncRequest

type ConnectionQCSModifyResourceConnectionAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSModifyResourceConnectionAsyncRequest) Body

Update configuration

func (ConnectionQCSModifyResourceConnectionAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSModifyResourceConnectionAsyncRequest) Execute

type ConnectionQCSRemoveResourceConnectionAsyncRequest

type ConnectionQCSRemoveResourceConnectionAsyncRequest struct {
	ApiService *ConnectionQCSService
	// contains filtered or unexported fields
}

func (ConnectionQCSRemoveResourceConnectionAsyncRequest) CitrixTransactionId

The Transaction Id.

func (ConnectionQCSRemoveResourceConnectionAsyncRequest) Execute

func (ConnectionQCSRemoveResourceConnectionAsyncRequest) ForceDelete

Force delete a connection

type ConnectionQCSService

type ConnectionQCSService service

ConnectionQCSService ConnectionQCS service

func (*ConnectionQCSService) AddResourceConnectionAsync

func (a *ConnectionQCSService) AddResourceConnectionAsync(ctx context.Context, customerId string, accountId string) ConnectionQCSAddResourceConnectionAsyncRequest

AddResourceConnectionAsync Adds resource connection asyncronously

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@return ConnectionQCSAddResourceConnectionAsyncRequest

func (*ConnectionQCSService) AddResourceConnectionAsyncExecute

Execute executes the request

@return ResourceConnectionTask

func (*ConnectionQCSService) GetAllResourceConnectionsAsync

func (a *ConnectionQCSService) GetAllResourceConnectionsAsync(ctx context.Context, customerId string) ConnectionQCSGetAllResourceConnectionsAsyncRequest

GetAllResourceConnectionsAsync Gets all resource connections without specifying account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return ConnectionQCSGetAllResourceConnectionsAsyncRequest

func (*ConnectionQCSService) GetAllResourceConnectionsAsyncExecute

Execute executes the request

@return ResourceConnections

func (*ConnectionQCSService) GetResourceConnectionAsync

func (a *ConnectionQCSService) GetResourceConnectionAsync(ctx context.Context, customerId string, accountId string, connectionId string) ConnectionQCSGetResourceConnectionAsyncRequest

GetResourceConnectionAsync Gets resource connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@param connectionId ID of connection
@return ConnectionQCSGetResourceConnectionAsyncRequest

func (*ConnectionQCSService) GetResourceConnectionAsyncExecute

Execute executes the request

@return AwsEdcDirectoryConnection

func (*ConnectionQCSService) GetResourceConnectionsAsync

func (a *ConnectionQCSService) GetResourceConnectionsAsync(ctx context.Context, customerId string, accountId string) ConnectionQCSGetResourceConnectionsAsyncRequest

GetResourceConnectionsAsync Gets resource connections

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@return ConnectionQCSGetResourceConnectionsAsyncRequest

func (*ConnectionQCSService) GetResourceConnectionsAsyncExecute

Execute executes the request

@return ResourceConnections

func (*ConnectionQCSService) ModifyResourceConnectionAsync

func (a *ConnectionQCSService) ModifyResourceConnectionAsync(ctx context.Context, customerId string, accountId string, connectionId string) ConnectionQCSModifyResourceConnectionAsyncRequest

ModifyResourceConnectionAsync Modifies connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@param connectionId ID of connection
@return ConnectionQCSModifyResourceConnectionAsyncRequest

func (*ConnectionQCSService) ModifyResourceConnectionAsyncExecute

Execute executes the request

@return AwsEdcDirectoryConnection

func (*ConnectionQCSService) RemoveResourceConnectionAsync

func (a *ConnectionQCSService) RemoveResourceConnectionAsync(ctx context.Context, customerId string, accountId string, connectionId string) ConnectionQCSRemoveResourceConnectionAsyncRequest

RemoveResourceConnectionAsync Removes connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@param connectionId ID of connection
@return ConnectionQCSRemoveResourceConnectionAsyncRequest

func (*ConnectionQCSService) RemoveResourceConnectionAsyncExecute

Execute executes the request

@return ResourceConnectionTask

type ConnectionState

type ConnectionState string

ConnectionState the model 'ConnectionState'

const (
	CONNECTIONSTATE_PENDING                 ConnectionState = "PENDING"
	CONNECTIONSTATE_ACTIVE                  ConnectionState = "ACTIVE"
	CONNECTIONSTATE_DELETING                ConnectionState = "DELETING"
	CONNECTIONSTATE_PROVISIONING_CONNECTORS ConnectionState = "PROVISIONING_CONNECTORS"
	CONNECTIONSTATE_ERROR                   ConnectionState = "ERROR"
	CONNECTIONSTATE_ERROR_INVALID_ACCOUNT   ConnectionState = "ERROR_INVALID_ACCOUNT"
)

List of ConnectionState

func NewConnectionStateFromValue

func NewConnectionStateFromValue(v string) (*ConnectionState, error)

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

func (ConnectionState) IsValid

func (v ConnectionState) IsValid() bool

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

func (ConnectionState) Ptr

Ptr returns reference to ConnectionState value

func (*ConnectionState) UnmarshalJSON

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

type ConsentMetadata

type ConsentMetadata struct {
	// Client/Application for MT AppRegistration for CloudPC Registration service  This is the app that we would get consent for
	ClientId NullableString `json:"clientId,omitempty"`
	// Scope for consent request  .default would get consent for all permissions listed in AppRegistration APIPermissions section
	Scope NullableString `json:"scope,omitempty"`
}

ConsentMetadata struct for ConsentMetadata

func NewConsentMetadata

func NewConsentMetadata() *ConsentMetadata

NewConsentMetadata instantiates a new ConsentMetadata 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 NewConsentMetadataWithDefaults

func NewConsentMetadataWithDefaults() *ConsentMetadata

NewConsentMetadataWithDefaults instantiates a new ConsentMetadata 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 (*ConsentMetadata) GetClientId

func (o *ConsentMetadata) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ConsentMetadata) GetClientIdOk

func (o *ConsentMetadata) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConsentMetadata) GetScope

func (o *ConsentMetadata) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ConsentMetadata) GetScopeOk

func (o *ConsentMetadata) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConsentMetadata) HasClientId

func (o *ConsentMetadata) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ConsentMetadata) HasScope

func (o *ConsentMetadata) HasScope() bool

HasScope returns a boolean if a field has been set.

func (ConsentMetadata) MarshalJSON

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

func (*ConsentMetadata) SetClientId

func (o *ConsentMetadata) SetClientId(v string)

SetClientId gets a reference to the given NullableString and assigns it to the ClientId field.

func (*ConsentMetadata) SetClientIdNil

func (o *ConsentMetadata) SetClientIdNil()

SetClientIdNil sets the value for ClientId to be an explicit nil

func (*ConsentMetadata) SetScope

func (o *ConsentMetadata) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*ConsentMetadata) SetScopeNil

func (o *ConsentMetadata) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (ConsentMetadata) ToMap

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

func (*ConsentMetadata) UnsetClientId

func (o *ConsentMetadata) UnsetClientId()

UnsetClientId ensures that no value is present for ClientId, not even an explicit nil

func (*ConsentMetadata) UnsetScope

func (o *ConsentMetadata) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type CoreUser

type CoreUser struct {
	// AAD User ID for which we want to assign/revoke license
	UserId NullableString `json:"userId,omitempty"`
	// AAD UPN for provided User
	UserPrincipalName NullableString `json:"userPrincipalName,omitempty"`
}

CoreUser struct for CoreUser

func NewCoreUser

func NewCoreUser() *CoreUser

NewCoreUser instantiates a new CoreUser 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 NewCoreUserWithDefaults

func NewCoreUserWithDefaults() *CoreUser

NewCoreUserWithDefaults instantiates a new CoreUser 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 (*CoreUser) GetUserId

func (o *CoreUser) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CoreUser) GetUserIdOk

func (o *CoreUser) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CoreUser) GetUserPrincipalName

func (o *CoreUser) GetUserPrincipalName() string

GetUserPrincipalName returns the UserPrincipalName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CoreUser) GetUserPrincipalNameOk

func (o *CoreUser) GetUserPrincipalNameOk() (*string, bool)

GetUserPrincipalNameOk returns a tuple with the UserPrincipalName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CoreUser) HasUserId

func (o *CoreUser) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*CoreUser) HasUserPrincipalName

func (o *CoreUser) HasUserPrincipalName() bool

HasUserPrincipalName returns a boolean if a field has been set.

func (CoreUser) MarshalJSON

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

func (*CoreUser) SetUserId

func (o *CoreUser) SetUserId(v string)

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

func (*CoreUser) SetUserIdNil

func (o *CoreUser) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (*CoreUser) SetUserPrincipalName

func (o *CoreUser) SetUserPrincipalName(v string)

SetUserPrincipalName gets a reference to the given NullableString and assigns it to the UserPrincipalName field.

func (*CoreUser) SetUserPrincipalNameNil

func (o *CoreUser) SetUserPrincipalNameNil()

SetUserPrincipalNameNil sets the value for UserPrincipalName to be an explicit nil

func (CoreUser) ToMap

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

func (*CoreUser) UnsetUserId

func (o *CoreUser) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

func (*CoreUser) UnsetUserPrincipalName

func (o *CoreUser) UnsetUserPrincipalName()

UnsetUserPrincipalName ensures that no value is present for UserPrincipalName, not even an explicit nil

type DeleteMachines

type DeleteMachines struct {
	AccountType AccountType `json:"accountType"`
	// The list of machine ids to be deleted
	MachineIds  []string                          `json:"machineIds"`
	Credentials NullableDeleteMachinesCredentials `json:"credentials,omitempty"`
}

DeleteMachines Delete machines by id

func NewDeleteMachines

func NewDeleteMachines(accountType AccountType, machineIds []string) *DeleteMachines

NewDeleteMachines instantiates a new DeleteMachines 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 NewDeleteMachinesWithDefaults

func NewDeleteMachinesWithDefaults() *DeleteMachines

NewDeleteMachinesWithDefaults instantiates a new DeleteMachines 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 (*DeleteMachines) GetAccountType

func (o *DeleteMachines) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*DeleteMachines) GetAccountTypeOk

func (o *DeleteMachines) GetAccountTypeOk() (*AccountType, bool)

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

func (*DeleteMachines) GetCredentials

func (o *DeleteMachines) GetCredentials() DeleteMachinesCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeleteMachines) GetCredentialsOk

func (o *DeleteMachines) GetCredentialsOk() (*DeleteMachinesCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeleteMachines) GetMachineIds

func (o *DeleteMachines) GetMachineIds() []string

GetMachineIds returns the MachineIds field value

func (*DeleteMachines) GetMachineIdsOk

func (o *DeleteMachines) GetMachineIdsOk() ([]string, bool)

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

func (*DeleteMachines) HasCredentials

func (o *DeleteMachines) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (DeleteMachines) MarshalJSON

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

func (*DeleteMachines) SetAccountType

func (o *DeleteMachines) SetAccountType(v AccountType)

SetAccountType sets field value

func (*DeleteMachines) SetCredentials

func (o *DeleteMachines) SetCredentials(v DeleteMachinesCredentials)

SetCredentials gets a reference to the given NullableDeleteMachinesCredentials and assigns it to the Credentials field.

func (*DeleteMachines) SetCredentialsNil

func (o *DeleteMachines) SetCredentialsNil()

SetCredentialsNil sets the value for Credentials to be an explicit nil

func (*DeleteMachines) SetMachineIds

func (o *DeleteMachines) SetMachineIds(v []string)

SetMachineIds sets field value

func (DeleteMachines) ToMap

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

func (*DeleteMachines) UnsetCredentials

func (o *DeleteMachines) UnsetCredentials()

UnsetCredentials ensures that no value is present for Credentials, not even an explicit nil

type DeleteMachinesCredentials

type DeleteMachinesCredentials struct {
	// Domain admin username
	DomainAdminUsername NullableString `json:"domainAdminUsername,omitempty"`
	// Domain admin password
	DomainAdminPassword NullableString `json:"domainAdminPassword,omitempty"`
}

DeleteMachinesCredentials Optional domain credentials details

func NewDeleteMachinesCredentials

func NewDeleteMachinesCredentials() *DeleteMachinesCredentials

NewDeleteMachinesCredentials instantiates a new DeleteMachinesCredentials 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 NewDeleteMachinesCredentialsWithDefaults

func NewDeleteMachinesCredentialsWithDefaults() *DeleteMachinesCredentials

NewDeleteMachinesCredentialsWithDefaults instantiates a new DeleteMachinesCredentials 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 (*DeleteMachinesCredentials) GetDomainAdminPassword

func (o *DeleteMachinesCredentials) GetDomainAdminPassword() string

GetDomainAdminPassword returns the DomainAdminPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeleteMachinesCredentials) GetDomainAdminPasswordOk

func (o *DeleteMachinesCredentials) GetDomainAdminPasswordOk() (*string, bool)

GetDomainAdminPasswordOk returns a tuple with the DomainAdminPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeleteMachinesCredentials) GetDomainAdminUsername

func (o *DeleteMachinesCredentials) GetDomainAdminUsername() string

GetDomainAdminUsername returns the DomainAdminUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeleteMachinesCredentials) GetDomainAdminUsernameOk

func (o *DeleteMachinesCredentials) GetDomainAdminUsernameOk() (*string, bool)

GetDomainAdminUsernameOk returns a tuple with the DomainAdminUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeleteMachinesCredentials) HasDomainAdminPassword

func (o *DeleteMachinesCredentials) HasDomainAdminPassword() bool

HasDomainAdminPassword returns a boolean if a field has been set.

func (*DeleteMachinesCredentials) HasDomainAdminUsername

func (o *DeleteMachinesCredentials) HasDomainAdminUsername() bool

HasDomainAdminUsername returns a boolean if a field has been set.

func (DeleteMachinesCredentials) MarshalJSON

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

func (*DeleteMachinesCredentials) SetDomainAdminPassword

func (o *DeleteMachinesCredentials) SetDomainAdminPassword(v string)

SetDomainAdminPassword gets a reference to the given NullableString and assigns it to the DomainAdminPassword field.

func (*DeleteMachinesCredentials) SetDomainAdminPasswordNil

func (o *DeleteMachinesCredentials) SetDomainAdminPasswordNil()

SetDomainAdminPasswordNil sets the value for DomainAdminPassword to be an explicit nil

func (*DeleteMachinesCredentials) SetDomainAdminUsername

func (o *DeleteMachinesCredentials) SetDomainAdminUsername(v string)

SetDomainAdminUsername gets a reference to the given NullableString and assigns it to the DomainAdminUsername field.

func (*DeleteMachinesCredentials) SetDomainAdminUsernameNil

func (o *DeleteMachinesCredentials) SetDomainAdminUsernameNil()

SetDomainAdminUsernameNil sets the value for DomainAdminUsername to be an explicit nil

func (DeleteMachinesCredentials) ToMap

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

func (*DeleteMachinesCredentials) UnsetDomainAdminPassword

func (o *DeleteMachinesCredentials) UnsetDomainAdminPassword()

UnsetDomainAdminPassword ensures that no value is present for DomainAdminPassword, not even an explicit nil

func (*DeleteMachinesCredentials) UnsetDomainAdminUsername

func (o *DeleteMachinesCredentials) UnsetDomainAdminUsername()

UnsetDomainAdminUsername ensures that no value is present for DomainAdminUsername, not even an explicit nil

type Deployment

type Deployment struct {
	AccountType AccountType `json:"accountType"`
	// Deployment Id
	DeploymentId NullableString `json:"deploymentId,omitempty"`
	// Deployment Name
	DeploymentName NullableString `json:"deploymentName,omitempty"`
	// Account Id
	AccountId NullableString `json:"accountId,omitempty"`
	// Account name
	AccountName NullableString `json:"accountName,omitempty"`
	// Connection Id
	ConnectionId NullableString `json:"connectionId,omitempty"`
	// Connection Name
	ConnectionName  NullableString          `json:"connectionName,omitempty"`
	DeploymentState NullableDeploymentState `json:"deploymentState,omitempty"`
	// The number of users in this deployment
	UserCount *int32 `json:"userCount,omitempty"`
	// Error message associated with the deployment
	ErrorMessage NullableString `json:"errorMessage,omitempty"`
	// Warnings and errors associated with the deployment
	Warnings []DeploymentWarning `json:"warnings,omitempty"`
	// Tasks currently being performed on the deployment
	ActiveTasks []GetTaskAsync200Response `json:"activeTasks,omitempty"`
	// Id for the machine catalog of the deployment, could be null
	BrokerMachineCatalogId NullableString `json:"brokerMachineCatalogId,omitempty"`
	// Id for the delivery group of the deployment, could be null
	BrokerDeliveryGroupId NullableString `json:"brokerDeliveryGroupId,omitempty"`
	// Indicates whether the deployment is managed by Citrix
	CitrixManaged NullableBool                    `json:"citrixManaged,omitempty"`
	ScaleSettings NullableDeploymentScaleSettings `json:"scaleSettings,omitempty"`
}

Deployment Deployment

func NewDeployment

func NewDeployment(accountType AccountType) *Deployment

NewDeployment instantiates a new Deployment 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 NewDeploymentWithDefaults

func NewDeploymentWithDefaults() *Deployment

NewDeploymentWithDefaults instantiates a new Deployment 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 (*Deployment) GetAccountId

func (o *Deployment) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetAccountIdOk

func (o *Deployment) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetAccountName

func (o *Deployment) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetAccountNameOk

func (o *Deployment) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetAccountType

func (o *Deployment) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*Deployment) GetAccountTypeOk

func (o *Deployment) GetAccountTypeOk() (*AccountType, bool)

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

func (*Deployment) GetActiveTasks

func (o *Deployment) GetActiveTasks() []GetTaskAsync200Response

GetActiveTasks returns the ActiveTasks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetActiveTasksOk

func (o *Deployment) GetActiveTasksOk() ([]GetTaskAsync200Response, bool)

GetActiveTasksOk returns a tuple with the ActiveTasks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetBrokerDeliveryGroupId

func (o *Deployment) GetBrokerDeliveryGroupId() string

GetBrokerDeliveryGroupId returns the BrokerDeliveryGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetBrokerDeliveryGroupIdOk

func (o *Deployment) GetBrokerDeliveryGroupIdOk() (*string, bool)

GetBrokerDeliveryGroupIdOk returns a tuple with the BrokerDeliveryGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetBrokerMachineCatalogId

func (o *Deployment) GetBrokerMachineCatalogId() string

GetBrokerMachineCatalogId returns the BrokerMachineCatalogId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetBrokerMachineCatalogIdOk

func (o *Deployment) GetBrokerMachineCatalogIdOk() (*string, bool)

GetBrokerMachineCatalogIdOk returns a tuple with the BrokerMachineCatalogId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetCitrixManaged

func (o *Deployment) GetCitrixManaged() bool

GetCitrixManaged returns the CitrixManaged field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetCitrixManagedOk

func (o *Deployment) GetCitrixManagedOk() (*bool, bool)

GetCitrixManagedOk returns a tuple with the CitrixManaged field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetConnectionId

func (o *Deployment) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetConnectionIdOk

func (o *Deployment) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetConnectionName

func (o *Deployment) GetConnectionName() string

GetConnectionName returns the ConnectionName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetConnectionNameOk

func (o *Deployment) GetConnectionNameOk() (*string, bool)

GetConnectionNameOk returns a tuple with the ConnectionName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetDeploymentId

func (o *Deployment) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetDeploymentIdOk

func (o *Deployment) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetDeploymentName

func (o *Deployment) GetDeploymentName() string

GetDeploymentName returns the DeploymentName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetDeploymentNameOk

func (o *Deployment) GetDeploymentNameOk() (*string, bool)

GetDeploymentNameOk returns a tuple with the DeploymentName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetDeploymentState

func (o *Deployment) GetDeploymentState() DeploymentState

GetDeploymentState returns the DeploymentState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetDeploymentStateOk

func (o *Deployment) GetDeploymentStateOk() (*DeploymentState, bool)

GetDeploymentStateOk returns a tuple with the DeploymentState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetErrorMessage

func (o *Deployment) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetErrorMessageOk

func (o *Deployment) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetScaleSettings

func (o *Deployment) GetScaleSettings() DeploymentScaleSettings

GetScaleSettings returns the ScaleSettings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetScaleSettingsOk

func (o *Deployment) GetScaleSettingsOk() (*DeploymentScaleSettings, bool)

GetScaleSettingsOk returns a tuple with the ScaleSettings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) GetUserCount

func (o *Deployment) GetUserCount() int32

GetUserCount returns the UserCount field value if set, zero value otherwise.

func (*Deployment) GetUserCountOk

func (o *Deployment) GetUserCountOk() (*int32, bool)

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

func (*Deployment) GetWarnings

func (o *Deployment) GetWarnings() []DeploymentWarning

GetWarnings returns the Warnings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployment) GetWarningsOk

func (o *Deployment) GetWarningsOk() ([]DeploymentWarning, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployment) HasAccountId

func (o *Deployment) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*Deployment) HasAccountName

func (o *Deployment) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*Deployment) HasActiveTasks

func (o *Deployment) HasActiveTasks() bool

HasActiveTasks returns a boolean if a field has been set.

func (*Deployment) HasBrokerDeliveryGroupId

func (o *Deployment) HasBrokerDeliveryGroupId() bool

HasBrokerDeliveryGroupId returns a boolean if a field has been set.

func (*Deployment) HasBrokerMachineCatalogId

func (o *Deployment) HasBrokerMachineCatalogId() bool

HasBrokerMachineCatalogId returns a boolean if a field has been set.

func (*Deployment) HasCitrixManaged

func (o *Deployment) HasCitrixManaged() bool

HasCitrixManaged returns a boolean if a field has been set.

func (*Deployment) HasConnectionId

func (o *Deployment) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*Deployment) HasConnectionName

func (o *Deployment) HasConnectionName() bool

HasConnectionName returns a boolean if a field has been set.

func (*Deployment) HasDeploymentId

func (o *Deployment) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*Deployment) HasDeploymentName

func (o *Deployment) HasDeploymentName() bool

HasDeploymentName returns a boolean if a field has been set.

func (*Deployment) HasDeploymentState

func (o *Deployment) HasDeploymentState() bool

HasDeploymentState returns a boolean if a field has been set.

func (*Deployment) HasErrorMessage

func (o *Deployment) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*Deployment) HasScaleSettings

func (o *Deployment) HasScaleSettings() bool

HasScaleSettings returns a boolean if a field has been set.

func (*Deployment) HasUserCount

func (o *Deployment) HasUserCount() bool

HasUserCount returns a boolean if a field has been set.

func (*Deployment) HasWarnings

func (o *Deployment) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (Deployment) MarshalJSON

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

func (*Deployment) SetAccountId

func (o *Deployment) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*Deployment) SetAccountIdNil

func (o *Deployment) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*Deployment) SetAccountName

func (o *Deployment) SetAccountName(v string)

SetAccountName gets a reference to the given NullableString and assigns it to the AccountName field.

func (*Deployment) SetAccountNameNil

func (o *Deployment) SetAccountNameNil()

SetAccountNameNil sets the value for AccountName to be an explicit nil

func (*Deployment) SetAccountType

func (o *Deployment) SetAccountType(v AccountType)

SetAccountType sets field value

func (*Deployment) SetActiveTasks

func (o *Deployment) SetActiveTasks(v []GetTaskAsync200Response)

SetActiveTasks gets a reference to the given []GetTaskAsync200Response and assigns it to the ActiveTasks field.

func (*Deployment) SetBrokerDeliveryGroupId

func (o *Deployment) SetBrokerDeliveryGroupId(v string)

SetBrokerDeliveryGroupId gets a reference to the given NullableString and assigns it to the BrokerDeliveryGroupId field.

func (*Deployment) SetBrokerDeliveryGroupIdNil

func (o *Deployment) SetBrokerDeliveryGroupIdNil()

SetBrokerDeliveryGroupIdNil sets the value for BrokerDeliveryGroupId to be an explicit nil

func (*Deployment) SetBrokerMachineCatalogId

func (o *Deployment) SetBrokerMachineCatalogId(v string)

SetBrokerMachineCatalogId gets a reference to the given NullableString and assigns it to the BrokerMachineCatalogId field.

func (*Deployment) SetBrokerMachineCatalogIdNil

func (o *Deployment) SetBrokerMachineCatalogIdNil()

SetBrokerMachineCatalogIdNil sets the value for BrokerMachineCatalogId to be an explicit nil

func (*Deployment) SetCitrixManaged

func (o *Deployment) SetCitrixManaged(v bool)

SetCitrixManaged gets a reference to the given NullableBool and assigns it to the CitrixManaged field.

func (*Deployment) SetCitrixManagedNil

func (o *Deployment) SetCitrixManagedNil()

SetCitrixManagedNil sets the value for CitrixManaged to be an explicit nil

func (*Deployment) SetConnectionId

func (o *Deployment) SetConnectionId(v string)

SetConnectionId gets a reference to the given NullableString and assigns it to the ConnectionId field.

func (*Deployment) SetConnectionIdNil

func (o *Deployment) SetConnectionIdNil()

SetConnectionIdNil sets the value for ConnectionId to be an explicit nil

func (*Deployment) SetConnectionName

func (o *Deployment) SetConnectionName(v string)

SetConnectionName gets a reference to the given NullableString and assigns it to the ConnectionName field.

func (*Deployment) SetConnectionNameNil

func (o *Deployment) SetConnectionNameNil()

SetConnectionNameNil sets the value for ConnectionName to be an explicit nil

func (*Deployment) SetDeploymentId

func (o *Deployment) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given NullableString and assigns it to the DeploymentId field.

func (*Deployment) SetDeploymentIdNil

func (o *Deployment) SetDeploymentIdNil()

SetDeploymentIdNil sets the value for DeploymentId to be an explicit nil

func (*Deployment) SetDeploymentName

func (o *Deployment) SetDeploymentName(v string)

SetDeploymentName gets a reference to the given NullableString and assigns it to the DeploymentName field.

func (*Deployment) SetDeploymentNameNil

func (o *Deployment) SetDeploymentNameNil()

SetDeploymentNameNil sets the value for DeploymentName to be an explicit nil

func (*Deployment) SetDeploymentState

func (o *Deployment) SetDeploymentState(v DeploymentState)

SetDeploymentState gets a reference to the given NullableDeploymentState and assigns it to the DeploymentState field.

func (*Deployment) SetDeploymentStateNil

func (o *Deployment) SetDeploymentStateNil()

SetDeploymentStateNil sets the value for DeploymentState to be an explicit nil

func (*Deployment) SetErrorMessage

func (o *Deployment) SetErrorMessage(v string)

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

func (*Deployment) SetErrorMessageNil

func (o *Deployment) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*Deployment) SetScaleSettings

func (o *Deployment) SetScaleSettings(v DeploymentScaleSettings)

SetScaleSettings gets a reference to the given NullableDeploymentScaleSettings and assigns it to the ScaleSettings field.

func (*Deployment) SetScaleSettingsNil

func (o *Deployment) SetScaleSettingsNil()

SetScaleSettingsNil sets the value for ScaleSettings to be an explicit nil

func (*Deployment) SetUserCount

func (o *Deployment) SetUserCount(v int32)

SetUserCount gets a reference to the given int32 and assigns it to the UserCount field.

func (*Deployment) SetWarnings

func (o *Deployment) SetWarnings(v []DeploymentWarning)

SetWarnings gets a reference to the given []DeploymentWarning and assigns it to the Warnings field.

func (Deployment) ToMap

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

func (*Deployment) UnsetAccountId

func (o *Deployment) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*Deployment) UnsetAccountName

func (o *Deployment) UnsetAccountName()

UnsetAccountName ensures that no value is present for AccountName, not even an explicit nil

func (*Deployment) UnsetBrokerDeliveryGroupId

func (o *Deployment) UnsetBrokerDeliveryGroupId()

UnsetBrokerDeliveryGroupId ensures that no value is present for BrokerDeliveryGroupId, not even an explicit nil

func (*Deployment) UnsetBrokerMachineCatalogId

func (o *Deployment) UnsetBrokerMachineCatalogId()

UnsetBrokerMachineCatalogId ensures that no value is present for BrokerMachineCatalogId, not even an explicit nil

func (*Deployment) UnsetCitrixManaged

func (o *Deployment) UnsetCitrixManaged()

UnsetCitrixManaged ensures that no value is present for CitrixManaged, not even an explicit nil

func (*Deployment) UnsetConnectionId

func (o *Deployment) UnsetConnectionId()

UnsetConnectionId ensures that no value is present for ConnectionId, not even an explicit nil

func (*Deployment) UnsetConnectionName

func (o *Deployment) UnsetConnectionName()

UnsetConnectionName ensures that no value is present for ConnectionName, not even an explicit nil

func (*Deployment) UnsetDeploymentId

func (o *Deployment) UnsetDeploymentId()

UnsetDeploymentId ensures that no value is present for DeploymentId, not even an explicit nil

func (*Deployment) UnsetDeploymentName

func (o *Deployment) UnsetDeploymentName()

UnsetDeploymentName ensures that no value is present for DeploymentName, not even an explicit nil

func (*Deployment) UnsetDeploymentState

func (o *Deployment) UnsetDeploymentState()

UnsetDeploymentState ensures that no value is present for DeploymentState, not even an explicit nil

func (*Deployment) UnsetErrorMessage

func (o *Deployment) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*Deployment) UnsetScaleSettings

func (o *Deployment) UnsetScaleSettings()

UnsetScaleSettings ensures that no value is present for ScaleSettings, not even an explicit nil

type DeploymentCredentials

type DeploymentCredentials struct {
	// Domain admin username
	DomainAdminUsername NullableString `json:"domainAdminUsername,omitempty"`
	// Domain admin password
	DomainAdminPassword NullableString `json:"domainAdminPassword,omitempty"`
}

DeploymentCredentials Deployment AD credentials

func NewDeploymentCredentials

func NewDeploymentCredentials() *DeploymentCredentials

NewDeploymentCredentials instantiates a new DeploymentCredentials 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 NewDeploymentCredentialsWithDefaults

func NewDeploymentCredentialsWithDefaults() *DeploymentCredentials

NewDeploymentCredentialsWithDefaults instantiates a new DeploymentCredentials 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 (*DeploymentCredentials) GetDomainAdminPassword

func (o *DeploymentCredentials) GetDomainAdminPassword() string

GetDomainAdminPassword returns the DomainAdminPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentCredentials) GetDomainAdminPasswordOk

func (o *DeploymentCredentials) GetDomainAdminPasswordOk() (*string, bool)

GetDomainAdminPasswordOk returns a tuple with the DomainAdminPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentCredentials) GetDomainAdminUsername

func (o *DeploymentCredentials) GetDomainAdminUsername() string

GetDomainAdminUsername returns the DomainAdminUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentCredentials) GetDomainAdminUsernameOk

func (o *DeploymentCredentials) GetDomainAdminUsernameOk() (*string, bool)

GetDomainAdminUsernameOk returns a tuple with the DomainAdminUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentCredentials) HasDomainAdminPassword

func (o *DeploymentCredentials) HasDomainAdminPassword() bool

HasDomainAdminPassword returns a boolean if a field has been set.

func (*DeploymentCredentials) HasDomainAdminUsername

func (o *DeploymentCredentials) HasDomainAdminUsername() bool

HasDomainAdminUsername returns a boolean if a field has been set.

func (DeploymentCredentials) MarshalJSON

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

func (*DeploymentCredentials) SetDomainAdminPassword

func (o *DeploymentCredentials) SetDomainAdminPassword(v string)

SetDomainAdminPassword gets a reference to the given NullableString and assigns it to the DomainAdminPassword field.

func (*DeploymentCredentials) SetDomainAdminPasswordNil

func (o *DeploymentCredentials) SetDomainAdminPasswordNil()

SetDomainAdminPasswordNil sets the value for DomainAdminPassword to be an explicit nil

func (*DeploymentCredentials) SetDomainAdminUsername

func (o *DeploymentCredentials) SetDomainAdminUsername(v string)

SetDomainAdminUsername gets a reference to the given NullableString and assigns it to the DomainAdminUsername field.

func (*DeploymentCredentials) SetDomainAdminUsernameNil

func (o *DeploymentCredentials) SetDomainAdminUsernameNil()

SetDomainAdminUsernameNil sets the value for DomainAdminUsername to be an explicit nil

func (DeploymentCredentials) ToMap

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

func (*DeploymentCredentials) UnsetDomainAdminPassword

func (o *DeploymentCredentials) UnsetDomainAdminPassword()

UnsetDomainAdminPassword ensures that no value is present for DomainAdminPassword, not even an explicit nil

func (*DeploymentCredentials) UnsetDomainAdminUsername

func (o *DeploymentCredentials) UnsetDomainAdminUsername()

UnsetDomainAdminUsername ensures that no value is present for DomainAdminUsername, not even an explicit nil

type DeploymentIdInitiateDeleteBody

type DeploymentIdInitiateDeleteBody struct {
	// Domain admin username
	DomainAdminUsername NullableString `json:"domainAdminUsername,omitempty"`
	// Domain admin password
	DomainAdminPassword NullableString `json:"domainAdminPassword,omitempty"`
}

DeploymentIdInitiateDeleteBody Deployment AD credentials

func NewDeploymentIdInitiateDeleteBody

func NewDeploymentIdInitiateDeleteBody() *DeploymentIdInitiateDeleteBody

NewDeploymentIdInitiateDeleteBody instantiates a new DeploymentIdInitiateDeleteBody 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 NewDeploymentIdInitiateDeleteBodyWithDefaults

func NewDeploymentIdInitiateDeleteBodyWithDefaults() *DeploymentIdInitiateDeleteBody

NewDeploymentIdInitiateDeleteBodyWithDefaults instantiates a new DeploymentIdInitiateDeleteBody 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 (*DeploymentIdInitiateDeleteBody) GetDomainAdminPassword

func (o *DeploymentIdInitiateDeleteBody) GetDomainAdminPassword() string

GetDomainAdminPassword returns the DomainAdminPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentIdInitiateDeleteBody) GetDomainAdminPasswordOk

func (o *DeploymentIdInitiateDeleteBody) GetDomainAdminPasswordOk() (*string, bool)

GetDomainAdminPasswordOk returns a tuple with the DomainAdminPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentIdInitiateDeleteBody) GetDomainAdminUsername

func (o *DeploymentIdInitiateDeleteBody) GetDomainAdminUsername() string

GetDomainAdminUsername returns the DomainAdminUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentIdInitiateDeleteBody) GetDomainAdminUsernameOk

func (o *DeploymentIdInitiateDeleteBody) GetDomainAdminUsernameOk() (*string, bool)

GetDomainAdminUsernameOk returns a tuple with the DomainAdminUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentIdInitiateDeleteBody) HasDomainAdminPassword

func (o *DeploymentIdInitiateDeleteBody) HasDomainAdminPassword() bool

HasDomainAdminPassword returns a boolean if a field has been set.

func (*DeploymentIdInitiateDeleteBody) HasDomainAdminUsername

func (o *DeploymentIdInitiateDeleteBody) HasDomainAdminUsername() bool

HasDomainAdminUsername returns a boolean if a field has been set.

func (DeploymentIdInitiateDeleteBody) MarshalJSON

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

func (*DeploymentIdInitiateDeleteBody) SetDomainAdminPassword

func (o *DeploymentIdInitiateDeleteBody) SetDomainAdminPassword(v string)

SetDomainAdminPassword gets a reference to the given NullableString and assigns it to the DomainAdminPassword field.

func (*DeploymentIdInitiateDeleteBody) SetDomainAdminPasswordNil

func (o *DeploymentIdInitiateDeleteBody) SetDomainAdminPasswordNil()

SetDomainAdminPasswordNil sets the value for DomainAdminPassword to be an explicit nil

func (*DeploymentIdInitiateDeleteBody) SetDomainAdminUsername

func (o *DeploymentIdInitiateDeleteBody) SetDomainAdminUsername(v string)

SetDomainAdminUsername gets a reference to the given NullableString and assigns it to the DomainAdminUsername field.

func (*DeploymentIdInitiateDeleteBody) SetDomainAdminUsernameNil

func (o *DeploymentIdInitiateDeleteBody) SetDomainAdminUsernameNil()

SetDomainAdminUsernameNil sets the value for DomainAdminUsername to be an explicit nil

func (DeploymentIdInitiateDeleteBody) ToMap

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

func (*DeploymentIdInitiateDeleteBody) UnsetDomainAdminPassword

func (o *DeploymentIdInitiateDeleteBody) UnsetDomainAdminPassword()

UnsetDomainAdminPassword ensures that no value is present for DomainAdminPassword, not even an explicit nil

func (*DeploymentIdInitiateDeleteBody) UnsetDomainAdminUsername

func (o *DeploymentIdInitiateDeleteBody) UnsetDomainAdminUsername()

UnsetDomainAdminUsername ensures that no value is present for DomainAdminUsername, not even an explicit nil

type DeploymentIdMachinesBody

type DeploymentIdMachinesBody struct {
	AccountType AccountType `json:"accountType"`
	// The type of provider associated with the account
	InMaintenanceMode bool `json:"inMaintenanceMode"`
	// The list of machine ids to be updated
	MachineIds []string `json:"machineIds"`
}

DeploymentIdMachinesBody Turn on or off maintenance mode on machines by id

func NewDeploymentIdMachinesBody

func NewDeploymentIdMachinesBody(accountType AccountType, inMaintenanceMode bool, machineIds []string) *DeploymentIdMachinesBody

NewDeploymentIdMachinesBody instantiates a new DeploymentIdMachinesBody 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 NewDeploymentIdMachinesBodyWithDefaults

func NewDeploymentIdMachinesBodyWithDefaults() *DeploymentIdMachinesBody

NewDeploymentIdMachinesBodyWithDefaults instantiates a new DeploymentIdMachinesBody 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 (*DeploymentIdMachinesBody) GetAccountType

func (o *DeploymentIdMachinesBody) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*DeploymentIdMachinesBody) GetAccountTypeOk

func (o *DeploymentIdMachinesBody) GetAccountTypeOk() (*AccountType, bool)

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

func (*DeploymentIdMachinesBody) GetInMaintenanceMode

func (o *DeploymentIdMachinesBody) GetInMaintenanceMode() bool

GetInMaintenanceMode returns the InMaintenanceMode field value

func (*DeploymentIdMachinesBody) GetInMaintenanceModeOk

func (o *DeploymentIdMachinesBody) GetInMaintenanceModeOk() (*bool, bool)

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

func (*DeploymentIdMachinesBody) GetMachineIds

func (o *DeploymentIdMachinesBody) GetMachineIds() []string

GetMachineIds returns the MachineIds field value

func (*DeploymentIdMachinesBody) GetMachineIdsOk

func (o *DeploymentIdMachinesBody) GetMachineIdsOk() ([]string, bool)

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

func (DeploymentIdMachinesBody) MarshalJSON

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

func (*DeploymentIdMachinesBody) SetAccountType

func (o *DeploymentIdMachinesBody) SetAccountType(v AccountType)

SetAccountType sets field value

func (*DeploymentIdMachinesBody) SetInMaintenanceMode

func (o *DeploymentIdMachinesBody) SetInMaintenanceMode(v bool)

SetInMaintenanceMode sets field value

func (*DeploymentIdMachinesBody) SetMachineIds

func (o *DeploymentIdMachinesBody) SetMachineIds(v []string)

SetMachineIds sets field value

func (DeploymentIdMachinesBody) ToMap

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

type DeploymentMachine

type DeploymentMachine struct {
	AccountType AccountType `json:"accountType"`
	// Deployment Id
	DeploymentId NullableString `json:"deploymentId,omitempty"`
	// MachineId on the Broker
	BrokerMachineId NullableString   `json:"brokerMachineId,omitempty"`
	TaskType        NullableTaskType `json:"taskType,omitempty"`
	// Task Id
	TaskId NullableString `json:"taskId,omitempty"`
	// Hosting Connection Id
	ConnectionId NullableString `json:"connectionId,omitempty"`
	// Image Id
	ImageId NullableString `json:"imageId,omitempty"`
	// Machine Id
	MachineId NullableString `json:"machineId,omitempty"`
	// Name of the machine
	MachineName       NullableString            `json:"machineName,omitempty"`
	RegistrationState NullableRegistrationState `json:"registrationState,omitempty"`
	SessionState      NullableSessionState      `json:"sessionState,omitempty"`
	// Count of active session on machine
	SessionCount NullableInt32 `json:"sessionCount,omitempty"`
	// Indicates if the machine is in Maintenance Mode
	MaintenanceMode NullableBool `json:"maintenanceMode,omitempty"`
	// List of users that are associated with the machine
	AssociatedUsers []string `json:"associatedUsers,omitempty"`
	// Id for the machine catalog of the machine, could be null if machine not in machine catalog
	BrokerMachineCatalogId NullableString `json:"brokerMachineCatalogId,omitempty"`
	// Id for the delivery group of the machine, could be null if machine not in delivery group
	BrokerDeliveryGroupId NullableString `json:"brokerDeliveryGroupId,omitempty"`
}

DeploymentMachine Deployment

func NewDeploymentMachine

func NewDeploymentMachine(accountType AccountType) *DeploymentMachine

NewDeploymentMachine instantiates a new DeploymentMachine 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 NewDeploymentMachineWithDefaults

func NewDeploymentMachineWithDefaults() *DeploymentMachine

NewDeploymentMachineWithDefaults instantiates a new DeploymentMachine 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 (*DeploymentMachine) GetAccountType

func (o *DeploymentMachine) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*DeploymentMachine) GetAccountTypeOk

func (o *DeploymentMachine) GetAccountTypeOk() (*AccountType, bool)

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

func (*DeploymentMachine) GetAssociatedUsers

func (o *DeploymentMachine) GetAssociatedUsers() []string

GetAssociatedUsers returns the AssociatedUsers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetAssociatedUsersOk

func (o *DeploymentMachine) GetAssociatedUsersOk() ([]string, bool)

GetAssociatedUsersOk returns a tuple with the AssociatedUsers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetBrokerDeliveryGroupId

func (o *DeploymentMachine) GetBrokerDeliveryGroupId() string

GetBrokerDeliveryGroupId returns the BrokerDeliveryGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetBrokerDeliveryGroupIdOk

func (o *DeploymentMachine) GetBrokerDeliveryGroupIdOk() (*string, bool)

GetBrokerDeliveryGroupIdOk returns a tuple with the BrokerDeliveryGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetBrokerMachineCatalogId

func (o *DeploymentMachine) GetBrokerMachineCatalogId() string

GetBrokerMachineCatalogId returns the BrokerMachineCatalogId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetBrokerMachineCatalogIdOk

func (o *DeploymentMachine) GetBrokerMachineCatalogIdOk() (*string, bool)

GetBrokerMachineCatalogIdOk returns a tuple with the BrokerMachineCatalogId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetBrokerMachineId

func (o *DeploymentMachine) GetBrokerMachineId() string

GetBrokerMachineId returns the BrokerMachineId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetBrokerMachineIdOk

func (o *DeploymentMachine) GetBrokerMachineIdOk() (*string, bool)

GetBrokerMachineIdOk returns a tuple with the BrokerMachineId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetConnectionId

func (o *DeploymentMachine) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetConnectionIdOk

func (o *DeploymentMachine) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetDeploymentId

func (o *DeploymentMachine) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetDeploymentIdOk

func (o *DeploymentMachine) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetImageId

func (o *DeploymentMachine) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetImageIdOk

func (o *DeploymentMachine) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetMachineId

func (o *DeploymentMachine) GetMachineId() string

GetMachineId returns the MachineId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetMachineIdOk

func (o *DeploymentMachine) GetMachineIdOk() (*string, bool)

GetMachineIdOk returns a tuple with the MachineId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetMachineName

func (o *DeploymentMachine) GetMachineName() string

GetMachineName returns the MachineName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetMachineNameOk

func (o *DeploymentMachine) GetMachineNameOk() (*string, bool)

GetMachineNameOk returns a tuple with the MachineName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetMaintenanceMode

func (o *DeploymentMachine) GetMaintenanceMode() bool

GetMaintenanceMode returns the MaintenanceMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetMaintenanceModeOk

func (o *DeploymentMachine) GetMaintenanceModeOk() (*bool, bool)

GetMaintenanceModeOk returns a tuple with the MaintenanceMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetRegistrationState

func (o *DeploymentMachine) GetRegistrationState() RegistrationState

GetRegistrationState returns the RegistrationState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetRegistrationStateOk

func (o *DeploymentMachine) GetRegistrationStateOk() (*RegistrationState, bool)

GetRegistrationStateOk returns a tuple with the RegistrationState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetSessionCount

func (o *DeploymentMachine) GetSessionCount() int32

GetSessionCount returns the SessionCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetSessionCountOk

func (o *DeploymentMachine) GetSessionCountOk() (*int32, bool)

GetSessionCountOk returns a tuple with the SessionCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetSessionState

func (o *DeploymentMachine) GetSessionState() SessionState

GetSessionState returns the SessionState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetSessionStateOk

func (o *DeploymentMachine) GetSessionStateOk() (*SessionState, bool)

GetSessionStateOk returns a tuple with the SessionState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetTaskId

func (o *DeploymentMachine) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetTaskIdOk

func (o *DeploymentMachine) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) GetTaskType

func (o *DeploymentMachine) GetTaskType() TaskType

GetTaskType returns the TaskType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachine) GetTaskTypeOk

func (o *DeploymentMachine) GetTaskTypeOk() (*TaskType, bool)

GetTaskTypeOk returns a tuple with the TaskType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachine) HasAssociatedUsers

func (o *DeploymentMachine) HasAssociatedUsers() bool

HasAssociatedUsers returns a boolean if a field has been set.

func (*DeploymentMachine) HasBrokerDeliveryGroupId

func (o *DeploymentMachine) HasBrokerDeliveryGroupId() bool

HasBrokerDeliveryGroupId returns a boolean if a field has been set.

func (*DeploymentMachine) HasBrokerMachineCatalogId

func (o *DeploymentMachine) HasBrokerMachineCatalogId() bool

HasBrokerMachineCatalogId returns a boolean if a field has been set.

func (*DeploymentMachine) HasBrokerMachineId

func (o *DeploymentMachine) HasBrokerMachineId() bool

HasBrokerMachineId returns a boolean if a field has been set.

func (*DeploymentMachine) HasConnectionId

func (o *DeploymentMachine) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*DeploymentMachine) HasDeploymentId

func (o *DeploymentMachine) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*DeploymentMachine) HasImageId

func (o *DeploymentMachine) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*DeploymentMachine) HasMachineId

func (o *DeploymentMachine) HasMachineId() bool

HasMachineId returns a boolean if a field has been set.

func (*DeploymentMachine) HasMachineName

func (o *DeploymentMachine) HasMachineName() bool

HasMachineName returns a boolean if a field has been set.

func (*DeploymentMachine) HasMaintenanceMode

func (o *DeploymentMachine) HasMaintenanceMode() bool

HasMaintenanceMode returns a boolean if a field has been set.

func (*DeploymentMachine) HasRegistrationState

func (o *DeploymentMachine) HasRegistrationState() bool

HasRegistrationState returns a boolean if a field has been set.

func (*DeploymentMachine) HasSessionCount

func (o *DeploymentMachine) HasSessionCount() bool

HasSessionCount returns a boolean if a field has been set.

func (*DeploymentMachine) HasSessionState

func (o *DeploymentMachine) HasSessionState() bool

HasSessionState returns a boolean if a field has been set.

func (*DeploymentMachine) HasTaskId

func (o *DeploymentMachine) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*DeploymentMachine) HasTaskType

func (o *DeploymentMachine) HasTaskType() bool

HasTaskType returns a boolean if a field has been set.

func (DeploymentMachine) MarshalJSON

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

func (*DeploymentMachine) SetAccountType

func (o *DeploymentMachine) SetAccountType(v AccountType)

SetAccountType sets field value

func (*DeploymentMachine) SetAssociatedUsers

func (o *DeploymentMachine) SetAssociatedUsers(v []string)

SetAssociatedUsers gets a reference to the given []string and assigns it to the AssociatedUsers field.

func (*DeploymentMachine) SetBrokerDeliveryGroupId

func (o *DeploymentMachine) SetBrokerDeliveryGroupId(v string)

SetBrokerDeliveryGroupId gets a reference to the given NullableString and assigns it to the BrokerDeliveryGroupId field.

func (*DeploymentMachine) SetBrokerDeliveryGroupIdNil

func (o *DeploymentMachine) SetBrokerDeliveryGroupIdNil()

SetBrokerDeliveryGroupIdNil sets the value for BrokerDeliveryGroupId to be an explicit nil

func (*DeploymentMachine) SetBrokerMachineCatalogId

func (o *DeploymentMachine) SetBrokerMachineCatalogId(v string)

SetBrokerMachineCatalogId gets a reference to the given NullableString and assigns it to the BrokerMachineCatalogId field.

func (*DeploymentMachine) SetBrokerMachineCatalogIdNil

func (o *DeploymentMachine) SetBrokerMachineCatalogIdNil()

SetBrokerMachineCatalogIdNil sets the value for BrokerMachineCatalogId to be an explicit nil

func (*DeploymentMachine) SetBrokerMachineId

func (o *DeploymentMachine) SetBrokerMachineId(v string)

SetBrokerMachineId gets a reference to the given NullableString and assigns it to the BrokerMachineId field.

func (*DeploymentMachine) SetBrokerMachineIdNil

func (o *DeploymentMachine) SetBrokerMachineIdNil()

SetBrokerMachineIdNil sets the value for BrokerMachineId to be an explicit nil

func (*DeploymentMachine) SetConnectionId

func (o *DeploymentMachine) SetConnectionId(v string)

SetConnectionId gets a reference to the given NullableString and assigns it to the ConnectionId field.

func (*DeploymentMachine) SetConnectionIdNil

func (o *DeploymentMachine) SetConnectionIdNil()

SetConnectionIdNil sets the value for ConnectionId to be an explicit nil

func (*DeploymentMachine) SetDeploymentId

func (o *DeploymentMachine) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given NullableString and assigns it to the DeploymentId field.

func (*DeploymentMachine) SetDeploymentIdNil

func (o *DeploymentMachine) SetDeploymentIdNil()

SetDeploymentIdNil sets the value for DeploymentId to be an explicit nil

func (*DeploymentMachine) SetImageId

func (o *DeploymentMachine) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*DeploymentMachine) SetImageIdNil

func (o *DeploymentMachine) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (*DeploymentMachine) SetMachineId

func (o *DeploymentMachine) SetMachineId(v string)

SetMachineId gets a reference to the given NullableString and assigns it to the MachineId field.

func (*DeploymentMachine) SetMachineIdNil

func (o *DeploymentMachine) SetMachineIdNil()

SetMachineIdNil sets the value for MachineId to be an explicit nil

func (*DeploymentMachine) SetMachineName

func (o *DeploymentMachine) SetMachineName(v string)

SetMachineName gets a reference to the given NullableString and assigns it to the MachineName field.

func (*DeploymentMachine) SetMachineNameNil

func (o *DeploymentMachine) SetMachineNameNil()

SetMachineNameNil sets the value for MachineName to be an explicit nil

func (*DeploymentMachine) SetMaintenanceMode

func (o *DeploymentMachine) SetMaintenanceMode(v bool)

SetMaintenanceMode gets a reference to the given NullableBool and assigns it to the MaintenanceMode field.

func (*DeploymentMachine) SetMaintenanceModeNil

func (o *DeploymentMachine) SetMaintenanceModeNil()

SetMaintenanceModeNil sets the value for MaintenanceMode to be an explicit nil

func (*DeploymentMachine) SetRegistrationState

func (o *DeploymentMachine) SetRegistrationState(v RegistrationState)

SetRegistrationState gets a reference to the given NullableRegistrationState and assigns it to the RegistrationState field.

func (*DeploymentMachine) SetRegistrationStateNil

func (o *DeploymentMachine) SetRegistrationStateNil()

SetRegistrationStateNil sets the value for RegistrationState to be an explicit nil

func (*DeploymentMachine) SetSessionCount

func (o *DeploymentMachine) SetSessionCount(v int32)

SetSessionCount gets a reference to the given NullableInt32 and assigns it to the SessionCount field.

func (*DeploymentMachine) SetSessionCountNil

func (o *DeploymentMachine) SetSessionCountNil()

SetSessionCountNil sets the value for SessionCount to be an explicit nil

func (*DeploymentMachine) SetSessionState

func (o *DeploymentMachine) SetSessionState(v SessionState)

SetSessionState gets a reference to the given NullableSessionState and assigns it to the SessionState field.

func (*DeploymentMachine) SetSessionStateNil

func (o *DeploymentMachine) SetSessionStateNil()

SetSessionStateNil sets the value for SessionState to be an explicit nil

func (*DeploymentMachine) SetTaskId

func (o *DeploymentMachine) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*DeploymentMachine) SetTaskIdNil

func (o *DeploymentMachine) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*DeploymentMachine) SetTaskType

func (o *DeploymentMachine) SetTaskType(v TaskType)

SetTaskType gets a reference to the given NullableTaskType and assigns it to the TaskType field.

func (*DeploymentMachine) SetTaskTypeNil

func (o *DeploymentMachine) SetTaskTypeNil()

SetTaskTypeNil sets the value for TaskType to be an explicit nil

func (DeploymentMachine) ToMap

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

func (*DeploymentMachine) UnsetBrokerDeliveryGroupId

func (o *DeploymentMachine) UnsetBrokerDeliveryGroupId()

UnsetBrokerDeliveryGroupId ensures that no value is present for BrokerDeliveryGroupId, not even an explicit nil

func (*DeploymentMachine) UnsetBrokerMachineCatalogId

func (o *DeploymentMachine) UnsetBrokerMachineCatalogId()

UnsetBrokerMachineCatalogId ensures that no value is present for BrokerMachineCatalogId, not even an explicit nil

func (*DeploymentMachine) UnsetBrokerMachineId

func (o *DeploymentMachine) UnsetBrokerMachineId()

UnsetBrokerMachineId ensures that no value is present for BrokerMachineId, not even an explicit nil

func (*DeploymentMachine) UnsetConnectionId

func (o *DeploymentMachine) UnsetConnectionId()

UnsetConnectionId ensures that no value is present for ConnectionId, not even an explicit nil

func (*DeploymentMachine) UnsetDeploymentId

func (o *DeploymentMachine) UnsetDeploymentId()

UnsetDeploymentId ensures that no value is present for DeploymentId, not even an explicit nil

func (*DeploymentMachine) UnsetImageId

func (o *DeploymentMachine) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

func (*DeploymentMachine) UnsetMachineId

func (o *DeploymentMachine) UnsetMachineId()

UnsetMachineId ensures that no value is present for MachineId, not even an explicit nil

func (*DeploymentMachine) UnsetMachineName

func (o *DeploymentMachine) UnsetMachineName()

UnsetMachineName ensures that no value is present for MachineName, not even an explicit nil

func (*DeploymentMachine) UnsetMaintenanceMode

func (o *DeploymentMachine) UnsetMaintenanceMode()

UnsetMaintenanceMode ensures that no value is present for MaintenanceMode, not even an explicit nil

func (*DeploymentMachine) UnsetRegistrationState

func (o *DeploymentMachine) UnsetRegistrationState()

UnsetRegistrationState ensures that no value is present for RegistrationState, not even an explicit nil

func (*DeploymentMachine) UnsetSessionCount

func (o *DeploymentMachine) UnsetSessionCount()

UnsetSessionCount ensures that no value is present for SessionCount, not even an explicit nil

func (*DeploymentMachine) UnsetSessionState

func (o *DeploymentMachine) UnsetSessionState()

UnsetSessionState ensures that no value is present for SessionState, not even an explicit nil

func (*DeploymentMachine) UnsetTaskId

func (o *DeploymentMachine) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

func (*DeploymentMachine) UnsetTaskType

func (o *DeploymentMachine) UnsetTaskType()

UnsetTaskType ensures that no value is present for TaskType, not even an explicit nil

type DeploymentMachines

type DeploymentMachines struct {
	// Enumerable of HostingUnit
	Items []AwsEdcDeploymentMachine `json:"items,omitempty"`
}

DeploymentMachines struct for DeploymentMachines

func NewDeploymentMachines

func NewDeploymentMachines() *DeploymentMachines

NewDeploymentMachines instantiates a new DeploymentMachines 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 NewDeploymentMachinesWithDefaults

func NewDeploymentMachinesWithDefaults() *DeploymentMachines

NewDeploymentMachinesWithDefaults instantiates a new DeploymentMachines 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 (*DeploymentMachines) GetItems

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentMachines) GetItemsOk

func (o *DeploymentMachines) GetItemsOk() ([]AwsEdcDeploymentMachine, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentMachines) HasItems

func (o *DeploymentMachines) HasItems() bool

HasItems returns a boolean if a field has been set.

func (DeploymentMachines) MarshalJSON

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

func (*DeploymentMachines) SetItems

SetItems gets a reference to the given []AwsEdcDeploymentMachine and assigns it to the Items field.

func (DeploymentMachines) ToMap

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

type DeploymentQCSAddMachineAsyncRequest

type DeploymentQCSAddMachineAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSAddMachineAsyncRequest) Body

Configuration of machine

func (DeploymentQCSAddMachineAsyncRequest) CitrixTransactionId

func (r DeploymentQCSAddMachineAsyncRequest) CitrixTransactionId(citrixTransactionId string) DeploymentQCSAddMachineAsyncRequest

The Transaction Id.

func (DeploymentQCSAddMachineAsyncRequest) Execute

type DeploymentQCSDeleteDeploymentAsyncRequest

type DeploymentQCSDeleteDeploymentAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSDeleteDeploymentAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSDeleteDeploymentAsyncRequest) Execute

func (DeploymentQCSDeleteDeploymentAsyncRequest) ForceDelete

Force delete deployment

type DeploymentQCSGetDeploymentAsyncRequest

type DeploymentQCSGetDeploymentAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSGetDeploymentAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSGetDeploymentAsyncRequest) Execute

type DeploymentQCSGetDeploymentsAsyncRequest

type DeploymentQCSGetDeploymentsAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSGetDeploymentsAsyncRequest) AccountType

Account Type

func (DeploymentQCSGetDeploymentsAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSGetDeploymentsAsyncRequest) Execute

func (DeploymentQCSGetDeploymentsAsyncRequest) IncludeVdas

Indicates if the deployment VDAs should be included in the response

type DeploymentQCSInitiateDeleteDeploymentAsyncRequest

type DeploymentQCSInitiateDeleteDeploymentAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSInitiateDeleteDeploymentAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSInitiateDeleteDeploymentAsyncRequest) DeploymentIdInitiateDeleteBody

Deployment AD credentials

func (DeploymentQCSInitiateDeleteDeploymentAsyncRequest) Execute

func (DeploymentQCSInitiateDeleteDeploymentAsyncRequest) ForceDelete

Force delete deployment

type DeploymentQCSInitiateDeploymentAsyncRequest

type DeploymentQCSInitiateDeploymentAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSInitiateDeploymentAsyncRequest) Body

Deployment configuration

func (DeploymentQCSInitiateDeploymentAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSInitiateDeploymentAsyncRequest) Execute

type DeploymentQCSInitiateRemoveMachineAsyncRequest

type DeploymentQCSInitiateRemoveMachineAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSInitiateRemoveMachineAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSInitiateRemoveMachineAsyncRequest) Execute

func (DeploymentQCSInitiateRemoveMachineAsyncRequest) ForceDelete

Force delete machine

func (DeploymentQCSInitiateRemoveMachineAsyncRequest) MachineIdInitiateDeleteBody

Active Directory credentials for the machine

type DeploymentQCSPatchMachinesAsyncRequest

type DeploymentQCSPatchMachinesAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSPatchMachinesAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSPatchMachinesAsyncRequest) DeploymentIdMachinesBody

Machines to be modified to turn on or off maintenance mode

func (DeploymentQCSPatchMachinesAsyncRequest) Execute

type DeploymentQCSRemoveMachineAsyncRequest

type DeploymentQCSRemoveMachineAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSRemoveMachineAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSRemoveMachineAsyncRequest) Execute

func (DeploymentQCSRemoveMachineAsyncRequest) ForceDelete

Force delete machine

type DeploymentQCSRemoveMachinesAsyncRequest

type DeploymentQCSRemoveMachinesAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSRemoveMachinesAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSRemoveMachinesAsyncRequest) Execute

func (DeploymentQCSRemoveMachinesAsyncRequest) ForceDelete

Force delete machines

func (DeploymentQCSRemoveMachinesAsyncRequest) MachinesDeleteBody

Configuration object specifying which machines to delete

type DeploymentQCSRestartMachineAsyncRequest

type DeploymentQCSRestartMachineAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSRestartMachineAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSRestartMachineAsyncRequest) Execute

type DeploymentQCSSaveAsImageAsyncRequest

type DeploymentQCSSaveAsImageAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSSaveAsImageAsyncRequest) CitrixTransactionId

func (r DeploymentQCSSaveAsImageAsyncRequest) CitrixTransactionId(citrixTransactionId string) DeploymentQCSSaveAsImageAsyncRequest

The Transaction Id.

func (DeploymentQCSSaveAsImageAsyncRequest) Execute

func (DeploymentQCSSaveAsImageAsyncRequest) MachineIdSaveAsImageBody

func (r DeploymentQCSSaveAsImageAsyncRequest) MachineIdSaveAsImageBody(machineIdSaveAsImageBody MachineIdSaveAsImageBody) DeploymentQCSSaveAsImageAsyncRequest

configurations of the new image

type DeploymentQCSService

type DeploymentQCSService service

DeploymentQCSService DeploymentQCS service

func (*DeploymentQCSService) AddMachineAsync

func (a *DeploymentQCSService) AddMachineAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSAddMachineAsyncRequest

AddMachineAsync Adds machine to deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSAddMachineAsyncRequest

func (*DeploymentQCSService) AddMachineAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) DeleteDeploymentAsync

func (a *DeploymentQCSService) DeleteDeploymentAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSDeleteDeploymentAsyncRequest

DeleteDeploymentAsync Delete deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSDeleteDeploymentAsyncRequest

func (*DeploymentQCSService) DeleteDeploymentAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) GetDeploymentAsync

func (a *DeploymentQCSService) GetDeploymentAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSGetDeploymentAsyncRequest

GetDeploymentAsync Gets deployment with vdas

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSGetDeploymentAsyncRequest

func (*DeploymentQCSService) GetDeploymentAsyncExecute

Execute executes the request

@return AwsEdcDeployment

func (*DeploymentQCSService) GetDeploymentsAsync

func (a *DeploymentQCSService) GetDeploymentsAsync(ctx context.Context, customerId string) DeploymentQCSGetDeploymentsAsyncRequest

GetDeploymentsAsync Gets deployments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return DeploymentQCSGetDeploymentsAsyncRequest

func (*DeploymentQCSService) GetDeploymentsAsyncExecute

Execute executes the request

@return Deployments

func (*DeploymentQCSService) InitiateDeleteDeploymentAsync

func (a *DeploymentQCSService) InitiateDeleteDeploymentAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSInitiateDeleteDeploymentAsyncRequest

InitiateDeleteDeploymentAsync Initiate delete deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSInitiateDeleteDeploymentAsyncRequest

func (*DeploymentQCSService) InitiateDeleteDeploymentAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) InitiateDeploymentAsync

func (a *DeploymentQCSService) InitiateDeploymentAsync(ctx context.Context, customerId string) DeploymentQCSInitiateDeploymentAsyncRequest

InitiateDeploymentAsync Initiates deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@return DeploymentQCSInitiateDeploymentAsyncRequest

func (*DeploymentQCSService) InitiateDeploymentAsyncExecute

Execute executes the request

@return AwsEdcDeployment

func (*DeploymentQCSService) InitiateRemoveMachineAsync

func (a *DeploymentQCSService) InitiateRemoveMachineAsync(ctx context.Context, customerId string, deploymentId string, machineId string) DeploymentQCSInitiateRemoveMachineAsyncRequest

InitiateRemoveMachineAsync Initiate removal of machine from deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@param machineId ID of the machine
@return DeploymentQCSInitiateRemoveMachineAsyncRequest

func (*DeploymentQCSService) InitiateRemoveMachineAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) PatchMachinesAsync

func (a *DeploymentQCSService) PatchMachinesAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSPatchMachinesAsyncRequest

PatchMachinesAsync Turn on or off the deployment mode for deployment machines

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSPatchMachinesAsyncRequest

func (*DeploymentQCSService) PatchMachinesAsyncExecute

Execute executes the request

func (*DeploymentQCSService) RemoveMachineAsync

func (a *DeploymentQCSService) RemoveMachineAsync(ctx context.Context, customerId string, deploymentId string, machineId string) DeploymentQCSRemoveMachineAsyncRequest

RemoveMachineAsync Removes machine to deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@param machineId ID of the machine
@return DeploymentQCSRemoveMachineAsyncRequest

func (*DeploymentQCSService) RemoveMachineAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) RemoveMachinesAsync

func (a *DeploymentQCSService) RemoveMachinesAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSRemoveMachinesAsyncRequest

RemoveMachinesAsync Removes machines from deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSRemoveMachinesAsyncRequest

func (*DeploymentQCSService) RemoveMachinesAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) RestartMachineAsync

func (a *DeploymentQCSService) RestartMachineAsync(ctx context.Context, customerId string, deploymentId string, machineId string) DeploymentQCSRestartMachineAsyncRequest

RestartMachineAsync Restart a machine

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@param machineId ID of the machine
@return DeploymentQCSRestartMachineAsyncRequest

func (*DeploymentQCSService) RestartMachineAsyncExecute

Execute executes the request

func (*DeploymentQCSService) SaveAsImageAsync

func (a *DeploymentQCSService) SaveAsImageAsync(ctx context.Context, customerId string, deploymentId string, machineId string) DeploymentQCSSaveAsImageAsyncRequest

SaveAsImageAsync Save image to account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@param machineId ID of the image builder machine
@return DeploymentQCSSaveAsImageAsyncRequest

func (*DeploymentQCSService) SaveAsImageAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) UpdateDeploymentImageAsync

func (a *DeploymentQCSService) UpdateDeploymentImageAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSUpdateDeploymentImageAsyncRequest

UpdateDeploymentImageAsync Update image for a deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSUpdateDeploymentImageAsyncRequest

func (*DeploymentQCSService) UpdateDeploymentImageAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) UpdateDeploymentPropertiesAsync

func (a *DeploymentQCSService) UpdateDeploymentPropertiesAsync(ctx context.Context, customerId string, deploymentId string) DeploymentQCSUpdateDeploymentPropertiesAsyncRequest

UpdateDeploymentPropertiesAsync Updates deployment properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@return DeploymentQCSUpdateDeploymentPropertiesAsyncRequest

func (*DeploymentQCSService) UpdateDeploymentPropertiesAsyncExecute

Execute executes the request

@return DeploymentTask

func (*DeploymentQCSService) UpdateMachineAsync

func (a *DeploymentQCSService) UpdateMachineAsync(ctx context.Context, customerId string, deploymentId string, machineId string) DeploymentQCSUpdateMachineAsyncRequest

UpdateMachineAsync Updates machine in deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param deploymentId ID of the deployment
@param machineId ID of the machine
@return DeploymentQCSUpdateMachineAsyncRequest

func (*DeploymentQCSService) UpdateMachineAsyncExecute

Execute executes the request

@return DeploymentTask

type DeploymentQCSUpdateDeploymentImageAsyncRequest

type DeploymentQCSUpdateDeploymentImageAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSUpdateDeploymentImageAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSUpdateDeploymentImageAsyncRequest) Execute

func (DeploymentQCSUpdateDeploymentImageAsyncRequest) ImageUpdateBody

Details of the new image

type DeploymentQCSUpdateDeploymentPropertiesAsyncRequest

type DeploymentQCSUpdateDeploymentPropertiesAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSUpdateDeploymentPropertiesAsyncRequest) Body

Deployment properties configuration

func (DeploymentQCSUpdateDeploymentPropertiesAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSUpdateDeploymentPropertiesAsyncRequest) Execute

type DeploymentQCSUpdateMachineAsyncRequest

type DeploymentQCSUpdateMachineAsyncRequest struct {
	ApiService *DeploymentQCSService
	// contains filtered or unexported fields
}

func (DeploymentQCSUpdateMachineAsyncRequest) Body

Configuration of machine

func (DeploymentQCSUpdateMachineAsyncRequest) CitrixTransactionId

The Transaction Id.

func (DeploymentQCSUpdateMachineAsyncRequest) Execute

type DeploymentScaleSettings

type DeploymentScaleSettings struct {
	// Indicates whether the scale settings are enabled for the deployment
	AutoScaleEnabled NullableBool `json:"autoScaleEnabled,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session disconnects outside peak hours.
	OffPeakDisconnectTimeoutMinutes NullableInt32 `json:"offPeakDisconnectTimeoutMinutes,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session ends outside peak hours.
	OffPeakLogOffTimeoutMinutes NullableInt32 `json:"offPeakLogOffTimeoutMinutes,omitempty"`
	// Specifies the time in minutes after which an idle session  belonging to the delivery group is disconnected during off-peak time.
	SessionIdleTimeoutMinutes NullableInt32 `json:"sessionIdleTimeoutMinutes,omitempty"`
	// The percentage of machines in the delivery group that should be  kept available in an idle state outside peak hours.
	OffPeakBufferSizePercent NullableInt32 `json:"offPeakBufferSizePercent,omitempty"`
}

DeploymentScaleSettings Power management scale settings

func NewDeploymentScaleSettings

func NewDeploymentScaleSettings() *DeploymentScaleSettings

NewDeploymentScaleSettings instantiates a new DeploymentScaleSettings 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 NewDeploymentScaleSettingsWithDefaults

func NewDeploymentScaleSettingsWithDefaults() *DeploymentScaleSettings

NewDeploymentScaleSettingsWithDefaults instantiates a new DeploymentScaleSettings 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 (*DeploymentScaleSettings) GetAutoScaleEnabled

func (o *DeploymentScaleSettings) GetAutoScaleEnabled() bool

GetAutoScaleEnabled returns the AutoScaleEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentScaleSettings) GetAutoScaleEnabledOk

func (o *DeploymentScaleSettings) GetAutoScaleEnabledOk() (*bool, bool)

GetAutoScaleEnabledOk returns a tuple with the AutoScaleEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentScaleSettings) GetOffPeakBufferSizePercent

func (o *DeploymentScaleSettings) GetOffPeakBufferSizePercent() int32

GetOffPeakBufferSizePercent returns the OffPeakBufferSizePercent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentScaleSettings) GetOffPeakBufferSizePercentOk

func (o *DeploymentScaleSettings) GetOffPeakBufferSizePercentOk() (*int32, bool)

GetOffPeakBufferSizePercentOk returns a tuple with the OffPeakBufferSizePercent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentScaleSettings) GetOffPeakDisconnectTimeoutMinutes

func (o *DeploymentScaleSettings) GetOffPeakDisconnectTimeoutMinutes() int32

GetOffPeakDisconnectTimeoutMinutes returns the OffPeakDisconnectTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentScaleSettings) GetOffPeakDisconnectTimeoutMinutesOk

func (o *DeploymentScaleSettings) GetOffPeakDisconnectTimeoutMinutesOk() (*int32, bool)

GetOffPeakDisconnectTimeoutMinutesOk returns a tuple with the OffPeakDisconnectTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentScaleSettings) GetOffPeakLogOffTimeoutMinutes

func (o *DeploymentScaleSettings) GetOffPeakLogOffTimeoutMinutes() int32

GetOffPeakLogOffTimeoutMinutes returns the OffPeakLogOffTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentScaleSettings) GetOffPeakLogOffTimeoutMinutesOk

func (o *DeploymentScaleSettings) GetOffPeakLogOffTimeoutMinutesOk() (*int32, bool)

GetOffPeakLogOffTimeoutMinutesOk returns a tuple with the OffPeakLogOffTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentScaleSettings) GetSessionIdleTimeoutMinutes

func (o *DeploymentScaleSettings) GetSessionIdleTimeoutMinutes() int32

GetSessionIdleTimeoutMinutes returns the SessionIdleTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentScaleSettings) GetSessionIdleTimeoutMinutesOk

func (o *DeploymentScaleSettings) GetSessionIdleTimeoutMinutesOk() (*int32, bool)

GetSessionIdleTimeoutMinutesOk returns a tuple with the SessionIdleTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentScaleSettings) HasAutoScaleEnabled

func (o *DeploymentScaleSettings) HasAutoScaleEnabled() bool

HasAutoScaleEnabled returns a boolean if a field has been set.

func (*DeploymentScaleSettings) HasOffPeakBufferSizePercent

func (o *DeploymentScaleSettings) HasOffPeakBufferSizePercent() bool

HasOffPeakBufferSizePercent returns a boolean if a field has been set.

func (*DeploymentScaleSettings) HasOffPeakDisconnectTimeoutMinutes

func (o *DeploymentScaleSettings) HasOffPeakDisconnectTimeoutMinutes() bool

HasOffPeakDisconnectTimeoutMinutes returns a boolean if a field has been set.

func (*DeploymentScaleSettings) HasOffPeakLogOffTimeoutMinutes

func (o *DeploymentScaleSettings) HasOffPeakLogOffTimeoutMinutes() bool

HasOffPeakLogOffTimeoutMinutes returns a boolean if a field has been set.

func (*DeploymentScaleSettings) HasSessionIdleTimeoutMinutes

func (o *DeploymentScaleSettings) HasSessionIdleTimeoutMinutes() bool

HasSessionIdleTimeoutMinutes returns a boolean if a field has been set.

func (DeploymentScaleSettings) MarshalJSON

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

func (*DeploymentScaleSettings) SetAutoScaleEnabled

func (o *DeploymentScaleSettings) SetAutoScaleEnabled(v bool)

SetAutoScaleEnabled gets a reference to the given NullableBool and assigns it to the AutoScaleEnabled field.

func (*DeploymentScaleSettings) SetAutoScaleEnabledNil

func (o *DeploymentScaleSettings) SetAutoScaleEnabledNil()

SetAutoScaleEnabledNil sets the value for AutoScaleEnabled to be an explicit nil

func (*DeploymentScaleSettings) SetOffPeakBufferSizePercent

func (o *DeploymentScaleSettings) SetOffPeakBufferSizePercent(v int32)

SetOffPeakBufferSizePercent gets a reference to the given NullableInt32 and assigns it to the OffPeakBufferSizePercent field.

func (*DeploymentScaleSettings) SetOffPeakBufferSizePercentNil

func (o *DeploymentScaleSettings) SetOffPeakBufferSizePercentNil()

SetOffPeakBufferSizePercentNil sets the value for OffPeakBufferSizePercent to be an explicit nil

func (*DeploymentScaleSettings) SetOffPeakDisconnectTimeoutMinutes

func (o *DeploymentScaleSettings) SetOffPeakDisconnectTimeoutMinutes(v int32)

SetOffPeakDisconnectTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakDisconnectTimeoutMinutes field.

func (*DeploymentScaleSettings) SetOffPeakDisconnectTimeoutMinutesNil

func (o *DeploymentScaleSettings) SetOffPeakDisconnectTimeoutMinutesNil()

SetOffPeakDisconnectTimeoutMinutesNil sets the value for OffPeakDisconnectTimeoutMinutes to be an explicit nil

func (*DeploymentScaleSettings) SetOffPeakLogOffTimeoutMinutes

func (o *DeploymentScaleSettings) SetOffPeakLogOffTimeoutMinutes(v int32)

SetOffPeakLogOffTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakLogOffTimeoutMinutes field.

func (*DeploymentScaleSettings) SetOffPeakLogOffTimeoutMinutesNil

func (o *DeploymentScaleSettings) SetOffPeakLogOffTimeoutMinutesNil()

SetOffPeakLogOffTimeoutMinutesNil sets the value for OffPeakLogOffTimeoutMinutes to be an explicit nil

func (*DeploymentScaleSettings) SetSessionIdleTimeoutMinutes

func (o *DeploymentScaleSettings) SetSessionIdleTimeoutMinutes(v int32)

SetSessionIdleTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the SessionIdleTimeoutMinutes field.

func (*DeploymentScaleSettings) SetSessionIdleTimeoutMinutesNil

func (o *DeploymentScaleSettings) SetSessionIdleTimeoutMinutesNil()

SetSessionIdleTimeoutMinutesNil sets the value for SessionIdleTimeoutMinutes to be an explicit nil

func (DeploymentScaleSettings) ToMap

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

func (*DeploymentScaleSettings) UnsetAutoScaleEnabled

func (o *DeploymentScaleSettings) UnsetAutoScaleEnabled()

UnsetAutoScaleEnabled ensures that no value is present for AutoScaleEnabled, not even an explicit nil

func (*DeploymentScaleSettings) UnsetOffPeakBufferSizePercent

func (o *DeploymentScaleSettings) UnsetOffPeakBufferSizePercent()

UnsetOffPeakBufferSizePercent ensures that no value is present for OffPeakBufferSizePercent, not even an explicit nil

func (*DeploymentScaleSettings) UnsetOffPeakDisconnectTimeoutMinutes

func (o *DeploymentScaleSettings) UnsetOffPeakDisconnectTimeoutMinutes()

UnsetOffPeakDisconnectTimeoutMinutes ensures that no value is present for OffPeakDisconnectTimeoutMinutes, not even an explicit nil

func (*DeploymentScaleSettings) UnsetOffPeakLogOffTimeoutMinutes

func (o *DeploymentScaleSettings) UnsetOffPeakLogOffTimeoutMinutes()

UnsetOffPeakLogOffTimeoutMinutes ensures that no value is present for OffPeakLogOffTimeoutMinutes, not even an explicit nil

func (*DeploymentScaleSettings) UnsetSessionIdleTimeoutMinutes

func (o *DeploymentScaleSettings) UnsetSessionIdleTimeoutMinutes()

UnsetSessionIdleTimeoutMinutes ensures that no value is present for SessionIdleTimeoutMinutes, not even an explicit nil

type DeploymentState

type DeploymentState string

DeploymentState the model 'DeploymentState'

const (
	DEPLOYMENTSTATE_PENDING               DeploymentState = "PENDING"
	DEPLOYMENTSTATE_ACTIVE                DeploymentState = "ACTIVE"
	DEPLOYMENTSTATE_UPDATING              DeploymentState = "UPDATING"
	DEPLOYMENTSTATE_DELETING              DeploymentState = "DELETING"
	DEPLOYMENTSTATE_ERROR                 DeploymentState = "ERROR"
	DEPLOYMENTSTATE_DELETED               DeploymentState = "DELETED"
	DEPLOYMENTSTATE_ERROR_INVALID_ACCOUNT DeploymentState = "ERROR_INVALID_ACCOUNT"
	DEPLOYMENTSTATE_SYNCING_MACHINES      DeploymentState = "SYNCING_MACHINES"
)

List of DeploymentState

func NewDeploymentStateFromValue

func NewDeploymentStateFromValue(v string) (*DeploymentState, error)

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

func (DeploymentState) IsValid

func (v DeploymentState) IsValid() bool

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

func (DeploymentState) Ptr

Ptr returns reference to DeploymentState value

func (*DeploymentState) UnmarshalJSON

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

type DeploymentTask

type DeploymentTask struct {
	TaskBase
	Operation NullableDeploymentTaskOperationType `json:"operation,omitempty"`
	// Deployment Id this task is working on
	DeploymentId NullableString `json:"deploymentId,omitempty"`
}

DeploymentTask Deployment Task Configuration

func NewDeploymentTask

func NewDeploymentTask(taskType TaskType) *DeploymentTask

NewDeploymentTask instantiates a new DeploymentTask 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 NewDeploymentTaskWithDefaults

func NewDeploymentTaskWithDefaults() *DeploymentTask

NewDeploymentTaskWithDefaults instantiates a new DeploymentTask 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 (*DeploymentTask) GetDeploymentId

func (o *DeploymentTask) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentTask) GetDeploymentIdOk

func (o *DeploymentTask) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentTask) GetOperation

func (o *DeploymentTask) GetOperation() DeploymentTaskOperationType

GetOperation returns the Operation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentTask) GetOperationOk

func (o *DeploymentTask) GetOperationOk() (*DeploymentTaskOperationType, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentTask) HasDeploymentId

func (o *DeploymentTask) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*DeploymentTask) HasOperation

func (o *DeploymentTask) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (DeploymentTask) MarshalJSON

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

func (*DeploymentTask) SetDeploymentId

func (o *DeploymentTask) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given NullableString and assigns it to the DeploymentId field.

func (*DeploymentTask) SetDeploymentIdNil

func (o *DeploymentTask) SetDeploymentIdNil()

SetDeploymentIdNil sets the value for DeploymentId to be an explicit nil

func (*DeploymentTask) SetOperation

func (o *DeploymentTask) SetOperation(v DeploymentTaskOperationType)

SetOperation gets a reference to the given NullableDeploymentTaskOperationType and assigns it to the Operation field.

func (*DeploymentTask) SetOperationNil

func (o *DeploymentTask) SetOperationNil()

SetOperationNil sets the value for Operation to be an explicit nil

func (DeploymentTask) ToMap

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

func (*DeploymentTask) UnsetDeploymentId

func (o *DeploymentTask) UnsetDeploymentId()

UnsetDeploymentId ensures that no value is present for DeploymentId, not even an explicit nil

func (*DeploymentTask) UnsetOperation

func (o *DeploymentTask) UnsetOperation()

UnsetOperation ensures that no value is present for Operation, not even an explicit nil

type DeploymentTaskOperationType

type DeploymentTaskOperationType string

DeploymentTaskOperationType Deployment tasks

const (
	DEPLOYMENTTASKOPERATIONTYPE_CREATE_DEPLOYMENT            DeploymentTaskOperationType = "CREATE_DEPLOYMENT"
	DEPLOYMENTTASKOPERATIONTYPE_ADD_MACHINES                 DeploymentTaskOperationType = "ADD_MACHINES"
	DEPLOYMENTTASKOPERATIONTYPE_REMOVE_MACHINES              DeploymentTaskOperationType = "REMOVE_MACHINES"
	DEPLOYMENTTASKOPERATIONTYPE_UPDATE_MACHINES              DeploymentTaskOperationType = "UPDATE_MACHINES"
	DEPLOYMENTTASKOPERATIONTYPE_UPDATE_IMAGE                 DeploymentTaskOperationType = "UPDATE_IMAGE"
	DEPLOYMENTTASKOPERATIONTYPE_UPDATE_DEPLOYMENT_PROPERTIES DeploymentTaskOperationType = "UPDATE_DEPLOYMENT_PROPERTIES"
	DEPLOYMENTTASKOPERATIONTYPE_DELETE_DEPLOYMENT            DeploymentTaskOperationType = "DELETE_DEPLOYMENT"
	DEPLOYMENTTASKOPERATIONTYPE_UPDATE_DEPLOYMENT_IMAGE      DeploymentTaskOperationType = "UPDATE_DEPLOYMENT_IMAGE"
	DEPLOYMENTTASKOPERATIONTYPE_SAVE_AS_IMAGE                DeploymentTaskOperationType = "SAVE_AS_IMAGE"
	DEPLOYMENTTASKOPERATIONTYPE_SYNC_MACHINES                DeploymentTaskOperationType = "SYNC_MACHINES"
)

List of DeploymentTaskOperationType

func NewDeploymentTaskOperationTypeFromValue

func NewDeploymentTaskOperationTypeFromValue(v string) (*DeploymentTaskOperationType, error)

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

func (DeploymentTaskOperationType) IsValid

func (v DeploymentTaskOperationType) IsValid() bool

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

func (DeploymentTaskOperationType) Ptr

Ptr returns reference to DeploymentTaskOperationType value

func (*DeploymentTaskOperationType) UnmarshalJSON

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

type DeploymentUsers

type DeploymentUsers struct {
	Usernames []string `json:"usernames,omitempty"`
}

DeploymentUsers struct for DeploymentUsers

func NewDeploymentUsers

func NewDeploymentUsers() *DeploymentUsers

NewDeploymentUsers instantiates a new DeploymentUsers 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 NewDeploymentUsersWithDefaults

func NewDeploymentUsersWithDefaults() *DeploymentUsers

NewDeploymentUsersWithDefaults instantiates a new DeploymentUsers 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 (*DeploymentUsers) GetUsernames

func (o *DeploymentUsers) GetUsernames() []string

GetUsernames returns the Usernames field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentUsers) GetUsernamesOk

func (o *DeploymentUsers) GetUsernamesOk() ([]string, bool)

GetUsernamesOk returns a tuple with the Usernames field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentUsers) HasUsernames

func (o *DeploymentUsers) HasUsernames() bool

HasUsernames returns a boolean if a field has been set.

func (DeploymentUsers) MarshalJSON

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

func (*DeploymentUsers) SetUsernames

func (o *DeploymentUsers) SetUsernames(v []string)

SetUsernames gets a reference to the given []string and assigns it to the Usernames field.

func (DeploymentUsers) ToMap

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

type DeploymentWarning

type DeploymentWarning struct {
	WarningType *DeploymentWarningType `json:"warningType,omitempty"`
	// Id of the warning
	Id NullableString `json:"id,omitempty"`
	// The warning message
	Warning NullableString `json:"warning,omitempty"`
	// ID of the task the warning was created by
	TaskId NullableString `json:"taskId,omitempty"`
	// Indicates if the warning should be treated as an error
	IsError *bool `json:"isError,omitempty"`
	// Indicates if the warning message can be cleared out by the user
	IsDismissible *bool `json:"isDismissible,omitempty"`
	// ID of the transaction the warning was created by
	TransactionId NullableString `json:"transactionId,omitempty"`
}

DeploymentWarning A warning or error that is associated with the deployment

func NewDeploymentWarning

func NewDeploymentWarning() *DeploymentWarning

NewDeploymentWarning instantiates a new DeploymentWarning 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 NewDeploymentWarningWithDefaults

func NewDeploymentWarningWithDefaults() *DeploymentWarning

NewDeploymentWarningWithDefaults instantiates a new DeploymentWarning 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 (*DeploymentWarning) GetId

func (o *DeploymentWarning) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentWarning) GetIdOk

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentWarning) GetIsDismissible

func (o *DeploymentWarning) GetIsDismissible() bool

GetIsDismissible returns the IsDismissible field value if set, zero value otherwise.

func (*DeploymentWarning) GetIsDismissibleOk

func (o *DeploymentWarning) GetIsDismissibleOk() (*bool, bool)

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

func (*DeploymentWarning) GetIsError

func (o *DeploymentWarning) GetIsError() bool

GetIsError returns the IsError field value if set, zero value otherwise.

func (*DeploymentWarning) GetIsErrorOk

func (o *DeploymentWarning) GetIsErrorOk() (*bool, bool)

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

func (*DeploymentWarning) GetTaskId

func (o *DeploymentWarning) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentWarning) GetTaskIdOk

func (o *DeploymentWarning) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentWarning) GetTransactionId

func (o *DeploymentWarning) GetTransactionId() string

GetTransactionId returns the TransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentWarning) GetTransactionIdOk

func (o *DeploymentWarning) GetTransactionIdOk() (*string, bool)

GetTransactionIdOk returns a tuple with the TransactionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentWarning) GetWarning

func (o *DeploymentWarning) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DeploymentWarning) GetWarningOk

func (o *DeploymentWarning) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeploymentWarning) GetWarningType

func (o *DeploymentWarning) GetWarningType() DeploymentWarningType

GetWarningType returns the WarningType field value if set, zero value otherwise.

func (*DeploymentWarning) GetWarningTypeOk

func (o *DeploymentWarning) GetWarningTypeOk() (*DeploymentWarningType, bool)

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

func (*DeploymentWarning) HasId

func (o *DeploymentWarning) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeploymentWarning) HasIsDismissible

func (o *DeploymentWarning) HasIsDismissible() bool

HasIsDismissible returns a boolean if a field has been set.

func (*DeploymentWarning) HasIsError

func (o *DeploymentWarning) HasIsError() bool

HasIsError returns a boolean if a field has been set.

func (*DeploymentWarning) HasTaskId

func (o *DeploymentWarning) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*DeploymentWarning) HasTransactionId

func (o *DeploymentWarning) HasTransactionId() bool

HasTransactionId returns a boolean if a field has been set.

func (*DeploymentWarning) HasWarning

func (o *DeploymentWarning) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (*DeploymentWarning) HasWarningType

func (o *DeploymentWarning) HasWarningType() bool

HasWarningType returns a boolean if a field has been set.

func (DeploymentWarning) MarshalJSON

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

func (*DeploymentWarning) SetId

func (o *DeploymentWarning) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*DeploymentWarning) SetIdNil

func (o *DeploymentWarning) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*DeploymentWarning) SetIsDismissible

func (o *DeploymentWarning) SetIsDismissible(v bool)

SetIsDismissible gets a reference to the given bool and assigns it to the IsDismissible field.

func (*DeploymentWarning) SetIsError

func (o *DeploymentWarning) SetIsError(v bool)

SetIsError gets a reference to the given bool and assigns it to the IsError field.

func (*DeploymentWarning) SetTaskId

func (o *DeploymentWarning) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*DeploymentWarning) SetTaskIdNil

func (o *DeploymentWarning) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*DeploymentWarning) SetTransactionId

func (o *DeploymentWarning) SetTransactionId(v string)

SetTransactionId gets a reference to the given NullableString and assigns it to the TransactionId field.

func (*DeploymentWarning) SetTransactionIdNil

func (o *DeploymentWarning) SetTransactionIdNil()

SetTransactionIdNil sets the value for TransactionId to be an explicit nil

func (*DeploymentWarning) SetWarning

func (o *DeploymentWarning) SetWarning(v string)

SetWarning gets a reference to the given NullableString and assigns it to the Warning field.

func (*DeploymentWarning) SetWarningNil

func (o *DeploymentWarning) SetWarningNil()

SetWarningNil sets the value for Warning to be an explicit nil

func (*DeploymentWarning) SetWarningType

func (o *DeploymentWarning) SetWarningType(v DeploymentWarningType)

SetWarningType gets a reference to the given DeploymentWarningType and assigns it to the WarningType field.

func (DeploymentWarning) ToMap

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

func (*DeploymentWarning) UnsetId

func (o *DeploymentWarning) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*DeploymentWarning) UnsetTaskId

func (o *DeploymentWarning) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

func (*DeploymentWarning) UnsetTransactionId

func (o *DeploymentWarning) UnsetTransactionId()

UnsetTransactionId ensures that no value is present for TransactionId, not even an explicit nil

func (*DeploymentWarning) UnsetWarning

func (o *DeploymentWarning) UnsetWarning()

UnsetWarning ensures that no value is present for Warning, not even an explicit nil

type DeploymentWarningType

type DeploymentWarningType string

DeploymentWarningType Types of warnings / errors that can occur in a deployment

const (
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_FAILED_TO_CREATE                   DeploymentWarningType = "AwsEdcDeploymentMachineFailedToCreate"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_EXISTS_FOR_USER                    DeploymentWarningType = "AwsEdcDeploymentMachineExistsForUser"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_FAILED_TO_DELETE                   DeploymentWarningType = "AwsEdcDeploymentMachineFailedToDelete"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_FAILED_TO_DELETE_GENERIC           DeploymentWarningType = "AwsEdcDeploymentMachineFailedToDeleteGeneric"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_FAILED_TO_DELETE_MACHINE_NOT_FOUND DeploymentWarningType = "AwsEdcDeploymentMachineFailedToDeleteMachineNotFound"
	DEPLOYMENTWARNINGTYPE_DEPLOYMENT_ADD_MACHINES_FAILED_GENERIC                        DeploymentWarningType = "DeploymentAddMachinesFailedGeneric"
	DEPLOYMENTWARNINGTYPE_INSUFFICIENT_WORKSPACE_BUNDLE_QUOTA                           DeploymentWarningType = "InsufficientWorkspaceBundleQuota"
	DEPLOYMENTWARNINGTYPE_INSUFFICIENT_WORKSPACE_SERVICE_QUOTA                          DeploymentWarningType = "InsufficientWorkspaceServiceQuota"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_FAILED_TO_DELETE                           DeploymentWarningType = "AwsEdcDeploymentFailedToDelete"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_MACHINE_FAILED_TO_UPDATE                   DeploymentWarningType = "AwsEdcDeploymentMachineFailedToUpdate"
	DEPLOYMENTWARNINGTYPE_DEPLOYMENT_ADD_MACHINES_PARTIAL_SUCCESS                       DeploymentWarningType = "DeploymentAddMachinesPartialSuccess"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_FAILED_TO_UPDATE_RUNNING_MODE              DeploymentWarningType = "AwsEdcDeploymentFailedToUpdateRunningMode"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_DEPLOYMENT_BUNDLE_FAILED_TO_UPDATE_IMAGE              DeploymentWarningType = "AwsEdcDeploymentBundleFailedToUpdateImage"
	DEPLOYMENTWARNINGTYPE_AWS_EDC_SAVE_MACHINE_AS_IMAGE_FAILED                          DeploymentWarningType = "AwsEdcSaveMachineAsImageFailed"
)

List of DeploymentWarningType

func NewDeploymentWarningTypeFromValue

func NewDeploymentWarningTypeFromValue(v string) (*DeploymentWarningType, error)

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

func (DeploymentWarningType) IsValid

func (v DeploymentWarningType) IsValid() bool

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

func (DeploymentWarningType) Ptr

Ptr returns reference to DeploymentWarningType value

func (*DeploymentWarningType) UnmarshalJSON

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

type Deployments

type Deployments struct {
	// Enumerable of Deployment
	Items []AwsEdcDeployment `json:"items,omitempty"`
}

Deployments Enumerable of Deployment

func NewDeployments

func NewDeployments() *Deployments

NewDeployments instantiates a new Deployments 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 NewDeploymentsWithDefaults

func NewDeploymentsWithDefaults() *Deployments

NewDeploymentsWithDefaults instantiates a new Deployments 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 (*Deployments) GetItems

func (o *Deployments) GetItems() []AwsEdcDeployment

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Deployments) GetItemsOk

func (o *Deployments) GetItemsOk() ([]AwsEdcDeployment, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Deployments) HasItems

func (o *Deployments) HasItems() bool

HasItems returns a boolean if a field has been set.

func (Deployments) MarshalJSON

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

func (*Deployments) SetItems

func (o *Deployments) SetItems(v []AwsEdcDeployment)

SetItems gets a reference to the given []AwsEdcDeployment and assigns it to the Items field.

func (Deployments) ToMap

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

type ErasureSwitch

type ErasureSwitch string

ErasureSwitch the model 'ErasureSwitch'

const (
	ERASURESWITCH_DRY_RUN ErasureSwitch = "DryRun"
	ERASURESWITCH_CONFIRM ErasureSwitch = "Confirm"
)

List of ErasureSwitch

func NewErasureSwitchFromValue

func NewErasureSwitchFromValue(v string) (*ErasureSwitch, error)

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

func (ErasureSwitch) IsValid

func (v ErasureSwitch) IsValid() bool

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

func (ErasureSwitch) Ptr

func (v ErasureSwitch) Ptr() *ErasureSwitch

Ptr returns reference to ErasureSwitch value

func (*ErasureSwitch) UnmarshalJSON

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

type ErrorResponse

type ErrorResponse struct {
	Type       NullableString            `json:"type,omitempty"`
	Detail     NullableString            `json:"detail,omitempty"`
	Parameters []ErrorResponseParameters `json:"parameters,omitempty"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

func NewErrorResponse() *ErrorResponse

NewErrorResponse instantiates a new ErrorResponse 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 NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse 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 (*ErrorResponse) GetDetail

func (o *ErrorResponse) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ErrorResponse) GetDetailOk

func (o *ErrorResponse) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ErrorResponse) GetParameters

func (o *ErrorResponse) GetParameters() []ErrorResponseParameters

GetParameters returns the Parameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ErrorResponse) GetParametersOk

func (o *ErrorResponse) GetParametersOk() ([]ErrorResponseParameters, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ErrorResponse) GetType

func (o *ErrorResponse) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ErrorResponse) GetTypeOk

func (o *ErrorResponse) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ErrorResponse) HasDetail

func (o *ErrorResponse) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ErrorResponse) HasParameters

func (o *ErrorResponse) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*ErrorResponse) HasType

func (o *ErrorResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetDetail

func (o *ErrorResponse) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ErrorResponse) SetDetailNil

func (o *ErrorResponse) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ErrorResponse) SetParameters

func (o *ErrorResponse) SetParameters(v []ErrorResponseParameters)

SetParameters gets a reference to the given []ErrorResponseParameters and assigns it to the Parameters field.

func (*ErrorResponse) SetType

func (o *ErrorResponse) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*ErrorResponse) SetTypeNil

func (o *ErrorResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ErrorResponse) ToMap

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

func (*ErrorResponse) UnsetDetail

func (o *ErrorResponse) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ErrorResponse) UnsetType

func (o *ErrorResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ErrorResponseParameters

type ErrorResponseParameters struct {
	Key   NullableString `json:"key,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

ErrorResponseParameters struct for ErrorResponseParameters

func NewErrorResponseParameters

func NewErrorResponseParameters() *ErrorResponseParameters

NewErrorResponseParameters instantiates a new ErrorResponseParameters 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 NewErrorResponseParametersWithDefaults

func NewErrorResponseParametersWithDefaults() *ErrorResponseParameters

NewErrorResponseParametersWithDefaults instantiates a new ErrorResponseParameters 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 (*ErrorResponseParameters) GetKey

func (o *ErrorResponseParameters) GetKey() string

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ErrorResponseParameters) GetKeyOk

func (o *ErrorResponseParameters) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ErrorResponseParameters) GetValue

func (o *ErrorResponseParameters) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ErrorResponseParameters) GetValueOk

func (o *ErrorResponseParameters) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ErrorResponseParameters) HasKey

func (o *ErrorResponseParameters) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ErrorResponseParameters) HasValue

func (o *ErrorResponseParameters) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ErrorResponseParameters) MarshalJSON

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

func (*ErrorResponseParameters) SetKey

func (o *ErrorResponseParameters) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field.

func (*ErrorResponseParameters) SetKeyNil

func (o *ErrorResponseParameters) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*ErrorResponseParameters) SetValue

func (o *ErrorResponseParameters) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*ErrorResponseParameters) SetValueNil

func (o *ErrorResponseParameters) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (ErrorResponseParameters) ToMap

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

func (*ErrorResponseParameters) UnsetKey

func (o *ErrorResponseParameters) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*ErrorResponseParameters) UnsetValue

func (o *ErrorResponseParameters) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type Expression

type Expression struct {
	AwsResourceTagCitrixManaged NullableString `json:"aws:ResourceTag/CitrixManaged,omitempty"`
	IamPassedToService          NullableString `json:"iam:PassedToService,omitempty"`
}

Expression struct for Expression

func NewExpression

func NewExpression() *Expression

NewExpression instantiates a new Expression 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 NewExpressionWithDefaults

func NewExpressionWithDefaults() *Expression

NewExpressionWithDefaults instantiates a new Expression 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 (*Expression) GetAwsResourceTagCitrixManaged

func (o *Expression) GetAwsResourceTagCitrixManaged() string

GetAwsResourceTagCitrixManaged returns the AwsResourceTagCitrixManaged field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Expression) GetAwsResourceTagCitrixManagedOk

func (o *Expression) GetAwsResourceTagCitrixManagedOk() (*string, bool)

GetAwsResourceTagCitrixManagedOk returns a tuple with the AwsResourceTagCitrixManaged field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Expression) GetIamPassedToService

func (o *Expression) GetIamPassedToService() string

GetIamPassedToService returns the IamPassedToService field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Expression) GetIamPassedToServiceOk

func (o *Expression) GetIamPassedToServiceOk() (*string, bool)

GetIamPassedToServiceOk returns a tuple with the IamPassedToService field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Expression) HasAwsResourceTagCitrixManaged

func (o *Expression) HasAwsResourceTagCitrixManaged() bool

HasAwsResourceTagCitrixManaged returns a boolean if a field has been set.

func (*Expression) HasIamPassedToService

func (o *Expression) HasIamPassedToService() bool

HasIamPassedToService returns a boolean if a field has been set.

func (Expression) MarshalJSON

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

func (*Expression) SetAwsResourceTagCitrixManaged

func (o *Expression) SetAwsResourceTagCitrixManaged(v string)

SetAwsResourceTagCitrixManaged gets a reference to the given NullableString and assigns it to the AwsResourceTagCitrixManaged field.

func (*Expression) SetAwsResourceTagCitrixManagedNil

func (o *Expression) SetAwsResourceTagCitrixManagedNil()

SetAwsResourceTagCitrixManagedNil sets the value for AwsResourceTagCitrixManaged to be an explicit nil

func (*Expression) SetIamPassedToService

func (o *Expression) SetIamPassedToService(v string)

SetIamPassedToService gets a reference to the given NullableString and assigns it to the IamPassedToService field.

func (*Expression) SetIamPassedToServiceNil

func (o *Expression) SetIamPassedToServiceNil()

SetIamPassedToServiceNil sets the value for IamPassedToService to be an explicit nil

func (Expression) ToMap

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

func (*Expression) UnsetAwsResourceTagCitrixManaged

func (o *Expression) UnsetAwsResourceTagCitrixManaged()

UnsetAwsResourceTagCitrixManaged ensures that no value is present for AwsResourceTagCitrixManaged, not even an explicit nil

func (*Expression) UnsetIamPassedToService

func (o *Expression) UnsetIamPassedToService()

UnsetIamPassedToService ensures that no value is present for IamPassedToService, not even an explicit nil

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 GetTaskAsync200Response added in v1.0.0

type GetTaskAsync200Response struct {
	AccountTask            *AccountTask
	CommissionTask         *CommissionTask
	DeploymentTask         *DeploymentTask
	ResourceConnectionTask *ResourceConnectionTask
}

GetTaskAsync200Response - Base class for Tasks

func AccountTaskAsGetTaskAsync200Response added in v1.0.0

func AccountTaskAsGetTaskAsync200Response(v *AccountTask) GetTaskAsync200Response

AccountTaskAsGetTaskAsync200Response is a convenience function that returns AccountTask wrapped in GetTaskAsync200Response

func CommissionTaskAsGetTaskAsync200Response added in v1.0.0

func CommissionTaskAsGetTaskAsync200Response(v *CommissionTask) GetTaskAsync200Response

CommissionTaskAsGetTaskAsync200Response is a convenience function that returns CommissionTask wrapped in GetTaskAsync200Response

func DeploymentTaskAsGetTaskAsync200Response added in v1.0.0

func DeploymentTaskAsGetTaskAsync200Response(v *DeploymentTask) GetTaskAsync200Response

DeploymentTaskAsGetTaskAsync200Response is a convenience function that returns DeploymentTask wrapped in GetTaskAsync200Response

func ResourceConnectionTaskAsGetTaskAsync200Response added in v1.0.0

func ResourceConnectionTaskAsGetTaskAsync200Response(v *ResourceConnectionTask) GetTaskAsync200Response

ResourceConnectionTaskAsGetTaskAsync200Response is a convenience function that returns ResourceConnectionTask wrapped in GetTaskAsync200Response

func (*GetTaskAsync200Response) GetActualInstance added in v1.0.0

func (obj *GetTaskAsync200Response) GetActualInstance() interface{}

Get the actual instance

func (GetTaskAsync200Response) MarshalJSON added in v1.0.0

func (src GetTaskAsync200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetTaskAsync200Response) UnmarshalJSON added in v1.0.0

func (dst *GetTaskAsync200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Group

type Group struct {
	GroupId         NullableString               `json:"groupId,omitempty"`
	DisplayName     NullableString               `json:"displayName,omitempty"`
	OperationType   *GroupLicenseOperationType   `json:"operationType,omitempty"`
	OperationStatus *GroupLicenseOperationStatus `json:"operationStatus,omitempty"`
}

Group struct for Group

func NewGroup

func NewGroup() *Group

NewGroup instantiates a new Group 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 NewGroupWithDefaults

func NewGroupWithDefaults() *Group

NewGroupWithDefaults instantiates a new Group 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 (*Group) GetDisplayName

func (o *Group) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetDisplayNameOk

func (o *Group) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetGroupId

func (o *Group) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetGroupIdOk

func (o *Group) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetOperationStatus

func (o *Group) GetOperationStatus() GroupLicenseOperationStatus

GetOperationStatus returns the OperationStatus field value if set, zero value otherwise.

func (*Group) GetOperationStatusOk

func (o *Group) GetOperationStatusOk() (*GroupLicenseOperationStatus, bool)

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

func (*Group) GetOperationType

func (o *Group) GetOperationType() GroupLicenseOperationType

GetOperationType returns the OperationType field value if set, zero value otherwise.

func (*Group) GetOperationTypeOk

func (o *Group) GetOperationTypeOk() (*GroupLicenseOperationType, bool)

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

func (*Group) HasDisplayName

func (o *Group) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*Group) HasGroupId

func (o *Group) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*Group) HasOperationStatus

func (o *Group) HasOperationStatus() bool

HasOperationStatus returns a boolean if a field has been set.

func (*Group) HasOperationType

func (o *Group) HasOperationType() bool

HasOperationType returns a boolean if a field has been set.

func (Group) MarshalJSON

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

func (*Group) SetDisplayName

func (o *Group) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*Group) SetDisplayNameNil

func (o *Group) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*Group) SetGroupId

func (o *Group) SetGroupId(v string)

SetGroupId gets a reference to the given NullableString and assigns it to the GroupId field.

func (*Group) SetGroupIdNil

func (o *Group) SetGroupIdNil()

SetGroupIdNil sets the value for GroupId to be an explicit nil

func (*Group) SetOperationStatus

func (o *Group) SetOperationStatus(v GroupLicenseOperationStatus)

SetOperationStatus gets a reference to the given GroupLicenseOperationStatus and assigns it to the OperationStatus field.

func (*Group) SetOperationType

func (o *Group) SetOperationType(v GroupLicenseOperationType)

SetOperationType gets a reference to the given GroupLicenseOperationType and assigns it to the OperationType field.

func (Group) ToMap

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

func (*Group) UnsetDisplayName

func (o *Group) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*Group) UnsetGroupId

func (o *Group) UnsetGroupId()

UnsetGroupId ensures that no value is present for GroupId, not even an explicit nil

type GroupLicenseErrorDetailsResponse

type GroupLicenseErrorDetailsResponse struct {
	LicenseStatus []ResponseDetailsGroupLicenseAssignment `json:"licenseStatus,omitempty"`
}

GroupLicenseErrorDetailsResponse struct for GroupLicenseErrorDetailsResponse

func NewGroupLicenseErrorDetailsResponse

func NewGroupLicenseErrorDetailsResponse() *GroupLicenseErrorDetailsResponse

NewGroupLicenseErrorDetailsResponse instantiates a new GroupLicenseErrorDetailsResponse 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 NewGroupLicenseErrorDetailsResponseWithDefaults

func NewGroupLicenseErrorDetailsResponseWithDefaults() *GroupLicenseErrorDetailsResponse

NewGroupLicenseErrorDetailsResponseWithDefaults instantiates a new GroupLicenseErrorDetailsResponse 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 (*GroupLicenseErrorDetailsResponse) GetLicenseStatus

GetLicenseStatus returns the LicenseStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupLicenseErrorDetailsResponse) GetLicenseStatusOk

GetLicenseStatusOk returns a tuple with the LicenseStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupLicenseErrorDetailsResponse) HasLicenseStatus

func (o *GroupLicenseErrorDetailsResponse) HasLicenseStatus() bool

HasLicenseStatus returns a boolean if a field has been set.

func (GroupLicenseErrorDetailsResponse) MarshalJSON

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

func (*GroupLicenseErrorDetailsResponse) SetLicenseStatus

SetLicenseStatus gets a reference to the given []ResponseDetailsGroupLicenseAssignment and assigns it to the LicenseStatus field.

func (GroupLicenseErrorDetailsResponse) ToMap

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

type GroupLicenseOperationStatus

type GroupLicenseOperationStatus string

GroupLicenseOperationStatus Group License operation status DO NOT RENAME the enum values! They are stored in DB as strings.

const (
	GROUPLICENSEOPERATIONSTATUS_PENDING   GroupLicenseOperationStatus = "Pending"
	GROUPLICENSEOPERATIONSTATUS_RUNNING   GroupLicenseOperationStatus = "Running"
	GROUPLICENSEOPERATIONSTATUS_COMPLETED GroupLicenseOperationStatus = "Completed"
	GROUPLICENSEOPERATIONSTATUS_FAILED    GroupLicenseOperationStatus = "Failed"
)

List of GroupLicenseOperationStatus

func NewGroupLicenseOperationStatusFromValue

func NewGroupLicenseOperationStatusFromValue(v string) (*GroupLicenseOperationStatus, error)

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

func (GroupLicenseOperationStatus) IsValid

func (v GroupLicenseOperationStatus) IsValid() bool

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

func (GroupLicenseOperationStatus) Ptr

Ptr returns reference to GroupLicenseOperationStatus value

func (*GroupLicenseOperationStatus) UnmarshalJSON

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

type GroupLicenseOperationType

type GroupLicenseOperationType string

GroupLicenseOperationType Group license operation type DO NOT RENAME the enum values! They are stored in DB as strings.

const (
	GROUPLICENSEOPERATIONTYPE_ASSIGNMENT   GroupLicenseOperationType = "Assignment"
	GROUPLICENSEOPERATIONTYPE_UNASSIGNMENT GroupLicenseOperationType = "Unassignment"
)

List of GroupLicenseOperationType

func NewGroupLicenseOperationTypeFromValue

func NewGroupLicenseOperationTypeFromValue(v string) (*GroupLicenseOperationType, error)

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

func (GroupLicenseOperationType) IsValid

func (v GroupLicenseOperationType) IsValid() bool

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

func (GroupLicenseOperationType) Ptr

Ptr returns reference to GroupLicenseOperationType value

func (*GroupLicenseOperationType) UnmarshalJSON

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

type GroupUserErrorResponse

type GroupUserErrorResponse struct {
	// User errors
	UserErrors []ResponseDetailsLicenseAssignmentEx `json:"userErrors,omitempty"`
}

GroupUserErrorResponse Group User Error Response

func NewGroupUserErrorResponse

func NewGroupUserErrorResponse() *GroupUserErrorResponse

NewGroupUserErrorResponse instantiates a new GroupUserErrorResponse 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 NewGroupUserErrorResponseWithDefaults

func NewGroupUserErrorResponseWithDefaults() *GroupUserErrorResponse

NewGroupUserErrorResponseWithDefaults instantiates a new GroupUserErrorResponse 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 (*GroupUserErrorResponse) GetUserErrors

GetUserErrors returns the UserErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupUserErrorResponse) GetUserErrorsOk

GetUserErrorsOk returns a tuple with the UserErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupUserErrorResponse) HasUserErrors

func (o *GroupUserErrorResponse) HasUserErrors() bool

HasUserErrors returns a boolean if a field has been set.

func (GroupUserErrorResponse) MarshalJSON

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

func (*GroupUserErrorResponse) SetUserErrors

SetUserErrors gets a reference to the given []ResponseDetailsLicenseAssignmentEx and assigns it to the UserErrors field.

func (GroupUserErrorResponse) ToMap

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

type GroupUsers

type GroupUsers struct {
	//
	Users []CoreUser `json:"users,omitempty"`
}

GroupUsers

func NewGroupUsers

func NewGroupUsers() *GroupUsers

NewGroupUsers instantiates a new GroupUsers 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 NewGroupUsersWithDefaults

func NewGroupUsersWithDefaults() *GroupUsers

NewGroupUsersWithDefaults instantiates a new GroupUsers 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 (*GroupUsers) GetUsers

func (o *GroupUsers) GetUsers() []CoreUser

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupUsers) GetUsersOk

func (o *GroupUsers) GetUsersOk() ([]CoreUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupUsers) HasUsers

func (o *GroupUsers) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (GroupUsers) MarshalJSON

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

func (*GroupUsers) SetUsers

func (o *GroupUsers) SetUsers(v []CoreUser)

SetUsers gets a reference to the given []CoreUser and assigns it to the Users field.

func (GroupUsers) ToMap

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

type Image

type Image struct {
	AccountType AccountType `json:"accountType"`
	// The ID of the account the resource is associated with
	AccountId NullableString `json:"accountId,omitempty"`
	// The ID of the image
	ImageId NullableString `json:"imageId,omitempty"`
	// The name of the image
	Name NullableString `json:"name,omitempty"`
	// The description of the image
	Description NullableString `json:"description,omitempty"`
	// The notes of the image
	Notes                 NullableString              `json:"notes,omitempty"`
	SessionSupport        NullableSessionSupport      `json:"sessionSupport,omitempty"`
	OperatingSystem       NullableOperatingSystemType `json:"operatingSystem,omitempty"`
	AssociatedDeployments []AssociatedDeployment      `json:"associatedDeployments,omitempty"`
}

Image Base class for image

func NewImage

func NewImage(accountType AccountType) *Image

NewImage instantiates a new Image 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 NewImageWithDefaults

func NewImageWithDefaults() *Image

NewImageWithDefaults instantiates a new Image 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 (*Image) GetAccountId added in v1.0.0

func (o *Image) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetAccountIdOk added in v1.0.0

func (o *Image) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetAccountType

func (o *Image) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*Image) GetAccountTypeOk

func (o *Image) GetAccountTypeOk() (*AccountType, bool)

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

func (*Image) GetAssociatedDeployments

func (o *Image) GetAssociatedDeployments() []AssociatedDeployment

GetAssociatedDeployments returns the AssociatedDeployments field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetAssociatedDeploymentsOk

func (o *Image) GetAssociatedDeploymentsOk() ([]AssociatedDeployment, bool)

GetAssociatedDeploymentsOk returns a tuple with the AssociatedDeployments field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetDescription

func (o *Image) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetDescriptionOk

func (o *Image) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetImageId

func (o *Image) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetImageIdOk

func (o *Image) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetName

func (o *Image) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetNameOk

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

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetNotes

func (o *Image) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetNotesOk

func (o *Image) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetOperatingSystem

func (o *Image) GetOperatingSystem() OperatingSystemType

GetOperatingSystem returns the OperatingSystem field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetOperatingSystemOk

func (o *Image) GetOperatingSystemOk() (*OperatingSystemType, bool)

GetOperatingSystemOk returns a tuple with the OperatingSystem field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) GetSessionSupport added in v1.0.0

func (o *Image) GetSessionSupport() SessionSupport

GetSessionSupport returns the SessionSupport field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Image) GetSessionSupportOk added in v1.0.0

func (o *Image) GetSessionSupportOk() (*SessionSupport, bool)

GetSessionSupportOk returns a tuple with the SessionSupport field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Image) HasAccountId added in v1.0.0

func (o *Image) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*Image) HasAssociatedDeployments

func (o *Image) HasAssociatedDeployments() bool

HasAssociatedDeployments returns a boolean if a field has been set.

func (*Image) HasDescription

func (o *Image) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Image) HasImageId

func (o *Image) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*Image) HasName

func (o *Image) HasName() bool

HasName returns a boolean if a field has been set.

func (*Image) HasNotes

func (o *Image) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*Image) HasOperatingSystem

func (o *Image) HasOperatingSystem() bool

HasOperatingSystem returns a boolean if a field has been set.

func (*Image) HasSessionSupport added in v1.0.0

func (o *Image) HasSessionSupport() bool

HasSessionSupport returns a boolean if a field has been set.

func (Image) MarshalJSON

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

func (*Image) SetAccountId added in v1.0.0

func (o *Image) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*Image) SetAccountIdNil added in v1.0.0

func (o *Image) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*Image) SetAccountType

func (o *Image) SetAccountType(v AccountType)

SetAccountType sets field value

func (*Image) SetAssociatedDeployments

func (o *Image) SetAssociatedDeployments(v []AssociatedDeployment)

SetAssociatedDeployments gets a reference to the given []AssociatedDeployment and assigns it to the AssociatedDeployments field.

func (*Image) SetDescription

func (o *Image) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*Image) SetDescriptionNil

func (o *Image) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Image) SetImageId

func (o *Image) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*Image) SetImageIdNil

func (o *Image) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (*Image) SetName

func (o *Image) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Image) SetNameNil

func (o *Image) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Image) SetNotes

func (o *Image) SetNotes(v string)

SetNotes gets a reference to the given NullableString and assigns it to the Notes field.

func (*Image) SetNotesNil

func (o *Image) SetNotesNil()

SetNotesNil sets the value for Notes to be an explicit nil

func (*Image) SetOperatingSystem

func (o *Image) SetOperatingSystem(v OperatingSystemType)

SetOperatingSystem gets a reference to the given NullableOperatingSystemType and assigns it to the OperatingSystem field.

func (*Image) SetOperatingSystemNil

func (o *Image) SetOperatingSystemNil()

SetOperatingSystemNil sets the value for OperatingSystem to be an explicit nil

func (*Image) SetSessionSupport added in v1.0.0

func (o *Image) SetSessionSupport(v SessionSupport)

SetSessionSupport gets a reference to the given NullableSessionSupport and assigns it to the SessionSupport field.

func (*Image) SetSessionSupportNil added in v1.0.0

func (o *Image) SetSessionSupportNil()

SetSessionSupportNil sets the value for SessionSupport to be an explicit nil

func (Image) ToMap

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

func (*Image) UnsetAccountId added in v1.0.0

func (o *Image) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*Image) UnsetDescription

func (o *Image) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Image) UnsetImageId

func (o *Image) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

func (*Image) UnsetName

func (o *Image) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Image) UnsetNotes

func (o *Image) UnsetNotes()

UnsetNotes ensures that no value is present for Notes, not even an explicit nil

func (*Image) UnsetOperatingSystem

func (o *Image) UnsetOperatingSystem()

UnsetOperatingSystem ensures that no value is present for OperatingSystem, not even an explicit nil

func (*Image) UnsetSessionSupport added in v1.0.0

func (o *Image) UnsetSessionSupport()

UnsetSessionSupport ensures that no value is present for SessionSupport, not even an explicit nil

type ImageQCSCopyImageAsyncRequest

type ImageQCSCopyImageAsyncRequest struct {
	ApiService *ImageQCSService
	// contains filtered or unexported fields
}

func (ImageQCSCopyImageAsyncRequest) CitrixTransactionId

func (r ImageQCSCopyImageAsyncRequest) CitrixTransactionId(citrixTransactionId string) ImageQCSCopyImageAsyncRequest

The Transaction Id.

func (ImageQCSCopyImageAsyncRequest) Execute

func (ImageQCSCopyImageAsyncRequest) ImageName

Optional new image name

type ImageQCSGetImageAsyncRequest

type ImageQCSGetImageAsyncRequest struct {
	ApiService *ImageQCSService
	// contains filtered or unexported fields
}

func (ImageQCSGetImageAsyncRequest) CitrixTransactionId

func (r ImageQCSGetImageAsyncRequest) CitrixTransactionId(citrixTransactionId string) ImageQCSGetImageAsyncRequest

The Transaction Id.

func (ImageQCSGetImageAsyncRequest) Execute

type ImageQCSGetImagesAsyncRequest

type ImageQCSGetImagesAsyncRequest struct {
	ApiService *ImageQCSService
	// contains filtered or unexported fields
}

func (ImageQCSGetImagesAsyncRequest) CitrixTransactionId

func (r ImageQCSGetImagesAsyncRequest) CitrixTransactionId(citrixTransactionId string) ImageQCSGetImagesAsyncRequest

The Transaction Id.

func (ImageQCSGetImagesAsyncRequest) Execute

type ImageQCSImportImageAsyncRequest

type ImageQCSImportImageAsyncRequest struct {
	ApiService *ImageQCSService
	// contains filtered or unexported fields
}

func (ImageQCSImportImageAsyncRequest) Body

Import image configuration

func (ImageQCSImportImageAsyncRequest) CitrixTransactionId

func (r ImageQCSImportImageAsyncRequest) CitrixTransactionId(citrixTransactionId string) ImageQCSImportImageAsyncRequest

The Transaction Id.

func (ImageQCSImportImageAsyncRequest) Execute

type ImageQCSRemoveImageAsyncRequest

type ImageQCSRemoveImageAsyncRequest struct {
	ApiService *ImageQCSService
	// contains filtered or unexported fields
}

func (ImageQCSRemoveImageAsyncRequest) CitrixTransactionId

func (r ImageQCSRemoveImageAsyncRequest) CitrixTransactionId(citrixTransactionId string) ImageQCSRemoveImageAsyncRequest

The Transaction Id.

func (ImageQCSRemoveImageAsyncRequest) Execute

func (ImageQCSRemoveImageAsyncRequest) ForceDelete

Force delete an image

type ImageQCSService

type ImageQCSService service

ImageQCSService ImageQCS service

func (*ImageQCSService) CopyImageAsync

func (a *ImageQCSService) CopyImageAsync(ctx context.Context, customerId string, accountId string, imageId string) ImageQCSCopyImageAsyncRequest

CopyImageAsync Makes a copy of a workspace image

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of the account
@param imageId ID of the image
@return ImageQCSCopyImageAsyncRequest

func (*ImageQCSService) CopyImageAsyncExecute

func (a *ImageQCSService) CopyImageAsyncExecute(r ImageQCSCopyImageAsyncRequest) (*AwsEdcImage, *http.Response, error)

Execute executes the request

@return AwsEdcImage

func (*ImageQCSService) GetImageAsync

func (a *ImageQCSService) GetImageAsync(ctx context.Context, customerId string, accountId string, imageId string) ImageQCSGetImageAsyncRequest

GetImageAsync Gets image from workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@param imageId Id of image
@return ImageQCSGetImageAsyncRequest

func (*ImageQCSService) GetImageAsyncExecute

Execute executes the request

@return AwsEdcImage

func (*ImageQCSService) GetImagesAsync

func (a *ImageQCSService) GetImagesAsync(ctx context.Context, customerId string, accountId string) ImageQCSGetImagesAsyncRequest

GetImagesAsync Gets images from workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of account
@return ImageQCSGetImagesAsyncRequest

func (*ImageQCSService) GetImagesAsyncExecute

func (a *ImageQCSService) GetImagesAsyncExecute(r ImageQCSGetImagesAsyncRequest) (*Images, *http.Response, error)

Execute executes the request

@return Images

func (*ImageQCSService) ImportImageAsync

func (a *ImageQCSService) ImportImageAsync(ctx context.Context, customerId string, accountId string) ImageQCSImportImageAsyncRequest

ImportImageAsync Imports image to workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of hypervisor
@return ImageQCSImportImageAsyncRequest

func (*ImageQCSService) ImportImageAsyncExecute

func (a *ImageQCSService) ImportImageAsyncExecute(r ImageQCSImportImageAsyncRequest) (*AwsEdcImage, *http.Response, error)

Execute executes the request

@return AwsEdcImage

func (*ImageQCSService) RemoveImageAsync

func (a *ImageQCSService) RemoveImageAsync(ctx context.Context, customerId string, accountId string, imageId string) ImageQCSRemoveImageAsyncRequest

RemoveImageAsync Removes image to workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param accountId ID of hypervisor
@param imageId ID of image
@return ImageQCSRemoveImageAsyncRequest

func (*ImageQCSService) RemoveImageAsyncExecute

func (a *ImageQCSService) RemoveImageAsyncExecute(r ImageQCSRemoveImageAsyncRequest) (*http.Response, error)

Execute executes the request

type ImageUpdateBody

type ImageUpdateBody struct {
	ImageId NullableString `json:"imageId,omitempty"`
}

ImageUpdateBody struct for ImageUpdateBody

func NewImageUpdateBody

func NewImageUpdateBody() *ImageUpdateBody

NewImageUpdateBody instantiates a new ImageUpdateBody 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 NewImageUpdateBodyWithDefaults

func NewImageUpdateBodyWithDefaults() *ImageUpdateBody

NewImageUpdateBodyWithDefaults instantiates a new ImageUpdateBody 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 (*ImageUpdateBody) GetImageId

func (o *ImageUpdateBody) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ImageUpdateBody) GetImageIdOk

func (o *ImageUpdateBody) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageUpdateBody) HasImageId

func (o *ImageUpdateBody) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (ImageUpdateBody) MarshalJSON

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

func (*ImageUpdateBody) SetImageId

func (o *ImageUpdateBody) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*ImageUpdateBody) SetImageIdNil

func (o *ImageUpdateBody) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (ImageUpdateBody) ToMap

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

func (*ImageUpdateBody) UnsetImageId

func (o *ImageUpdateBody) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

type Images

type Images struct {
	// Enumerable of Image
	Items []AwsEdcImage `json:"items,omitempty"`
}

Images Enumerable of Image

func NewImages

func NewImages() *Images

NewImages instantiates a new Images 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 NewImagesWithDefaults

func NewImagesWithDefaults() *Images

NewImagesWithDefaults instantiates a new Images 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 (*Images) GetItems

func (o *Images) GetItems() []AwsEdcImage

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Images) GetItemsOk

func (o *Images) GetItemsOk() ([]AwsEdcImage, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Images) HasItems

func (o *Images) HasItems() bool

HasItems returns a boolean if a field has been set.

func (Images) MarshalJSON

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

func (*Images) SetItems

func (o *Images) SetItems(v []AwsEdcImage)

SetItems gets a reference to the given []AwsEdcImage and assigns it to the Items field.

func (Images) ToMap

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

type ImportAwsEdcImage

type ImportAwsEdcImage struct {
	ImportImage
	// Source Image Id
	Ec2ImageId       string                                `json:"ec2ImageId"`
	IngestionProcess *AwsEdcWorkspaceImageIngestionProcess `json:"ingestionProcess,omitempty"`
	// The list of installed applications
	ApplicationList []AwsEdcAmiImportApplications `json:"applicationList,omitempty"`
}

ImportAwsEdcImage struct for ImportAwsEdcImage

func NewImportAwsEdcImage

func NewImportAwsEdcImage(ec2ImageId string, accountType AccountType, name string) *ImportAwsEdcImage

NewImportAwsEdcImage instantiates a new ImportAwsEdcImage 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 NewImportAwsEdcImageWithDefaults

func NewImportAwsEdcImageWithDefaults() *ImportAwsEdcImage

NewImportAwsEdcImageWithDefaults instantiates a new ImportAwsEdcImage 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 (*ImportAwsEdcImage) GetApplicationList

func (o *ImportAwsEdcImage) GetApplicationList() []AwsEdcAmiImportApplications

GetApplicationList returns the ApplicationList field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ImportAwsEdcImage) GetApplicationListOk

func (o *ImportAwsEdcImage) GetApplicationListOk() ([]AwsEdcAmiImportApplications, bool)

GetApplicationListOk returns a tuple with the ApplicationList field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImportAwsEdcImage) GetEc2ImageId

func (o *ImportAwsEdcImage) GetEc2ImageId() string

GetEc2ImageId returns the Ec2ImageId field value

func (*ImportAwsEdcImage) GetEc2ImageIdOk

func (o *ImportAwsEdcImage) GetEc2ImageIdOk() (*string, bool)

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

func (*ImportAwsEdcImage) GetIngestionProcess

GetIngestionProcess returns the IngestionProcess field value if set, zero value otherwise.

func (*ImportAwsEdcImage) GetIngestionProcessOk

func (o *ImportAwsEdcImage) GetIngestionProcessOk() (*AwsEdcWorkspaceImageIngestionProcess, bool)

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

func (*ImportAwsEdcImage) HasApplicationList

func (o *ImportAwsEdcImage) HasApplicationList() bool

HasApplicationList returns a boolean if a field has been set.

func (*ImportAwsEdcImage) HasIngestionProcess

func (o *ImportAwsEdcImage) HasIngestionProcess() bool

HasIngestionProcess returns a boolean if a field has been set.

func (ImportAwsEdcImage) MarshalJSON

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

func (*ImportAwsEdcImage) SetApplicationList

func (o *ImportAwsEdcImage) SetApplicationList(v []AwsEdcAmiImportApplications)

SetApplicationList gets a reference to the given []AwsEdcAmiImportApplications and assigns it to the ApplicationList field.

func (*ImportAwsEdcImage) SetEc2ImageId

func (o *ImportAwsEdcImage) SetEc2ImageId(v string)

SetEc2ImageId sets field value

func (*ImportAwsEdcImage) SetIngestionProcess

func (o *ImportAwsEdcImage) SetIngestionProcess(v AwsEdcWorkspaceImageIngestionProcess)

SetIngestionProcess gets a reference to the given AwsEdcWorkspaceImageIngestionProcess and assigns it to the IngestionProcess field.

func (ImportAwsEdcImage) ToMap

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

type ImportImage

type ImportImage struct {
	AccountType AccountType `json:"accountType"`
	// Image Name
	Name string `json:"name"`
	// Image Description
	Description NullableString `json:"description,omitempty"`
	// Image Notes
	Notes          NullableString         `json:"notes,omitempty"`
	SessionSupport NullableSessionSupport `json:"sessionSupport,omitempty"`
}

ImportImage Import image

func NewImportImage

func NewImportImage(accountType AccountType, name string) *ImportImage

NewImportImage instantiates a new ImportImage 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 NewImportImageWithDefaults

func NewImportImageWithDefaults() *ImportImage

NewImportImageWithDefaults instantiates a new ImportImage 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 (*ImportImage) GetAccountType

func (o *ImportImage) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*ImportImage) GetAccountTypeOk

func (o *ImportImage) GetAccountTypeOk() (*AccountType, bool)

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

func (*ImportImage) GetDescription

func (o *ImportImage) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ImportImage) GetDescriptionOk

func (o *ImportImage) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImportImage) GetName

func (o *ImportImage) GetName() string

GetName returns the Name field value

func (*ImportImage) GetNameOk

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

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

func (*ImportImage) GetNotes

func (o *ImportImage) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ImportImage) GetNotesOk

func (o *ImportImage) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImportImage) GetSessionSupport added in v1.0.0

func (o *ImportImage) GetSessionSupport() SessionSupport

GetSessionSupport returns the SessionSupport field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ImportImage) GetSessionSupportOk added in v1.0.0

func (o *ImportImage) GetSessionSupportOk() (*SessionSupport, bool)

GetSessionSupportOk returns a tuple with the SessionSupport field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImportImage) HasDescription

func (o *ImportImage) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ImportImage) HasNotes

func (o *ImportImage) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*ImportImage) HasSessionSupport added in v1.0.0

func (o *ImportImage) HasSessionSupport() bool

HasSessionSupport returns a boolean if a field has been set.

func (ImportImage) MarshalJSON

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

func (*ImportImage) SetAccountType

func (o *ImportImage) SetAccountType(v AccountType)

SetAccountType sets field value

func (*ImportImage) SetDescription

func (o *ImportImage) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*ImportImage) SetDescriptionNil

func (o *ImportImage) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ImportImage) SetName

func (o *ImportImage) SetName(v string)

SetName sets field value

func (*ImportImage) SetNotes

func (o *ImportImage) SetNotes(v string)

SetNotes gets a reference to the given NullableString and assigns it to the Notes field.

func (*ImportImage) SetNotesNil

func (o *ImportImage) SetNotesNil()

SetNotesNil sets the value for Notes to be an explicit nil

func (*ImportImage) SetSessionSupport added in v1.0.0

func (o *ImportImage) SetSessionSupport(v SessionSupport)

SetSessionSupport gets a reference to the given NullableSessionSupport and assigns it to the SessionSupport field.

func (*ImportImage) SetSessionSupportNil added in v1.0.0

func (o *ImportImage) SetSessionSupportNil()

SetSessionSupportNil sets the value for SessionSupport to be an explicit nil

func (ImportImage) ToMap

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

func (*ImportImage) UnsetDescription

func (o *ImportImage) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ImportImage) UnsetNotes

func (o *ImportImage) UnsetNotes()

UnsetNotes ensures that no value is present for Notes, not even an explicit nil

func (*ImportImage) UnsetSessionSupport added in v1.0.0

func (o *ImportImage) UnsetSessionSupport()

UnsetSessionSupport ensures that no value is present for SessionSupport, not even an explicit nil

type InitiateAccountTask

type InitiateAccountTask struct {
	AccountType AccountType `json:"accountType"`
}

InitiateAccountTask Registers account

func NewInitiateAccountTask

func NewInitiateAccountTask(accountType AccountType) *InitiateAccountTask

NewInitiateAccountTask instantiates a new InitiateAccountTask 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 NewInitiateAccountTaskWithDefaults

func NewInitiateAccountTaskWithDefaults() *InitiateAccountTask

NewInitiateAccountTaskWithDefaults instantiates a new InitiateAccountTask 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 (*InitiateAccountTask) GetAccountType

func (o *InitiateAccountTask) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*InitiateAccountTask) GetAccountTypeOk

func (o *InitiateAccountTask) GetAccountTypeOk() (*AccountType, bool)

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

func (InitiateAccountTask) MarshalJSON

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

func (*InitiateAccountTask) SetAccountType

func (o *InitiateAccountTask) SetAccountType(v AccountType)

SetAccountType sets field value

func (InitiateAccountTask) ToMap

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

type InitiateAwsEdcDeployment

type InitiateAwsEdcDeployment struct {
	InitiateDeployment
	// Image Id
	ImageId     string                  `json:"imageId"`
	ComputeType *AwsEdcWorkspaceCompute `json:"computeType,omitempty"`
	// Size of operating system volume for bundle creation
	RootVolumeSize *int32 `json:"rootVolumeSize,omitempty"`
	// Size of user storage volume for bundle creation
	UserVolumeSize *int32 `json:"userVolumeSize,omitempty"`
	// Is root and user storage volume encrypted
	VolumesEncrypted NullableBool `json:"volumesEncrypted,omitempty"`
	// Volume encryption key
	VolumesEncryptionKey NullableString                     `json:"volumesEncryptionKey,omitempty"`
	RunningMode          NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
	ScaleSettings        NullableScaleSettings              `json:"scaleSettings,omitempty"`
	// Should workspaces be decoupled from the user during creation
	UserDecoupledWorkspaces NullableBool `json:"userDecoupledWorkspaces,omitempty"`
	// Configuration for individual workspace
	Workspaces []AddAwsEdcWorkspace `json:"workspaces,omitempty"`
}

InitiateAwsEdcDeployment struct for InitiateAwsEdcDeployment

func NewInitiateAwsEdcDeployment

func NewInitiateAwsEdcDeployment(imageId string, accountType AccountType, connectionId string, deploymentName string) *InitiateAwsEdcDeployment

NewInitiateAwsEdcDeployment instantiates a new InitiateAwsEdcDeployment 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 NewInitiateAwsEdcDeploymentWithDefaults

func NewInitiateAwsEdcDeploymentWithDefaults() *InitiateAwsEdcDeployment

NewInitiateAwsEdcDeploymentWithDefaults instantiates a new InitiateAwsEdcDeployment 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 (*InitiateAwsEdcDeployment) GetComputeType

GetComputeType returns the ComputeType field value if set, zero value otherwise.

func (*InitiateAwsEdcDeployment) GetComputeTypeOk

func (o *InitiateAwsEdcDeployment) GetComputeTypeOk() (*AwsEdcWorkspaceCompute, bool)

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

func (*InitiateAwsEdcDeployment) GetImageId

func (o *InitiateAwsEdcDeployment) GetImageId() string

GetImageId returns the ImageId field value

func (*InitiateAwsEdcDeployment) GetImageIdOk

func (o *InitiateAwsEdcDeployment) GetImageIdOk() (*string, bool)

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

func (*InitiateAwsEdcDeployment) GetRootVolumeSize

func (o *InitiateAwsEdcDeployment) GetRootVolumeSize() int32

GetRootVolumeSize returns the RootVolumeSize field value if set, zero value otherwise.

func (*InitiateAwsEdcDeployment) GetRootVolumeSizeOk

func (o *InitiateAwsEdcDeployment) GetRootVolumeSizeOk() (*int32, bool)

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

func (*InitiateAwsEdcDeployment) GetRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetRunningModeOk

func (o *InitiateAwsEdcDeployment) GetRunningModeOk() (*AwsEdcWorkspaceRunningMode, bool)

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) GetScaleSettings

func (o *InitiateAwsEdcDeployment) GetScaleSettings() ScaleSettings

GetScaleSettings returns the ScaleSettings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetScaleSettingsOk

func (o *InitiateAwsEdcDeployment) GetScaleSettingsOk() (*ScaleSettings, bool)

GetScaleSettingsOk returns a tuple with the ScaleSettings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) GetUserDecoupledWorkspaces added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetUserDecoupledWorkspaces() bool

GetUserDecoupledWorkspaces returns the UserDecoupledWorkspaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetUserDecoupledWorkspacesOk added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetUserDecoupledWorkspacesOk() (*bool, bool)

GetUserDecoupledWorkspacesOk returns a tuple with the UserDecoupledWorkspaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) GetUserVolumeSize

func (o *InitiateAwsEdcDeployment) GetUserVolumeSize() int32

GetUserVolumeSize returns the UserVolumeSize field value if set, zero value otherwise.

func (*InitiateAwsEdcDeployment) GetUserVolumeSizeOk

func (o *InitiateAwsEdcDeployment) GetUserVolumeSizeOk() (*int32, bool)

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

func (*InitiateAwsEdcDeployment) GetVolumesEncrypted added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetVolumesEncrypted() bool

GetVolumesEncrypted returns the VolumesEncrypted field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetVolumesEncryptedOk added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetVolumesEncryptedOk() (*bool, bool)

GetVolumesEncryptedOk returns a tuple with the VolumesEncrypted field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) GetVolumesEncryptionKey added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetVolumesEncryptionKey() string

GetVolumesEncryptionKey returns the VolumesEncryptionKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetVolumesEncryptionKeyOk added in v1.0.0

func (o *InitiateAwsEdcDeployment) GetVolumesEncryptionKeyOk() (*string, bool)

GetVolumesEncryptionKeyOk returns a tuple with the VolumesEncryptionKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) GetWorkspaces

func (o *InitiateAwsEdcDeployment) GetWorkspaces() []AddAwsEdcWorkspace

GetWorkspaces returns the Workspaces field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InitiateAwsEdcDeployment) GetWorkspacesOk

func (o *InitiateAwsEdcDeployment) GetWorkspacesOk() ([]AddAwsEdcWorkspace, bool)

GetWorkspacesOk returns a tuple with the Workspaces field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InitiateAwsEdcDeployment) HasComputeType

func (o *InitiateAwsEdcDeployment) HasComputeType() bool

HasComputeType returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasRootVolumeSize

func (o *InitiateAwsEdcDeployment) HasRootVolumeSize() bool

HasRootVolumeSize returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasRunningMode

func (o *InitiateAwsEdcDeployment) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasScaleSettings

func (o *InitiateAwsEdcDeployment) HasScaleSettings() bool

HasScaleSettings returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasUserDecoupledWorkspaces added in v1.0.0

func (o *InitiateAwsEdcDeployment) HasUserDecoupledWorkspaces() bool

HasUserDecoupledWorkspaces returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasUserVolumeSize

func (o *InitiateAwsEdcDeployment) HasUserVolumeSize() bool

HasUserVolumeSize returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasVolumesEncrypted added in v1.0.0

func (o *InitiateAwsEdcDeployment) HasVolumesEncrypted() bool

HasVolumesEncrypted returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasVolumesEncryptionKey added in v1.0.0

func (o *InitiateAwsEdcDeployment) HasVolumesEncryptionKey() bool

HasVolumesEncryptionKey returns a boolean if a field has been set.

func (*InitiateAwsEdcDeployment) HasWorkspaces

func (o *InitiateAwsEdcDeployment) HasWorkspaces() bool

HasWorkspaces returns a boolean if a field has been set.

func (InitiateAwsEdcDeployment) MarshalJSON

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

func (*InitiateAwsEdcDeployment) SetComputeType

func (o *InitiateAwsEdcDeployment) SetComputeType(v AwsEdcWorkspaceCompute)

SetComputeType gets a reference to the given AwsEdcWorkspaceCompute and assigns it to the ComputeType field.

func (*InitiateAwsEdcDeployment) SetImageId

func (o *InitiateAwsEdcDeployment) SetImageId(v string)

SetImageId sets field value

func (*InitiateAwsEdcDeployment) SetRootVolumeSize

func (o *InitiateAwsEdcDeployment) SetRootVolumeSize(v int32)

SetRootVolumeSize gets a reference to the given int32 and assigns it to the RootVolumeSize field.

func (*InitiateAwsEdcDeployment) SetRunningMode

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*InitiateAwsEdcDeployment) SetRunningModeNil

func (o *InitiateAwsEdcDeployment) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*InitiateAwsEdcDeployment) SetScaleSettings

func (o *InitiateAwsEdcDeployment) SetScaleSettings(v ScaleSettings)

SetScaleSettings gets a reference to the given NullableScaleSettings and assigns it to the ScaleSettings field.

func (*InitiateAwsEdcDeployment) SetScaleSettingsNil

func (o *InitiateAwsEdcDeployment) SetScaleSettingsNil()

SetScaleSettingsNil sets the value for ScaleSettings to be an explicit nil

func (*InitiateAwsEdcDeployment) SetUserDecoupledWorkspaces added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetUserDecoupledWorkspaces(v bool)

SetUserDecoupledWorkspaces gets a reference to the given NullableBool and assigns it to the UserDecoupledWorkspaces field.

func (*InitiateAwsEdcDeployment) SetUserDecoupledWorkspacesNil added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetUserDecoupledWorkspacesNil()

SetUserDecoupledWorkspacesNil sets the value for UserDecoupledWorkspaces to be an explicit nil

func (*InitiateAwsEdcDeployment) SetUserVolumeSize

func (o *InitiateAwsEdcDeployment) SetUserVolumeSize(v int32)

SetUserVolumeSize gets a reference to the given int32 and assigns it to the UserVolumeSize field.

func (*InitiateAwsEdcDeployment) SetVolumesEncrypted added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetVolumesEncrypted(v bool)

SetVolumesEncrypted gets a reference to the given NullableBool and assigns it to the VolumesEncrypted field.

func (*InitiateAwsEdcDeployment) SetVolumesEncryptedNil added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetVolumesEncryptedNil()

SetVolumesEncryptedNil sets the value for VolumesEncrypted to be an explicit nil

func (*InitiateAwsEdcDeployment) SetVolumesEncryptionKey added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetVolumesEncryptionKey(v string)

SetVolumesEncryptionKey gets a reference to the given NullableString and assigns it to the VolumesEncryptionKey field.

func (*InitiateAwsEdcDeployment) SetVolumesEncryptionKeyNil added in v1.0.0

func (o *InitiateAwsEdcDeployment) SetVolumesEncryptionKeyNil()

SetVolumesEncryptionKeyNil sets the value for VolumesEncryptionKey to be an explicit nil

func (*InitiateAwsEdcDeployment) SetWorkspaces

func (o *InitiateAwsEdcDeployment) SetWorkspaces(v []AddAwsEdcWorkspace)

SetWorkspaces gets a reference to the given []AddAwsEdcWorkspace and assigns it to the Workspaces field.

func (InitiateAwsEdcDeployment) ToMap

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

func (*InitiateAwsEdcDeployment) UnsetRunningMode

func (o *InitiateAwsEdcDeployment) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*InitiateAwsEdcDeployment) UnsetScaleSettings

func (o *InitiateAwsEdcDeployment) UnsetScaleSettings()

UnsetScaleSettings ensures that no value is present for ScaleSettings, not even an explicit nil

func (*InitiateAwsEdcDeployment) UnsetUserDecoupledWorkspaces added in v1.0.0

func (o *InitiateAwsEdcDeployment) UnsetUserDecoupledWorkspaces()

UnsetUserDecoupledWorkspaces ensures that no value is present for UserDecoupledWorkspaces, not even an explicit nil

func (*InitiateAwsEdcDeployment) UnsetVolumesEncrypted added in v1.0.0

func (o *InitiateAwsEdcDeployment) UnsetVolumesEncrypted()

UnsetVolumesEncrypted ensures that no value is present for VolumesEncrypted, not even an explicit nil

func (*InitiateAwsEdcDeployment) UnsetVolumesEncryptionKey added in v1.0.0

func (o *InitiateAwsEdcDeployment) UnsetVolumesEncryptionKey()

UnsetVolumesEncryptionKey ensures that no value is present for VolumesEncryptionKey, not even an explicit nil

type InitiateDeployment

type InitiateDeployment struct {
	AccountType AccountType `json:"accountType"`
	// Hosting Connection Id
	ConnectionId   string `json:"connectionId"`
	DeploymentName string `json:"deploymentName"`
}

InitiateDeployment Initiates deployment

func NewInitiateDeployment

func NewInitiateDeployment(accountType AccountType, connectionId string, deploymentName string) *InitiateDeployment

NewInitiateDeployment instantiates a new InitiateDeployment 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 NewInitiateDeploymentWithDefaults

func NewInitiateDeploymentWithDefaults() *InitiateDeployment

NewInitiateDeploymentWithDefaults instantiates a new InitiateDeployment 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 (*InitiateDeployment) GetAccountType

func (o *InitiateDeployment) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*InitiateDeployment) GetAccountTypeOk

func (o *InitiateDeployment) GetAccountTypeOk() (*AccountType, bool)

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

func (*InitiateDeployment) GetConnectionId

func (o *InitiateDeployment) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*InitiateDeployment) GetConnectionIdOk

func (o *InitiateDeployment) GetConnectionIdOk() (*string, bool)

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

func (*InitiateDeployment) GetDeploymentName

func (o *InitiateDeployment) GetDeploymentName() string

GetDeploymentName returns the DeploymentName field value

func (*InitiateDeployment) GetDeploymentNameOk

func (o *InitiateDeployment) GetDeploymentNameOk() (*string, bool)

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

func (InitiateDeployment) MarshalJSON

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

func (*InitiateDeployment) SetAccountType

func (o *InitiateDeployment) SetAccountType(v AccountType)

SetAccountType sets field value

func (*InitiateDeployment) SetConnectionId

func (o *InitiateDeployment) SetConnectionId(v string)

SetConnectionId sets field value

func (*InitiateDeployment) SetDeploymentName

func (o *InitiateDeployment) SetDeploymentName(v string)

SetDeploymentName sets field value

func (InitiateDeployment) ToMap

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

type IpPermission

type IpPermission struct {
	// Deprecated
	IpRanges         []string          `json:"ipRanges,omitempty"`
	FromPort         *int32            `json:"fromPort,omitempty"`
	IpProtocol       NullableString    `json:"ipProtocol,omitempty"`
	Ipv4Ranges       []IpRange         `json:"ipv4Ranges,omitempty"`
	Ipv6Ranges       []Ipv6Range       `json:"ipv6Ranges,omitempty"`
	PrefixListIds    []PrefixListId    `json:"prefixListIds,omitempty"`
	ToPort           *int32            `json:"toPort,omitempty"`
	UserIdGroupPairs []UserIdGroupPair `json:"userIdGroupPairs,omitempty"`
}

IpPermission struct for IpPermission

func NewIpPermission

func NewIpPermission() *IpPermission

NewIpPermission instantiates a new IpPermission 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 NewIpPermissionWithDefaults

func NewIpPermissionWithDefaults() *IpPermission

NewIpPermissionWithDefaults instantiates a new IpPermission 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 (*IpPermission) GetFromPort

func (o *IpPermission) GetFromPort() int32

GetFromPort returns the FromPort field value if set, zero value otherwise.

func (*IpPermission) GetFromPortOk

func (o *IpPermission) GetFromPortOk() (*int32, bool)

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

func (*IpPermission) GetIpProtocol

func (o *IpPermission) GetIpProtocol() string

GetIpProtocol returns the IpProtocol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpPermission) GetIpProtocolOk

func (o *IpPermission) GetIpProtocolOk() (*string, bool)

GetIpProtocolOk returns a tuple with the IpProtocol field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpPermission) GetIpRanges

func (o *IpPermission) GetIpRanges() []string

GetIpRanges returns the IpRanges field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*IpPermission) GetIpRangesOk

func (o *IpPermission) GetIpRangesOk() ([]string, bool)

GetIpRangesOk returns a tuple with the IpRanges field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*IpPermission) GetIpv4Ranges

func (o *IpPermission) GetIpv4Ranges() []IpRange

GetIpv4Ranges returns the Ipv4Ranges field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpPermission) GetIpv4RangesOk

func (o *IpPermission) GetIpv4RangesOk() ([]IpRange, bool)

GetIpv4RangesOk returns a tuple with the Ipv4Ranges field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpPermission) GetIpv6Ranges

func (o *IpPermission) GetIpv6Ranges() []Ipv6Range

GetIpv6Ranges returns the Ipv6Ranges field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpPermission) GetIpv6RangesOk

func (o *IpPermission) GetIpv6RangesOk() ([]Ipv6Range, bool)

GetIpv6RangesOk returns a tuple with the Ipv6Ranges field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpPermission) GetPrefixListIds

func (o *IpPermission) GetPrefixListIds() []PrefixListId

GetPrefixListIds returns the PrefixListIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpPermission) GetPrefixListIdsOk

func (o *IpPermission) GetPrefixListIdsOk() ([]PrefixListId, bool)

GetPrefixListIdsOk returns a tuple with the PrefixListIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpPermission) GetToPort

func (o *IpPermission) GetToPort() int32

GetToPort returns the ToPort field value if set, zero value otherwise.

func (*IpPermission) GetToPortOk

func (o *IpPermission) GetToPortOk() (*int32, bool)

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

func (*IpPermission) GetUserIdGroupPairs

func (o *IpPermission) GetUserIdGroupPairs() []UserIdGroupPair

GetUserIdGroupPairs returns the UserIdGroupPairs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpPermission) GetUserIdGroupPairsOk

func (o *IpPermission) GetUserIdGroupPairsOk() ([]UserIdGroupPair, bool)

GetUserIdGroupPairsOk returns a tuple with the UserIdGroupPairs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpPermission) HasFromPort

func (o *IpPermission) HasFromPort() bool

HasFromPort returns a boolean if a field has been set.

func (*IpPermission) HasIpProtocol

func (o *IpPermission) HasIpProtocol() bool

HasIpProtocol returns a boolean if a field has been set.

func (*IpPermission) HasIpRanges

func (o *IpPermission) HasIpRanges() bool

HasIpRanges returns a boolean if a field has been set.

func (*IpPermission) HasIpv4Ranges

func (o *IpPermission) HasIpv4Ranges() bool

HasIpv4Ranges returns a boolean if a field has been set.

func (*IpPermission) HasIpv6Ranges

func (o *IpPermission) HasIpv6Ranges() bool

HasIpv6Ranges returns a boolean if a field has been set.

func (*IpPermission) HasPrefixListIds

func (o *IpPermission) HasPrefixListIds() bool

HasPrefixListIds returns a boolean if a field has been set.

func (*IpPermission) HasToPort

func (o *IpPermission) HasToPort() bool

HasToPort returns a boolean if a field has been set.

func (*IpPermission) HasUserIdGroupPairs

func (o *IpPermission) HasUserIdGroupPairs() bool

HasUserIdGroupPairs returns a boolean if a field has been set.

func (IpPermission) MarshalJSON

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

func (*IpPermission) SetFromPort

func (o *IpPermission) SetFromPort(v int32)

SetFromPort gets a reference to the given int32 and assigns it to the FromPort field.

func (*IpPermission) SetIpProtocol

func (o *IpPermission) SetIpProtocol(v string)

SetIpProtocol gets a reference to the given NullableString and assigns it to the IpProtocol field.

func (*IpPermission) SetIpProtocolNil

func (o *IpPermission) SetIpProtocolNil()

SetIpProtocolNil sets the value for IpProtocol to be an explicit nil

func (*IpPermission) SetIpRanges

func (o *IpPermission) SetIpRanges(v []string)

SetIpRanges gets a reference to the given []string and assigns it to the IpRanges field. Deprecated

func (*IpPermission) SetIpv4Ranges

func (o *IpPermission) SetIpv4Ranges(v []IpRange)

SetIpv4Ranges gets a reference to the given []IpRange and assigns it to the Ipv4Ranges field.

func (*IpPermission) SetIpv6Ranges

func (o *IpPermission) SetIpv6Ranges(v []Ipv6Range)

SetIpv6Ranges gets a reference to the given []Ipv6Range and assigns it to the Ipv6Ranges field.

func (*IpPermission) SetPrefixListIds

func (o *IpPermission) SetPrefixListIds(v []PrefixListId)

SetPrefixListIds gets a reference to the given []PrefixListId and assigns it to the PrefixListIds field.

func (*IpPermission) SetToPort

func (o *IpPermission) SetToPort(v int32)

SetToPort gets a reference to the given int32 and assigns it to the ToPort field.

func (*IpPermission) SetUserIdGroupPairs

func (o *IpPermission) SetUserIdGroupPairs(v []UserIdGroupPair)

SetUserIdGroupPairs gets a reference to the given []UserIdGroupPair and assigns it to the UserIdGroupPairs field.

func (IpPermission) ToMap

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

func (*IpPermission) UnsetIpProtocol

func (o *IpPermission) UnsetIpProtocol()

UnsetIpProtocol ensures that no value is present for IpProtocol, not even an explicit nil

type IpRange

type IpRange struct {
	CidrIp      NullableString `json:"cidrIp,omitempty"`
	Description NullableString `json:"description,omitempty"`
}

IpRange struct for IpRange

func NewIpRange

func NewIpRange() *IpRange

NewIpRange instantiates a new IpRange 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 NewIpRangeWithDefaults

func NewIpRangeWithDefaults() *IpRange

NewIpRangeWithDefaults instantiates a new IpRange 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 (*IpRange) GetCidrIp

func (o *IpRange) GetCidrIp() string

GetCidrIp returns the CidrIp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpRange) GetCidrIpOk

func (o *IpRange) GetCidrIpOk() (*string, bool)

GetCidrIpOk returns a tuple with the CidrIp field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpRange) GetDescription

func (o *IpRange) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IpRange) GetDescriptionOk

func (o *IpRange) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IpRange) HasCidrIp

func (o *IpRange) HasCidrIp() bool

HasCidrIp returns a boolean if a field has been set.

func (*IpRange) HasDescription

func (o *IpRange) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (IpRange) MarshalJSON

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

func (*IpRange) SetCidrIp

func (o *IpRange) SetCidrIp(v string)

SetCidrIp gets a reference to the given NullableString and assigns it to the CidrIp field.

func (*IpRange) SetCidrIpNil

func (o *IpRange) SetCidrIpNil()

SetCidrIpNil sets the value for CidrIp to be an explicit nil

func (*IpRange) SetDescription

func (o *IpRange) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*IpRange) SetDescriptionNil

func (o *IpRange) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (IpRange) ToMap

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

func (*IpRange) UnsetCidrIp

func (o *IpRange) UnsetCidrIp()

UnsetCidrIp ensures that no value is present for CidrIp, not even an explicit nil

func (*IpRange) UnsetDescription

func (o *IpRange) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type Ipv6Range

type Ipv6Range struct {
	CidrIpv6    NullableString `json:"cidrIpv6,omitempty"`
	Description NullableString `json:"description,omitempty"`
}

Ipv6Range struct for Ipv6Range

func NewIpv6Range

func NewIpv6Range() *Ipv6Range

NewIpv6Range instantiates a new Ipv6Range 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 NewIpv6RangeWithDefaults

func NewIpv6RangeWithDefaults() *Ipv6Range

NewIpv6RangeWithDefaults instantiates a new Ipv6Range 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 (*Ipv6Range) GetCidrIpv6

func (o *Ipv6Range) GetCidrIpv6() string

GetCidrIpv6 returns the CidrIpv6 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Ipv6Range) GetCidrIpv6Ok

func (o *Ipv6Range) GetCidrIpv6Ok() (*string, bool)

GetCidrIpv6Ok returns a tuple with the CidrIpv6 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Ipv6Range) GetDescription

func (o *Ipv6Range) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Ipv6Range) GetDescriptionOk

func (o *Ipv6Range) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Ipv6Range) HasCidrIpv6

func (o *Ipv6Range) HasCidrIpv6() bool

HasCidrIpv6 returns a boolean if a field has been set.

func (*Ipv6Range) HasDescription

func (o *Ipv6Range) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (Ipv6Range) MarshalJSON

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

func (*Ipv6Range) SetCidrIpv6

func (o *Ipv6Range) SetCidrIpv6(v string)

SetCidrIpv6 gets a reference to the given NullableString and assigns it to the CidrIpv6 field.

func (*Ipv6Range) SetCidrIpv6Nil

func (o *Ipv6Range) SetCidrIpv6Nil()

SetCidrIpv6Nil sets the value for CidrIpv6 to be an explicit nil

func (*Ipv6Range) SetDescription

func (o *Ipv6Range) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*Ipv6Range) SetDescriptionNil

func (o *Ipv6Range) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (Ipv6Range) ToMap

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

func (*Ipv6Range) UnsetCidrIpv6

func (o *Ipv6Range) UnsetCidrIpv6()

UnsetCidrIpv6 ensures that no value is present for CidrIpv6, not even an explicit nil

func (*Ipv6Range) UnsetDescription

func (o *Ipv6Range) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type LicenseErrorDetailsResponse

type LicenseErrorDetailsResponse struct {
	LicenseStatus []ResponseDetailsLicenseAssignment `json:"licenseStatus,omitempty"`
}

LicenseErrorDetailsResponse Response Object for Licensing API request

func NewLicenseErrorDetailsResponse

func NewLicenseErrorDetailsResponse() *LicenseErrorDetailsResponse

NewLicenseErrorDetailsResponse instantiates a new LicenseErrorDetailsResponse 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 NewLicenseErrorDetailsResponseWithDefaults

func NewLicenseErrorDetailsResponseWithDefaults() *LicenseErrorDetailsResponse

NewLicenseErrorDetailsResponseWithDefaults instantiates a new LicenseErrorDetailsResponse 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 (*LicenseErrorDetailsResponse) GetLicenseStatus

GetLicenseStatus returns the LicenseStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LicenseErrorDetailsResponse) GetLicenseStatusOk

GetLicenseStatusOk returns a tuple with the LicenseStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LicenseErrorDetailsResponse) HasLicenseStatus

func (o *LicenseErrorDetailsResponse) HasLicenseStatus() bool

HasLicenseStatus returns a boolean if a field has been set.

func (LicenseErrorDetailsResponse) MarshalJSON

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

func (*LicenseErrorDetailsResponse) SetLicenseStatus

SetLicenseStatus gets a reference to the given []ResponseDetailsLicenseAssignment and assigns it to the LicenseStatus field.

func (LicenseErrorDetailsResponse) ToMap

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

type LicenseState

type LicenseState string

LicenseState HDX License state

const (
	LICENSESTATE_ACTIVE   LicenseState = "Active"
	LICENSESTATE_INACTIVE LicenseState = "Inactive"
)

List of LicenseState

func NewLicenseStateFromValue

func NewLicenseStateFromValue(v string) (*LicenseState, error)

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

func (LicenseState) IsValid

func (v LicenseState) IsValid() bool

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

func (LicenseState) Ptr

func (v LicenseState) Ptr() *LicenseState

Ptr returns reference to LicenseState value

func (*LicenseState) UnmarshalJSON

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

type LicenseUser

type LicenseUser struct {
	HdxLicenseState    *LicenseState  `json:"hdxLicenseState,omitempty"`
	DisplayName        NullableString `json:"displayName,omitempty"`
	Windows365Licenses []string       `json:"windows365Licenses,omitempty"`
	// AAD User ID for which we want to assign/revoke license
	UserId NullableString `json:"userId,omitempty"`
	// AAD UPN for provided User
	UserPrincipalName NullableString `json:"userPrincipalName,omitempty"`
}

LicenseUser struct for LicenseUser

func NewLicenseUser

func NewLicenseUser() *LicenseUser

NewLicenseUser instantiates a new LicenseUser 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 NewLicenseUserWithDefaults

func NewLicenseUserWithDefaults() *LicenseUser

NewLicenseUserWithDefaults instantiates a new LicenseUser 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 (*LicenseUser) GetDisplayName

func (o *LicenseUser) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LicenseUser) GetDisplayNameOk

func (o *LicenseUser) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LicenseUser) GetHdxLicenseState

func (o *LicenseUser) GetHdxLicenseState() LicenseState

GetHdxLicenseState returns the HdxLicenseState field value if set, zero value otherwise.

func (*LicenseUser) GetHdxLicenseStateOk

func (o *LicenseUser) GetHdxLicenseStateOk() (*LicenseState, bool)

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

func (*LicenseUser) GetUserId

func (o *LicenseUser) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LicenseUser) GetUserIdOk

func (o *LicenseUser) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LicenseUser) GetUserPrincipalName

func (o *LicenseUser) GetUserPrincipalName() string

GetUserPrincipalName returns the UserPrincipalName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LicenseUser) GetUserPrincipalNameOk

func (o *LicenseUser) GetUserPrincipalNameOk() (*string, bool)

GetUserPrincipalNameOk returns a tuple with the UserPrincipalName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LicenseUser) GetWindows365Licenses

func (o *LicenseUser) GetWindows365Licenses() []string

GetWindows365Licenses returns the Windows365Licenses field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LicenseUser) GetWindows365LicensesOk

func (o *LicenseUser) GetWindows365LicensesOk() ([]string, bool)

GetWindows365LicensesOk returns a tuple with the Windows365Licenses field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LicenseUser) HasDisplayName

func (o *LicenseUser) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*LicenseUser) HasHdxLicenseState

func (o *LicenseUser) HasHdxLicenseState() bool

HasHdxLicenseState returns a boolean if a field has been set.

func (*LicenseUser) HasUserId

func (o *LicenseUser) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*LicenseUser) HasUserPrincipalName

func (o *LicenseUser) HasUserPrincipalName() bool

HasUserPrincipalName returns a boolean if a field has been set.

func (*LicenseUser) HasWindows365Licenses

func (o *LicenseUser) HasWindows365Licenses() bool

HasWindows365Licenses returns a boolean if a field has been set.

func (LicenseUser) MarshalJSON

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

func (*LicenseUser) SetDisplayName

func (o *LicenseUser) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*LicenseUser) SetDisplayNameNil

func (o *LicenseUser) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*LicenseUser) SetHdxLicenseState

func (o *LicenseUser) SetHdxLicenseState(v LicenseState)

SetHdxLicenseState gets a reference to the given LicenseState and assigns it to the HdxLicenseState field.

func (*LicenseUser) SetUserId

func (o *LicenseUser) SetUserId(v string)

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

func (*LicenseUser) SetUserIdNil

func (o *LicenseUser) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (*LicenseUser) SetUserPrincipalName

func (o *LicenseUser) SetUserPrincipalName(v string)

SetUserPrincipalName gets a reference to the given NullableString and assigns it to the UserPrincipalName field.

func (*LicenseUser) SetUserPrincipalNameNil

func (o *LicenseUser) SetUserPrincipalNameNil()

SetUserPrincipalNameNil sets the value for UserPrincipalName to be an explicit nil

func (*LicenseUser) SetWindows365Licenses

func (o *LicenseUser) SetWindows365Licenses(v []string)

SetWindows365Licenses gets a reference to the given []string and assigns it to the Windows365Licenses field.

func (LicenseUser) ToMap

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

func (*LicenseUser) UnsetDisplayName

func (o *LicenseUser) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*LicenseUser) UnsetUserId

func (o *LicenseUser) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

func (*LicenseUser) UnsetUserPrincipalName

func (o *LicenseUser) UnsetUserPrincipalName()

UnsetUserPrincipalName ensures that no value is present for UserPrincipalName, not even an explicit nil

type MachineIdInitiateDeleteBody

type MachineIdInitiateDeleteBody struct {
	// Domain admin username
	DomainAdminUsername NullableString `json:"domainAdminUsername,omitempty"`
	// Domain admin password
	DomainAdminPassword NullableString `json:"domainAdminPassword,omitempty"`
}

MachineIdInitiateDeleteBody Deployment AD credentials

func NewMachineIdInitiateDeleteBody

func NewMachineIdInitiateDeleteBody() *MachineIdInitiateDeleteBody

NewMachineIdInitiateDeleteBody instantiates a new MachineIdInitiateDeleteBody 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 NewMachineIdInitiateDeleteBodyWithDefaults

func NewMachineIdInitiateDeleteBodyWithDefaults() *MachineIdInitiateDeleteBody

NewMachineIdInitiateDeleteBodyWithDefaults instantiates a new MachineIdInitiateDeleteBody 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 (*MachineIdInitiateDeleteBody) GetDomainAdminPassword

func (o *MachineIdInitiateDeleteBody) GetDomainAdminPassword() string

GetDomainAdminPassword returns the DomainAdminPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MachineIdInitiateDeleteBody) GetDomainAdminPasswordOk

func (o *MachineIdInitiateDeleteBody) GetDomainAdminPasswordOk() (*string, bool)

GetDomainAdminPasswordOk returns a tuple with the DomainAdminPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MachineIdInitiateDeleteBody) GetDomainAdminUsername

func (o *MachineIdInitiateDeleteBody) GetDomainAdminUsername() string

GetDomainAdminUsername returns the DomainAdminUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MachineIdInitiateDeleteBody) GetDomainAdminUsernameOk

func (o *MachineIdInitiateDeleteBody) GetDomainAdminUsernameOk() (*string, bool)

GetDomainAdminUsernameOk returns a tuple with the DomainAdminUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MachineIdInitiateDeleteBody) HasDomainAdminPassword

func (o *MachineIdInitiateDeleteBody) HasDomainAdminPassword() bool

HasDomainAdminPassword returns a boolean if a field has been set.

func (*MachineIdInitiateDeleteBody) HasDomainAdminUsername

func (o *MachineIdInitiateDeleteBody) HasDomainAdminUsername() bool

HasDomainAdminUsername returns a boolean if a field has been set.

func (MachineIdInitiateDeleteBody) MarshalJSON

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

func (*MachineIdInitiateDeleteBody) SetDomainAdminPassword

func (o *MachineIdInitiateDeleteBody) SetDomainAdminPassword(v string)

SetDomainAdminPassword gets a reference to the given NullableString and assigns it to the DomainAdminPassword field.

func (*MachineIdInitiateDeleteBody) SetDomainAdminPasswordNil

func (o *MachineIdInitiateDeleteBody) SetDomainAdminPasswordNil()

SetDomainAdminPasswordNil sets the value for DomainAdminPassword to be an explicit nil

func (*MachineIdInitiateDeleteBody) SetDomainAdminUsername

func (o *MachineIdInitiateDeleteBody) SetDomainAdminUsername(v string)

SetDomainAdminUsername gets a reference to the given NullableString and assigns it to the DomainAdminUsername field.

func (*MachineIdInitiateDeleteBody) SetDomainAdminUsernameNil

func (o *MachineIdInitiateDeleteBody) SetDomainAdminUsernameNil()

SetDomainAdminUsernameNil sets the value for DomainAdminUsername to be an explicit nil

func (MachineIdInitiateDeleteBody) ToMap

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

func (*MachineIdInitiateDeleteBody) UnsetDomainAdminPassword

func (o *MachineIdInitiateDeleteBody) UnsetDomainAdminPassword()

UnsetDomainAdminPassword ensures that no value is present for DomainAdminPassword, not even an explicit nil

func (*MachineIdInitiateDeleteBody) UnsetDomainAdminUsername

func (o *MachineIdInitiateDeleteBody) UnsetDomainAdminUsername()

UnsetDomainAdminUsername ensures that no value is present for DomainAdminUsername, not even an explicit nil

type MachineIdSaveAsImageBody

type MachineIdSaveAsImageBody struct {
	// Id for the image builder machine
	AccountId string `json:"accountId"`
	// Image Name
	ImageName string `json:"imageName"`
	// Image Description
	ImageDescription string `json:"imageDescription"`
	// Image Notes
	ImageNotes NullableString `json:"imageNotes,omitempty"`
}

MachineIdSaveAsImageBody struct for MachineIdSaveAsImageBody

func NewMachineIdSaveAsImageBody

func NewMachineIdSaveAsImageBody(accountId string, imageName string, imageDescription string) *MachineIdSaveAsImageBody

NewMachineIdSaveAsImageBody instantiates a new MachineIdSaveAsImageBody 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 NewMachineIdSaveAsImageBodyWithDefaults

func NewMachineIdSaveAsImageBodyWithDefaults() *MachineIdSaveAsImageBody

NewMachineIdSaveAsImageBodyWithDefaults instantiates a new MachineIdSaveAsImageBody 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 (*MachineIdSaveAsImageBody) GetAccountId

func (o *MachineIdSaveAsImageBody) GetAccountId() string

GetAccountId returns the AccountId field value

func (*MachineIdSaveAsImageBody) GetAccountIdOk

func (o *MachineIdSaveAsImageBody) GetAccountIdOk() (*string, bool)

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

func (*MachineIdSaveAsImageBody) GetImageDescription

func (o *MachineIdSaveAsImageBody) GetImageDescription() string

GetImageDescription returns the ImageDescription field value

func (*MachineIdSaveAsImageBody) GetImageDescriptionOk

func (o *MachineIdSaveAsImageBody) GetImageDescriptionOk() (*string, bool)

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

func (*MachineIdSaveAsImageBody) GetImageName

func (o *MachineIdSaveAsImageBody) GetImageName() string

GetImageName returns the ImageName field value

func (*MachineIdSaveAsImageBody) GetImageNameOk

func (o *MachineIdSaveAsImageBody) GetImageNameOk() (*string, bool)

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

func (*MachineIdSaveAsImageBody) GetImageNotes

func (o *MachineIdSaveAsImageBody) GetImageNotes() string

GetImageNotes returns the ImageNotes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MachineIdSaveAsImageBody) GetImageNotesOk

func (o *MachineIdSaveAsImageBody) GetImageNotesOk() (*string, bool)

GetImageNotesOk returns a tuple with the ImageNotes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MachineIdSaveAsImageBody) HasImageNotes

func (o *MachineIdSaveAsImageBody) HasImageNotes() bool

HasImageNotes returns a boolean if a field has been set.

func (MachineIdSaveAsImageBody) MarshalJSON

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

func (*MachineIdSaveAsImageBody) SetAccountId

func (o *MachineIdSaveAsImageBody) SetAccountId(v string)

SetAccountId sets field value

func (*MachineIdSaveAsImageBody) SetImageDescription

func (o *MachineIdSaveAsImageBody) SetImageDescription(v string)

SetImageDescription sets field value

func (*MachineIdSaveAsImageBody) SetImageName

func (o *MachineIdSaveAsImageBody) SetImageName(v string)

SetImageName sets field value

func (*MachineIdSaveAsImageBody) SetImageNotes

func (o *MachineIdSaveAsImageBody) SetImageNotes(v string)

SetImageNotes gets a reference to the given NullableString and assigns it to the ImageNotes field.

func (*MachineIdSaveAsImageBody) SetImageNotesNil

func (o *MachineIdSaveAsImageBody) SetImageNotesNil()

SetImageNotesNil sets the value for ImageNotes to be an explicit nil

func (MachineIdSaveAsImageBody) ToMap

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

func (*MachineIdSaveAsImageBody) UnsetImageNotes

func (o *MachineIdSaveAsImageBody) UnsetImageNotes()

UnsetImageNotes ensures that no value is present for ImageNotes, not even an explicit nil

type MachinesDeleteBody

type MachinesDeleteBody struct {
	AccountType AccountType `json:"accountType"`
	// The list of machine ids to be deleted
	MachineIds  []string                          `json:"machineIds"`
	Credentials NullableDeleteMachinesCredentials `json:"credentials,omitempty"`
}

MachinesDeleteBody Delete machines by id

func NewMachinesDeleteBody

func NewMachinesDeleteBody(accountType AccountType, machineIds []string) *MachinesDeleteBody

NewMachinesDeleteBody instantiates a new MachinesDeleteBody 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 NewMachinesDeleteBodyWithDefaults

func NewMachinesDeleteBodyWithDefaults() *MachinesDeleteBody

NewMachinesDeleteBodyWithDefaults instantiates a new MachinesDeleteBody 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 (*MachinesDeleteBody) GetAccountType

func (o *MachinesDeleteBody) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*MachinesDeleteBody) GetAccountTypeOk

func (o *MachinesDeleteBody) GetAccountTypeOk() (*AccountType, bool)

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

func (*MachinesDeleteBody) GetCredentials

func (o *MachinesDeleteBody) GetCredentials() DeleteMachinesCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MachinesDeleteBody) GetCredentialsOk

func (o *MachinesDeleteBody) GetCredentialsOk() (*DeleteMachinesCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MachinesDeleteBody) GetMachineIds

func (o *MachinesDeleteBody) GetMachineIds() []string

GetMachineIds returns the MachineIds field value

func (*MachinesDeleteBody) GetMachineIdsOk

func (o *MachinesDeleteBody) GetMachineIdsOk() ([]string, bool)

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

func (*MachinesDeleteBody) HasCredentials

func (o *MachinesDeleteBody) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (MachinesDeleteBody) MarshalJSON

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

func (*MachinesDeleteBody) SetAccountType

func (o *MachinesDeleteBody) SetAccountType(v AccountType)

SetAccountType sets field value

func (*MachinesDeleteBody) SetCredentials

func (o *MachinesDeleteBody) SetCredentials(v DeleteMachinesCredentials)

SetCredentials gets a reference to the given NullableDeleteMachinesCredentials and assigns it to the Credentials field.

func (*MachinesDeleteBody) SetCredentialsNil

func (o *MachinesDeleteBody) SetCredentialsNil()

SetCredentialsNil sets the value for Credentials to be an explicit nil

func (*MachinesDeleteBody) SetMachineIds

func (o *MachinesDeleteBody) SetMachineIds(v []string)

SetMachineIds sets field value

func (MachinesDeleteBody) ToMap

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

func (*MachinesDeleteBody) UnsetCredentials

func (o *MachinesDeleteBody) UnsetCredentials()

UnsetCredentials ensures that no value is present for Credentials, not even an explicit nil

type MappedNullable

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

type MiddlewareFunction

type MiddlewareFunction func(*http.Request)

MiddlewareFunction provides way to implement custom middleware

type NamingSchemeType

type NamingSchemeType string

NamingSchemeType Naming scheme type for creating machine account names during provisioning.

const (
	NAMINGSCHEMETYPE_UNKNOWN    NamingSchemeType = "Unknown"
	NAMINGSCHEMETYPE_NONE       NamingSchemeType = "None"
	NAMINGSCHEMETYPE_NUMERIC    NamingSchemeType = "Numeric"
	NAMINGSCHEMETYPE_ALPHABETIC NamingSchemeType = "Alphabetic"
	NAMINGSCHEMETYPE_UNICODE    NamingSchemeType = "Unicode"
)

List of NamingSchemeType

func NewNamingSchemeTypeFromValue

func NewNamingSchemeTypeFromValue(v string) (*NamingSchemeType, error)

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

func (NamingSchemeType) IsValid

func (v NamingSchemeType) IsValid() bool

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

func (NamingSchemeType) Ptr

Ptr returns reference to NamingSchemeType value

func (*NamingSchemeType) UnmarshalJSON

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

type NullableAccount

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

func NewNullableAccount

func NewNullableAccount(val *Account) *NullableAccount

func (NullableAccount) Get

func (v NullableAccount) Get() *Account

func (NullableAccount) IsSet

func (v NullableAccount) IsSet() bool

func (NullableAccount) MarshalJSON

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

func (*NullableAccount) Set

func (v *NullableAccount) Set(val *Account)

func (*NullableAccount) UnmarshalJSON

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

func (*NullableAccount) Unset

func (v *NullableAccount) Unset()

type NullableAccountResource

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

func NewNullableAccountResource

func NewNullableAccountResource(val *AccountResource) *NullableAccountResource

func (NullableAccountResource) Get

func (NullableAccountResource) IsSet

func (v NullableAccountResource) IsSet() bool

func (NullableAccountResource) MarshalJSON

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

func (*NullableAccountResource) Set

func (*NullableAccountResource) UnmarshalJSON

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

func (*NullableAccountResource) Unset

func (v *NullableAccountResource) Unset()

type NullableAccountResources

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

func NewNullableAccountResources

func NewNullableAccountResources(val *AccountResources) *NullableAccountResources

func (NullableAccountResources) Get

func (NullableAccountResources) IsSet

func (v NullableAccountResources) IsSet() bool

func (NullableAccountResources) MarshalJSON

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

func (*NullableAccountResources) Set

func (*NullableAccountResources) UnmarshalJSON

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

func (*NullableAccountResources) Unset

func (v *NullableAccountResources) Unset()

type NullableAccountResourcesItemsInner added in v1.0.2

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

func NewNullableAccountResourcesItemsInner added in v1.0.2

func NewNullableAccountResourcesItemsInner(val *AccountResourcesItemsInner) *NullableAccountResourcesItemsInner

func (NullableAccountResourcesItemsInner) Get added in v1.0.2

func (NullableAccountResourcesItemsInner) IsSet added in v1.0.2

func (NullableAccountResourcesItemsInner) MarshalJSON added in v1.0.2

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

func (*NullableAccountResourcesItemsInner) Set added in v1.0.2

func (*NullableAccountResourcesItemsInner) UnmarshalJSON added in v1.0.2

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

func (*NullableAccountResourcesItemsInner) Unset added in v1.0.2

type NullableAccountState

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

func NewNullableAccountState

func NewNullableAccountState(val *AccountState) *NullableAccountState

func (NullableAccountState) Get

func (NullableAccountState) IsSet

func (v NullableAccountState) IsSet() bool

func (NullableAccountState) MarshalJSON

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

func (*NullableAccountState) Set

func (v *NullableAccountState) Set(val *AccountState)

func (*NullableAccountState) UnmarshalJSON

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

func (*NullableAccountState) Unset

func (v *NullableAccountState) Unset()

type NullableAccountTask

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

func NewNullableAccountTask

func NewNullableAccountTask(val *AccountTask) *NullableAccountTask

func (NullableAccountTask) Get

func (NullableAccountTask) IsSet

func (v NullableAccountTask) IsSet() bool

func (NullableAccountTask) MarshalJSON

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

func (*NullableAccountTask) Set

func (v *NullableAccountTask) Set(val *AccountTask)

func (*NullableAccountTask) UnmarshalJSON

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

func (*NullableAccountTask) Unset

func (v *NullableAccountTask) Unset()

type NullableAccountTaskOperationType

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

func (NullableAccountTaskOperationType) Get

func (NullableAccountTaskOperationType) IsSet

func (NullableAccountTaskOperationType) MarshalJSON

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

func (*NullableAccountTaskOperationType) Set

func (*NullableAccountTaskOperationType) UnmarshalJSON

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

func (*NullableAccountTaskOperationType) Unset

type NullableAccountType

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

func NewNullableAccountType

func NewNullableAccountType(val *AccountType) *NullableAccountType

func (NullableAccountType) Get

func (NullableAccountType) IsSet

func (v NullableAccountType) IsSet() bool

func (NullableAccountType) MarshalJSON

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

func (*NullableAccountType) Set

func (v *NullableAccountType) Set(val *AccountType)

func (*NullableAccountType) UnmarshalJSON

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

func (*NullableAccountType) Unset

func (v *NullableAccountType) Unset()

type NullableAccountWarning

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

func NewNullableAccountWarning

func NewNullableAccountWarning(val *AccountWarning) *NullableAccountWarning

func (NullableAccountWarning) Get

func (NullableAccountWarning) IsSet

func (v NullableAccountWarning) IsSet() bool

func (NullableAccountWarning) MarshalJSON

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

func (*NullableAccountWarning) Set

func (*NullableAccountWarning) UnmarshalJSON

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

func (*NullableAccountWarning) Unset

func (v *NullableAccountWarning) Unset()

type NullableAccounts

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

func NewNullableAccounts

func NewNullableAccounts(val *Accounts) *NullableAccounts

func (NullableAccounts) Get

func (v NullableAccounts) Get() *Accounts

func (NullableAccounts) IsSet

func (v NullableAccounts) IsSet() bool

func (NullableAccounts) MarshalJSON

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

func (*NullableAccounts) Set

func (v *NullableAccounts) Set(val *Accounts)

func (*NullableAccounts) UnmarshalJSON

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

func (*NullableAccounts) Unset

func (v *NullableAccounts) Unset()

type NullableActiveConnection

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

func NewNullableActiveConnection

func NewNullableActiveConnection(val *ActiveConnection) *NullableActiveConnection

func (NullableActiveConnection) Get

func (NullableActiveConnection) IsSet

func (v NullableActiveConnection) IsSet() bool

func (NullableActiveConnection) MarshalJSON

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

func (*NullableActiveConnection) Set

func (*NullableActiveConnection) UnmarshalJSON

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

func (*NullableActiveConnection) Unset

func (v *NullableActiveConnection) Unset()

type NullableActiveTenantUserLicenses

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

func (NullableActiveTenantUserLicenses) Get

func (NullableActiveTenantUserLicenses) IsSet

func (NullableActiveTenantUserLicenses) MarshalJSON

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

func (*NullableActiveTenantUserLicenses) Set

func (*NullableActiveTenantUserLicenses) UnmarshalJSON

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

func (*NullableActiveTenantUserLicenses) Unset

type NullableAddAccount

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

func NewNullableAddAccount

func NewNullableAddAccount(val *AddAccount) *NullableAddAccount

func (NullableAddAccount) Get

func (v NullableAddAccount) Get() *AddAccount

func (NullableAddAccount) IsSet

func (v NullableAddAccount) IsSet() bool

func (NullableAddAccount) MarshalJSON

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

func (*NullableAddAccount) Set

func (v *NullableAddAccount) Set(val *AddAccount)

func (*NullableAddAccount) UnmarshalJSON

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

func (*NullableAddAccount) Unset

func (v *NullableAddAccount) Unset()

type NullableAddAwsEdcAccount

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

func NewNullableAddAwsEdcAccount

func NewNullableAddAwsEdcAccount(val *AddAwsEdcAccount) *NullableAddAwsEdcAccount

func (NullableAddAwsEdcAccount) Get

func (NullableAddAwsEdcAccount) IsSet

func (v NullableAddAwsEdcAccount) IsSet() bool

func (NullableAddAwsEdcAccount) MarshalJSON

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

func (*NullableAddAwsEdcAccount) Set

func (*NullableAddAwsEdcAccount) UnmarshalJSON

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

func (*NullableAddAwsEdcAccount) Unset

func (v *NullableAddAwsEdcAccount) Unset()

type NullableAddAwsEdcDeploymentMachines

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

func (NullableAddAwsEdcDeploymentMachines) Get

func (NullableAddAwsEdcDeploymentMachines) IsSet

func (NullableAddAwsEdcDeploymentMachines) MarshalJSON

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

func (*NullableAddAwsEdcDeploymentMachines) Set

func (*NullableAddAwsEdcDeploymentMachines) UnmarshalJSON

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

func (*NullableAddAwsEdcDeploymentMachines) Unset

type NullableAddAwsEdcDirectoryConnection

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

func (NullableAddAwsEdcDirectoryConnection) Get

func (NullableAddAwsEdcDirectoryConnection) IsSet

func (NullableAddAwsEdcDirectoryConnection) MarshalJSON

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

func (*NullableAddAwsEdcDirectoryConnection) Set

func (*NullableAddAwsEdcDirectoryConnection) UnmarshalJSON

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

func (*NullableAddAwsEdcDirectoryConnection) Unset

type NullableAddAwsEdcWorkspace

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

func NewNullableAddAwsEdcWorkspace

func NewNullableAddAwsEdcWorkspace(val *AddAwsEdcWorkspace) *NullableAddAwsEdcWorkspace

func (NullableAddAwsEdcWorkspace) Get

func (NullableAddAwsEdcWorkspace) IsSet

func (v NullableAddAwsEdcWorkspace) IsSet() bool

func (NullableAddAwsEdcWorkspace) MarshalJSON

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

func (*NullableAddAwsEdcWorkspace) Set

func (*NullableAddAwsEdcWorkspace) UnmarshalJSON

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

func (*NullableAddAwsEdcWorkspace) Unset

func (v *NullableAddAwsEdcWorkspace) Unset()

type NullableAddDeploymentMachines

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

func (NullableAddDeploymentMachines) Get

func (NullableAddDeploymentMachines) IsSet

func (NullableAddDeploymentMachines) MarshalJSON

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

func (*NullableAddDeploymentMachines) Set

func (*NullableAddDeploymentMachines) UnmarshalJSON

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

func (*NullableAddDeploymentMachines) Unset

func (v *NullableAddDeploymentMachines) Unset()

type NullableAddResourceConnection

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

func (NullableAddResourceConnection) Get

func (NullableAddResourceConnection) IsSet

func (NullableAddResourceConnection) MarshalJSON

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

func (*NullableAddResourceConnection) Set

func (*NullableAddResourceConnection) UnmarshalJSON

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

func (*NullableAddResourceConnection) Unset

func (v *NullableAddResourceConnection) Unset()

type NullableAllocationType

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

func NewNullableAllocationType

func NewNullableAllocationType(val *AllocationType) *NullableAllocationType

func (NullableAllocationType) Get

func (NullableAllocationType) IsSet

func (v NullableAllocationType) IsSet() bool

func (NullableAllocationType) MarshalJSON

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

func (*NullableAllocationType) Set

func (*NullableAllocationType) UnmarshalJSON

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

func (*NullableAllocationType) Unset

func (v *NullableAllocationType) Unset()

type NullableAssociatedDeployment

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

func NewNullableAssociatedDeployment

func NewNullableAssociatedDeployment(val *AssociatedDeployment) *NullableAssociatedDeployment

func (NullableAssociatedDeployment) Get

func (NullableAssociatedDeployment) IsSet

func (NullableAssociatedDeployment) MarshalJSON

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

func (*NullableAssociatedDeployment) Set

func (*NullableAssociatedDeployment) UnmarshalJSON

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

func (*NullableAssociatedDeployment) Unset

func (v *NullableAssociatedDeployment) Unset()

type NullableAssociatedImage

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

func NewNullableAssociatedImage

func NewNullableAssociatedImage(val *AssociatedImage) *NullableAssociatedImage

func (NullableAssociatedImage) Get

func (NullableAssociatedImage) IsSet

func (v NullableAssociatedImage) IsSet() bool

func (NullableAssociatedImage) MarshalJSON

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

func (*NullableAssociatedImage) Set

func (*NullableAssociatedImage) UnmarshalJSON

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

func (*NullableAssociatedImage) Unset

func (v *NullableAssociatedImage) Unset()

type NullableAssociatedResourceConnection

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

func (NullableAssociatedResourceConnection) Get

func (NullableAssociatedResourceConnection) IsSet

func (NullableAssociatedResourceConnection) MarshalJSON

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

func (*NullableAssociatedResourceConnection) Set

func (*NullableAssociatedResourceConnection) UnmarshalJSON

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

func (*NullableAssociatedResourceConnection) Unset

type NullableAwsAccountResourceType

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

func (NullableAwsAccountResourceType) Get

func (NullableAwsAccountResourceType) IsSet

func (NullableAwsAccountResourceType) MarshalJSON

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

func (*NullableAwsAccountResourceType) Set

func (*NullableAwsAccountResourceType) UnmarshalJSON

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

func (*NullableAwsAccountResourceType) Unset

func (v *NullableAwsAccountResourceType) Unset()

type NullableAwsEdcAccount

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

func NewNullableAwsEdcAccount

func NewNullableAwsEdcAccount(val *AwsEdcAccount) *NullableAwsEdcAccount

func (NullableAwsEdcAccount) Get

func (NullableAwsEdcAccount) IsSet

func (v NullableAwsEdcAccount) IsSet() bool

func (NullableAwsEdcAccount) MarshalJSON

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

func (*NullableAwsEdcAccount) Set

func (v *NullableAwsEdcAccount) Set(val *AwsEdcAccount)

func (*NullableAwsEdcAccount) UnmarshalJSON

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

func (*NullableAwsEdcAccount) Unset

func (v *NullableAwsEdcAccount) Unset()

type NullableAwsEdcAccountAuthType

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

func (NullableAwsEdcAccountAuthType) Get

func (NullableAwsEdcAccountAuthType) IsSet

func (NullableAwsEdcAccountAuthType) MarshalJSON

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

func (*NullableAwsEdcAccountAuthType) Set

func (*NullableAwsEdcAccountAuthType) UnmarshalJSON

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

func (*NullableAwsEdcAccountAuthType) Unset

func (v *NullableAwsEdcAccountAuthType) Unset()

type NullableAwsEdcAccountByolRegistrationTask

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

func (NullableAwsEdcAccountByolRegistrationTask) Get

func (NullableAwsEdcAccountByolRegistrationTask) IsSet

func (NullableAwsEdcAccountByolRegistrationTask) MarshalJSON

func (*NullableAwsEdcAccountByolRegistrationTask) Set

func (*NullableAwsEdcAccountByolRegistrationTask) UnmarshalJSON

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

func (*NullableAwsEdcAccountByolRegistrationTask) Unset

type NullableAwsEdcAccountResource

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

func (NullableAwsEdcAccountResource) Get

func (NullableAwsEdcAccountResource) IsSet

func (NullableAwsEdcAccountResource) MarshalJSON

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

func (*NullableAwsEdcAccountResource) Set

func (*NullableAwsEdcAccountResource) UnmarshalJSON

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

func (*NullableAwsEdcAccountResource) Unset

func (v *NullableAwsEdcAccountResource) Unset()

type NullableAwsEdcAccountResourceAmiImage

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

func (NullableAwsEdcAccountResourceAmiImage) Get

func (NullableAwsEdcAccountResourceAmiImage) IsSet

func (NullableAwsEdcAccountResourceAmiImage) MarshalJSON

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

func (*NullableAwsEdcAccountResourceAmiImage) Set

func (*NullableAwsEdcAccountResourceAmiImage) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceAmiImage) Unset

type NullableAwsEdcAccountResourceByolRegistration

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

func (NullableAwsEdcAccountResourceByolRegistration) Get

func (NullableAwsEdcAccountResourceByolRegistration) IsSet

func (NullableAwsEdcAccountResourceByolRegistration) MarshalJSON

func (*NullableAwsEdcAccountResourceByolRegistration) Set

func (*NullableAwsEdcAccountResourceByolRegistration) UnmarshalJSON

func (*NullableAwsEdcAccountResourceByolRegistration) Unset

type NullableAwsEdcAccountResourceCidrRange

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

func (NullableAwsEdcAccountResourceCidrRange) Get

func (NullableAwsEdcAccountResourceCidrRange) IsSet

func (NullableAwsEdcAccountResourceCidrRange) MarshalJSON

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

func (*NullableAwsEdcAccountResourceCidrRange) Set

func (*NullableAwsEdcAccountResourceCidrRange) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceCidrRange) Unset

type NullableAwsEdcAccountResourceDirectory

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

func (NullableAwsEdcAccountResourceDirectory) Get

func (NullableAwsEdcAccountResourceDirectory) IsSet

func (NullableAwsEdcAccountResourceDirectory) MarshalJSON

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

func (*NullableAwsEdcAccountResourceDirectory) Set

func (*NullableAwsEdcAccountResourceDirectory) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceDirectory) Unset

type NullableAwsEdcAccountResourceEc2InstanceType

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

func (NullableAwsEdcAccountResourceEc2InstanceType) Get

func (NullableAwsEdcAccountResourceEc2InstanceType) IsSet

func (NullableAwsEdcAccountResourceEc2InstanceType) MarshalJSON

func (*NullableAwsEdcAccountResourceEc2InstanceType) Set

func (*NullableAwsEdcAccountResourceEc2InstanceType) UnmarshalJSON

func (*NullableAwsEdcAccountResourceEc2InstanceType) Unset

type NullableAwsEdcAccountResourceFile

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

func (NullableAwsEdcAccountResourceFile) Get

func (NullableAwsEdcAccountResourceFile) IsSet

func (NullableAwsEdcAccountResourceFile) MarshalJSON

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

func (*NullableAwsEdcAccountResourceFile) Set

func (*NullableAwsEdcAccountResourceFile) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceFile) Unset

type NullableAwsEdcAccountResourceKeyPair

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

func (NullableAwsEdcAccountResourceKeyPair) Get

func (NullableAwsEdcAccountResourceKeyPair) IsSet

func (NullableAwsEdcAccountResourceKeyPair) MarshalJSON

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

func (*NullableAwsEdcAccountResourceKeyPair) Set

func (*NullableAwsEdcAccountResourceKeyPair) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceKeyPair) Unset

type NullableAwsEdcAccountResourceRegion

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

func (NullableAwsEdcAccountResourceRegion) Get

func (NullableAwsEdcAccountResourceRegion) IsSet

func (NullableAwsEdcAccountResourceRegion) MarshalJSON

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

func (*NullableAwsEdcAccountResourceRegion) Set

func (*NullableAwsEdcAccountResourceRegion) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceRegion) Unset

type NullableAwsEdcAccountResourceSecurityGroup

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

func (NullableAwsEdcAccountResourceSecurityGroup) Get

func (NullableAwsEdcAccountResourceSecurityGroup) IsSet

func (NullableAwsEdcAccountResourceSecurityGroup) MarshalJSON

func (*NullableAwsEdcAccountResourceSecurityGroup) Set

func (*NullableAwsEdcAccountResourceSecurityGroup) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceSecurityGroup) Unset

type NullableAwsEdcAccountResourceSubnet

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

func (NullableAwsEdcAccountResourceSubnet) Get

func (NullableAwsEdcAccountResourceSubnet) IsSet

func (NullableAwsEdcAccountResourceSubnet) MarshalJSON

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

func (*NullableAwsEdcAccountResourceSubnet) Set

func (*NullableAwsEdcAccountResourceSubnet) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceSubnet) Unset

type NullableAwsEdcAccountResourceVpc

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

func (NullableAwsEdcAccountResourceVpc) Get

func (NullableAwsEdcAccountResourceVpc) IsSet

func (NullableAwsEdcAccountResourceVpc) MarshalJSON

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

func (*NullableAwsEdcAccountResourceVpc) Set

func (*NullableAwsEdcAccountResourceVpc) UnmarshalJSON

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

func (*NullableAwsEdcAccountResourceVpc) Unset

type NullableAwsEdcAmiImageArchitecture

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

func (NullableAwsEdcAmiImageArchitecture) Get

func (NullableAwsEdcAmiImageArchitecture) IsSet

func (NullableAwsEdcAmiImageArchitecture) MarshalJSON

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

func (*NullableAwsEdcAmiImageArchitecture) Set

func (*NullableAwsEdcAmiImageArchitecture) UnmarshalJSON

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

func (*NullableAwsEdcAmiImageArchitecture) Unset

type NullableAwsEdcAmiImageBootMode

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

func (NullableAwsEdcAmiImageBootMode) Get

func (NullableAwsEdcAmiImageBootMode) IsSet

func (NullableAwsEdcAmiImageBootMode) MarshalJSON

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

func (*NullableAwsEdcAmiImageBootMode) Set

func (*NullableAwsEdcAmiImageBootMode) UnmarshalJSON

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

func (*NullableAwsEdcAmiImageBootMode) Unset

func (v *NullableAwsEdcAmiImageBootMode) Unset()

type NullableAwsEdcAmiImagePlatform

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

func (NullableAwsEdcAmiImagePlatform) Get

func (NullableAwsEdcAmiImagePlatform) IsSet

func (NullableAwsEdcAmiImagePlatform) MarshalJSON

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

func (*NullableAwsEdcAmiImagePlatform) Set

func (*NullableAwsEdcAmiImagePlatform) UnmarshalJSON

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

func (*NullableAwsEdcAmiImagePlatform) Unset

func (v *NullableAwsEdcAmiImagePlatform) Unset()

type NullableAwsEdcAmiImageStatus

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

func NewNullableAwsEdcAmiImageStatus

func NewNullableAwsEdcAmiImageStatus(val *AwsEdcAmiImageStatus) *NullableAwsEdcAmiImageStatus

func (NullableAwsEdcAmiImageStatus) Get

func (NullableAwsEdcAmiImageStatus) IsSet

func (NullableAwsEdcAmiImageStatus) MarshalJSON

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

func (*NullableAwsEdcAmiImageStatus) Set

func (*NullableAwsEdcAmiImageStatus) UnmarshalJSON

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

func (*NullableAwsEdcAmiImageStatus) Unset

func (v *NullableAwsEdcAmiImageStatus) Unset()

type NullableAwsEdcAmiImageType

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

func NewNullableAwsEdcAmiImageType

func NewNullableAwsEdcAmiImageType(val *AwsEdcAmiImageType) *NullableAwsEdcAmiImageType

func (NullableAwsEdcAmiImageType) Get

func (NullableAwsEdcAmiImageType) IsSet

func (v NullableAwsEdcAmiImageType) IsSet() bool

func (NullableAwsEdcAmiImageType) MarshalJSON

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

func (*NullableAwsEdcAmiImageType) Set

func (*NullableAwsEdcAmiImageType) UnmarshalJSON

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

func (*NullableAwsEdcAmiImageType) Unset

func (v *NullableAwsEdcAmiImageType) Unset()

type NullableAwsEdcAmiImageVirtualization

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

func (NullableAwsEdcAmiImageVirtualization) Get

func (NullableAwsEdcAmiImageVirtualization) IsSet

func (NullableAwsEdcAmiImageVirtualization) MarshalJSON

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

func (*NullableAwsEdcAmiImageVirtualization) Set

func (*NullableAwsEdcAmiImageVirtualization) UnmarshalJSON

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

func (*NullableAwsEdcAmiImageVirtualization) Unset

type NullableAwsEdcAmiImportApplications

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

func (NullableAwsEdcAmiImportApplications) Get

func (NullableAwsEdcAmiImportApplications) IsSet

func (NullableAwsEdcAmiImportApplications) MarshalJSON

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

func (*NullableAwsEdcAmiImportApplications) Set

func (*NullableAwsEdcAmiImportApplications) UnmarshalJSON

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

func (*NullableAwsEdcAmiImportApplications) Unset

type NullableAwsEdcDedicatedTenancyState

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

func (NullableAwsEdcDedicatedTenancyState) Get

func (NullableAwsEdcDedicatedTenancyState) IsSet

func (NullableAwsEdcDedicatedTenancyState) MarshalJSON

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

func (*NullableAwsEdcDedicatedTenancyState) Set

func (*NullableAwsEdcDedicatedTenancyState) UnmarshalJSON

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

func (*NullableAwsEdcDedicatedTenancyState) Unset

type NullableAwsEdcDeployment

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

func NewNullableAwsEdcDeployment

func NewNullableAwsEdcDeployment(val *AwsEdcDeployment) *NullableAwsEdcDeployment

func (NullableAwsEdcDeployment) Get

func (NullableAwsEdcDeployment) IsSet

func (v NullableAwsEdcDeployment) IsSet() bool

func (NullableAwsEdcDeployment) MarshalJSON

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

func (*NullableAwsEdcDeployment) Set

func (*NullableAwsEdcDeployment) UnmarshalJSON

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

func (*NullableAwsEdcDeployment) Unset

func (v *NullableAwsEdcDeployment) Unset()

type NullableAwsEdcDeploymentMachine

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

func (NullableAwsEdcDeploymentMachine) Get

func (NullableAwsEdcDeploymentMachine) IsSet

func (NullableAwsEdcDeploymentMachine) MarshalJSON

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

func (*NullableAwsEdcDeploymentMachine) Set

func (*NullableAwsEdcDeploymentMachine) UnmarshalJSON

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

func (*NullableAwsEdcDeploymentMachine) Unset

type NullableAwsEdcDirectoryConnection

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

func (NullableAwsEdcDirectoryConnection) Get

func (NullableAwsEdcDirectoryConnection) IsSet

func (NullableAwsEdcDirectoryConnection) MarshalJSON

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

func (*NullableAwsEdcDirectoryConnection) Set

func (*NullableAwsEdcDirectoryConnection) UnmarshalJSON

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

func (*NullableAwsEdcDirectoryConnection) Unset

type NullableAwsEdcDirectoryRegistrationStatus

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

func (NullableAwsEdcDirectoryRegistrationStatus) Get

func (NullableAwsEdcDirectoryRegistrationStatus) IsSet

func (NullableAwsEdcDirectoryRegistrationStatus) MarshalJSON

func (*NullableAwsEdcDirectoryRegistrationStatus) Set

func (*NullableAwsEdcDirectoryRegistrationStatus) UnmarshalJSON

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

func (*NullableAwsEdcDirectoryRegistrationStatus) Unset

type NullableAwsEdcDirectorySize

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

func NewNullableAwsEdcDirectorySize

func NewNullableAwsEdcDirectorySize(val *AwsEdcDirectorySize) *NullableAwsEdcDirectorySize

func (NullableAwsEdcDirectorySize) Get

func (NullableAwsEdcDirectorySize) IsSet

func (NullableAwsEdcDirectorySize) MarshalJSON

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

func (*NullableAwsEdcDirectorySize) Set

func (*NullableAwsEdcDirectorySize) UnmarshalJSON

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

func (*NullableAwsEdcDirectorySize) Unset

func (v *NullableAwsEdcDirectorySize) Unset()

type NullableAwsEdcDirectoryStatus

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

func (NullableAwsEdcDirectoryStatus) Get

func (NullableAwsEdcDirectoryStatus) IsSet

func (NullableAwsEdcDirectoryStatus) MarshalJSON

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

func (*NullableAwsEdcDirectoryStatus) Set

func (*NullableAwsEdcDirectoryStatus) UnmarshalJSON

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

func (*NullableAwsEdcDirectoryStatus) Unset

func (v *NullableAwsEdcDirectoryStatus) Unset()

type NullableAwsEdcDirectoryTenancy

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

func (NullableAwsEdcDirectoryTenancy) Get

func (NullableAwsEdcDirectoryTenancy) IsSet

func (NullableAwsEdcDirectoryTenancy) MarshalJSON

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

func (*NullableAwsEdcDirectoryTenancy) Set

func (*NullableAwsEdcDirectoryTenancy) UnmarshalJSON

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

func (*NullableAwsEdcDirectoryTenancy) Unset

func (v *NullableAwsEdcDirectoryTenancy) Unset()

type NullableAwsEdcDirectoryType

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

func NewNullableAwsEdcDirectoryType

func NewNullableAwsEdcDirectoryType(val *AwsEdcDirectoryType) *NullableAwsEdcDirectoryType

func (NullableAwsEdcDirectoryType) Get

func (NullableAwsEdcDirectoryType) IsSet

func (NullableAwsEdcDirectoryType) MarshalJSON

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

func (*NullableAwsEdcDirectoryType) Set

func (*NullableAwsEdcDirectoryType) UnmarshalJSON

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

func (*NullableAwsEdcDirectoryType) Unset

func (v *NullableAwsEdcDirectoryType) Unset()

type NullableAwsEdcImage

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

func NewNullableAwsEdcImage

func NewNullableAwsEdcImage(val *AwsEdcImage) *NullableAwsEdcImage

func (NullableAwsEdcImage) Get

func (NullableAwsEdcImage) IsSet

func (v NullableAwsEdcImage) IsSet() bool

func (NullableAwsEdcImage) MarshalJSON

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

func (*NullableAwsEdcImage) Set

func (v *NullableAwsEdcImage) Set(val *AwsEdcImage)

func (*NullableAwsEdcImage) UnmarshalJSON

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

func (*NullableAwsEdcImage) Unset

func (v *NullableAwsEdcImage) Unset()

type NullableAwsEdcMissingRolePermissions

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

func (NullableAwsEdcMissingRolePermissions) Get

func (NullableAwsEdcMissingRolePermissions) IsSet

func (NullableAwsEdcMissingRolePermissions) MarshalJSON

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

func (*NullableAwsEdcMissingRolePermissions) Set

func (*NullableAwsEdcMissingRolePermissions) UnmarshalJSON

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

func (*NullableAwsEdcMissingRolePermissions) Unset

type NullableAwsEdcMissingRolePermissionsCondition

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

func (NullableAwsEdcMissingRolePermissionsCondition) Get

func (NullableAwsEdcMissingRolePermissionsCondition) IsSet

func (NullableAwsEdcMissingRolePermissionsCondition) MarshalJSON

func (*NullableAwsEdcMissingRolePermissionsCondition) Set

func (*NullableAwsEdcMissingRolePermissionsCondition) UnmarshalJSON

func (*NullableAwsEdcMissingRolePermissionsCondition) Unset

type NullableAwsEdcRegisterAccount

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

func (NullableAwsEdcRegisterAccount) Get

func (NullableAwsEdcRegisterAccount) IsSet

func (NullableAwsEdcRegisterAccount) MarshalJSON

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

func (*NullableAwsEdcRegisterAccount) Set

func (*NullableAwsEdcRegisterAccount) UnmarshalJSON

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

func (*NullableAwsEdcRegisterAccount) Unset

func (v *NullableAwsEdcRegisterAccount) Unset()

type NullableAwsEdcSubnetStatus

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

func NewNullableAwsEdcSubnetStatus

func NewNullableAwsEdcSubnetStatus(val *AwsEdcSubnetStatus) *NullableAwsEdcSubnetStatus

func (NullableAwsEdcSubnetStatus) Get

func (NullableAwsEdcSubnetStatus) IsSet

func (v NullableAwsEdcSubnetStatus) IsSet() bool

func (NullableAwsEdcSubnetStatus) MarshalJSON

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

func (*NullableAwsEdcSubnetStatus) Set

func (*NullableAwsEdcSubnetStatus) UnmarshalJSON

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

func (*NullableAwsEdcSubnetStatus) Unset

func (v *NullableAwsEdcSubnetStatus) Unset()

type NullableAwsEdcVpcState

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

func NewNullableAwsEdcVpcState

func NewNullableAwsEdcVpcState(val *AwsEdcVpcState) *NullableAwsEdcVpcState

func (NullableAwsEdcVpcState) Get

func (NullableAwsEdcVpcState) IsSet

func (v NullableAwsEdcVpcState) IsSet() bool

func (NullableAwsEdcVpcState) MarshalJSON

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

func (*NullableAwsEdcVpcState) Set

func (*NullableAwsEdcVpcState) UnmarshalJSON

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

func (*NullableAwsEdcVpcState) Unset

func (v *NullableAwsEdcVpcState) Unset()

type NullableAwsEdcVpcTenancy

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

func NewNullableAwsEdcVpcTenancy

func NewNullableAwsEdcVpcTenancy(val *AwsEdcVpcTenancy) *NullableAwsEdcVpcTenancy

func (NullableAwsEdcVpcTenancy) Get

func (NullableAwsEdcVpcTenancy) IsSet

func (v NullableAwsEdcVpcTenancy) IsSet() bool

func (NullableAwsEdcVpcTenancy) MarshalJSON

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

func (*NullableAwsEdcVpcTenancy) Set

func (*NullableAwsEdcVpcTenancy) UnmarshalJSON

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

func (*NullableAwsEdcVpcTenancy) Unset

func (v *NullableAwsEdcVpcTenancy) Unset()

type NullableAwsEdcWorkspaceCompute

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

func (NullableAwsEdcWorkspaceCompute) Get

func (NullableAwsEdcWorkspaceCompute) IsSet

func (NullableAwsEdcWorkspaceCompute) MarshalJSON

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

func (*NullableAwsEdcWorkspaceCompute) Set

func (*NullableAwsEdcWorkspaceCompute) UnmarshalJSON

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

func (*NullableAwsEdcWorkspaceCompute) Unset

func (v *NullableAwsEdcWorkspaceCompute) Unset()

type NullableAwsEdcWorkspaceImageIngestionProcess

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

func (NullableAwsEdcWorkspaceImageIngestionProcess) Get

func (NullableAwsEdcWorkspaceImageIngestionProcess) IsSet

func (NullableAwsEdcWorkspaceImageIngestionProcess) MarshalJSON

func (*NullableAwsEdcWorkspaceImageIngestionProcess) Set

func (*NullableAwsEdcWorkspaceImageIngestionProcess) UnmarshalJSON

func (*NullableAwsEdcWorkspaceImageIngestionProcess) Unset

type NullableAwsEdcWorkspaceImageState

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

func (NullableAwsEdcWorkspaceImageState) Get

func (NullableAwsEdcWorkspaceImageState) IsSet

func (NullableAwsEdcWorkspaceImageState) MarshalJSON

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

func (*NullableAwsEdcWorkspaceImageState) Set

func (*NullableAwsEdcWorkspaceImageState) UnmarshalJSON

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

func (*NullableAwsEdcWorkspaceImageState) Unset

type NullableAwsEdcWorkspaceImageTenancy

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

func (NullableAwsEdcWorkspaceImageTenancy) Get

func (NullableAwsEdcWorkspaceImageTenancy) IsSet

func (NullableAwsEdcWorkspaceImageTenancy) MarshalJSON

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

func (*NullableAwsEdcWorkspaceImageTenancy) Set

func (*NullableAwsEdcWorkspaceImageTenancy) UnmarshalJSON

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

func (*NullableAwsEdcWorkspaceImageTenancy) Unset

type NullableAwsEdcWorkspaceRunningMode

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

func (NullableAwsEdcWorkspaceRunningMode) Get

func (NullableAwsEdcWorkspaceRunningMode) IsSet

func (NullableAwsEdcWorkspaceRunningMode) MarshalJSON

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

func (*NullableAwsEdcWorkspaceRunningMode) Set

func (*NullableAwsEdcWorkspaceRunningMode) UnmarshalJSON

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

func (*NullableAwsEdcWorkspaceRunningMode) Unset

type NullableAwsEdcWorkspaceState

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

func NewNullableAwsEdcWorkspaceState

func NewNullableAwsEdcWorkspaceState(val *AwsEdcWorkspaceState) *NullableAwsEdcWorkspaceState

func (NullableAwsEdcWorkspaceState) Get

func (NullableAwsEdcWorkspaceState) IsSet

func (NullableAwsEdcWorkspaceState) MarshalJSON

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

func (*NullableAwsEdcWorkspaceState) Set

func (*NullableAwsEdcWorkspaceState) UnmarshalJSON

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

func (*NullableAwsEdcWorkspaceState) Unset

func (v *NullableAwsEdcWorkspaceState) Unset()

type NullableAwsWorkspaceRegion

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

func NewNullableAwsWorkspaceRegion

func NewNullableAwsWorkspaceRegion(val *AwsWorkspaceRegion) *NullableAwsWorkspaceRegion

func (NullableAwsWorkspaceRegion) Get

func (NullableAwsWorkspaceRegion) IsSet

func (v NullableAwsWorkspaceRegion) IsSet() bool

func (NullableAwsWorkspaceRegion) MarshalJSON

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

func (*NullableAwsWorkspaceRegion) Set

func (*NullableAwsWorkspaceRegion) UnmarshalJSON

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

func (*NullableAwsWorkspaceRegion) Unset

func (v *NullableAwsWorkspaceRegion) 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 NullableCommissionTask

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

func NewNullableCommissionTask

func NewNullableCommissionTask(val *CommissionTask) *NullableCommissionTask

func (NullableCommissionTask) Get

func (NullableCommissionTask) IsSet

func (v NullableCommissionTask) IsSet() bool

func (NullableCommissionTask) MarshalJSON

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

func (*NullableCommissionTask) Set

func (*NullableCommissionTask) UnmarshalJSON

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

func (*NullableCommissionTask) Unset

func (v *NullableCommissionTask) Unset()

type NullableCommissionTaskOperationType

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

func (NullableCommissionTaskOperationType) Get

func (NullableCommissionTaskOperationType) IsSet

func (NullableCommissionTaskOperationType) MarshalJSON

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

func (*NullableCommissionTaskOperationType) Set

func (*NullableCommissionTaskOperationType) UnmarshalJSON

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

func (*NullableCommissionTaskOperationType) Unset

type NullableCompute

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

func NewNullableCompute

func NewNullableCompute(val *Compute) *NullableCompute

func (NullableCompute) Get

func (v NullableCompute) Get() *Compute

func (NullableCompute) IsSet

func (v NullableCompute) IsSet() bool

func (NullableCompute) MarshalJSON

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

func (*NullableCompute) Set

func (v *NullableCompute) Set(val *Compute)

func (*NullableCompute) UnmarshalJSON

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

func (*NullableCompute) Unset

func (v *NullableCompute) Unset()

type NullableConditionalExpression

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

func (NullableConditionalExpression) Get

func (NullableConditionalExpression) IsSet

func (NullableConditionalExpression) MarshalJSON

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

func (*NullableConditionalExpression) Set

func (*NullableConditionalExpression) UnmarshalJSON

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

func (*NullableConditionalExpression) Unset

func (v *NullableConditionalExpression) Unset()

type NullableConnection

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

func NewNullableConnection

func NewNullableConnection(val *Connection) *NullableConnection

func (NullableConnection) Get

func (v NullableConnection) Get() *Connection

func (NullableConnection) IsSet

func (v NullableConnection) IsSet() bool

func (NullableConnection) MarshalJSON

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

func (*NullableConnection) Set

func (v *NullableConnection) Set(val *Connection)

func (*NullableConnection) UnmarshalJSON

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

func (*NullableConnection) Unset

func (v *NullableConnection) Unset()

type NullableConnectionState

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

func NewNullableConnectionState

func NewNullableConnectionState(val *ConnectionState) *NullableConnectionState

func (NullableConnectionState) Get

func (NullableConnectionState) IsSet

func (v NullableConnectionState) IsSet() bool

func (NullableConnectionState) MarshalJSON

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

func (*NullableConnectionState) Set

func (*NullableConnectionState) UnmarshalJSON

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

func (*NullableConnectionState) Unset

func (v *NullableConnectionState) Unset()

type NullableConsentMetadata

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

func NewNullableConsentMetadata

func NewNullableConsentMetadata(val *ConsentMetadata) *NullableConsentMetadata

func (NullableConsentMetadata) Get

func (NullableConsentMetadata) IsSet

func (v NullableConsentMetadata) IsSet() bool

func (NullableConsentMetadata) MarshalJSON

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

func (*NullableConsentMetadata) Set

func (*NullableConsentMetadata) UnmarshalJSON

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

func (*NullableConsentMetadata) Unset

func (v *NullableConsentMetadata) Unset()

type NullableCoreUser

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

func NewNullableCoreUser

func NewNullableCoreUser(val *CoreUser) *NullableCoreUser

func (NullableCoreUser) Get

func (v NullableCoreUser) Get() *CoreUser

func (NullableCoreUser) IsSet

func (v NullableCoreUser) IsSet() bool

func (NullableCoreUser) MarshalJSON

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

func (*NullableCoreUser) Set

func (v *NullableCoreUser) Set(val *CoreUser)

func (*NullableCoreUser) UnmarshalJSON

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

func (*NullableCoreUser) Unset

func (v *NullableCoreUser) Unset()

type NullableDeleteMachines

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

func NewNullableDeleteMachines

func NewNullableDeleteMachines(val *DeleteMachines) *NullableDeleteMachines

func (NullableDeleteMachines) Get

func (NullableDeleteMachines) IsSet

func (v NullableDeleteMachines) IsSet() bool

func (NullableDeleteMachines) MarshalJSON

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

func (*NullableDeleteMachines) Set

func (*NullableDeleteMachines) UnmarshalJSON

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

func (*NullableDeleteMachines) Unset

func (v *NullableDeleteMachines) Unset()

type NullableDeleteMachinesCredentials

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

func (NullableDeleteMachinesCredentials) Get

func (NullableDeleteMachinesCredentials) IsSet

func (NullableDeleteMachinesCredentials) MarshalJSON

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

func (*NullableDeleteMachinesCredentials) Set

func (*NullableDeleteMachinesCredentials) UnmarshalJSON

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

func (*NullableDeleteMachinesCredentials) Unset

type NullableDeployment

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

func NewNullableDeployment

func NewNullableDeployment(val *Deployment) *NullableDeployment

func (NullableDeployment) Get

func (v NullableDeployment) Get() *Deployment

func (NullableDeployment) IsSet

func (v NullableDeployment) IsSet() bool

func (NullableDeployment) MarshalJSON

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

func (*NullableDeployment) Set

func (v *NullableDeployment) Set(val *Deployment)

func (*NullableDeployment) UnmarshalJSON

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

func (*NullableDeployment) Unset

func (v *NullableDeployment) Unset()

type NullableDeploymentCredentials

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

func (NullableDeploymentCredentials) Get

func (NullableDeploymentCredentials) IsSet

func (NullableDeploymentCredentials) MarshalJSON

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

func (*NullableDeploymentCredentials) Set

func (*NullableDeploymentCredentials) UnmarshalJSON

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

func (*NullableDeploymentCredentials) Unset

func (v *NullableDeploymentCredentials) Unset()

type NullableDeploymentIdInitiateDeleteBody

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

func (NullableDeploymentIdInitiateDeleteBody) Get

func (NullableDeploymentIdInitiateDeleteBody) IsSet

func (NullableDeploymentIdInitiateDeleteBody) MarshalJSON

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

func (*NullableDeploymentIdInitiateDeleteBody) Set

func (*NullableDeploymentIdInitiateDeleteBody) UnmarshalJSON

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

func (*NullableDeploymentIdInitiateDeleteBody) Unset

type NullableDeploymentIdMachinesBody

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

func (NullableDeploymentIdMachinesBody) Get

func (NullableDeploymentIdMachinesBody) IsSet

func (NullableDeploymentIdMachinesBody) MarshalJSON

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

func (*NullableDeploymentIdMachinesBody) Set

func (*NullableDeploymentIdMachinesBody) UnmarshalJSON

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

func (*NullableDeploymentIdMachinesBody) Unset

type NullableDeploymentMachine

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

func NewNullableDeploymentMachine

func NewNullableDeploymentMachine(val *DeploymentMachine) *NullableDeploymentMachine

func (NullableDeploymentMachine) Get

func (NullableDeploymentMachine) IsSet

func (v NullableDeploymentMachine) IsSet() bool

func (NullableDeploymentMachine) MarshalJSON

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

func (*NullableDeploymentMachine) Set

func (*NullableDeploymentMachine) UnmarshalJSON

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

func (*NullableDeploymentMachine) Unset

func (v *NullableDeploymentMachine) Unset()

type NullableDeploymentMachines

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

func NewNullableDeploymentMachines

func NewNullableDeploymentMachines(val *DeploymentMachines) *NullableDeploymentMachines

func (NullableDeploymentMachines) Get

func (NullableDeploymentMachines) IsSet

func (v NullableDeploymentMachines) IsSet() bool

func (NullableDeploymentMachines) MarshalJSON

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

func (*NullableDeploymentMachines) Set

func (*NullableDeploymentMachines) UnmarshalJSON

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

func (*NullableDeploymentMachines) Unset

func (v *NullableDeploymentMachines) Unset()

type NullableDeploymentScaleSettings

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

func (NullableDeploymentScaleSettings) Get

func (NullableDeploymentScaleSettings) IsSet

func (NullableDeploymentScaleSettings) MarshalJSON

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

func (*NullableDeploymentScaleSettings) Set

func (*NullableDeploymentScaleSettings) UnmarshalJSON

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

func (*NullableDeploymentScaleSettings) Unset

type NullableDeploymentState

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

func NewNullableDeploymentState

func NewNullableDeploymentState(val *DeploymentState) *NullableDeploymentState

func (NullableDeploymentState) Get

func (NullableDeploymentState) IsSet

func (v NullableDeploymentState) IsSet() bool

func (NullableDeploymentState) MarshalJSON

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

func (*NullableDeploymentState) Set

func (*NullableDeploymentState) UnmarshalJSON

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

func (*NullableDeploymentState) Unset

func (v *NullableDeploymentState) Unset()

type NullableDeploymentTask

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

func NewNullableDeploymentTask

func NewNullableDeploymentTask(val *DeploymentTask) *NullableDeploymentTask

func (NullableDeploymentTask) Get

func (NullableDeploymentTask) IsSet

func (v NullableDeploymentTask) IsSet() bool

func (NullableDeploymentTask) MarshalJSON

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

func (*NullableDeploymentTask) Set

func (*NullableDeploymentTask) UnmarshalJSON

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

func (*NullableDeploymentTask) Unset

func (v *NullableDeploymentTask) Unset()

type NullableDeploymentTaskOperationType

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

func (NullableDeploymentTaskOperationType) Get

func (NullableDeploymentTaskOperationType) IsSet

func (NullableDeploymentTaskOperationType) MarshalJSON

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

func (*NullableDeploymentTaskOperationType) Set

func (*NullableDeploymentTaskOperationType) UnmarshalJSON

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

func (*NullableDeploymentTaskOperationType) Unset

type NullableDeploymentUsers

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

func NewNullableDeploymentUsers

func NewNullableDeploymentUsers(val *DeploymentUsers) *NullableDeploymentUsers

func (NullableDeploymentUsers) Get

func (NullableDeploymentUsers) IsSet

func (v NullableDeploymentUsers) IsSet() bool

func (NullableDeploymentUsers) MarshalJSON

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

func (*NullableDeploymentUsers) Set

func (*NullableDeploymentUsers) UnmarshalJSON

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

func (*NullableDeploymentUsers) Unset

func (v *NullableDeploymentUsers) Unset()

type NullableDeploymentWarning

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

func NewNullableDeploymentWarning

func NewNullableDeploymentWarning(val *DeploymentWarning) *NullableDeploymentWarning

func (NullableDeploymentWarning) Get

func (NullableDeploymentWarning) IsSet

func (v NullableDeploymentWarning) IsSet() bool

func (NullableDeploymentWarning) MarshalJSON

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

func (*NullableDeploymentWarning) Set

func (*NullableDeploymentWarning) UnmarshalJSON

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

func (*NullableDeploymentWarning) Unset

func (v *NullableDeploymentWarning) Unset()

type NullableDeploymentWarningType

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

func (NullableDeploymentWarningType) Get

func (NullableDeploymentWarningType) IsSet

func (NullableDeploymentWarningType) MarshalJSON

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

func (*NullableDeploymentWarningType) Set

func (*NullableDeploymentWarningType) UnmarshalJSON

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

func (*NullableDeploymentWarningType) Unset

func (v *NullableDeploymentWarningType) Unset()

type NullableDeployments

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

func NewNullableDeployments

func NewNullableDeployments(val *Deployments) *NullableDeployments

func (NullableDeployments) Get

func (NullableDeployments) IsSet

func (v NullableDeployments) IsSet() bool

func (NullableDeployments) MarshalJSON

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

func (*NullableDeployments) Set

func (v *NullableDeployments) Set(val *Deployments)

func (*NullableDeployments) UnmarshalJSON

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

func (*NullableDeployments) Unset

func (v *NullableDeployments) Unset()

type NullableErasureSwitch

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

func NewNullableErasureSwitch

func NewNullableErasureSwitch(val *ErasureSwitch) *NullableErasureSwitch

func (NullableErasureSwitch) Get

func (NullableErasureSwitch) IsSet

func (v NullableErasureSwitch) IsSet() bool

func (NullableErasureSwitch) MarshalJSON

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

func (*NullableErasureSwitch) Set

func (v *NullableErasureSwitch) Set(val *ErasureSwitch)

func (*NullableErasureSwitch) UnmarshalJSON

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

func (*NullableErasureSwitch) Unset

func (v *NullableErasureSwitch) Unset()

type NullableErrorResponse

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

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

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

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

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

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) Unset()

type NullableErrorResponseParameters

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

func (NullableErrorResponseParameters) Get

func (NullableErrorResponseParameters) IsSet

func (NullableErrorResponseParameters) MarshalJSON

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

func (*NullableErrorResponseParameters) Set

func (*NullableErrorResponseParameters) UnmarshalJSON

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

func (*NullableErrorResponseParameters) Unset

type NullableExpression

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

func NewNullableExpression

func NewNullableExpression(val *Expression) *NullableExpression

func (NullableExpression) Get

func (v NullableExpression) Get() *Expression

func (NullableExpression) IsSet

func (v NullableExpression) IsSet() bool

func (NullableExpression) MarshalJSON

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

func (*NullableExpression) Set

func (v *NullableExpression) Set(val *Expression)

func (*NullableExpression) UnmarshalJSON

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

func (*NullableExpression) Unset

func (v *NullableExpression) 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 NullableGetTaskAsync200Response added in v1.0.0

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

func NewNullableGetTaskAsync200Response added in v1.0.0

func NewNullableGetTaskAsync200Response(val *GetTaskAsync200Response) *NullableGetTaskAsync200Response

func (NullableGetTaskAsync200Response) Get added in v1.0.0

func (NullableGetTaskAsync200Response) IsSet added in v1.0.0

func (NullableGetTaskAsync200Response) MarshalJSON added in v1.0.0

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

func (*NullableGetTaskAsync200Response) Set added in v1.0.0

func (*NullableGetTaskAsync200Response) UnmarshalJSON added in v1.0.0

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

func (*NullableGetTaskAsync200Response) Unset added in v1.0.0

type NullableGroup

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

func NewNullableGroup

func NewNullableGroup(val *Group) *NullableGroup

func (NullableGroup) Get

func (v NullableGroup) Get() *Group

func (NullableGroup) IsSet

func (v NullableGroup) IsSet() bool

func (NullableGroup) MarshalJSON

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

func (*NullableGroup) Set

func (v *NullableGroup) Set(val *Group)

func (*NullableGroup) UnmarshalJSON

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

func (*NullableGroup) Unset

func (v *NullableGroup) Unset()

type NullableGroupLicenseErrorDetailsResponse

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

func (NullableGroupLicenseErrorDetailsResponse) Get

func (NullableGroupLicenseErrorDetailsResponse) IsSet

func (NullableGroupLicenseErrorDetailsResponse) MarshalJSON

func (*NullableGroupLicenseErrorDetailsResponse) Set

func (*NullableGroupLicenseErrorDetailsResponse) UnmarshalJSON

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

func (*NullableGroupLicenseErrorDetailsResponse) Unset

type NullableGroupLicenseOperationStatus

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

func (NullableGroupLicenseOperationStatus) Get

func (NullableGroupLicenseOperationStatus) IsSet

func (NullableGroupLicenseOperationStatus) MarshalJSON

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

func (*NullableGroupLicenseOperationStatus) Set

func (*NullableGroupLicenseOperationStatus) UnmarshalJSON

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

func (*NullableGroupLicenseOperationStatus) Unset

type NullableGroupLicenseOperationType

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

func (NullableGroupLicenseOperationType) Get

func (NullableGroupLicenseOperationType) IsSet

func (NullableGroupLicenseOperationType) MarshalJSON

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

func (*NullableGroupLicenseOperationType) Set

func (*NullableGroupLicenseOperationType) UnmarshalJSON

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

func (*NullableGroupLicenseOperationType) Unset

type NullableGroupUserErrorResponse

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

func (NullableGroupUserErrorResponse) Get

func (NullableGroupUserErrorResponse) IsSet

func (NullableGroupUserErrorResponse) MarshalJSON

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

func (*NullableGroupUserErrorResponse) Set

func (*NullableGroupUserErrorResponse) UnmarshalJSON

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

func (*NullableGroupUserErrorResponse) Unset

func (v *NullableGroupUserErrorResponse) Unset()

type NullableGroupUsers

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

func NewNullableGroupUsers

func NewNullableGroupUsers(val *GroupUsers) *NullableGroupUsers

func (NullableGroupUsers) Get

func (v NullableGroupUsers) Get() *GroupUsers

func (NullableGroupUsers) IsSet

func (v NullableGroupUsers) IsSet() bool

func (NullableGroupUsers) MarshalJSON

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

func (*NullableGroupUsers) Set

func (v *NullableGroupUsers) Set(val *GroupUsers)

func (*NullableGroupUsers) UnmarshalJSON

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

func (*NullableGroupUsers) Unset

func (v *NullableGroupUsers) Unset()

type NullableImage

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

func NewNullableImage

func NewNullableImage(val *Image) *NullableImage

func (NullableImage) Get

func (v NullableImage) Get() *Image

func (NullableImage) IsSet

func (v NullableImage) IsSet() bool

func (NullableImage) MarshalJSON

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

func (*NullableImage) Set

func (v *NullableImage) Set(val *Image)

func (*NullableImage) UnmarshalJSON

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

func (*NullableImage) Unset

func (v *NullableImage) Unset()

type NullableImageUpdateBody

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

func NewNullableImageUpdateBody

func NewNullableImageUpdateBody(val *ImageUpdateBody) *NullableImageUpdateBody

func (NullableImageUpdateBody) Get

func (NullableImageUpdateBody) IsSet

func (v NullableImageUpdateBody) IsSet() bool

func (NullableImageUpdateBody) MarshalJSON

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

func (*NullableImageUpdateBody) Set

func (*NullableImageUpdateBody) UnmarshalJSON

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

func (*NullableImageUpdateBody) Unset

func (v *NullableImageUpdateBody) Unset()

type NullableImages

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

func NewNullableImages

func NewNullableImages(val *Images) *NullableImages

func (NullableImages) Get

func (v NullableImages) Get() *Images

func (NullableImages) IsSet

func (v NullableImages) IsSet() bool

func (NullableImages) MarshalJSON

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

func (*NullableImages) Set

func (v *NullableImages) Set(val *Images)

func (*NullableImages) UnmarshalJSON

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

func (*NullableImages) Unset

func (v *NullableImages) Unset()

type NullableImportAwsEdcImage

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

func NewNullableImportAwsEdcImage

func NewNullableImportAwsEdcImage(val *ImportAwsEdcImage) *NullableImportAwsEdcImage

func (NullableImportAwsEdcImage) Get

func (NullableImportAwsEdcImage) IsSet

func (v NullableImportAwsEdcImage) IsSet() bool

func (NullableImportAwsEdcImage) MarshalJSON

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

func (*NullableImportAwsEdcImage) Set

func (*NullableImportAwsEdcImage) UnmarshalJSON

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

func (*NullableImportAwsEdcImage) Unset

func (v *NullableImportAwsEdcImage) Unset()

type NullableImportImage

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

func NewNullableImportImage

func NewNullableImportImage(val *ImportImage) *NullableImportImage

func (NullableImportImage) Get

func (NullableImportImage) IsSet

func (v NullableImportImage) IsSet() bool

func (NullableImportImage) MarshalJSON

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

func (*NullableImportImage) Set

func (v *NullableImportImage) Set(val *ImportImage)

func (*NullableImportImage) UnmarshalJSON

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

func (*NullableImportImage) Unset

func (v *NullableImportImage) Unset()

type NullableInitiateAccountTask

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

func NewNullableInitiateAccountTask

func NewNullableInitiateAccountTask(val *InitiateAccountTask) *NullableInitiateAccountTask

func (NullableInitiateAccountTask) Get

func (NullableInitiateAccountTask) IsSet

func (NullableInitiateAccountTask) MarshalJSON

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

func (*NullableInitiateAccountTask) Set

func (*NullableInitiateAccountTask) UnmarshalJSON

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

func (*NullableInitiateAccountTask) Unset

func (v *NullableInitiateAccountTask) Unset()

type NullableInitiateAwsEdcDeployment

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

func (NullableInitiateAwsEdcDeployment) Get

func (NullableInitiateAwsEdcDeployment) IsSet

func (NullableInitiateAwsEdcDeployment) MarshalJSON

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

func (*NullableInitiateAwsEdcDeployment) Set

func (*NullableInitiateAwsEdcDeployment) UnmarshalJSON

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

func (*NullableInitiateAwsEdcDeployment) Unset

type NullableInitiateDeployment

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

func NewNullableInitiateDeployment

func NewNullableInitiateDeployment(val *InitiateDeployment) *NullableInitiateDeployment

func (NullableInitiateDeployment) Get

func (NullableInitiateDeployment) IsSet

func (v NullableInitiateDeployment) IsSet() bool

func (NullableInitiateDeployment) MarshalJSON

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

func (*NullableInitiateDeployment) Set

func (*NullableInitiateDeployment) UnmarshalJSON

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

func (*NullableInitiateDeployment) Unset

func (v *NullableInitiateDeployment) 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 NullableIpPermission

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

func NewNullableIpPermission

func NewNullableIpPermission(val *IpPermission) *NullableIpPermission

func (NullableIpPermission) Get

func (NullableIpPermission) IsSet

func (v NullableIpPermission) IsSet() bool

func (NullableIpPermission) MarshalJSON

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

func (*NullableIpPermission) Set

func (v *NullableIpPermission) Set(val *IpPermission)

func (*NullableIpPermission) UnmarshalJSON

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

func (*NullableIpPermission) Unset

func (v *NullableIpPermission) Unset()

type NullableIpRange

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

func NewNullableIpRange

func NewNullableIpRange(val *IpRange) *NullableIpRange

func (NullableIpRange) Get

func (v NullableIpRange) Get() *IpRange

func (NullableIpRange) IsSet

func (v NullableIpRange) IsSet() bool

func (NullableIpRange) MarshalJSON

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

func (*NullableIpRange) Set

func (v *NullableIpRange) Set(val *IpRange)

func (*NullableIpRange) UnmarshalJSON

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

func (*NullableIpRange) Unset

func (v *NullableIpRange) Unset()

type NullableIpv6Range

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

func NewNullableIpv6Range

func NewNullableIpv6Range(val *Ipv6Range) *NullableIpv6Range

func (NullableIpv6Range) Get

func (v NullableIpv6Range) Get() *Ipv6Range

func (NullableIpv6Range) IsSet

func (v NullableIpv6Range) IsSet() bool

func (NullableIpv6Range) MarshalJSON

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

func (*NullableIpv6Range) Set

func (v *NullableIpv6Range) Set(val *Ipv6Range)

func (*NullableIpv6Range) UnmarshalJSON

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

func (*NullableIpv6Range) Unset

func (v *NullableIpv6Range) Unset()

type NullableLicenseErrorDetailsResponse

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

func (NullableLicenseErrorDetailsResponse) Get

func (NullableLicenseErrorDetailsResponse) IsSet

func (NullableLicenseErrorDetailsResponse) MarshalJSON

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

func (*NullableLicenseErrorDetailsResponse) Set

func (*NullableLicenseErrorDetailsResponse) UnmarshalJSON

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

func (*NullableLicenseErrorDetailsResponse) Unset

type NullableLicenseState

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

func NewNullableLicenseState

func NewNullableLicenseState(val *LicenseState) *NullableLicenseState

func (NullableLicenseState) Get

func (NullableLicenseState) IsSet

func (v NullableLicenseState) IsSet() bool

func (NullableLicenseState) MarshalJSON

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

func (*NullableLicenseState) Set

func (v *NullableLicenseState) Set(val *LicenseState)

func (*NullableLicenseState) UnmarshalJSON

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

func (*NullableLicenseState) Unset

func (v *NullableLicenseState) Unset()

type NullableLicenseUser

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

func NewNullableLicenseUser

func NewNullableLicenseUser(val *LicenseUser) *NullableLicenseUser

func (NullableLicenseUser) Get

func (NullableLicenseUser) IsSet

func (v NullableLicenseUser) IsSet() bool

func (NullableLicenseUser) MarshalJSON

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

func (*NullableLicenseUser) Set

func (v *NullableLicenseUser) Set(val *LicenseUser)

func (*NullableLicenseUser) UnmarshalJSON

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

func (*NullableLicenseUser) Unset

func (v *NullableLicenseUser) Unset()

type NullableMachineIdInitiateDeleteBody

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

func (NullableMachineIdInitiateDeleteBody) Get

func (NullableMachineIdInitiateDeleteBody) IsSet

func (NullableMachineIdInitiateDeleteBody) MarshalJSON

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

func (*NullableMachineIdInitiateDeleteBody) Set

func (*NullableMachineIdInitiateDeleteBody) UnmarshalJSON

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

func (*NullableMachineIdInitiateDeleteBody) Unset

type NullableMachineIdSaveAsImageBody

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

func (NullableMachineIdSaveAsImageBody) Get

func (NullableMachineIdSaveAsImageBody) IsSet

func (NullableMachineIdSaveAsImageBody) MarshalJSON

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

func (*NullableMachineIdSaveAsImageBody) Set

func (*NullableMachineIdSaveAsImageBody) UnmarshalJSON

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

func (*NullableMachineIdSaveAsImageBody) Unset

type NullableMachinesDeleteBody

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

func NewNullableMachinesDeleteBody

func NewNullableMachinesDeleteBody(val *MachinesDeleteBody) *NullableMachinesDeleteBody

func (NullableMachinesDeleteBody) Get

func (NullableMachinesDeleteBody) IsSet

func (v NullableMachinesDeleteBody) IsSet() bool

func (NullableMachinesDeleteBody) MarshalJSON

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

func (*NullableMachinesDeleteBody) Set

func (*NullableMachinesDeleteBody) UnmarshalJSON

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

func (*NullableMachinesDeleteBody) Unset

func (v *NullableMachinesDeleteBody) Unset()

type NullableNamingSchemeType

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

func NewNullableNamingSchemeType

func NewNullableNamingSchemeType(val *NamingSchemeType) *NullableNamingSchemeType

func (NullableNamingSchemeType) Get

func (NullableNamingSchemeType) IsSet

func (v NullableNamingSchemeType) IsSet() bool

func (NullableNamingSchemeType) MarshalJSON

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

func (*NullableNamingSchemeType) Set

func (*NullableNamingSchemeType) UnmarshalJSON

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

func (*NullableNamingSchemeType) Unset

func (v *NullableNamingSchemeType) Unset()

type NullableOperatingSystemType

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

func NewNullableOperatingSystemType

func NewNullableOperatingSystemType(val *OperatingSystemType) *NullableOperatingSystemType

func (NullableOperatingSystemType) Get

func (NullableOperatingSystemType) IsSet

func (NullableOperatingSystemType) MarshalJSON

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

func (*NullableOperatingSystemType) Set

func (*NullableOperatingSystemType) UnmarshalJSON

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

func (*NullableOperatingSystemType) Unset

func (v *NullableOperatingSystemType) Unset()

type NullablePatchMachines

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

func NewNullablePatchMachines

func NewNullablePatchMachines(val *PatchMachines) *NullablePatchMachines

func (NullablePatchMachines) Get

func (NullablePatchMachines) IsSet

func (v NullablePatchMachines) IsSet() bool

func (NullablePatchMachines) MarshalJSON

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

func (*NullablePatchMachines) Set

func (v *NullablePatchMachines) Set(val *PatchMachines)

func (*NullablePatchMachines) UnmarshalJSON

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

func (*NullablePatchMachines) Unset

func (v *NullablePatchMachines) Unset()

type NullablePowerMode

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

func NewNullablePowerMode

func NewNullablePowerMode(val *PowerMode) *NullablePowerMode

func (NullablePowerMode) Get

func (v NullablePowerMode) Get() *PowerMode

func (NullablePowerMode) IsSet

func (v NullablePowerMode) IsSet() bool

func (NullablePowerMode) MarshalJSON

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

func (*NullablePowerMode) Set

func (v *NullablePowerMode) Set(val *PowerMode)

func (*NullablePowerMode) UnmarshalJSON

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

func (*NullablePowerMode) Unset

func (v *NullablePowerMode) Unset()

type NullablePowerResponseCode

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

func NewNullablePowerResponseCode

func NewNullablePowerResponseCode(val *PowerResponseCode) *NullablePowerResponseCode

func (NullablePowerResponseCode) Get

func (NullablePowerResponseCode) IsSet

func (v NullablePowerResponseCode) IsSet() bool

func (NullablePowerResponseCode) MarshalJSON

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

func (*NullablePowerResponseCode) Set

func (*NullablePowerResponseCode) UnmarshalJSON

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

func (*NullablePowerResponseCode) Unset

func (v *NullablePowerResponseCode) Unset()

type NullablePowerStartResponse

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

func NewNullablePowerStartResponse

func NewNullablePowerStartResponse(val *PowerStartResponse) *NullablePowerStartResponse

func (NullablePowerStartResponse) Get

func (NullablePowerStartResponse) IsSet

func (v NullablePowerStartResponse) IsSet() bool

func (NullablePowerStartResponse) MarshalJSON

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

func (*NullablePowerStartResponse) Set

func (*NullablePowerStartResponse) UnmarshalJSON

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

func (*NullablePowerStartResponse) Unset

func (v *NullablePowerStartResponse) Unset()

type NullablePowerState

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

func NewNullablePowerState

func NewNullablePowerState(val *PowerState) *NullablePowerState

func (NullablePowerState) Get

func (v NullablePowerState) Get() *PowerState

func (NullablePowerState) IsSet

func (v NullablePowerState) IsSet() bool

func (NullablePowerState) MarshalJSON

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

func (*NullablePowerState) Set

func (v *NullablePowerState) Set(val *PowerState)

func (*NullablePowerState) UnmarshalJSON

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

func (*NullablePowerState) Unset

func (v *NullablePowerState) Unset()

type NullablePrefixListId

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

func NewNullablePrefixListId

func NewNullablePrefixListId(val *PrefixListId) *NullablePrefixListId

func (NullablePrefixListId) Get

func (NullablePrefixListId) IsSet

func (v NullablePrefixListId) IsSet() bool

func (NullablePrefixListId) MarshalJSON

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

func (*NullablePrefixListId) Set

func (v *NullablePrefixListId) Set(val *PrefixListId)

func (*NullablePrefixListId) UnmarshalJSON

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

func (*NullablePrefixListId) Unset

func (v *NullablePrefixListId) Unset()

type NullableProvisioningType

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

func NewNullableProvisioningType

func NewNullableProvisioningType(val *ProvisioningType) *NullableProvisioningType

func (NullableProvisioningType) Get

func (NullableProvisioningType) IsSet

func (v NullableProvisioningType) IsSet() bool

func (NullableProvisioningType) MarshalJSON

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

func (*NullableProvisioningType) Set

func (*NullableProvisioningType) UnmarshalJSON

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

func (*NullableProvisioningType) Unset

func (v *NullableProvisioningType) Unset()

type NullableRegisterAccount

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

func NewNullableRegisterAccount

func NewNullableRegisterAccount(val *RegisterAccount) *NullableRegisterAccount

func (NullableRegisterAccount) Get

func (NullableRegisterAccount) IsSet

func (v NullableRegisterAccount) IsSet() bool

func (NullableRegisterAccount) MarshalJSON

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

func (*NullableRegisterAccount) Set

func (*NullableRegisterAccount) UnmarshalJSON

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

func (*NullableRegisterAccount) Unset

func (v *NullableRegisterAccount) Unset()

type NullableRegisterAwsEdcAccountTask

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

func (NullableRegisterAwsEdcAccountTask) Get

func (NullableRegisterAwsEdcAccountTask) IsSet

func (NullableRegisterAwsEdcAccountTask) MarshalJSON

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

func (*NullableRegisterAwsEdcAccountTask) Set

func (*NullableRegisterAwsEdcAccountTask) UnmarshalJSON

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

func (*NullableRegisterAwsEdcAccountTask) Unset

type NullableRegistrationState

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

func NewNullableRegistrationState

func NewNullableRegistrationState(val *RegistrationState) *NullableRegistrationState

func (NullableRegistrationState) Get

func (NullableRegistrationState) IsSet

func (v NullableRegistrationState) IsSet() bool

func (NullableRegistrationState) MarshalJSON

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

func (*NullableRegistrationState) Set

func (*NullableRegistrationState) UnmarshalJSON

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

func (*NullableRegistrationState) Unset

func (v *NullableRegistrationState) Unset()

type NullableResourceConnection

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

func NewNullableResourceConnection

func NewNullableResourceConnection(val *ResourceConnection) *NullableResourceConnection

func (NullableResourceConnection) Get

func (NullableResourceConnection) IsSet

func (v NullableResourceConnection) IsSet() bool

func (NullableResourceConnection) MarshalJSON

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

func (*NullableResourceConnection) Set

func (*NullableResourceConnection) UnmarshalJSON

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

func (*NullableResourceConnection) Unset

func (v *NullableResourceConnection) Unset()

type NullableResourceConnectionTask

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

func (NullableResourceConnectionTask) Get

func (NullableResourceConnectionTask) IsSet

func (NullableResourceConnectionTask) MarshalJSON

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

func (*NullableResourceConnectionTask) Set

func (*NullableResourceConnectionTask) UnmarshalJSON

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

func (*NullableResourceConnectionTask) Unset

func (v *NullableResourceConnectionTask) Unset()

type NullableResourceConnectionTaskOperationType

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

func (NullableResourceConnectionTaskOperationType) Get

func (NullableResourceConnectionTaskOperationType) IsSet

func (NullableResourceConnectionTaskOperationType) MarshalJSON

func (*NullableResourceConnectionTaskOperationType) Set

func (*NullableResourceConnectionTaskOperationType) UnmarshalJSON

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

func (*NullableResourceConnectionTaskOperationType) Unset

type NullableResourceConnectionWarning

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

func (NullableResourceConnectionWarning) Get

func (NullableResourceConnectionWarning) IsSet

func (NullableResourceConnectionWarning) MarshalJSON

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

func (*NullableResourceConnectionWarning) Set

func (*NullableResourceConnectionWarning) UnmarshalJSON

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

func (*NullableResourceConnectionWarning) Unset

type NullableResourceConnectionWarningType

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

func (NullableResourceConnectionWarningType) Get

func (NullableResourceConnectionWarningType) IsSet

func (NullableResourceConnectionWarningType) MarshalJSON

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

func (*NullableResourceConnectionWarningType) Set

func (*NullableResourceConnectionWarningType) UnmarshalJSON

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

func (*NullableResourceConnectionWarningType) Unset

type NullableResourceConnections

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

func NewNullableResourceConnections

func NewNullableResourceConnections(val *ResourceConnections) *NullableResourceConnections

func (NullableResourceConnections) Get

func (NullableResourceConnections) IsSet

func (NullableResourceConnections) MarshalJSON

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

func (*NullableResourceConnections) Set

func (*NullableResourceConnections) UnmarshalJSON

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

func (*NullableResourceConnections) Unset

func (v *NullableResourceConnections) Unset()

type NullableResponseDetails

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

func NewNullableResponseDetails

func NewNullableResponseDetails(val *ResponseDetails) *NullableResponseDetails

func (NullableResponseDetails) Get

func (NullableResponseDetails) IsSet

func (v NullableResponseDetails) IsSet() bool

func (NullableResponseDetails) MarshalJSON

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

func (*NullableResponseDetails) Set

func (*NullableResponseDetails) UnmarshalJSON

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

func (*NullableResponseDetails) Unset

func (v *NullableResponseDetails) Unset()

type NullableResponseDetailsGroupLicenseAssignment

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

func (NullableResponseDetailsGroupLicenseAssignment) Get

func (NullableResponseDetailsGroupLicenseAssignment) IsSet

func (NullableResponseDetailsGroupLicenseAssignment) MarshalJSON

func (*NullableResponseDetailsGroupLicenseAssignment) Set

func (*NullableResponseDetailsGroupLicenseAssignment) UnmarshalJSON

func (*NullableResponseDetailsGroupLicenseAssignment) Unset

type NullableResponseDetailsLicenseAssignment

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

func (NullableResponseDetailsLicenseAssignment) Get

func (NullableResponseDetailsLicenseAssignment) IsSet

func (NullableResponseDetailsLicenseAssignment) MarshalJSON

func (*NullableResponseDetailsLicenseAssignment) Set

func (*NullableResponseDetailsLicenseAssignment) UnmarshalJSON

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

func (*NullableResponseDetailsLicenseAssignment) Unset

type NullableResponseDetailsLicenseAssignmentEx

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

func (NullableResponseDetailsLicenseAssignmentEx) Get

func (NullableResponseDetailsLicenseAssignmentEx) IsSet

func (NullableResponseDetailsLicenseAssignmentEx) MarshalJSON

func (*NullableResponseDetailsLicenseAssignmentEx) Set

func (*NullableResponseDetailsLicenseAssignmentEx) UnmarshalJSON

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

func (*NullableResponseDetailsLicenseAssignmentEx) Unset

type NullableSaveAsImageRequest

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

func NewNullableSaveAsImageRequest

func NewNullableSaveAsImageRequest(val *SaveAsImageRequest) *NullableSaveAsImageRequest

func (NullableSaveAsImageRequest) Get

func (NullableSaveAsImageRequest) IsSet

func (v NullableSaveAsImageRequest) IsSet() bool

func (NullableSaveAsImageRequest) MarshalJSON

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

func (*NullableSaveAsImageRequest) Set

func (*NullableSaveAsImageRequest) UnmarshalJSON

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

func (*NullableSaveAsImageRequest) Unset

func (v *NullableSaveAsImageRequest) Unset()

type NullableScaleSettings

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

func NewNullableScaleSettings

func NewNullableScaleSettings(val *ScaleSettings) *NullableScaleSettings

func (NullableScaleSettings) Get

func (NullableScaleSettings) IsSet

func (v NullableScaleSettings) IsSet() bool

func (NullableScaleSettings) MarshalJSON

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

func (*NullableScaleSettings) Set

func (v *NullableScaleSettings) Set(val *ScaleSettings)

func (*NullableScaleSettings) UnmarshalJSON

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

func (*NullableScaleSettings) Unset

func (v *NullableScaleSettings) Unset()

type NullableSearchAccountResourceRequest

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

func (NullableSearchAccountResourceRequest) Get

func (NullableSearchAccountResourceRequest) IsSet

func (NullableSearchAccountResourceRequest) MarshalJSON

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

func (*NullableSearchAccountResourceRequest) Set

func (*NullableSearchAccountResourceRequest) UnmarshalJSON

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

func (*NullableSearchAccountResourceRequest) Unset

type NullableSearchAwsEdcAccountResourceRequest

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

func (NullableSearchAwsEdcAccountResourceRequest) Get

func (NullableSearchAwsEdcAccountResourceRequest) IsSet

func (NullableSearchAwsEdcAccountResourceRequest) MarshalJSON

func (*NullableSearchAwsEdcAccountResourceRequest) Set

func (*NullableSearchAwsEdcAccountResourceRequest) UnmarshalJSON

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

func (*NullableSearchAwsEdcAccountResourceRequest) Unset

type NullableSessionChangeHostingAction

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

func (NullableSessionChangeHostingAction) Get

func (NullableSessionChangeHostingAction) IsSet

func (NullableSessionChangeHostingAction) MarshalJSON

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

func (*NullableSessionChangeHostingAction) Set

func (*NullableSessionChangeHostingAction) UnmarshalJSON

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

func (*NullableSessionChangeHostingAction) Unset

type NullableSessionState

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

func NewNullableSessionState

func NewNullableSessionState(val *SessionState) *NullableSessionState

func (NullableSessionState) Get

func (NullableSessionState) IsSet

func (v NullableSessionState) IsSet() bool

func (NullableSessionState) MarshalJSON

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

func (*NullableSessionState) Set

func (v *NullableSessionState) Set(val *SessionState)

func (*NullableSessionState) UnmarshalJSON

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

func (*NullableSessionState) Unset

func (v *NullableSessionState) Unset()

type NullableSessionSupport

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

func NewNullableSessionSupport

func NewNullableSessionSupport(val *SessionSupport) *NullableSessionSupport

func (NullableSessionSupport) Get

func (NullableSessionSupport) IsSet

func (v NullableSessionSupport) IsSet() bool

func (NullableSessionSupport) MarshalJSON

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

func (*NullableSessionSupport) Set

func (*NullableSessionSupport) UnmarshalJSON

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

func (*NullableSessionSupport) Unset

func (v *NullableSessionSupport) 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 NullableTag

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

func NewNullableTag

func NewNullableTag(val *Tag) *NullableTag

func (NullableTag) Get

func (v NullableTag) Get() *Tag

func (NullableTag) IsSet

func (v NullableTag) IsSet() bool

func (NullableTag) MarshalJSON

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

func (*NullableTag) Set

func (v *NullableTag) Set(val *Tag)

func (*NullableTag) UnmarshalJSON

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

func (*NullableTag) Unset

func (v *NullableTag) Unset()

type NullableTaskBase

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

func NewNullableTaskBase

func NewNullableTaskBase(val *TaskBase) *NullableTaskBase

func (NullableTaskBase) Get

func (v NullableTaskBase) Get() *TaskBase

func (NullableTaskBase) IsSet

func (v NullableTaskBase) IsSet() bool

func (NullableTaskBase) MarshalJSON

func (v NullableTaskBase) MarshalJSON() ([]byte, error)

func (*NullableTaskBase) Set

func (v *NullableTaskBase) Set(val *TaskBase)

func (*NullableTaskBase) UnmarshalJSON

func (v *NullableTaskBase) UnmarshalJSON(src []byte) error

func (*NullableTaskBase) Unset

func (v *NullableTaskBase) Unset()

type NullableTaskError

type NullableTaskError struct {
	// contains filtered or unexported fields
}

func NewNullableTaskError

func NewNullableTaskError(val *TaskError) *NullableTaskError

func (NullableTaskError) Get

func (v NullableTaskError) Get() *TaskError

func (NullableTaskError) IsSet

func (v NullableTaskError) IsSet() bool

func (NullableTaskError) MarshalJSON

func (v NullableTaskError) MarshalJSON() ([]byte, error)

func (*NullableTaskError) Set

func (v *NullableTaskError) Set(val *TaskError)

func (*NullableTaskError) UnmarshalJSON

func (v *NullableTaskError) UnmarshalJSON(src []byte) error

func (*NullableTaskError) Unset

func (v *NullableTaskError) Unset()

type NullableTaskState

type NullableTaskState struct {
	// contains filtered or unexported fields
}

func NewNullableTaskState

func NewNullableTaskState(val *TaskState) *NullableTaskState

func (NullableTaskState) Get

func (v NullableTaskState) Get() *TaskState

func (NullableTaskState) IsSet

func (v NullableTaskState) IsSet() bool

func (NullableTaskState) MarshalJSON

func (v NullableTaskState) MarshalJSON() ([]byte, error)

func (*NullableTaskState) Set

func (v *NullableTaskState) Set(val *TaskState)

func (*NullableTaskState) UnmarshalJSON

func (v *NullableTaskState) UnmarshalJSON(src []byte) error

func (*NullableTaskState) Unset

func (v *NullableTaskState) Unset()

type NullableTaskType

type NullableTaskType struct {
	// contains filtered or unexported fields
}

func NewNullableTaskType

func NewNullableTaskType(val *TaskType) *NullableTaskType

func (NullableTaskType) Get

func (v NullableTaskType) Get() *TaskType

func (NullableTaskType) IsSet

func (v NullableTaskType) IsSet() bool

func (NullableTaskType) MarshalJSON

func (v NullableTaskType) MarshalJSON() ([]byte, error)

func (*NullableTaskType) Set

func (v *NullableTaskType) Set(val *TaskType)

func (*NullableTaskType) UnmarshalJSON

func (v *NullableTaskType) UnmarshalJSON(src []byte) error

func (*NullableTaskType) Unset

func (v *NullableTaskType) Unset()

type NullableTaskWarning

type NullableTaskWarning struct {
	// contains filtered or unexported fields
}

func NewNullableTaskWarning

func NewNullableTaskWarning(val *TaskWarning) *NullableTaskWarning

func (NullableTaskWarning) Get

func (NullableTaskWarning) IsSet

func (v NullableTaskWarning) IsSet() bool

func (NullableTaskWarning) MarshalJSON

func (v NullableTaskWarning) MarshalJSON() ([]byte, error)

func (*NullableTaskWarning) Set

func (v *NullableTaskWarning) Set(val *TaskWarning)

func (*NullableTaskWarning) UnmarshalJSON

func (v *NullableTaskWarning) UnmarshalJSON(src []byte) error

func (*NullableTaskWarning) Unset

func (v *NullableTaskWarning) Unset()

type NullableTenancyType

type NullableTenancyType struct {
	// contains filtered or unexported fields
}

func NewNullableTenancyType

func NewNullableTenancyType(val *TenancyType) *NullableTenancyType

func (NullableTenancyType) Get

func (NullableTenancyType) IsSet

func (v NullableTenancyType) IsSet() bool

func (NullableTenancyType) MarshalJSON

func (v NullableTenancyType) MarshalJSON() ([]byte, error)

func (*NullableTenancyType) Set

func (v *NullableTenancyType) Set(val *TenancyType)

func (*NullableTenancyType) UnmarshalJSON

func (v *NullableTenancyType) UnmarshalJSON(src []byte) error

func (*NullableTenancyType) Unset

func (v *NullableTenancyType) Unset()

type NullableTenantGroupLicenses

type NullableTenantGroupLicenses struct {
	// contains filtered or unexported fields
}

func NewNullableTenantGroupLicenses

func NewNullableTenantGroupLicenses(val *TenantGroupLicenses) *NullableTenantGroupLicenses

func (NullableTenantGroupLicenses) Get

func (NullableTenantGroupLicenses) IsSet

func (NullableTenantGroupLicenses) MarshalJSON

func (v NullableTenantGroupLicenses) MarshalJSON() ([]byte, error)

func (*NullableTenantGroupLicenses) Set

func (*NullableTenantGroupLicenses) UnmarshalJSON

func (v *NullableTenantGroupLicenses) UnmarshalJSON(src []byte) error

func (*NullableTenantGroupLicenses) Unset

func (v *NullableTenantGroupLicenses) Unset()

type NullableTenantLicenses

type NullableTenantLicenses struct {
	// contains filtered or unexported fields
}

func NewNullableTenantLicenses

func NewNullableTenantLicenses(val *TenantLicenses) *NullableTenantLicenses

func (NullableTenantLicenses) Get

func (NullableTenantLicenses) IsSet

func (v NullableTenantLicenses) IsSet() bool

func (NullableTenantLicenses) MarshalJSON

func (v NullableTenantLicenses) MarshalJSON() ([]byte, error)

func (*NullableTenantLicenses) Set

func (*NullableTenantLicenses) UnmarshalJSON

func (v *NullableTenantLicenses) UnmarshalJSON(src []byte) error

func (*NullableTenantLicenses) Unset

func (v *NullableTenantLicenses) 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 NullableUpdateAccount

type NullableUpdateAccount struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateAccount

func NewNullableUpdateAccount(val *UpdateAccount) *NullableUpdateAccount

func (NullableUpdateAccount) Get

func (NullableUpdateAccount) IsSet

func (v NullableUpdateAccount) IsSet() bool

func (NullableUpdateAccount) MarshalJSON

func (v NullableUpdateAccount) MarshalJSON() ([]byte, error)

func (*NullableUpdateAccount) Set

func (v *NullableUpdateAccount) Set(val *UpdateAccount)

func (*NullableUpdateAccount) UnmarshalJSON

func (v *NullableUpdateAccount) UnmarshalJSON(src []byte) error

func (*NullableUpdateAccount) Unset

func (v *NullableUpdateAccount) Unset()

type NullableUpdateAccountName

type NullableUpdateAccountName struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateAccountName

func NewNullableUpdateAccountName(val *UpdateAccountName) *NullableUpdateAccountName

func (NullableUpdateAccountName) Get

func (NullableUpdateAccountName) IsSet

func (v NullableUpdateAccountName) IsSet() bool

func (NullableUpdateAccountName) MarshalJSON

func (v NullableUpdateAccountName) MarshalJSON() ([]byte, error)

func (*NullableUpdateAccountName) Set

func (*NullableUpdateAccountName) UnmarshalJSON

func (v *NullableUpdateAccountName) UnmarshalJSON(src []byte) error

func (*NullableUpdateAccountName) Unset

func (v *NullableUpdateAccountName) Unset()

type NullableUpdateAccountOperationType

type NullableUpdateAccountOperationType struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAccountOperationType) Get

func (NullableUpdateAccountOperationType) IsSet

func (NullableUpdateAccountOperationType) MarshalJSON

func (v NullableUpdateAccountOperationType) MarshalJSON() ([]byte, error)

func (*NullableUpdateAccountOperationType) Set

func (*NullableUpdateAccountOperationType) UnmarshalJSON

func (v *NullableUpdateAccountOperationType) UnmarshalJSON(src []byte) error

func (*NullableUpdateAccountOperationType) Unset

type NullableUpdateAwsEdcAccountCredentials

type NullableUpdateAwsEdcAccountCredentials struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAwsEdcAccountCredentials) Get

func (NullableUpdateAwsEdcAccountCredentials) IsSet

func (NullableUpdateAwsEdcAccountCredentials) MarshalJSON

func (v NullableUpdateAwsEdcAccountCredentials) MarshalJSON() ([]byte, error)

func (*NullableUpdateAwsEdcAccountCredentials) Set

func (*NullableUpdateAwsEdcAccountCredentials) UnmarshalJSON

func (v *NullableUpdateAwsEdcAccountCredentials) UnmarshalJSON(src []byte) error

func (*NullableUpdateAwsEdcAccountCredentials) Unset

type NullableUpdateAwsEdcDeploymentMachine

type NullableUpdateAwsEdcDeploymentMachine struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAwsEdcDeploymentMachine) Get

func (NullableUpdateAwsEdcDeploymentMachine) IsSet

func (NullableUpdateAwsEdcDeploymentMachine) MarshalJSON

func (v NullableUpdateAwsEdcDeploymentMachine) MarshalJSON() ([]byte, error)

func (*NullableUpdateAwsEdcDeploymentMachine) Set

func (*NullableUpdateAwsEdcDeploymentMachine) UnmarshalJSON

func (v *NullableUpdateAwsEdcDeploymentMachine) UnmarshalJSON(src []byte) error

func (*NullableUpdateAwsEdcDeploymentMachine) Unset

type NullableUpdateAwsEdcDeploymentProperties

type NullableUpdateAwsEdcDeploymentProperties struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAwsEdcDeploymentProperties) Get

func (NullableUpdateAwsEdcDeploymentProperties) IsSet

func (NullableUpdateAwsEdcDeploymentProperties) MarshalJSON

func (*NullableUpdateAwsEdcDeploymentProperties) Set

func (*NullableUpdateAwsEdcDeploymentProperties) UnmarshalJSON

func (v *NullableUpdateAwsEdcDeploymentProperties) UnmarshalJSON(src []byte) error

func (*NullableUpdateAwsEdcDeploymentProperties) Unset

type NullableUpdateAwsEdcDirectoryConnection

type NullableUpdateAwsEdcDirectoryConnection struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAwsEdcDirectoryConnection) Get

func (NullableUpdateAwsEdcDirectoryConnection) IsSet

func (NullableUpdateAwsEdcDirectoryConnection) MarshalJSON

func (v NullableUpdateAwsEdcDirectoryConnection) MarshalJSON() ([]byte, error)

func (*NullableUpdateAwsEdcDirectoryConnection) Set

func (*NullableUpdateAwsEdcDirectoryConnection) UnmarshalJSON

func (v *NullableUpdateAwsEdcDirectoryConnection) UnmarshalJSON(src []byte) error

func (*NullableUpdateAwsEdcDirectoryConnection) Unset

type NullableUpdateCustomerAccountAsyncRequest

type NullableUpdateCustomerAccountAsyncRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateCustomerAccountAsyncRequest) Get

func (NullableUpdateCustomerAccountAsyncRequest) IsSet

func (NullableUpdateCustomerAccountAsyncRequest) MarshalJSON

func (*NullableUpdateCustomerAccountAsyncRequest) Set

func (*NullableUpdateCustomerAccountAsyncRequest) UnmarshalJSON

func (v *NullableUpdateCustomerAccountAsyncRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateCustomerAccountAsyncRequest) Unset

type NullableUpdateDeploymentImage

type NullableUpdateDeploymentImage struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDeploymentImage) Get

func (NullableUpdateDeploymentImage) IsSet

func (NullableUpdateDeploymentImage) MarshalJSON

func (v NullableUpdateDeploymentImage) MarshalJSON() ([]byte, error)

func (*NullableUpdateDeploymentImage) Set

func (*NullableUpdateDeploymentImage) UnmarshalJSON

func (v *NullableUpdateDeploymentImage) UnmarshalJSON(src []byte) error

func (*NullableUpdateDeploymentImage) Unset

func (v *NullableUpdateDeploymentImage) Unset()

type NullableUpdateDeploymentMachine

type NullableUpdateDeploymentMachine struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDeploymentMachine) Get

func (NullableUpdateDeploymentMachine) IsSet

func (NullableUpdateDeploymentMachine) MarshalJSON

func (v NullableUpdateDeploymentMachine) MarshalJSON() ([]byte, error)

func (*NullableUpdateDeploymentMachine) Set

func (*NullableUpdateDeploymentMachine) UnmarshalJSON

func (v *NullableUpdateDeploymentMachine) UnmarshalJSON(src []byte) error

func (*NullableUpdateDeploymentMachine) Unset

type NullableUpdateDeploymentProperties

type NullableUpdateDeploymentProperties struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDeploymentProperties) Get

func (NullableUpdateDeploymentProperties) IsSet

func (NullableUpdateDeploymentProperties) MarshalJSON

func (v NullableUpdateDeploymentProperties) MarshalJSON() ([]byte, error)

func (*NullableUpdateDeploymentProperties) Set

func (*NullableUpdateDeploymentProperties) UnmarshalJSON

func (v *NullableUpdateDeploymentProperties) UnmarshalJSON(src []byte) error

func (*NullableUpdateDeploymentProperties) Unset

type NullableUpdatePowerConfigurationModel

type NullableUpdatePowerConfigurationModel struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePowerConfigurationModel) Get

func (NullableUpdatePowerConfigurationModel) IsSet

func (NullableUpdatePowerConfigurationModel) MarshalJSON

func (v NullableUpdatePowerConfigurationModel) MarshalJSON() ([]byte, error)

func (*NullableUpdatePowerConfigurationModel) Set

func (*NullableUpdatePowerConfigurationModel) UnmarshalJSON

func (v *NullableUpdatePowerConfigurationModel) UnmarshalJSON(src []byte) error

func (*NullableUpdatePowerConfigurationModel) Unset

type NullableUpdateResourceConnection

type NullableUpdateResourceConnection struct {
	// contains filtered or unexported fields
}

func (NullableUpdateResourceConnection) Get

func (NullableUpdateResourceConnection) IsSet

func (NullableUpdateResourceConnection) MarshalJSON

func (v NullableUpdateResourceConnection) MarshalJSON() ([]byte, error)

func (*NullableUpdateResourceConnection) Set

func (*NullableUpdateResourceConnection) UnmarshalJSON

func (v *NullableUpdateResourceConnection) UnmarshalJSON(src []byte) error

func (*NullableUpdateResourceConnection) Unset

type NullableUserIdGroupPair

type NullableUserIdGroupPair struct {
	// contains filtered or unexported fields
}

func NewNullableUserIdGroupPair

func NewNullableUserIdGroupPair(val *UserIdGroupPair) *NullableUserIdGroupPair

func (NullableUserIdGroupPair) Get

func (NullableUserIdGroupPair) IsSet

func (v NullableUserIdGroupPair) IsSet() bool

func (NullableUserIdGroupPair) MarshalJSON

func (v NullableUserIdGroupPair) MarshalJSON() ([]byte, error)

func (*NullableUserIdGroupPair) Set

func (*NullableUserIdGroupPair) UnmarshalJSON

func (v *NullableUserIdGroupPair) UnmarshalJSON(src []byte) error

func (*NullableUserIdGroupPair) Unset

func (v *NullableUserIdGroupPair) Unset()

type OperatingSystemType

type OperatingSystemType string

OperatingSystemType the model 'OperatingSystemType'

const (
	OPERATINGSYSTEMTYPE_WINDOWS OperatingSystemType = "WINDOWS"
	OPERATINGSYSTEMTYPE_LINUX   OperatingSystemType = "LINUX"
)

List of OperatingSystemType

func NewOperatingSystemTypeFromValue

func NewOperatingSystemTypeFromValue(v string) (*OperatingSystemType, error)

NewOperatingSystemTypeFromValue returns a pointer to a valid OperatingSystemType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OperatingSystemType) IsValid

func (v OperatingSystemType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OperatingSystemType) Ptr

Ptr returns reference to OperatingSystemType value

func (*OperatingSystemType) UnmarshalJSON

func (v *OperatingSystemType) UnmarshalJSON(src []byte) error

type PatchMachines

type PatchMachines struct {
	AccountType AccountType `json:"accountType"`
	// The type of provider associated with the account
	InMaintenanceMode bool `json:"inMaintenanceMode"`
	// The list of machine ids to be updated
	MachineIds []string `json:"machineIds"`
}

PatchMachines Turn on or off maintenance mode on machines by id

func NewPatchMachines

func NewPatchMachines(accountType AccountType, inMaintenanceMode bool, machineIds []string) *PatchMachines

NewPatchMachines instantiates a new PatchMachines 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 NewPatchMachinesWithDefaults

func NewPatchMachinesWithDefaults() *PatchMachines

NewPatchMachinesWithDefaults instantiates a new PatchMachines 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 (*PatchMachines) GetAccountType

func (o *PatchMachines) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*PatchMachines) GetAccountTypeOk

func (o *PatchMachines) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (*PatchMachines) GetInMaintenanceMode

func (o *PatchMachines) GetInMaintenanceMode() bool

GetInMaintenanceMode returns the InMaintenanceMode field value

func (*PatchMachines) GetInMaintenanceModeOk

func (o *PatchMachines) GetInMaintenanceModeOk() (*bool, bool)

GetInMaintenanceModeOk returns a tuple with the InMaintenanceMode field value and a boolean to check if the value has been set.

func (*PatchMachines) GetMachineIds

func (o *PatchMachines) GetMachineIds() []string

GetMachineIds returns the MachineIds field value

func (*PatchMachines) GetMachineIdsOk

func (o *PatchMachines) GetMachineIdsOk() ([]string, bool)

GetMachineIdsOk returns a tuple with the MachineIds field value and a boolean to check if the value has been set.

func (PatchMachines) MarshalJSON

func (o PatchMachines) MarshalJSON() ([]byte, error)

func (*PatchMachines) SetAccountType

func (o *PatchMachines) SetAccountType(v AccountType)

SetAccountType sets field value

func (*PatchMachines) SetInMaintenanceMode

func (o *PatchMachines) SetInMaintenanceMode(v bool)

SetInMaintenanceMode sets field value

func (*PatchMachines) SetMachineIds

func (o *PatchMachines) SetMachineIds(v []string)

SetMachineIds sets field value

func (PatchMachines) ToMap

func (o PatchMachines) ToMap() (map[string]interface{}, error)

type PowerMode

type PowerMode string

PowerMode the model 'PowerMode'

const (
	POWERMODE_OFF PowerMode = "Off"
	POWERMODE_ON  PowerMode = "On"
)

List of PowerMode

func NewPowerModeFromValue

func NewPowerModeFromValue(v string) (*PowerMode, error)

NewPowerModeFromValue returns a pointer to a valid PowerMode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PowerMode) IsValid

func (v PowerMode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PowerMode) Ptr

func (v PowerMode) Ptr() *PowerMode

Ptr returns reference to PowerMode value

func (*PowerMode) UnmarshalJSON

func (v *PowerMode) UnmarshalJSON(src []byte) error

type PowerResponseCode

type PowerResponseCode string

PowerResponseCode Error code for power operation

const (
	POWERRESPONSECODE_SUCCESS               PowerResponseCode = "Success"
	POWERRESPONSECODE_UNASSIGNED            PowerResponseCode = "Unassigned"
	POWERRESPONSECODE_NO_LICENSES_AVAILABLE PowerResponseCode = "NoLicensesAvailable"
	POWERRESPONSECODE_ACTIVATION_FAILED     PowerResponseCode = "ActivationFailed"
	POWERRESPONSECODE_UNKNOWN               PowerResponseCode = "Unknown"
)

List of PowerResponseCode

func NewPowerResponseCodeFromValue

func NewPowerResponseCodeFromValue(v string) (*PowerResponseCode, error)

NewPowerResponseCodeFromValue returns a pointer to a valid PowerResponseCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PowerResponseCode) IsValid

func (v PowerResponseCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PowerResponseCode) Ptr

Ptr returns reference to PowerResponseCode value

func (*PowerResponseCode) UnmarshalJSON

func (v *PowerResponseCode) UnmarshalJSON(src []byte) error

type PowerStartResponse

type PowerStartResponse struct {
	Code *PowerResponseCode `json:"code,omitempty"`
	// Description about the error
	ErrorDescription NullableString `json:"errorDescription,omitempty"`
}

PowerStartResponse Response of power operation

func NewPowerStartResponse

func NewPowerStartResponse() *PowerStartResponse

NewPowerStartResponse instantiates a new PowerStartResponse 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 NewPowerStartResponseWithDefaults

func NewPowerStartResponseWithDefaults() *PowerStartResponse

NewPowerStartResponseWithDefaults instantiates a new PowerStartResponse 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 (*PowerStartResponse) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*PowerStartResponse) GetCodeOk

func (o *PowerStartResponse) GetCodeOk() (*PowerResponseCode, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PowerStartResponse) GetErrorDescription

func (o *PowerStartResponse) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PowerStartResponse) GetErrorDescriptionOk

func (o *PowerStartResponse) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PowerStartResponse) HasCode

func (o *PowerStartResponse) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*PowerStartResponse) HasErrorDescription

func (o *PowerStartResponse) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (PowerStartResponse) MarshalJSON

func (o PowerStartResponse) MarshalJSON() ([]byte, error)

func (*PowerStartResponse) SetCode

func (o *PowerStartResponse) SetCode(v PowerResponseCode)

SetCode gets a reference to the given PowerResponseCode and assigns it to the Code field.

func (*PowerStartResponse) SetErrorDescription

func (o *PowerStartResponse) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given NullableString and assigns it to the ErrorDescription field.

func (*PowerStartResponse) SetErrorDescriptionNil

func (o *PowerStartResponse) SetErrorDescriptionNil()

SetErrorDescriptionNil sets the value for ErrorDescription to be an explicit nil

func (PowerStartResponse) ToMap

func (o PowerStartResponse) ToMap() (map[string]interface{}, error)

func (*PowerStartResponse) UnsetErrorDescription

func (o *PowerStartResponse) UnsetErrorDescription()

UnsetErrorDescription ensures that no value is present for ErrorDescription, not even an explicit nil

type PowerState

type PowerState string

PowerState The power state of frontline Cloud PCs.

const (
	POWERSTATE_RUNNING     PowerState = "Running"
	POWERSTATE_POWERED_OFF PowerState = "PoweredOff"
	POWERSTATE_UNKNOWN     PowerState = "Unknown"
)

List of PowerState

func NewPowerStateFromValue

func NewPowerStateFromValue(v string) (*PowerState, error)

NewPowerStateFromValue returns a pointer to a valid PowerState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PowerState) IsValid

func (v PowerState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PowerState) Ptr

func (v PowerState) Ptr() *PowerState

Ptr returns reference to PowerState value

func (*PowerState) UnmarshalJSON

func (v *PowerState) UnmarshalJSON(src []byte) error

type PrefixListId

type PrefixListId struct {
	Description NullableString `json:"description,omitempty"`
	Id          NullableString `json:"id,omitempty"`
}

PrefixListId struct for PrefixListId

func NewPrefixListId

func NewPrefixListId() *PrefixListId

NewPrefixListId instantiates a new PrefixListId 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 NewPrefixListIdWithDefaults

func NewPrefixListIdWithDefaults() *PrefixListId

NewPrefixListIdWithDefaults instantiates a new PrefixListId 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 (*PrefixListId) GetDescription

func (o *PrefixListId) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrefixListId) GetDescriptionOk

func (o *PrefixListId) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrefixListId) GetId

func (o *PrefixListId) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrefixListId) GetIdOk

func (o *PrefixListId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrefixListId) HasDescription

func (o *PrefixListId) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PrefixListId) HasId

func (o *PrefixListId) HasId() bool

HasId returns a boolean if a field has been set.

func (PrefixListId) MarshalJSON

func (o PrefixListId) MarshalJSON() ([]byte, error)

func (*PrefixListId) SetDescription

func (o *PrefixListId) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*PrefixListId) SetDescriptionNil

func (o *PrefixListId) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*PrefixListId) SetId

func (o *PrefixListId) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*PrefixListId) SetIdNil

func (o *PrefixListId) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (PrefixListId) ToMap

func (o PrefixListId) ToMap() (map[string]interface{}, error)

func (*PrefixListId) UnsetDescription

func (o *PrefixListId) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*PrefixListId) UnsetId

func (o *PrefixListId) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type ProvisioningType

type ProvisioningType string

ProvisioningType The type of provisioning for Cloud PCs.

const (
	PROVISIONINGTYPE_DEDICATED            ProvisioningType = "Dedicated"
	PROVISIONINGTYPE_SHARED               ProvisioningType = "Shared"
	PROVISIONINGTYPE_UNKNOWN_FUTURE_VALUE ProvisioningType = "UnknownFutureValue"
)

List of ProvisioningType

func NewProvisioningTypeFromValue

func NewProvisioningTypeFromValue(v string) (*ProvisioningType, error)

NewProvisioningTypeFromValue returns a pointer to a valid ProvisioningType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProvisioningType) IsValid

func (v ProvisioningType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProvisioningType) Ptr

Ptr returns reference to ProvisioningType value

func (*ProvisioningType) UnmarshalJSON

func (v *ProvisioningType) UnmarshalJSON(src []byte) error

type RegisterAccount

type RegisterAccount struct {
	AccountType AccountType `json:"accountType"`
	TaskType    *TaskType   `json:"taskType,omitempty"`
	// Task Id
	TaskId NullableString `json:"taskId,omitempty"`
}

RegisterAccount Register account

func NewRegisterAccount

func NewRegisterAccount(accountType AccountType) *RegisterAccount

NewRegisterAccount instantiates a new RegisterAccount 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 NewRegisterAccountWithDefaults

func NewRegisterAccountWithDefaults() *RegisterAccount

NewRegisterAccountWithDefaults instantiates a new RegisterAccount 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 (*RegisterAccount) GetAccountType

func (o *RegisterAccount) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*RegisterAccount) GetAccountTypeOk

func (o *RegisterAccount) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (*RegisterAccount) GetTaskId

func (o *RegisterAccount) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisterAccount) GetTaskIdOk

func (o *RegisterAccount) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisterAccount) GetTaskType

func (o *RegisterAccount) GetTaskType() TaskType

GetTaskType returns the TaskType field value if set, zero value otherwise.

func (*RegisterAccount) GetTaskTypeOk

func (o *RegisterAccount) GetTaskTypeOk() (*TaskType, bool)

GetTaskTypeOk returns a tuple with the TaskType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisterAccount) HasTaskId

func (o *RegisterAccount) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*RegisterAccount) HasTaskType

func (o *RegisterAccount) HasTaskType() bool

HasTaskType returns a boolean if a field has been set.

func (RegisterAccount) MarshalJSON

func (o RegisterAccount) MarshalJSON() ([]byte, error)

func (*RegisterAccount) SetAccountType

func (o *RegisterAccount) SetAccountType(v AccountType)

SetAccountType sets field value

func (*RegisterAccount) SetTaskId

func (o *RegisterAccount) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*RegisterAccount) SetTaskIdNil

func (o *RegisterAccount) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*RegisterAccount) SetTaskType

func (o *RegisterAccount) SetTaskType(v TaskType)

SetTaskType gets a reference to the given TaskType and assigns it to the TaskType field.

func (RegisterAccount) ToMap

func (o RegisterAccount) ToMap() (map[string]interface{}, error)

func (*RegisterAccount) UnsetTaskId

func (o *RegisterAccount) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

type RegisterAwsEdcAccountTask

type RegisterAwsEdcAccountTask struct {
	InitiateAccountTask
	// The Cidr range used in the BYOL registration
	CidrRange string `json:"cidrRange"`
}

RegisterAwsEdcAccountTask struct for RegisterAwsEdcAccountTask

func NewRegisterAwsEdcAccountTask

func NewRegisterAwsEdcAccountTask(cidrRange string, accountType AccountType) *RegisterAwsEdcAccountTask

NewRegisterAwsEdcAccountTask instantiates a new RegisterAwsEdcAccountTask 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 NewRegisterAwsEdcAccountTaskWithDefaults

func NewRegisterAwsEdcAccountTaskWithDefaults() *RegisterAwsEdcAccountTask

NewRegisterAwsEdcAccountTaskWithDefaults instantiates a new RegisterAwsEdcAccountTask 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 (*RegisterAwsEdcAccountTask) GetCidrRange

func (o *RegisterAwsEdcAccountTask) GetCidrRange() string

GetCidrRange returns the CidrRange field value

func (*RegisterAwsEdcAccountTask) GetCidrRangeOk

func (o *RegisterAwsEdcAccountTask) GetCidrRangeOk() (*string, bool)

GetCidrRangeOk returns a tuple with the CidrRange field value and a boolean to check if the value has been set.

func (RegisterAwsEdcAccountTask) MarshalJSON

func (o RegisterAwsEdcAccountTask) MarshalJSON() ([]byte, error)

func (*RegisterAwsEdcAccountTask) SetCidrRange

func (o *RegisterAwsEdcAccountTask) SetCidrRange(v string)

SetCidrRange sets field value

func (RegisterAwsEdcAccountTask) ToMap

func (o RegisterAwsEdcAccountTask) ToMap() (map[string]interface{}, error)

type RegistrationState

type RegistrationState string

RegistrationState Machine registration states.

const (
	REGISTRATIONSTATE_UNKNOWN      RegistrationState = "Unknown"
	REGISTRATIONSTATE_UNREGISTERED RegistrationState = "Unregistered"
	REGISTRATIONSTATE_INITIALIZING RegistrationState = "Initializing"
	REGISTRATIONSTATE_REGISTERED   RegistrationState = "Registered"
	REGISTRATIONSTATE_AGENT_ERROR  RegistrationState = "AgentError"
)

List of RegistrationState

func NewRegistrationStateFromValue

func NewRegistrationStateFromValue(v string) (*RegistrationState, error)

NewRegistrationStateFromValue returns a pointer to a valid RegistrationState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegistrationState) IsValid

func (v RegistrationState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegistrationState) Ptr

Ptr returns reference to RegistrationState value

func (*RegistrationState) UnmarshalJSON

func (v *RegistrationState) UnmarshalJSON(src []byte) error

type ResourceConnection

type ResourceConnection struct {
	AccountType AccountType `json:"accountType"`
	// The ID of the account
	AccountId NullableString `json:"accountId,omitempty"`
	// The Id of the connection
	ConnectionId string `json:"connectionId"`
	// The name of the connection
	Name            string                  `json:"name"`
	ConnectionState NullableConnectionState `json:"connectionState,omitempty"`
	// Zone id
	ZoneId NullableString `json:"zoneId,omitempty"`
	// Resource Location Id
	ResourceLocationId NullableString `json:"resourceLocationId,omitempty"`
	// Tasks currently being performed on the connection
	ActiveTasks []GetTaskAsync200Response `json:"activeTasks,omitempty"`
	// Indicates whether the resource connection is Citrix managed
	CitrixManaged         bool                        `json:"citrixManaged"`
	AssociatedDeployments []AssociatedDeployment      `json:"associatedDeployments,omitempty"`
	Warnings              []ResourceConnectionWarning `json:"warnings,omitempty"`
}

ResourceConnection Resource connection

func NewResourceConnection

func NewResourceConnection(accountType AccountType, connectionId string, name string, citrixManaged bool) *ResourceConnection

NewResourceConnection instantiates a new ResourceConnection 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 NewResourceConnectionWithDefaults

func NewResourceConnectionWithDefaults() *ResourceConnection

NewResourceConnectionWithDefaults instantiates a new ResourceConnection 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 (*ResourceConnection) GetAccountId

func (o *ResourceConnection) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetAccountIdOk

func (o *ResourceConnection) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetAccountType

func (o *ResourceConnection) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*ResourceConnection) GetAccountTypeOk

func (o *ResourceConnection) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (*ResourceConnection) GetActiveTasks

func (o *ResourceConnection) GetActiveTasks() []GetTaskAsync200Response

GetActiveTasks returns the ActiveTasks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetActiveTasksOk

func (o *ResourceConnection) GetActiveTasksOk() ([]GetTaskAsync200Response, bool)

GetActiveTasksOk returns a tuple with the ActiveTasks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetAssociatedDeployments

func (o *ResourceConnection) GetAssociatedDeployments() []AssociatedDeployment

GetAssociatedDeployments returns the AssociatedDeployments field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetAssociatedDeploymentsOk

func (o *ResourceConnection) GetAssociatedDeploymentsOk() ([]AssociatedDeployment, bool)

GetAssociatedDeploymentsOk returns a tuple with the AssociatedDeployments field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetCitrixManaged

func (o *ResourceConnection) GetCitrixManaged() bool

GetCitrixManaged returns the CitrixManaged field value

func (*ResourceConnection) GetCitrixManagedOk

func (o *ResourceConnection) GetCitrixManagedOk() (*bool, bool)

GetCitrixManagedOk returns a tuple with the CitrixManaged field value and a boolean to check if the value has been set.

func (*ResourceConnection) GetConnectionId

func (o *ResourceConnection) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ResourceConnection) GetConnectionIdOk

func (o *ResourceConnection) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*ResourceConnection) GetConnectionState

func (o *ResourceConnection) GetConnectionState() ConnectionState

GetConnectionState returns the ConnectionState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetConnectionStateOk

func (o *ResourceConnection) GetConnectionStateOk() (*ConnectionState, bool)

GetConnectionStateOk returns a tuple with the ConnectionState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetName

func (o *ResourceConnection) GetName() string

GetName returns the Name field value

func (*ResourceConnection) GetNameOk

func (o *ResourceConnection) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ResourceConnection) GetResourceLocationId

func (o *ResourceConnection) GetResourceLocationId() string

GetResourceLocationId returns the ResourceLocationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetResourceLocationIdOk

func (o *ResourceConnection) GetResourceLocationIdOk() (*string, bool)

GetResourceLocationIdOk returns a tuple with the ResourceLocationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetWarnings

func (o *ResourceConnection) GetWarnings() []ResourceConnectionWarning

GetWarnings returns the Warnings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetWarningsOk

func (o *ResourceConnection) GetWarningsOk() ([]ResourceConnectionWarning, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) GetZoneId

func (o *ResourceConnection) GetZoneId() string

GetZoneId returns the ZoneId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnection) GetZoneIdOk

func (o *ResourceConnection) GetZoneIdOk() (*string, bool)

GetZoneIdOk returns a tuple with the ZoneId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnection) HasAccountId

func (o *ResourceConnection) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*ResourceConnection) HasActiveTasks

func (o *ResourceConnection) HasActiveTasks() bool

HasActiveTasks returns a boolean if a field has been set.

func (*ResourceConnection) HasAssociatedDeployments

func (o *ResourceConnection) HasAssociatedDeployments() bool

HasAssociatedDeployments returns a boolean if a field has been set.

func (*ResourceConnection) HasConnectionState

func (o *ResourceConnection) HasConnectionState() bool

HasConnectionState returns a boolean if a field has been set.

func (*ResourceConnection) HasResourceLocationId

func (o *ResourceConnection) HasResourceLocationId() bool

HasResourceLocationId returns a boolean if a field has been set.

func (*ResourceConnection) HasWarnings

func (o *ResourceConnection) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (*ResourceConnection) HasZoneId

func (o *ResourceConnection) HasZoneId() bool

HasZoneId returns a boolean if a field has been set.

func (ResourceConnection) MarshalJSON

func (o ResourceConnection) MarshalJSON() ([]byte, error)

func (*ResourceConnection) SetAccountId

func (o *ResourceConnection) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*ResourceConnection) SetAccountIdNil

func (o *ResourceConnection) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*ResourceConnection) SetAccountType

func (o *ResourceConnection) SetAccountType(v AccountType)

SetAccountType sets field value

func (*ResourceConnection) SetActiveTasks

func (o *ResourceConnection) SetActiveTasks(v []GetTaskAsync200Response)

SetActiveTasks gets a reference to the given []GetTaskAsync200Response and assigns it to the ActiveTasks field.

func (*ResourceConnection) SetAssociatedDeployments

func (o *ResourceConnection) SetAssociatedDeployments(v []AssociatedDeployment)

SetAssociatedDeployments gets a reference to the given []AssociatedDeployment and assigns it to the AssociatedDeployments field.

func (*ResourceConnection) SetCitrixManaged

func (o *ResourceConnection) SetCitrixManaged(v bool)

SetCitrixManaged sets field value

func (*ResourceConnection) SetConnectionId

func (o *ResourceConnection) SetConnectionId(v string)

SetConnectionId sets field value

func (*ResourceConnection) SetConnectionState

func (o *ResourceConnection) SetConnectionState(v ConnectionState)

SetConnectionState gets a reference to the given NullableConnectionState and assigns it to the ConnectionState field.

func (*ResourceConnection) SetConnectionStateNil

func (o *ResourceConnection) SetConnectionStateNil()

SetConnectionStateNil sets the value for ConnectionState to be an explicit nil

func (*ResourceConnection) SetName

func (o *ResourceConnection) SetName(v string)

SetName sets field value

func (*ResourceConnection) SetResourceLocationId

func (o *ResourceConnection) SetResourceLocationId(v string)

SetResourceLocationId gets a reference to the given NullableString and assigns it to the ResourceLocationId field.

func (*ResourceConnection) SetResourceLocationIdNil

func (o *ResourceConnection) SetResourceLocationIdNil()

SetResourceLocationIdNil sets the value for ResourceLocationId to be an explicit nil

func (*ResourceConnection) SetWarnings

func (o *ResourceConnection) SetWarnings(v []ResourceConnectionWarning)

SetWarnings gets a reference to the given []ResourceConnectionWarning and assigns it to the Warnings field.

func (*ResourceConnection) SetZoneId

func (o *ResourceConnection) SetZoneId(v string)

SetZoneId gets a reference to the given NullableString and assigns it to the ZoneId field.

func (*ResourceConnection) SetZoneIdNil

func (o *ResourceConnection) SetZoneIdNil()

SetZoneIdNil sets the value for ZoneId to be an explicit nil

func (ResourceConnection) ToMap

func (o ResourceConnection) ToMap() (map[string]interface{}, error)

func (*ResourceConnection) UnsetAccountId

func (o *ResourceConnection) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*ResourceConnection) UnsetConnectionState

func (o *ResourceConnection) UnsetConnectionState()

UnsetConnectionState ensures that no value is present for ConnectionState, not even an explicit nil

func (*ResourceConnection) UnsetResourceLocationId

func (o *ResourceConnection) UnsetResourceLocationId()

UnsetResourceLocationId ensures that no value is present for ResourceLocationId, not even an explicit nil

func (*ResourceConnection) UnsetZoneId

func (o *ResourceConnection) UnsetZoneId()

UnsetZoneId ensures that no value is present for ZoneId, not even an explicit nil

type ResourceConnectionTask

type ResourceConnectionTask struct {
	TaskBase
	Operation NullableResourceConnectionTaskOperationType `json:"operation,omitempty"`
	// The ResourceConnectionId this task is working on
	ResourceConnectionId NullableString `json:"resourceConnectionId,omitempty"`
}

ResourceConnectionTask Deployment Task Configuration

func NewResourceConnectionTask

func NewResourceConnectionTask(taskType TaskType) *ResourceConnectionTask

NewResourceConnectionTask instantiates a new ResourceConnectionTask 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 NewResourceConnectionTaskWithDefaults

func NewResourceConnectionTaskWithDefaults() *ResourceConnectionTask

NewResourceConnectionTaskWithDefaults instantiates a new ResourceConnectionTask 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 (*ResourceConnectionTask) GetOperation

GetOperation returns the Operation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionTask) GetOperationOk

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionTask) GetResourceConnectionId

func (o *ResourceConnectionTask) GetResourceConnectionId() string

GetResourceConnectionId returns the ResourceConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionTask) GetResourceConnectionIdOk

func (o *ResourceConnectionTask) GetResourceConnectionIdOk() (*string, bool)

GetResourceConnectionIdOk returns a tuple with the ResourceConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionTask) HasOperation

func (o *ResourceConnectionTask) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*ResourceConnectionTask) HasResourceConnectionId

func (o *ResourceConnectionTask) HasResourceConnectionId() bool

HasResourceConnectionId returns a boolean if a field has been set.

func (ResourceConnectionTask) MarshalJSON

func (o ResourceConnectionTask) MarshalJSON() ([]byte, error)

func (*ResourceConnectionTask) SetOperation

SetOperation gets a reference to the given NullableResourceConnectionTaskOperationType and assigns it to the Operation field.

func (*ResourceConnectionTask) SetOperationNil

func (o *ResourceConnectionTask) SetOperationNil()

SetOperationNil sets the value for Operation to be an explicit nil

func (*ResourceConnectionTask) SetResourceConnectionId

func (o *ResourceConnectionTask) SetResourceConnectionId(v string)

SetResourceConnectionId gets a reference to the given NullableString and assigns it to the ResourceConnectionId field.

func (*ResourceConnectionTask) SetResourceConnectionIdNil

func (o *ResourceConnectionTask) SetResourceConnectionIdNil()

SetResourceConnectionIdNil sets the value for ResourceConnectionId to be an explicit nil

func (ResourceConnectionTask) ToMap

func (o ResourceConnectionTask) ToMap() (map[string]interface{}, error)

func (*ResourceConnectionTask) UnsetOperation

func (o *ResourceConnectionTask) UnsetOperation()

UnsetOperation ensures that no value is present for Operation, not even an explicit nil

func (*ResourceConnectionTask) UnsetResourceConnectionId

func (o *ResourceConnectionTask) UnsetResourceConnectionId()

UnsetResourceConnectionId ensures that no value is present for ResourceConnectionId, not even an explicit nil

type ResourceConnectionTaskOperationType

type ResourceConnectionTaskOperationType string

ResourceConnectionTaskOperationType Resource connection tasks

const (
	RESOURCECONNECTIONTASKOPERATIONTYPE_ADD_CONNECTION           ResourceConnectionTaskOperationType = "ADD_CONNECTION"
	RESOURCECONNECTIONTASKOPERATIONTYPE_ADD_CONNECTORS           ResourceConnectionTaskOperationType = "ADD_CONNECTORS"
	RESOURCECONNECTIONTASKOPERATIONTYPE_ADD_CONNECTOR_APPLIANCES ResourceConnectionTaskOperationType = "ADD_CONNECTOR_APPLIANCES"
	RESOURCECONNECTIONTASKOPERATIONTYPE_REMOVE_CONNECTION        ResourceConnectionTaskOperationType = "REMOVE_CONNECTION"
)

List of ResourceConnectionTaskOperationType

func NewResourceConnectionTaskOperationTypeFromValue

func NewResourceConnectionTaskOperationTypeFromValue(v string) (*ResourceConnectionTaskOperationType, error)

NewResourceConnectionTaskOperationTypeFromValue returns a pointer to a valid ResourceConnectionTaskOperationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceConnectionTaskOperationType) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceConnectionTaskOperationType) Ptr

Ptr returns reference to ResourceConnectionTaskOperationType value

func (*ResourceConnectionTaskOperationType) UnmarshalJSON

func (v *ResourceConnectionTaskOperationType) UnmarshalJSON(src []byte) error

type ResourceConnectionWarning

type ResourceConnectionWarning struct {
	WarningType *ResourceConnectionWarningType `json:"warningType,omitempty"`
	// Id of the warning
	Id NullableString `json:"id,omitempty"`
	// The warning message
	Warning NullableString `json:"warning,omitempty"`
	// ID of the task the warning was created by
	TaskId NullableString `json:"taskId,omitempty"`
	// Indicates if the warning should be treated as an error
	IsError *bool `json:"isError,omitempty"`
	// Indicates if the warning message can be cleared out by the user
	IsDismissible *bool `json:"isDismissible,omitempty"`
	// ID of the transaction the warning was created by
	TransactionId NullableString `json:"transactionId,omitempty"`
}

ResourceConnectionWarning struct for ResourceConnectionWarning

func NewResourceConnectionWarning

func NewResourceConnectionWarning() *ResourceConnectionWarning

NewResourceConnectionWarning instantiates a new ResourceConnectionWarning 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 NewResourceConnectionWarningWithDefaults

func NewResourceConnectionWarningWithDefaults() *ResourceConnectionWarning

NewResourceConnectionWarningWithDefaults instantiates a new ResourceConnectionWarning 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 (*ResourceConnectionWarning) GetId

func (o *ResourceConnectionWarning) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionWarning) GetIdOk

func (o *ResourceConnectionWarning) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionWarning) GetIsDismissible

func (o *ResourceConnectionWarning) GetIsDismissible() bool

GetIsDismissible returns the IsDismissible field value if set, zero value otherwise.

func (*ResourceConnectionWarning) GetIsDismissibleOk

func (o *ResourceConnectionWarning) GetIsDismissibleOk() (*bool, bool)

GetIsDismissibleOk returns a tuple with the IsDismissible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceConnectionWarning) GetIsError

func (o *ResourceConnectionWarning) GetIsError() bool

GetIsError returns the IsError field value if set, zero value otherwise.

func (*ResourceConnectionWarning) GetIsErrorOk

func (o *ResourceConnectionWarning) GetIsErrorOk() (*bool, bool)

GetIsErrorOk returns a tuple with the IsError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceConnectionWarning) GetTaskId

func (o *ResourceConnectionWarning) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionWarning) GetTaskIdOk

func (o *ResourceConnectionWarning) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionWarning) GetTransactionId

func (o *ResourceConnectionWarning) GetTransactionId() string

GetTransactionId returns the TransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionWarning) GetTransactionIdOk

func (o *ResourceConnectionWarning) GetTransactionIdOk() (*string, bool)

GetTransactionIdOk returns a tuple with the TransactionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionWarning) GetWarning

func (o *ResourceConnectionWarning) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnectionWarning) GetWarningOk

func (o *ResourceConnectionWarning) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnectionWarning) GetWarningType

GetWarningType returns the WarningType field value if set, zero value otherwise.

func (*ResourceConnectionWarning) GetWarningTypeOk

GetWarningTypeOk returns a tuple with the WarningType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceConnectionWarning) HasId

func (o *ResourceConnectionWarning) HasId() bool

HasId returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasIsDismissible

func (o *ResourceConnectionWarning) HasIsDismissible() bool

HasIsDismissible returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasIsError

func (o *ResourceConnectionWarning) HasIsError() bool

HasIsError returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasTaskId

func (o *ResourceConnectionWarning) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasTransactionId

func (o *ResourceConnectionWarning) HasTransactionId() bool

HasTransactionId returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasWarning

func (o *ResourceConnectionWarning) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (*ResourceConnectionWarning) HasWarningType

func (o *ResourceConnectionWarning) HasWarningType() bool

HasWarningType returns a boolean if a field has been set.

func (ResourceConnectionWarning) MarshalJSON

func (o ResourceConnectionWarning) MarshalJSON() ([]byte, error)

func (*ResourceConnectionWarning) SetId

func (o *ResourceConnectionWarning) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*ResourceConnectionWarning) SetIdNil

func (o *ResourceConnectionWarning) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ResourceConnectionWarning) SetIsDismissible

func (o *ResourceConnectionWarning) SetIsDismissible(v bool)

SetIsDismissible gets a reference to the given bool and assigns it to the IsDismissible field.

func (*ResourceConnectionWarning) SetIsError

func (o *ResourceConnectionWarning) SetIsError(v bool)

SetIsError gets a reference to the given bool and assigns it to the IsError field.

func (*ResourceConnectionWarning) SetTaskId

func (o *ResourceConnectionWarning) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*ResourceConnectionWarning) SetTaskIdNil

func (o *ResourceConnectionWarning) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*ResourceConnectionWarning) SetTransactionId

func (o *ResourceConnectionWarning) SetTransactionId(v string)

SetTransactionId gets a reference to the given NullableString and assigns it to the TransactionId field.

func (*ResourceConnectionWarning) SetTransactionIdNil

func (o *ResourceConnectionWarning) SetTransactionIdNil()

SetTransactionIdNil sets the value for TransactionId to be an explicit nil

func (*ResourceConnectionWarning) SetWarning

func (o *ResourceConnectionWarning) SetWarning(v string)

SetWarning gets a reference to the given NullableString and assigns it to the Warning field.

func (*ResourceConnectionWarning) SetWarningNil

func (o *ResourceConnectionWarning) SetWarningNil()

SetWarningNil sets the value for Warning to be an explicit nil

func (*ResourceConnectionWarning) SetWarningType

SetWarningType gets a reference to the given ResourceConnectionWarningType and assigns it to the WarningType field.

func (ResourceConnectionWarning) ToMap

func (o ResourceConnectionWarning) ToMap() (map[string]interface{}, error)

func (*ResourceConnectionWarning) UnsetId

func (o *ResourceConnectionWarning) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*ResourceConnectionWarning) UnsetTaskId

func (o *ResourceConnectionWarning) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

func (*ResourceConnectionWarning) UnsetTransactionId

func (o *ResourceConnectionWarning) UnsetTransactionId()

UnsetTransactionId ensures that no value is present for TransactionId, not even an explicit nil

func (*ResourceConnectionWarning) UnsetWarning

func (o *ResourceConnectionWarning) UnsetWarning()

UnsetWarning ensures that no value is present for Warning, not even an explicit nil

type ResourceConnectionWarningType

type ResourceConnectionWarningType string

ResourceConnectionWarningType the model 'ResourceConnectionWarningType'

const (
	RESOURCECONNECTIONWARNINGTYPE_RESOURCE_CONNECTION_FAILED_TO_ADD_CONNECTORS ResourceConnectionWarningType = "ResourceConnectionFailedToAddConnectors"
)

List of ResourceConnectionWarningType

func NewResourceConnectionWarningTypeFromValue

func NewResourceConnectionWarningTypeFromValue(v string) (*ResourceConnectionWarningType, error)

NewResourceConnectionWarningTypeFromValue returns a pointer to a valid ResourceConnectionWarningType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceConnectionWarningType) IsValid

func (v ResourceConnectionWarningType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceConnectionWarningType) Ptr

Ptr returns reference to ResourceConnectionWarningType value

func (*ResourceConnectionWarningType) UnmarshalJSON

func (v *ResourceConnectionWarningType) UnmarshalJSON(src []byte) error

type ResourceConnections

type ResourceConnections struct {
	// Enumerable of HostingUnit
	Items []AwsEdcDirectoryConnection `json:"items,omitempty"`
}

ResourceConnections Enumerable of HostingUnit

func NewResourceConnections

func NewResourceConnections() *ResourceConnections

NewResourceConnections instantiates a new ResourceConnections 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 NewResourceConnectionsWithDefaults

func NewResourceConnectionsWithDefaults() *ResourceConnections

NewResourceConnectionsWithDefaults instantiates a new ResourceConnections 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 (*ResourceConnections) GetItems

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceConnections) GetItemsOk

func (o *ResourceConnections) GetItemsOk() ([]AwsEdcDirectoryConnection, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceConnections) HasItems

func (o *ResourceConnections) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ResourceConnections) MarshalJSON

func (o ResourceConnections) MarshalJSON() ([]byte, error)

func (*ResourceConnections) SetItems

SetItems gets a reference to the given []AwsEdcDirectoryConnection and assigns it to the Items field.

func (ResourceConnections) ToMap

func (o ResourceConnections) ToMap() (map[string]interface{}, error)

type ResponseDetails

type ResponseDetails struct {
	// Once of the error codes listed in the ErrorCode enum
	ErrorCode *int32 `json:"errorCode,omitempty"`
	// Description about the error
	ErrorDescription NullableString `json:"errorDescription,omitempty"`
}

ResponseDetails Details about the failure

func NewResponseDetails

func NewResponseDetails() *ResponseDetails

NewResponseDetails instantiates a new ResponseDetails 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 NewResponseDetailsWithDefaults

func NewResponseDetailsWithDefaults() *ResponseDetails

NewResponseDetailsWithDefaults instantiates a new ResponseDetails 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 (*ResponseDetails) GetErrorCode

func (o *ResponseDetails) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*ResponseDetails) GetErrorCodeOk

func (o *ResponseDetails) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseDetails) GetErrorDescription

func (o *ResponseDetails) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetails) GetErrorDescriptionOk

func (o *ResponseDetails) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetails) HasErrorCode

func (o *ResponseDetails) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*ResponseDetails) HasErrorDescription

func (o *ResponseDetails) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (ResponseDetails) MarshalJSON

func (o ResponseDetails) MarshalJSON() ([]byte, error)

func (*ResponseDetails) SetErrorCode

func (o *ResponseDetails) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*ResponseDetails) SetErrorDescription

func (o *ResponseDetails) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given NullableString and assigns it to the ErrorDescription field.

func (*ResponseDetails) SetErrorDescriptionNil

func (o *ResponseDetails) SetErrorDescriptionNil()

SetErrorDescriptionNil sets the value for ErrorDescription to be an explicit nil

func (ResponseDetails) ToMap

func (o ResponseDetails) ToMap() (map[string]interface{}, error)

func (*ResponseDetails) UnsetErrorDescription

func (o *ResponseDetails) UnsetErrorDescription()

UnsetErrorDescription ensures that no value is present for ErrorDescription, not even an explicit nil

type ResponseDetailsGroupLicenseAssignment

type ResponseDetailsGroupLicenseAssignment struct {
	Groups []string `json:"groups,omitempty"`
	// Once of the error codes listed in the ErrorCode enum
	ErrorCode *int32 `json:"errorCode,omitempty"`
	// Description about the error
	ErrorDescription NullableString `json:"errorDescription,omitempty"`
}

ResponseDetailsGroupLicenseAssignment struct for ResponseDetailsGroupLicenseAssignment

func NewResponseDetailsGroupLicenseAssignment

func NewResponseDetailsGroupLicenseAssignment() *ResponseDetailsGroupLicenseAssignment

NewResponseDetailsGroupLicenseAssignment instantiates a new ResponseDetailsGroupLicenseAssignment 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 NewResponseDetailsGroupLicenseAssignmentWithDefaults

func NewResponseDetailsGroupLicenseAssignmentWithDefaults() *ResponseDetailsGroupLicenseAssignment

NewResponseDetailsGroupLicenseAssignmentWithDefaults instantiates a new ResponseDetailsGroupLicenseAssignment 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 (*ResponseDetailsGroupLicenseAssignment) GetErrorCode

func (o *ResponseDetailsGroupLicenseAssignment) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*ResponseDetailsGroupLicenseAssignment) GetErrorCodeOk

func (o *ResponseDetailsGroupLicenseAssignment) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseDetailsGroupLicenseAssignment) GetErrorDescription

func (o *ResponseDetailsGroupLicenseAssignment) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsGroupLicenseAssignment) GetErrorDescriptionOk

func (o *ResponseDetailsGroupLicenseAssignment) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsGroupLicenseAssignment) GetGroups

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsGroupLicenseAssignment) GetGroupsOk

func (o *ResponseDetailsGroupLicenseAssignment) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsGroupLicenseAssignment) HasErrorCode

func (o *ResponseDetailsGroupLicenseAssignment) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*ResponseDetailsGroupLicenseAssignment) HasErrorDescription

func (o *ResponseDetailsGroupLicenseAssignment) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*ResponseDetailsGroupLicenseAssignment) HasGroups

HasGroups returns a boolean if a field has been set.

func (ResponseDetailsGroupLicenseAssignment) MarshalJSON

func (o ResponseDetailsGroupLicenseAssignment) MarshalJSON() ([]byte, error)

func (*ResponseDetailsGroupLicenseAssignment) SetErrorCode

func (o *ResponseDetailsGroupLicenseAssignment) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*ResponseDetailsGroupLicenseAssignment) SetErrorDescription

func (o *ResponseDetailsGroupLicenseAssignment) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given NullableString and assigns it to the ErrorDescription field.

func (*ResponseDetailsGroupLicenseAssignment) SetErrorDescriptionNil

func (o *ResponseDetailsGroupLicenseAssignment) SetErrorDescriptionNil()

SetErrorDescriptionNil sets the value for ErrorDescription to be an explicit nil

func (*ResponseDetailsGroupLicenseAssignment) SetGroups

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (ResponseDetailsGroupLicenseAssignment) ToMap

func (o ResponseDetailsGroupLicenseAssignment) ToMap() (map[string]interface{}, error)

func (*ResponseDetailsGroupLicenseAssignment) UnsetErrorDescription

func (o *ResponseDetailsGroupLicenseAssignment) UnsetErrorDescription()

UnsetErrorDescription ensures that no value is present for ErrorDescription, not even an explicit nil

type ResponseDetailsLicenseAssignment

type ResponseDetailsLicenseAssignment struct {
	// List of user IDs that failed with the specific errorcode
	Users []string `json:"users,omitempty"`
	// Once of the error codes listed in the ErrorCode enum
	ErrorCode *int32 `json:"errorCode,omitempty"`
	// Description about the error
	ErrorDescription NullableString `json:"errorDescription,omitempty"`
}

ResponseDetailsLicenseAssignment Each object of License error describing the number of users that failed with each error

func NewResponseDetailsLicenseAssignment

func NewResponseDetailsLicenseAssignment() *ResponseDetailsLicenseAssignment

NewResponseDetailsLicenseAssignment instantiates a new ResponseDetailsLicenseAssignment 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 NewResponseDetailsLicenseAssignmentWithDefaults

func NewResponseDetailsLicenseAssignmentWithDefaults() *ResponseDetailsLicenseAssignment

NewResponseDetailsLicenseAssignmentWithDefaults instantiates a new ResponseDetailsLicenseAssignment 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 (*ResponseDetailsLicenseAssignment) GetErrorCode

func (o *ResponseDetailsLicenseAssignment) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*ResponseDetailsLicenseAssignment) GetErrorCodeOk

func (o *ResponseDetailsLicenseAssignment) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseDetailsLicenseAssignment) GetErrorDescription

func (o *ResponseDetailsLicenseAssignment) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsLicenseAssignment) GetErrorDescriptionOk

func (o *ResponseDetailsLicenseAssignment) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsLicenseAssignment) GetUsers

func (o *ResponseDetailsLicenseAssignment) GetUsers() []string

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsLicenseAssignment) GetUsersOk

func (o *ResponseDetailsLicenseAssignment) GetUsersOk() ([]string, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsLicenseAssignment) HasErrorCode

func (o *ResponseDetailsLicenseAssignment) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*ResponseDetailsLicenseAssignment) HasErrorDescription

func (o *ResponseDetailsLicenseAssignment) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*ResponseDetailsLicenseAssignment) HasUsers

func (o *ResponseDetailsLicenseAssignment) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (ResponseDetailsLicenseAssignment) MarshalJSON

func (o ResponseDetailsLicenseAssignment) MarshalJSON() ([]byte, error)

func (*ResponseDetailsLicenseAssignment) SetErrorCode

func (o *ResponseDetailsLicenseAssignment) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*ResponseDetailsLicenseAssignment) SetErrorDescription

func (o *ResponseDetailsLicenseAssignment) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given NullableString and assigns it to the ErrorDescription field.

func (*ResponseDetailsLicenseAssignment) SetErrorDescriptionNil

func (o *ResponseDetailsLicenseAssignment) SetErrorDescriptionNil()

SetErrorDescriptionNil sets the value for ErrorDescription to be an explicit nil

func (*ResponseDetailsLicenseAssignment) SetUsers

func (o *ResponseDetailsLicenseAssignment) SetUsers(v []string)

SetUsers gets a reference to the given []string and assigns it to the Users field.

func (ResponseDetailsLicenseAssignment) ToMap

func (o ResponseDetailsLicenseAssignment) ToMap() (map[string]interface{}, error)

func (*ResponseDetailsLicenseAssignment) UnsetErrorDescription

func (o *ResponseDetailsLicenseAssignment) UnsetErrorDescription()

UnsetErrorDescription ensures that no value is present for ErrorDescription, not even an explicit nil

type ResponseDetailsLicenseAssignmentEx

type ResponseDetailsLicenseAssignmentEx struct {
	// List of users that failed with the specific errorcode
	Users []CoreUser `json:"users,omitempty"`
	// Once of the error codes listed in the ErrorCode enum
	ErrorCode *int32 `json:"errorCode,omitempty"`
	// Description about the error
	ErrorDescription NullableString `json:"errorDescription,omitempty"`
}

ResponseDetailsLicenseAssignmentEx Comparing to ResponseDetailsLicenseAssignment, provides additional user metadata

func NewResponseDetailsLicenseAssignmentEx

func NewResponseDetailsLicenseAssignmentEx() *ResponseDetailsLicenseAssignmentEx

NewResponseDetailsLicenseAssignmentEx instantiates a new ResponseDetailsLicenseAssignmentEx 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 NewResponseDetailsLicenseAssignmentExWithDefaults

func NewResponseDetailsLicenseAssignmentExWithDefaults() *ResponseDetailsLicenseAssignmentEx

NewResponseDetailsLicenseAssignmentExWithDefaults instantiates a new ResponseDetailsLicenseAssignmentEx 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 (*ResponseDetailsLicenseAssignmentEx) GetErrorCode

func (o *ResponseDetailsLicenseAssignmentEx) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*ResponseDetailsLicenseAssignmentEx) GetErrorCodeOk

func (o *ResponseDetailsLicenseAssignmentEx) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseDetailsLicenseAssignmentEx) GetErrorDescription

func (o *ResponseDetailsLicenseAssignmentEx) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsLicenseAssignmentEx) GetErrorDescriptionOk

func (o *ResponseDetailsLicenseAssignmentEx) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsLicenseAssignmentEx) GetUsers

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseDetailsLicenseAssignmentEx) GetUsersOk

func (o *ResponseDetailsLicenseAssignmentEx) GetUsersOk() ([]CoreUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseDetailsLicenseAssignmentEx) HasErrorCode

func (o *ResponseDetailsLicenseAssignmentEx) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*ResponseDetailsLicenseAssignmentEx) HasErrorDescription

func (o *ResponseDetailsLicenseAssignmentEx) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*ResponseDetailsLicenseAssignmentEx) HasUsers

HasUsers returns a boolean if a field has been set.

func (ResponseDetailsLicenseAssignmentEx) MarshalJSON

func (o ResponseDetailsLicenseAssignmentEx) MarshalJSON() ([]byte, error)

func (*ResponseDetailsLicenseAssignmentEx) SetErrorCode

func (o *ResponseDetailsLicenseAssignmentEx) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*ResponseDetailsLicenseAssignmentEx) SetErrorDescription

func (o *ResponseDetailsLicenseAssignmentEx) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given NullableString and assigns it to the ErrorDescription field.

func (*ResponseDetailsLicenseAssignmentEx) SetErrorDescriptionNil

func (o *ResponseDetailsLicenseAssignmentEx) SetErrorDescriptionNil()

SetErrorDescriptionNil sets the value for ErrorDescription to be an explicit nil

func (*ResponseDetailsLicenseAssignmentEx) SetUsers

SetUsers gets a reference to the given []CoreUser and assigns it to the Users field.

func (ResponseDetailsLicenseAssignmentEx) ToMap

func (o ResponseDetailsLicenseAssignmentEx) ToMap() (map[string]interface{}, error)

func (*ResponseDetailsLicenseAssignmentEx) UnsetErrorDescription

func (o *ResponseDetailsLicenseAssignmentEx) UnsetErrorDescription()

UnsetErrorDescription ensures that no value is present for ErrorDescription, not even an explicit nil

type SaveAsImageRequest

type SaveAsImageRequest struct {
	// Id for the image builder machine
	AccountId string `json:"accountId"`
	// Image Name
	ImageName string `json:"imageName"`
	// Image Description
	ImageDescription string `json:"imageDescription"`
	// Image Notes
	ImageNotes NullableString `json:"imageNotes,omitempty"`
}

SaveAsImageRequest struct for SaveAsImageRequest

func NewSaveAsImageRequest

func NewSaveAsImageRequest(accountId string, imageName string, imageDescription string) *SaveAsImageRequest

NewSaveAsImageRequest instantiates a new SaveAsImageRequest 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 NewSaveAsImageRequestWithDefaults

func NewSaveAsImageRequestWithDefaults() *SaveAsImageRequest

NewSaveAsImageRequestWithDefaults instantiates a new SaveAsImageRequest 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 (*SaveAsImageRequest) GetAccountId

func (o *SaveAsImageRequest) GetAccountId() string

GetAccountId returns the AccountId field value

func (*SaveAsImageRequest) GetAccountIdOk

func (o *SaveAsImageRequest) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value and a boolean to check if the value has been set.

func (*SaveAsImageRequest) GetImageDescription

func (o *SaveAsImageRequest) GetImageDescription() string

GetImageDescription returns the ImageDescription field value

func (*SaveAsImageRequest) GetImageDescriptionOk

func (o *SaveAsImageRequest) GetImageDescriptionOk() (*string, bool)

GetImageDescriptionOk returns a tuple with the ImageDescription field value and a boolean to check if the value has been set.

func (*SaveAsImageRequest) GetImageName

func (o *SaveAsImageRequest) GetImageName() string

GetImageName returns the ImageName field value

func (*SaveAsImageRequest) GetImageNameOk

func (o *SaveAsImageRequest) GetImageNameOk() (*string, bool)

GetImageNameOk returns a tuple with the ImageName field value and a boolean to check if the value has been set.

func (*SaveAsImageRequest) GetImageNotes

func (o *SaveAsImageRequest) GetImageNotes() string

GetImageNotes returns the ImageNotes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SaveAsImageRequest) GetImageNotesOk

func (o *SaveAsImageRequest) GetImageNotesOk() (*string, bool)

GetImageNotesOk returns a tuple with the ImageNotes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SaveAsImageRequest) HasImageNotes

func (o *SaveAsImageRequest) HasImageNotes() bool

HasImageNotes returns a boolean if a field has been set.

func (SaveAsImageRequest) MarshalJSON

func (o SaveAsImageRequest) MarshalJSON() ([]byte, error)

func (*SaveAsImageRequest) SetAccountId

func (o *SaveAsImageRequest) SetAccountId(v string)

SetAccountId sets field value

func (*SaveAsImageRequest) SetImageDescription

func (o *SaveAsImageRequest) SetImageDescription(v string)

SetImageDescription sets field value

func (*SaveAsImageRequest) SetImageName

func (o *SaveAsImageRequest) SetImageName(v string)

SetImageName sets field value

func (*SaveAsImageRequest) SetImageNotes

func (o *SaveAsImageRequest) SetImageNotes(v string)

SetImageNotes gets a reference to the given NullableString and assigns it to the ImageNotes field.

func (*SaveAsImageRequest) SetImageNotesNil

func (o *SaveAsImageRequest) SetImageNotesNil()

SetImageNotesNil sets the value for ImageNotes to be an explicit nil

func (SaveAsImageRequest) ToMap

func (o SaveAsImageRequest) ToMap() (map[string]interface{}, error)

func (*SaveAsImageRequest) UnsetImageNotes

func (o *SaveAsImageRequest) UnsetImageNotes()

UnsetImageNotes ensures that no value is present for ImageNotes, not even an explicit nil

type ScaleSettings

type ScaleSettings struct {
	// Indicates whether the scale settings are enabled for the deployment
	AutoScaleEnabled NullableBool `json:"autoScaleEnabled,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session disconnects outside peak hours.
	OffPeakDisconnectTimeoutMinutes NullableInt32 `json:"offPeakDisconnectTimeoutMinutes,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session ends outside peak hours.
	OffPeakLogOffTimeoutMinutes NullableInt32 `json:"offPeakLogOffTimeoutMinutes,omitempty"`
	// Specifies the time in minutes after which an idle session  belonging to the delivery group is disconnected during off-peak time.
	SessionIdleTimeoutMinutes NullableInt32 `json:"sessionIdleTimeoutMinutes,omitempty"`
	// The percentage of machines in the delivery group that should be  kept available in an idle state outside peak hours.
	OffPeakBufferSizePercent NullableInt32 `json:"offPeakBufferSizePercent,omitempty"`
}

ScaleSettings struct for ScaleSettings

func NewScaleSettings

func NewScaleSettings() *ScaleSettings

NewScaleSettings instantiates a new ScaleSettings 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 NewScaleSettingsWithDefaults

func NewScaleSettingsWithDefaults() *ScaleSettings

NewScaleSettingsWithDefaults instantiates a new ScaleSettings 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 (*ScaleSettings) GetAutoScaleEnabled

func (o *ScaleSettings) GetAutoScaleEnabled() bool

GetAutoScaleEnabled returns the AutoScaleEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScaleSettings) GetAutoScaleEnabledOk

func (o *ScaleSettings) GetAutoScaleEnabledOk() (*bool, bool)

GetAutoScaleEnabledOk returns a tuple with the AutoScaleEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScaleSettings) GetOffPeakBufferSizePercent

func (o *ScaleSettings) GetOffPeakBufferSizePercent() int32

GetOffPeakBufferSizePercent returns the OffPeakBufferSizePercent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScaleSettings) GetOffPeakBufferSizePercentOk

func (o *ScaleSettings) GetOffPeakBufferSizePercentOk() (*int32, bool)

GetOffPeakBufferSizePercentOk returns a tuple with the OffPeakBufferSizePercent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScaleSettings) GetOffPeakDisconnectTimeoutMinutes

func (o *ScaleSettings) GetOffPeakDisconnectTimeoutMinutes() int32

GetOffPeakDisconnectTimeoutMinutes returns the OffPeakDisconnectTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScaleSettings) GetOffPeakDisconnectTimeoutMinutesOk

func (o *ScaleSettings) GetOffPeakDisconnectTimeoutMinutesOk() (*int32, bool)

GetOffPeakDisconnectTimeoutMinutesOk returns a tuple with the OffPeakDisconnectTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScaleSettings) GetOffPeakLogOffTimeoutMinutes

func (o *ScaleSettings) GetOffPeakLogOffTimeoutMinutes() int32

GetOffPeakLogOffTimeoutMinutes returns the OffPeakLogOffTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScaleSettings) GetOffPeakLogOffTimeoutMinutesOk

func (o *ScaleSettings) GetOffPeakLogOffTimeoutMinutesOk() (*int32, bool)

GetOffPeakLogOffTimeoutMinutesOk returns a tuple with the OffPeakLogOffTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScaleSettings) GetSessionIdleTimeoutMinutes

func (o *ScaleSettings) GetSessionIdleTimeoutMinutes() int32

GetSessionIdleTimeoutMinutes returns the SessionIdleTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScaleSettings) GetSessionIdleTimeoutMinutesOk

func (o *ScaleSettings) GetSessionIdleTimeoutMinutesOk() (*int32, bool)

GetSessionIdleTimeoutMinutesOk returns a tuple with the SessionIdleTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScaleSettings) HasAutoScaleEnabled

func (o *ScaleSettings) HasAutoScaleEnabled() bool

HasAutoScaleEnabled returns a boolean if a field has been set.

func (*ScaleSettings) HasOffPeakBufferSizePercent

func (o *ScaleSettings) HasOffPeakBufferSizePercent() bool

HasOffPeakBufferSizePercent returns a boolean if a field has been set.

func (*ScaleSettings) HasOffPeakDisconnectTimeoutMinutes

func (o *ScaleSettings) HasOffPeakDisconnectTimeoutMinutes() bool

HasOffPeakDisconnectTimeoutMinutes returns a boolean if a field has been set.

func (*ScaleSettings) HasOffPeakLogOffTimeoutMinutes

func (o *ScaleSettings) HasOffPeakLogOffTimeoutMinutes() bool

HasOffPeakLogOffTimeoutMinutes returns a boolean if a field has been set.

func (*ScaleSettings) HasSessionIdleTimeoutMinutes

func (o *ScaleSettings) HasSessionIdleTimeoutMinutes() bool

HasSessionIdleTimeoutMinutes returns a boolean if a field has been set.

func (ScaleSettings) MarshalJSON

func (o ScaleSettings) MarshalJSON() ([]byte, error)

func (*ScaleSettings) SetAutoScaleEnabled

func (o *ScaleSettings) SetAutoScaleEnabled(v bool)

SetAutoScaleEnabled gets a reference to the given NullableBool and assigns it to the AutoScaleEnabled field.

func (*ScaleSettings) SetAutoScaleEnabledNil

func (o *ScaleSettings) SetAutoScaleEnabledNil()

SetAutoScaleEnabledNil sets the value for AutoScaleEnabled to be an explicit nil

func (*ScaleSettings) SetOffPeakBufferSizePercent

func (o *ScaleSettings) SetOffPeakBufferSizePercent(v int32)

SetOffPeakBufferSizePercent gets a reference to the given NullableInt32 and assigns it to the OffPeakBufferSizePercent field.

func (*ScaleSettings) SetOffPeakBufferSizePercentNil

func (o *ScaleSettings) SetOffPeakBufferSizePercentNil()

SetOffPeakBufferSizePercentNil sets the value for OffPeakBufferSizePercent to be an explicit nil

func (*ScaleSettings) SetOffPeakDisconnectTimeoutMinutes

func (o *ScaleSettings) SetOffPeakDisconnectTimeoutMinutes(v int32)

SetOffPeakDisconnectTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakDisconnectTimeoutMinutes field.

func (*ScaleSettings) SetOffPeakDisconnectTimeoutMinutesNil

func (o *ScaleSettings) SetOffPeakDisconnectTimeoutMinutesNil()

SetOffPeakDisconnectTimeoutMinutesNil sets the value for OffPeakDisconnectTimeoutMinutes to be an explicit nil

func (*ScaleSettings) SetOffPeakLogOffTimeoutMinutes

func (o *ScaleSettings) SetOffPeakLogOffTimeoutMinutes(v int32)

SetOffPeakLogOffTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakLogOffTimeoutMinutes field.

func (*ScaleSettings) SetOffPeakLogOffTimeoutMinutesNil

func (o *ScaleSettings) SetOffPeakLogOffTimeoutMinutesNil()

SetOffPeakLogOffTimeoutMinutesNil sets the value for OffPeakLogOffTimeoutMinutes to be an explicit nil

func (*ScaleSettings) SetSessionIdleTimeoutMinutes

func (o *ScaleSettings) SetSessionIdleTimeoutMinutes(v int32)

SetSessionIdleTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the SessionIdleTimeoutMinutes field.

func (*ScaleSettings) SetSessionIdleTimeoutMinutesNil

func (o *ScaleSettings) SetSessionIdleTimeoutMinutesNil()

SetSessionIdleTimeoutMinutesNil sets the value for SessionIdleTimeoutMinutes to be an explicit nil

func (ScaleSettings) ToMap

func (o ScaleSettings) ToMap() (map[string]interface{}, error)

func (*ScaleSettings) UnsetAutoScaleEnabled

func (o *ScaleSettings) UnsetAutoScaleEnabled()

UnsetAutoScaleEnabled ensures that no value is present for AutoScaleEnabled, not even an explicit nil

func (*ScaleSettings) UnsetOffPeakBufferSizePercent

func (o *ScaleSettings) UnsetOffPeakBufferSizePercent()

UnsetOffPeakBufferSizePercent ensures that no value is present for OffPeakBufferSizePercent, not even an explicit nil

func (*ScaleSettings) UnsetOffPeakDisconnectTimeoutMinutes

func (o *ScaleSettings) UnsetOffPeakDisconnectTimeoutMinutes()

UnsetOffPeakDisconnectTimeoutMinutes ensures that no value is present for OffPeakDisconnectTimeoutMinutes, not even an explicit nil

func (*ScaleSettings) UnsetOffPeakLogOffTimeoutMinutes

func (o *ScaleSettings) UnsetOffPeakLogOffTimeoutMinutes()

UnsetOffPeakLogOffTimeoutMinutes ensures that no value is present for OffPeakLogOffTimeoutMinutes, not even an explicit nil

func (*ScaleSettings) UnsetSessionIdleTimeoutMinutes

func (o *ScaleSettings) UnsetSessionIdleTimeoutMinutes()

UnsetSessionIdleTimeoutMinutes ensures that no value is present for SessionIdleTimeoutMinutes, not even an explicit nil

type SearchAccountResourceRequest

type SearchAccountResourceRequest struct {
	AccountType AccountType `json:"accountType"`
	// The filter property key.
	FilterProperty NullableString `json:"filterProperty,omitempty"`
	// The filter property value.
	FilterValue NullableString `json:"filterValue,omitempty"`
}

SearchAccountResourceRequest Resource objects associated with account

func NewSearchAccountResourceRequest

func NewSearchAccountResourceRequest(accountType AccountType) *SearchAccountResourceRequest

NewSearchAccountResourceRequest instantiates a new SearchAccountResourceRequest 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 NewSearchAccountResourceRequestWithDefaults

func NewSearchAccountResourceRequestWithDefaults() *SearchAccountResourceRequest

NewSearchAccountResourceRequestWithDefaults instantiates a new SearchAccountResourceRequest 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 (*SearchAccountResourceRequest) GetAccountType

func (o *SearchAccountResourceRequest) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*SearchAccountResourceRequest) GetAccountTypeOk

func (o *SearchAccountResourceRequest) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (*SearchAccountResourceRequest) GetFilterProperty

func (o *SearchAccountResourceRequest) GetFilterProperty() string

GetFilterProperty returns the FilterProperty field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchAccountResourceRequest) GetFilterPropertyOk

func (o *SearchAccountResourceRequest) GetFilterPropertyOk() (*string, bool)

GetFilterPropertyOk returns a tuple with the FilterProperty field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SearchAccountResourceRequest) GetFilterValue

func (o *SearchAccountResourceRequest) GetFilterValue() string

GetFilterValue returns the FilterValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchAccountResourceRequest) GetFilterValueOk

func (o *SearchAccountResourceRequest) GetFilterValueOk() (*string, bool)

GetFilterValueOk returns a tuple with the FilterValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SearchAccountResourceRequest) HasFilterProperty

func (o *SearchAccountResourceRequest) HasFilterProperty() bool

HasFilterProperty returns a boolean if a field has been set.

func (*SearchAccountResourceRequest) HasFilterValue

func (o *SearchAccountResourceRequest) HasFilterValue() bool

HasFilterValue returns a boolean if a field has been set.

func (SearchAccountResourceRequest) MarshalJSON

func (o SearchAccountResourceRequest) MarshalJSON() ([]byte, error)

func (*SearchAccountResourceRequest) SetAccountType

func (o *SearchAccountResourceRequest) SetAccountType(v AccountType)

SetAccountType sets field value

func (*SearchAccountResourceRequest) SetFilterProperty

func (o *SearchAccountResourceRequest) SetFilterProperty(v string)

SetFilterProperty gets a reference to the given NullableString and assigns it to the FilterProperty field.

func (*SearchAccountResourceRequest) SetFilterPropertyNil

func (o *SearchAccountResourceRequest) SetFilterPropertyNil()

SetFilterPropertyNil sets the value for FilterProperty to be an explicit nil

func (*SearchAccountResourceRequest) SetFilterValue

func (o *SearchAccountResourceRequest) SetFilterValue(v string)

SetFilterValue gets a reference to the given NullableString and assigns it to the FilterValue field.

func (*SearchAccountResourceRequest) SetFilterValueNil

func (o *SearchAccountResourceRequest) SetFilterValueNil()

SetFilterValueNil sets the value for FilterValue to be an explicit nil

func (SearchAccountResourceRequest) ToMap

func (o SearchAccountResourceRequest) ToMap() (map[string]interface{}, error)

func (*SearchAccountResourceRequest) UnsetFilterProperty

func (o *SearchAccountResourceRequest) UnsetFilterProperty()

UnsetFilterProperty ensures that no value is present for FilterProperty, not even an explicit nil

func (*SearchAccountResourceRequest) UnsetFilterValue

func (o *SearchAccountResourceRequest) UnsetFilterValue()

UnsetFilterValue ensures that no value is present for FilterValue, not even an explicit nil

type SearchAwsEdcAccountResourceRequest

type SearchAwsEdcAccountResourceRequest struct {
	SearchAccountResourceRequest
	ResourceType *AwsAccountResourceType `json:"resourceType,omitempty"`
	// The ARN of the role to assume when searching for resources in an account that has not been added yet
	AwsRoleArn NullableString `json:"awsRoleArn,omitempty"`
	// The AWS region to use
	AwsRegion NullableString `json:"awsRegion,omitempty"`
}

SearchAwsEdcAccountResourceRequest struct for SearchAwsEdcAccountResourceRequest

func NewSearchAwsEdcAccountResourceRequest

func NewSearchAwsEdcAccountResourceRequest(accountType AccountType) *SearchAwsEdcAccountResourceRequest

NewSearchAwsEdcAccountResourceRequest instantiates a new SearchAwsEdcAccountResourceRequest 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 NewSearchAwsEdcAccountResourceRequestWithDefaults

func NewSearchAwsEdcAccountResourceRequestWithDefaults() *SearchAwsEdcAccountResourceRequest

NewSearchAwsEdcAccountResourceRequestWithDefaults instantiates a new SearchAwsEdcAccountResourceRequest 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 (*SearchAwsEdcAccountResourceRequest) GetAwsRegion

func (o *SearchAwsEdcAccountResourceRequest) GetAwsRegion() string

GetAwsRegion returns the AwsRegion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchAwsEdcAccountResourceRequest) GetAwsRegionOk

func (o *SearchAwsEdcAccountResourceRequest) GetAwsRegionOk() (*string, bool)

GetAwsRegionOk returns a tuple with the AwsRegion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SearchAwsEdcAccountResourceRequest) GetAwsRoleArn

func (o *SearchAwsEdcAccountResourceRequest) GetAwsRoleArn() string

GetAwsRoleArn returns the AwsRoleArn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SearchAwsEdcAccountResourceRequest) GetAwsRoleArnOk

func (o *SearchAwsEdcAccountResourceRequest) GetAwsRoleArnOk() (*string, bool)

GetAwsRoleArnOk returns a tuple with the AwsRoleArn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SearchAwsEdcAccountResourceRequest) GetResourceType

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*SearchAwsEdcAccountResourceRequest) GetResourceTypeOk

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchAwsEdcAccountResourceRequest) HasAwsRegion

func (o *SearchAwsEdcAccountResourceRequest) HasAwsRegion() bool

HasAwsRegion returns a boolean if a field has been set.

func (*SearchAwsEdcAccountResourceRequest) HasAwsRoleArn

func (o *SearchAwsEdcAccountResourceRequest) HasAwsRoleArn() bool

HasAwsRoleArn returns a boolean if a field has been set.

func (*SearchAwsEdcAccountResourceRequest) HasResourceType

func (o *SearchAwsEdcAccountResourceRequest) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (SearchAwsEdcAccountResourceRequest) MarshalJSON

func (o SearchAwsEdcAccountResourceRequest) MarshalJSON() ([]byte, error)

func (*SearchAwsEdcAccountResourceRequest) SetAwsRegion

func (o *SearchAwsEdcAccountResourceRequest) SetAwsRegion(v string)

SetAwsRegion gets a reference to the given NullableString and assigns it to the AwsRegion field.

func (*SearchAwsEdcAccountResourceRequest) SetAwsRegionNil

func (o *SearchAwsEdcAccountResourceRequest) SetAwsRegionNil()

SetAwsRegionNil sets the value for AwsRegion to be an explicit nil

func (*SearchAwsEdcAccountResourceRequest) SetAwsRoleArn

func (o *SearchAwsEdcAccountResourceRequest) SetAwsRoleArn(v string)

SetAwsRoleArn gets a reference to the given NullableString and assigns it to the AwsRoleArn field.

func (*SearchAwsEdcAccountResourceRequest) SetAwsRoleArnNil

func (o *SearchAwsEdcAccountResourceRequest) SetAwsRoleArnNil()

SetAwsRoleArnNil sets the value for AwsRoleArn to be an explicit nil

func (*SearchAwsEdcAccountResourceRequest) SetResourceType

SetResourceType gets a reference to the given AwsAccountResourceType and assigns it to the ResourceType field.

func (SearchAwsEdcAccountResourceRequest) ToMap

func (o SearchAwsEdcAccountResourceRequest) ToMap() (map[string]interface{}, error)

func (*SearchAwsEdcAccountResourceRequest) UnsetAwsRegion

func (o *SearchAwsEdcAccountResourceRequest) UnsetAwsRegion()

UnsetAwsRegion ensures that no value is present for AwsRegion, not even an explicit nil

func (*SearchAwsEdcAccountResourceRequest) UnsetAwsRoleArn

func (o *SearchAwsEdcAccountResourceRequest) UnsetAwsRoleArn()

UnsetAwsRoleArn ensures that no value is present for AwsRoleArn, not even an explicit nil

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 ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SessionChangeHostingAction

type SessionChangeHostingAction string

SessionChangeHostingAction Hosting actions which may be taken when a session <br />change occurs on a machine.

const (
	SESSIONCHANGEHOSTINGACTION_UNKNOWN  SessionChangeHostingAction = "Unknown"
	SESSIONCHANGEHOSTINGACTION_NOTHING  SessionChangeHostingAction = "Nothing"
	SESSIONCHANGEHOSTINGACTION_SUSPEND  SessionChangeHostingAction = "Suspend"
	SESSIONCHANGEHOSTINGACTION_SHUTDOWN SessionChangeHostingAction = "Shutdown"
)

List of SessionChangeHostingAction

func NewSessionChangeHostingActionFromValue

func NewSessionChangeHostingActionFromValue(v string) (*SessionChangeHostingAction, error)

NewSessionChangeHostingActionFromValue returns a pointer to a valid SessionChangeHostingAction for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SessionChangeHostingAction) IsValid

func (v SessionChangeHostingAction) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SessionChangeHostingAction) Ptr

Ptr returns reference to SessionChangeHostingAction value

func (*SessionChangeHostingAction) UnmarshalJSON

func (v *SessionChangeHostingAction) UnmarshalJSON(src []byte) error

type SessionState

type SessionState string

SessionState Session states.

const (
	SESSIONSTATE_UNKNOWN      SessionState = "Unknown"
	SESSIONSTATE_CONNECTED    SessionState = "Connected"
	SESSIONSTATE_ACTIVE       SessionState = "Active"
	SESSIONSTATE_DISCONNECTED SessionState = "Disconnected"
)

List of SessionState

func NewSessionStateFromValue

func NewSessionStateFromValue(v string) (*SessionState, error)

NewSessionStateFromValue returns a pointer to a valid SessionState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SessionState) IsValid

func (v SessionState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SessionState) Ptr

func (v SessionState) Ptr() *SessionState

Ptr returns reference to SessionState value

func (*SessionState) UnmarshalJSON

func (v *SessionState) UnmarshalJSON(src []byte) error

type SessionSupport

type SessionSupport string

SessionSupport Quantity of sessions supported per-machine.

const (
	SESSIONSUPPORT_UNKNOWN        SessionSupport = "Unknown"
	SESSIONSUPPORT_SINGLE_SESSION SessionSupport = "SingleSession"
	SESSIONSUPPORT_MULTI_SESSION  SessionSupport = "MultiSession"
)

List of SessionSupport

func NewSessionSupportFromValue

func NewSessionSupportFromValue(v string) (*SessionSupport, error)

NewSessionSupportFromValue returns a pointer to a valid SessionSupport for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SessionSupport) IsValid

func (v SessionSupport) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SessionSupport) Ptr

func (v SessionSupport) Ptr() *SessionSupport

Ptr returns reference to SessionSupport value

func (*SessionSupport) UnmarshalJSON

func (v *SessionSupport) UnmarshalJSON(src []byte) error

type Tag

type Tag struct {
	Key   NullableString `json:"key,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

Tag struct for Tag

func NewTag

func NewTag() *Tag

NewTag instantiates a new Tag 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 NewTagWithDefaults

func NewTagWithDefaults() *Tag

NewTagWithDefaults instantiates a new Tag 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 (*Tag) GetKey

func (o *Tag) GetKey() string

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tag) GetKeyOk

func (o *Tag) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tag) GetValue

func (o *Tag) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tag) GetValueOk

func (o *Tag) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tag) HasKey

func (o *Tag) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Tag) HasValue

func (o *Tag) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Tag) MarshalJSON

func (o Tag) MarshalJSON() ([]byte, error)

func (*Tag) SetKey

func (o *Tag) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field.

func (*Tag) SetKeyNil

func (o *Tag) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*Tag) SetValue

func (o *Tag) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*Tag) SetValueNil

func (o *Tag) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (Tag) ToMap

func (o Tag) ToMap() (map[string]interface{}, error)

func (*Tag) UnsetKey

func (o *Tag) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*Tag) UnsetValue

func (o *Tag) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type TaskBase

type TaskBase struct {
	TaskType TaskType `json:"taskType"`
	// Task Id
	TaskId    NullableString    `json:"taskId,omitempty"`
	TaskState NullableTaskState `json:"taskState,omitempty"`
	// Status of the task
	Status      NullableString `json:"status,omitempty"`
	AccountType *AccountType   `json:"accountType,omitempty"`
	// DateTime when the task started
	StartedAt NullableTime `json:"startedAt,omitempty"`
	// Datetime when the task completed
	CompletedAt NullableTime `json:"completedAt,omitempty"`
	// Warnings that occurred in task processing
	Warnings []TaskWarning `json:"warnings,omitempty"`
	// Errors that occurred in task processing
	Errors []TaskError `json:"errors,omitempty"`
	// ID of the transaction the task is associated with
	TransactionId NullableString `json:"transactionId,omitempty"`
}

TaskBase Base class for Tasks

func NewTaskBase

func NewTaskBase(taskType TaskType) *TaskBase

NewTaskBase instantiates a new TaskBase 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 NewTaskBaseWithDefaults

func NewTaskBaseWithDefaults() *TaskBase

NewTaskBaseWithDefaults instantiates a new TaskBase 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 (*TaskBase) GetAccountType

func (o *TaskBase) GetAccountType() AccountType

GetAccountType returns the AccountType field value if set, zero value otherwise.

func (*TaskBase) GetAccountTypeOk

func (o *TaskBase) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskBase) GetCompletedAt

func (o *TaskBase) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetCompletedAtOk

func (o *TaskBase) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetErrors

func (o *TaskBase) GetErrors() []TaskError

GetErrors returns the Errors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetErrorsOk

func (o *TaskBase) GetErrorsOk() ([]TaskError, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetStartedAt

func (o *TaskBase) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetStartedAtOk

func (o *TaskBase) GetStartedAtOk() (*time.Time, bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetStatus

func (o *TaskBase) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetStatusOk

func (o *TaskBase) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetTaskId

func (o *TaskBase) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetTaskIdOk

func (o *TaskBase) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetTaskState

func (o *TaskBase) GetTaskState() TaskState

GetTaskState returns the TaskState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetTaskStateOk

func (o *TaskBase) GetTaskStateOk() (*TaskState, bool)

GetTaskStateOk returns a tuple with the TaskState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetTaskType

func (o *TaskBase) GetTaskType() TaskType

GetTaskType returns the TaskType field value

func (*TaskBase) GetTaskTypeOk

func (o *TaskBase) GetTaskTypeOk() (*TaskType, bool)

GetTaskTypeOk returns a tuple with the TaskType field value and a boolean to check if the value has been set.

func (*TaskBase) GetTransactionId

func (o *TaskBase) GetTransactionId() string

GetTransactionId returns the TransactionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetTransactionIdOk

func (o *TaskBase) GetTransactionIdOk() (*string, bool)

GetTransactionIdOk returns a tuple with the TransactionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) GetWarnings

func (o *TaskBase) GetWarnings() []TaskWarning

GetWarnings returns the Warnings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBase) GetWarningsOk

func (o *TaskBase) GetWarningsOk() ([]TaskWarning, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBase) HasAccountType

func (o *TaskBase) HasAccountType() bool

HasAccountType returns a boolean if a field has been set.

func (*TaskBase) HasCompletedAt

func (o *TaskBase) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*TaskBase) HasErrors

func (o *TaskBase) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*TaskBase) HasStartedAt

func (o *TaskBase) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*TaskBase) HasStatus

func (o *TaskBase) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TaskBase) HasTaskId

func (o *TaskBase) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*TaskBase) HasTaskState

func (o *TaskBase) HasTaskState() bool

HasTaskState returns a boolean if a field has been set.

func (*TaskBase) HasTransactionId

func (o *TaskBase) HasTransactionId() bool

HasTransactionId returns a boolean if a field has been set.

func (*TaskBase) HasWarnings

func (o *TaskBase) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (TaskBase) MarshalJSON

func (o TaskBase) MarshalJSON() ([]byte, error)

func (*TaskBase) SetAccountType

func (o *TaskBase) SetAccountType(v AccountType)

SetAccountType gets a reference to the given AccountType and assigns it to the AccountType field.

func (*TaskBase) SetCompletedAt

func (o *TaskBase) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given NullableTime and assigns it to the CompletedAt field.

func (*TaskBase) SetCompletedAtNil

func (o *TaskBase) SetCompletedAtNil()

SetCompletedAtNil sets the value for CompletedAt to be an explicit nil

func (*TaskBase) SetErrors

func (o *TaskBase) SetErrors(v []TaskError)

SetErrors gets a reference to the given []TaskError and assigns it to the Errors field.

func (*TaskBase) SetStartedAt

func (o *TaskBase) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given NullableTime and assigns it to the StartedAt field.

func (*TaskBase) SetStartedAtNil

func (o *TaskBase) SetStartedAtNil()

SetStartedAtNil sets the value for StartedAt to be an explicit nil

func (*TaskBase) SetStatus

func (o *TaskBase) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*TaskBase) SetStatusNil

func (o *TaskBase) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*TaskBase) SetTaskId

func (o *TaskBase) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*TaskBase) SetTaskIdNil

func (o *TaskBase) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*TaskBase) SetTaskState

func (o *TaskBase) SetTaskState(v TaskState)

SetTaskState gets a reference to the given NullableTaskState and assigns it to the TaskState field.

func (*TaskBase) SetTaskStateNil

func (o *TaskBase) SetTaskStateNil()

SetTaskStateNil sets the value for TaskState to be an explicit nil

func (*TaskBase) SetTaskType

func (o *TaskBase) SetTaskType(v TaskType)

SetTaskType sets field value

func (*TaskBase) SetTransactionId

func (o *TaskBase) SetTransactionId(v string)

SetTransactionId gets a reference to the given NullableString and assigns it to the TransactionId field.

func (*TaskBase) SetTransactionIdNil

func (o *TaskBase) SetTransactionIdNil()

SetTransactionIdNil sets the value for TransactionId to be an explicit nil

func (*TaskBase) SetWarnings

func (o *TaskBase) SetWarnings(v []TaskWarning)

SetWarnings gets a reference to the given []TaskWarning and assigns it to the Warnings field.

func (TaskBase) ToMap

func (o TaskBase) ToMap() (map[string]interface{}, error)

func (*TaskBase) UnsetCompletedAt

func (o *TaskBase) UnsetCompletedAt()

UnsetCompletedAt ensures that no value is present for CompletedAt, not even an explicit nil

func (*TaskBase) UnsetStartedAt

func (o *TaskBase) UnsetStartedAt()

UnsetStartedAt ensures that no value is present for StartedAt, not even an explicit nil

func (*TaskBase) UnsetStatus

func (o *TaskBase) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*TaskBase) UnsetTaskId

func (o *TaskBase) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

func (*TaskBase) UnsetTaskState

func (o *TaskBase) UnsetTaskState()

UnsetTaskState ensures that no value is present for TaskState, not even an explicit nil

func (*TaskBase) UnsetTransactionId

func (o *TaskBase) UnsetTransactionId()

UnsetTransactionId ensures that no value is present for TransactionId, not even an explicit nil

type TaskError

type TaskError struct {
	// Error Id
	ErrorId NullableString `json:"errorId,omitempty"`
	// Error Message
	Message NullableString `json:"message,omitempty"`
	// Error Message
	Exception interface{} `json:"exception,omitempty"`
}

TaskError Deployment Task Error

func NewTaskError

func NewTaskError() *TaskError

NewTaskError instantiates a new TaskError 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 NewTaskErrorWithDefaults

func NewTaskErrorWithDefaults() *TaskError

NewTaskErrorWithDefaults instantiates a new TaskError 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 (*TaskError) GetErrorId

func (o *TaskError) GetErrorId() string

GetErrorId returns the ErrorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskError) GetErrorIdOk

func (o *TaskError) GetErrorIdOk() (*string, bool)

GetErrorIdOk returns a tuple with the ErrorId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskError) GetException

func (o *TaskError) GetException() interface{}

GetException returns the Exception field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskError) GetExceptionOk

func (o *TaskError) GetExceptionOk() (*interface{}, bool)

GetExceptionOk returns a tuple with the Exception field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskError) GetMessage

func (o *TaskError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskError) GetMessageOk

func (o *TaskError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskError) HasErrorId

func (o *TaskError) HasErrorId() bool

HasErrorId returns a boolean if a field has been set.

func (*TaskError) HasException

func (o *TaskError) HasException() bool

HasException returns a boolean if a field has been set.

func (*TaskError) HasMessage

func (o *TaskError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (TaskError) MarshalJSON

func (o TaskError) MarshalJSON() ([]byte, error)

func (*TaskError) SetErrorId

func (o *TaskError) SetErrorId(v string)

SetErrorId gets a reference to the given NullableString and assigns it to the ErrorId field.

func (*TaskError) SetErrorIdNil

func (o *TaskError) SetErrorIdNil()

SetErrorIdNil sets the value for ErrorId to be an explicit nil

func (*TaskError) SetException

func (o *TaskError) SetException(v interface{})

SetException gets a reference to the given interface{} and assigns it to the Exception field.

func (*TaskError) SetMessage

func (o *TaskError) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*TaskError) SetMessageNil

func (o *TaskError) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (TaskError) ToMap

func (o TaskError) ToMap() (map[string]interface{}, error)

func (*TaskError) UnsetErrorId

func (o *TaskError) UnsetErrorId()

UnsetErrorId ensures that no value is present for ErrorId, not even an explicit nil

func (*TaskError) UnsetMessage

func (o *TaskError) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type TaskState

type TaskState string

TaskState the model 'TaskState'

const (
	TASKSTATE_PENDING    TaskState = "PENDING"
	TASKSTATE_ACTIVE     TaskState = "ACTIVE"
	TASKSTATE_PROCESSING TaskState = "PROCESSING"
	TASKSTATE_ERROR      TaskState = "ERROR"
	TASKSTATE_COMPLETED  TaskState = "COMPLETED"
)

List of TaskState

func NewTaskStateFromValue

func NewTaskStateFromValue(v string) (*TaskState, error)

NewTaskStateFromValue returns a pointer to a valid TaskState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskState) IsValid

func (v TaskState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskState) Ptr

func (v TaskState) Ptr() *TaskState

Ptr returns reference to TaskState value

func (*TaskState) UnmarshalJSON

func (v *TaskState) UnmarshalJSON(src []byte) error

type TaskType

type TaskType string

TaskType Task Type

const (
	TASKTYPE_ACCOUNT             TaskType = "ACCOUNT"
	TASKTYPE_DEPLOYMENT          TaskType = "DEPLOYMENT"
	TASKTYPE_RESOURCE_CONNECTION TaskType = "RESOURCE_CONNECTION"
	TASKTYPE_COMMISSION          TaskType = "COMMISSION"
	TASKTYPE_WORKER_TEST         TaskType = "WORKER_TEST"
)

List of TaskType

func NewTaskTypeFromValue

func NewTaskTypeFromValue(v string) (*TaskType, error)

NewTaskTypeFromValue returns a pointer to a valid TaskType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskType) IsValid

func (v TaskType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskType) Ptr

func (v TaskType) Ptr() *TaskType

Ptr returns reference to TaskType value

func (*TaskType) UnmarshalJSON

func (v *TaskType) UnmarshalJSON(src []byte) error

type TaskWarning

type TaskWarning struct {
	// Warning Id
	WarningId NullableString `json:"warningId,omitempty"`
	// Warning Message
	Message NullableString `json:"message,omitempty"`
}

TaskWarning Deployment Task Warning

func NewTaskWarning

func NewTaskWarning() *TaskWarning

NewTaskWarning instantiates a new TaskWarning 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 NewTaskWarningWithDefaults

func NewTaskWarningWithDefaults() *TaskWarning

NewTaskWarningWithDefaults instantiates a new TaskWarning 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 (*TaskWarning) GetMessage

func (o *TaskWarning) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskWarning) GetMessageOk

func (o *TaskWarning) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskWarning) GetWarningId

func (o *TaskWarning) GetWarningId() string

GetWarningId returns the WarningId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskWarning) GetWarningIdOk

func (o *TaskWarning) GetWarningIdOk() (*string, bool)

GetWarningIdOk returns a tuple with the WarningId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskWarning) HasMessage

func (o *TaskWarning) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*TaskWarning) HasWarningId

func (o *TaskWarning) HasWarningId() bool

HasWarningId returns a boolean if a field has been set.

func (TaskWarning) MarshalJSON

func (o TaskWarning) MarshalJSON() ([]byte, error)

func (*TaskWarning) SetMessage

func (o *TaskWarning) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*TaskWarning) SetMessageNil

func (o *TaskWarning) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*TaskWarning) SetWarningId

func (o *TaskWarning) SetWarningId(v string)

SetWarningId gets a reference to the given NullableString and assigns it to the WarningId field.

func (*TaskWarning) SetWarningIdNil

func (o *TaskWarning) SetWarningIdNil()

SetWarningIdNil sets the value for WarningId to be an explicit nil

func (TaskWarning) ToMap

func (o TaskWarning) ToMap() (map[string]interface{}, error)

func (*TaskWarning) UnsetMessage

func (o *TaskWarning) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*TaskWarning) UnsetWarningId

func (o *TaskWarning) UnsetWarningId()

UnsetWarningId ensures that no value is present for WarningId, not even an explicit nil

type TasksQCSGetTaskAsyncRequest

type TasksQCSGetTaskAsyncRequest struct {
	ApiService *TasksQCSService
	// contains filtered or unexported fields
}

func (TasksQCSGetTaskAsyncRequest) CitrixTransactionId

func (r TasksQCSGetTaskAsyncRequest) CitrixTransactionId(citrixTransactionId string) TasksQCSGetTaskAsyncRequest

The Transaction Id.

func (TasksQCSGetTaskAsyncRequest) Execute

type TasksQCSService

type TasksQCSService service

TasksQCSService TasksQCS service

func (*TasksQCSService) GetTaskAsync

func (a *TasksQCSService) GetTaskAsync(ctx context.Context, customerId string, taskId string) TasksQCSGetTaskAsyncRequest

GetTaskAsync Get the status of a task

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId ID of the customer
@param taskId ID of the task
@return TasksQCSGetTaskAsyncRequest

func (*TasksQCSService) GetTaskAsyncExecute

Execute executes the request

@return GetTaskAsync200Response

type TenancyType

type TenancyType string

TenancyType Indicates whether to use tenancy type Shared, Instance or Host when creating machines in Cloud Hypervisors.

const (
	TENANCYTYPE_UNKNOWN  TenancyType = "Unknown"
	TENANCYTYPE_SHARED   TenancyType = "Shared"
	TENANCYTYPE_INSTANCE TenancyType = "Instance"
	TENANCYTYPE_HOST     TenancyType = "Host"
)

List of TenancyType

func NewTenancyTypeFromValue

func NewTenancyTypeFromValue(v string) (*TenancyType, error)

NewTenancyTypeFromValue returns a pointer to a valid TenancyType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TenancyType) IsValid

func (v TenancyType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TenancyType) Ptr

func (v TenancyType) Ptr() *TenancyType

Ptr returns reference to TenancyType value

func (*TenancyType) UnmarshalJSON

func (v *TenancyType) UnmarshalJSON(src []byte) error

type TenantGroupLicenses

type TenantGroupLicenses struct {
	TenantId NullableString `json:"tenantId,omitempty"`
	GroupIds []string       `json:"groupIds,omitempty"`
}

TenantGroupLicenses struct for TenantGroupLicenses

func NewTenantGroupLicenses

func NewTenantGroupLicenses() *TenantGroupLicenses

NewTenantGroupLicenses instantiates a new TenantGroupLicenses 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 NewTenantGroupLicensesWithDefaults

func NewTenantGroupLicensesWithDefaults() *TenantGroupLicenses

NewTenantGroupLicensesWithDefaults instantiates a new TenantGroupLicenses 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 (*TenantGroupLicenses) GetGroupIds

func (o *TenantGroupLicenses) GetGroupIds() []string

GetGroupIds returns the GroupIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantGroupLicenses) GetGroupIdsOk

func (o *TenantGroupLicenses) GetGroupIdsOk() ([]string, bool)

GetGroupIdsOk returns a tuple with the GroupIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantGroupLicenses) GetTenantId

func (o *TenantGroupLicenses) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantGroupLicenses) GetTenantIdOk

func (o *TenantGroupLicenses) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantGroupLicenses) HasGroupIds

func (o *TenantGroupLicenses) HasGroupIds() bool

HasGroupIds returns a boolean if a field has been set.

func (*TenantGroupLicenses) HasTenantId

func (o *TenantGroupLicenses) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (TenantGroupLicenses) MarshalJSON

func (o TenantGroupLicenses) MarshalJSON() ([]byte, error)

func (*TenantGroupLicenses) SetGroupIds

func (o *TenantGroupLicenses) SetGroupIds(v []string)

SetGroupIds gets a reference to the given []string and assigns it to the GroupIds field.

func (*TenantGroupLicenses) SetTenantId

func (o *TenantGroupLicenses) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*TenantGroupLicenses) SetTenantIdNil

func (o *TenantGroupLicenses) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (TenantGroupLicenses) ToMap

func (o TenantGroupLicenses) ToMap() (map[string]interface{}, error)

func (*TenantGroupLicenses) UnsetTenantId

func (o *TenantGroupLicenses) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type TenantLicenses

type TenantLicenses struct {
	// AAD Tenant of which the listed users are part of
	TenantId NullableString `json:"tenantId,omitempty"`
	// List of users to assign/revoke license for in the provided AAD tenant
	Users []CoreUser `json:"users,omitempty"`
}

TenantLicenses struct for TenantLicenses

func NewTenantLicenses

func NewTenantLicenses() *TenantLicenses

NewTenantLicenses instantiates a new TenantLicenses 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 NewTenantLicensesWithDefaults

func NewTenantLicensesWithDefaults() *TenantLicenses

NewTenantLicensesWithDefaults instantiates a new TenantLicenses 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 (*TenantLicenses) GetTenantId

func (o *TenantLicenses) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantLicenses) GetTenantIdOk

func (o *TenantLicenses) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantLicenses) GetUsers

func (o *TenantLicenses) GetUsers() []CoreUser

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantLicenses) GetUsersOk

func (o *TenantLicenses) GetUsersOk() ([]CoreUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantLicenses) HasTenantId

func (o *TenantLicenses) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*TenantLicenses) HasUsers

func (o *TenantLicenses) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (TenantLicenses) MarshalJSON

func (o TenantLicenses) MarshalJSON() ([]byte, error)

func (*TenantLicenses) SetTenantId

func (o *TenantLicenses) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*TenantLicenses) SetTenantIdNil

func (o *TenantLicenses) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*TenantLicenses) SetUsers

func (o *TenantLicenses) SetUsers(v []CoreUser)

SetUsers gets a reference to the given []CoreUser and assigns it to the Users field.

func (TenantLicenses) ToMap

func (o TenantLicenses) ToMap() (map[string]interface{}, error)

func (*TenantLicenses) UnsetTenantId

func (o *TenantLicenses) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type UpdateAccount

type UpdateAccount struct {
	AccountOperationType UpdateAccountOperationType `json:"accountOperationType"`
}

UpdateAccount Updates account

func NewUpdateAccount

func NewUpdateAccount(accountOperationType UpdateAccountOperationType) *UpdateAccount

NewUpdateAccount instantiates a new UpdateAccount 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 NewUpdateAccountWithDefaults

func NewUpdateAccountWithDefaults() *UpdateAccount

NewUpdateAccountWithDefaults instantiates a new UpdateAccount 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 (*UpdateAccount) GetAccountOperationType

func (o *UpdateAccount) GetAccountOperationType() UpdateAccountOperationType

GetAccountOperationType returns the AccountOperationType field value

func (*UpdateAccount) GetAccountOperationTypeOk

func (o *UpdateAccount) GetAccountOperationTypeOk() (*UpdateAccountOperationType, bool)

GetAccountOperationTypeOk returns a tuple with the AccountOperationType field value and a boolean to check if the value has been set.

func (UpdateAccount) MarshalJSON

func (o UpdateAccount) MarshalJSON() ([]byte, error)

func (*UpdateAccount) SetAccountOperationType

func (o *UpdateAccount) SetAccountOperationType(v UpdateAccountOperationType)

SetAccountOperationType sets field value

func (UpdateAccount) ToMap

func (o UpdateAccount) ToMap() (map[string]interface{}, error)

type UpdateAccountName

type UpdateAccountName struct {
	UpdateAccount
	// The new name of account
	Name NullableString `json:"name,omitempty"`
}

UpdateAccountName struct for UpdateAccountName

func NewUpdateAccountName

func NewUpdateAccountName(accountOperationType UpdateAccountOperationType) *UpdateAccountName

NewUpdateAccountName instantiates a new UpdateAccountName 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 NewUpdateAccountNameWithDefaults

func NewUpdateAccountNameWithDefaults() *UpdateAccountName

NewUpdateAccountNameWithDefaults instantiates a new UpdateAccountName 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 (*UpdateAccountName) GetName

func (o *UpdateAccountName) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAccountName) GetNameOk

func (o *UpdateAccountName) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAccountName) HasName

func (o *UpdateAccountName) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateAccountName) MarshalJSON

func (o UpdateAccountName) MarshalJSON() ([]byte, error)

func (*UpdateAccountName) SetName

func (o *UpdateAccountName) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UpdateAccountName) SetNameNil

func (o *UpdateAccountName) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (UpdateAccountName) ToMap

func (o UpdateAccountName) ToMap() (map[string]interface{}, error)

func (*UpdateAccountName) UnsetName

func (o *UpdateAccountName) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type UpdateAccountOperationType

type UpdateAccountOperationType string

UpdateAccountOperationType the model 'UpdateAccountOperationType'

const (
	UPDATEACCOUNTOPERATIONTYPE_RENAME_ACCOUNT                     UpdateAccountOperationType = "RenameAccount"
	UPDATEACCOUNTOPERATIONTYPE_UPDATE_AWS_EDC_ACCOUNT_CREDENTIALS UpdateAccountOperationType = "UpdateAwsEdcAccountCredentials"
)

List of UpdateAccountOperationType

func NewUpdateAccountOperationTypeFromValue

func NewUpdateAccountOperationTypeFromValue(v string) (*UpdateAccountOperationType, error)

NewUpdateAccountOperationTypeFromValue returns a pointer to a valid UpdateAccountOperationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UpdateAccountOperationType) IsValid

func (v UpdateAccountOperationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UpdateAccountOperationType) Ptr

Ptr returns reference to UpdateAccountOperationType value

func (*UpdateAccountOperationType) UnmarshalJSON

func (v *UpdateAccountOperationType) UnmarshalJSON(src []byte) error

type UpdateAwsEdcAccountCredentials

type UpdateAwsEdcAccountCredentials struct {
	UpdateAccount
	// The ID of Access Key associated with the account
	AwsAccessKeyId NullableString `json:"awsAccessKeyId,omitempty"`
	// The secret associated with access key for the account
	AwsSecretAccessKey NullableString `json:"awsSecretAccessKey,omitempty"`
	// The ARN of the role to assume
	AwsRoleArn NullableString `json:"awsRoleArn,omitempty"`
}

UpdateAwsEdcAccountCredentials struct for UpdateAwsEdcAccountCredentials

func NewUpdateAwsEdcAccountCredentials

func NewUpdateAwsEdcAccountCredentials(accountOperationType UpdateAccountOperationType) *UpdateAwsEdcAccountCredentials

NewUpdateAwsEdcAccountCredentials instantiates a new UpdateAwsEdcAccountCredentials 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 NewUpdateAwsEdcAccountCredentialsWithDefaults

func NewUpdateAwsEdcAccountCredentialsWithDefaults() *UpdateAwsEdcAccountCredentials

NewUpdateAwsEdcAccountCredentialsWithDefaults instantiates a new UpdateAwsEdcAccountCredentials 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 (*UpdateAwsEdcAccountCredentials) GetAwsAccessKeyId

func (o *UpdateAwsEdcAccountCredentials) GetAwsAccessKeyId() string

GetAwsAccessKeyId returns the AwsAccessKeyId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcAccountCredentials) GetAwsAccessKeyIdOk

func (o *UpdateAwsEdcAccountCredentials) GetAwsAccessKeyIdOk() (*string, bool)

GetAwsAccessKeyIdOk returns a tuple with the AwsAccessKeyId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcAccountCredentials) GetAwsRoleArn

func (o *UpdateAwsEdcAccountCredentials) GetAwsRoleArn() string

GetAwsRoleArn returns the AwsRoleArn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcAccountCredentials) GetAwsRoleArnOk

func (o *UpdateAwsEdcAccountCredentials) GetAwsRoleArnOk() (*string, bool)

GetAwsRoleArnOk returns a tuple with the AwsRoleArn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcAccountCredentials) GetAwsSecretAccessKey

func (o *UpdateAwsEdcAccountCredentials) GetAwsSecretAccessKey() string

GetAwsSecretAccessKey returns the AwsSecretAccessKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcAccountCredentials) GetAwsSecretAccessKeyOk

func (o *UpdateAwsEdcAccountCredentials) GetAwsSecretAccessKeyOk() (*string, bool)

GetAwsSecretAccessKeyOk returns a tuple with the AwsSecretAccessKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcAccountCredentials) HasAwsAccessKeyId

func (o *UpdateAwsEdcAccountCredentials) HasAwsAccessKeyId() bool

HasAwsAccessKeyId returns a boolean if a field has been set.

func (*UpdateAwsEdcAccountCredentials) HasAwsRoleArn

func (o *UpdateAwsEdcAccountCredentials) HasAwsRoleArn() bool

HasAwsRoleArn returns a boolean if a field has been set.

func (*UpdateAwsEdcAccountCredentials) HasAwsSecretAccessKey

func (o *UpdateAwsEdcAccountCredentials) HasAwsSecretAccessKey() bool

HasAwsSecretAccessKey returns a boolean if a field has been set.

func (UpdateAwsEdcAccountCredentials) MarshalJSON

func (o UpdateAwsEdcAccountCredentials) MarshalJSON() ([]byte, error)

func (*UpdateAwsEdcAccountCredentials) SetAwsAccessKeyId

func (o *UpdateAwsEdcAccountCredentials) SetAwsAccessKeyId(v string)

SetAwsAccessKeyId gets a reference to the given NullableString and assigns it to the AwsAccessKeyId field.

func (*UpdateAwsEdcAccountCredentials) SetAwsAccessKeyIdNil

func (o *UpdateAwsEdcAccountCredentials) SetAwsAccessKeyIdNil()

SetAwsAccessKeyIdNil sets the value for AwsAccessKeyId to be an explicit nil

func (*UpdateAwsEdcAccountCredentials) SetAwsRoleArn

func (o *UpdateAwsEdcAccountCredentials) SetAwsRoleArn(v string)

SetAwsRoleArn gets a reference to the given NullableString and assigns it to the AwsRoleArn field.

func (*UpdateAwsEdcAccountCredentials) SetAwsRoleArnNil

func (o *UpdateAwsEdcAccountCredentials) SetAwsRoleArnNil()

SetAwsRoleArnNil sets the value for AwsRoleArn to be an explicit nil

func (*UpdateAwsEdcAccountCredentials) SetAwsSecretAccessKey

func (o *UpdateAwsEdcAccountCredentials) SetAwsSecretAccessKey(v string)

SetAwsSecretAccessKey gets a reference to the given NullableString and assigns it to the AwsSecretAccessKey field.

func (*UpdateAwsEdcAccountCredentials) SetAwsSecretAccessKeyNil

func (o *UpdateAwsEdcAccountCredentials) SetAwsSecretAccessKeyNil()

SetAwsSecretAccessKeyNil sets the value for AwsSecretAccessKey to be an explicit nil

func (UpdateAwsEdcAccountCredentials) ToMap

func (o UpdateAwsEdcAccountCredentials) ToMap() (map[string]interface{}, error)

func (*UpdateAwsEdcAccountCredentials) UnsetAwsAccessKeyId

func (o *UpdateAwsEdcAccountCredentials) UnsetAwsAccessKeyId()

UnsetAwsAccessKeyId ensures that no value is present for AwsAccessKeyId, not even an explicit nil

func (*UpdateAwsEdcAccountCredentials) UnsetAwsRoleArn

func (o *UpdateAwsEdcAccountCredentials) UnsetAwsRoleArn()

UnsetAwsRoleArn ensures that no value is present for AwsRoleArn, not even an explicit nil

func (*UpdateAwsEdcAccountCredentials) UnsetAwsSecretAccessKey

func (o *UpdateAwsEdcAccountCredentials) UnsetAwsSecretAccessKey()

UnsetAwsSecretAccessKey ensures that no value is present for AwsSecretAccessKey, not even an explicit nil

type UpdateAwsEdcDeploymentMachine

type UpdateAwsEdcDeploymentMachine struct {
	UpdateDeploymentMachine
	Compute NullableCompute `json:"compute,omitempty"`
	// Size of operating system volume
	RootVolumeSize NullableInt32 `json:"rootVolumeSize,omitempty"`
	// Size of user storage volume
	UserVolumeSize NullableInt32 `json:"userVolumeSize,omitempty"`
}

UpdateAwsEdcDeploymentMachine struct for UpdateAwsEdcDeploymentMachine

func NewUpdateAwsEdcDeploymentMachine

func NewUpdateAwsEdcDeploymentMachine(accountType AccountType) *UpdateAwsEdcDeploymentMachine

NewUpdateAwsEdcDeploymentMachine instantiates a new UpdateAwsEdcDeploymentMachine 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 NewUpdateAwsEdcDeploymentMachineWithDefaults

func NewUpdateAwsEdcDeploymentMachineWithDefaults() *UpdateAwsEdcDeploymentMachine

NewUpdateAwsEdcDeploymentMachineWithDefaults instantiates a new UpdateAwsEdcDeploymentMachine 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 (*UpdateAwsEdcDeploymentMachine) GetCompute

func (o *UpdateAwsEdcDeploymentMachine) GetCompute() Compute

GetCompute returns the Compute field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDeploymentMachine) GetComputeOk

func (o *UpdateAwsEdcDeploymentMachine) GetComputeOk() (*Compute, bool)

GetComputeOk returns a tuple with the Compute field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDeploymentMachine) GetRootVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) GetRootVolumeSize() int32

GetRootVolumeSize returns the RootVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDeploymentMachine) GetRootVolumeSizeOk

func (o *UpdateAwsEdcDeploymentMachine) GetRootVolumeSizeOk() (*int32, bool)

GetRootVolumeSizeOk returns a tuple with the RootVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDeploymentMachine) GetUserVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) GetUserVolumeSize() int32

GetUserVolumeSize returns the UserVolumeSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDeploymentMachine) GetUserVolumeSizeOk

func (o *UpdateAwsEdcDeploymentMachine) GetUserVolumeSizeOk() (*int32, bool)

GetUserVolumeSizeOk returns a tuple with the UserVolumeSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDeploymentMachine) HasCompute

func (o *UpdateAwsEdcDeploymentMachine) HasCompute() bool

HasCompute returns a boolean if a field has been set.

func (*UpdateAwsEdcDeploymentMachine) HasRootVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) HasRootVolumeSize() bool

HasRootVolumeSize returns a boolean if a field has been set.

func (*UpdateAwsEdcDeploymentMachine) HasUserVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) HasUserVolumeSize() bool

HasUserVolumeSize returns a boolean if a field has been set.

func (UpdateAwsEdcDeploymentMachine) MarshalJSON

func (o UpdateAwsEdcDeploymentMachine) MarshalJSON() ([]byte, error)

func (*UpdateAwsEdcDeploymentMachine) SetCompute

func (o *UpdateAwsEdcDeploymentMachine) SetCompute(v Compute)

SetCompute gets a reference to the given NullableCompute and assigns it to the Compute field.

func (*UpdateAwsEdcDeploymentMachine) SetComputeNil

func (o *UpdateAwsEdcDeploymentMachine) SetComputeNil()

SetComputeNil sets the value for Compute to be an explicit nil

func (*UpdateAwsEdcDeploymentMachine) SetRootVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) SetRootVolumeSize(v int32)

SetRootVolumeSize gets a reference to the given NullableInt32 and assigns it to the RootVolumeSize field.

func (*UpdateAwsEdcDeploymentMachine) SetRootVolumeSizeNil

func (o *UpdateAwsEdcDeploymentMachine) SetRootVolumeSizeNil()

SetRootVolumeSizeNil sets the value for RootVolumeSize to be an explicit nil

func (*UpdateAwsEdcDeploymentMachine) SetUserVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) SetUserVolumeSize(v int32)

SetUserVolumeSize gets a reference to the given NullableInt32 and assigns it to the UserVolumeSize field.

func (*UpdateAwsEdcDeploymentMachine) SetUserVolumeSizeNil

func (o *UpdateAwsEdcDeploymentMachine) SetUserVolumeSizeNil()

SetUserVolumeSizeNil sets the value for UserVolumeSize to be an explicit nil

func (UpdateAwsEdcDeploymentMachine) ToMap

func (o UpdateAwsEdcDeploymentMachine) ToMap() (map[string]interface{}, error)

func (*UpdateAwsEdcDeploymentMachine) UnsetCompute

func (o *UpdateAwsEdcDeploymentMachine) UnsetCompute()

UnsetCompute ensures that no value is present for Compute, not even an explicit nil

func (*UpdateAwsEdcDeploymentMachine) UnsetRootVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) UnsetRootVolumeSize()

UnsetRootVolumeSize ensures that no value is present for RootVolumeSize, not even an explicit nil

func (*UpdateAwsEdcDeploymentMachine) UnsetUserVolumeSize

func (o *UpdateAwsEdcDeploymentMachine) UnsetUserVolumeSize()

UnsetUserVolumeSize ensures that no value is present for UserVolumeSize, not even an explicit nil

type UpdateAwsEdcDeploymentProperties

type UpdateAwsEdcDeploymentProperties struct {
	UpdateDeploymentProperties
	RunningMode   NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
	ScaleSettings NullableScaleSettings              `json:"scaleSettings,omitempty"`
}

UpdateAwsEdcDeploymentProperties struct for UpdateAwsEdcDeploymentProperties

func NewUpdateAwsEdcDeploymentProperties

func NewUpdateAwsEdcDeploymentProperties(accountType AccountType) *UpdateAwsEdcDeploymentProperties

NewUpdateAwsEdcDeploymentProperties instantiates a new UpdateAwsEdcDeploymentProperties 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 NewUpdateAwsEdcDeploymentPropertiesWithDefaults

func NewUpdateAwsEdcDeploymentPropertiesWithDefaults() *UpdateAwsEdcDeploymentProperties

NewUpdateAwsEdcDeploymentPropertiesWithDefaults instantiates a new UpdateAwsEdcDeploymentProperties 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 (*UpdateAwsEdcDeploymentProperties) GetRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDeploymentProperties) GetRunningModeOk

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDeploymentProperties) GetScaleSettings

func (o *UpdateAwsEdcDeploymentProperties) GetScaleSettings() ScaleSettings

GetScaleSettings returns the ScaleSettings field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDeploymentProperties) GetScaleSettingsOk

func (o *UpdateAwsEdcDeploymentProperties) GetScaleSettingsOk() (*ScaleSettings, bool)

GetScaleSettingsOk returns a tuple with the ScaleSettings field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDeploymentProperties) HasRunningMode

func (o *UpdateAwsEdcDeploymentProperties) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*UpdateAwsEdcDeploymentProperties) HasScaleSettings

func (o *UpdateAwsEdcDeploymentProperties) HasScaleSettings() bool

HasScaleSettings returns a boolean if a field has been set.

func (UpdateAwsEdcDeploymentProperties) MarshalJSON

func (o UpdateAwsEdcDeploymentProperties) MarshalJSON() ([]byte, error)

func (*UpdateAwsEdcDeploymentProperties) SetRunningMode

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*UpdateAwsEdcDeploymentProperties) SetRunningModeNil

func (o *UpdateAwsEdcDeploymentProperties) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*UpdateAwsEdcDeploymentProperties) SetScaleSettings

func (o *UpdateAwsEdcDeploymentProperties) SetScaleSettings(v ScaleSettings)

SetScaleSettings gets a reference to the given NullableScaleSettings and assigns it to the ScaleSettings field.

func (*UpdateAwsEdcDeploymentProperties) SetScaleSettingsNil

func (o *UpdateAwsEdcDeploymentProperties) SetScaleSettingsNil()

SetScaleSettingsNil sets the value for ScaleSettings to be an explicit nil

func (UpdateAwsEdcDeploymentProperties) ToMap

func (o UpdateAwsEdcDeploymentProperties) ToMap() (map[string]interface{}, error)

func (*UpdateAwsEdcDeploymentProperties) UnsetRunningMode

func (o *UpdateAwsEdcDeploymentProperties) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*UpdateAwsEdcDeploymentProperties) UnsetScaleSettings

func (o *UpdateAwsEdcDeploymentProperties) UnsetScaleSettings()

UnsetScaleSettings ensures that no value is present for ScaleSettings, not even an explicit nil

type UpdateAwsEdcDirectoryConnection

type UpdateAwsEdcDirectoryConnection struct {
	UpdateResourceConnection
	// Default OU
	DefaultOU NullableString `json:"defaultOU,omitempty"`
	// Enable Work Docs
	EnableWorkDocs NullableBool `json:"enableWorkDocs,omitempty"`
	// Enable Local Administrator
	UserEnabledAsLocalAdministrator NullableBool `json:"userEnabledAsLocalAdministrator,omitempty"`
	// Enable Internet Access
	EnableInternetAccess NullableBool `json:"enableInternetAccess,omitempty"`
	// Enable Maintanance Mode
	EnableMaintananceMode NullableBool `json:"enableMaintananceMode,omitempty"`
	// Custom Security Group Id
	SecurityGroupId NullableString `json:"securityGroupId,omitempty"`
}

UpdateAwsEdcDirectoryConnection struct for UpdateAwsEdcDirectoryConnection

func NewUpdateAwsEdcDirectoryConnection

func NewUpdateAwsEdcDirectoryConnection(accountType AccountType) *UpdateAwsEdcDirectoryConnection

NewUpdateAwsEdcDirectoryConnection instantiates a new UpdateAwsEdcDirectoryConnection 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 NewUpdateAwsEdcDirectoryConnectionWithDefaults

func NewUpdateAwsEdcDirectoryConnectionWithDefaults() *UpdateAwsEdcDirectoryConnection

NewUpdateAwsEdcDirectoryConnectionWithDefaults instantiates a new UpdateAwsEdcDirectoryConnection 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 (*UpdateAwsEdcDirectoryConnection) GetDefaultOU

func (o *UpdateAwsEdcDirectoryConnection) GetDefaultOU() string

GetDefaultOU returns the DefaultOU field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetDefaultOUOk

func (o *UpdateAwsEdcDirectoryConnection) GetDefaultOUOk() (*string, bool)

GetDefaultOUOk returns a tuple with the DefaultOU field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) GetEnableInternetAccess

func (o *UpdateAwsEdcDirectoryConnection) GetEnableInternetAccess() bool

GetEnableInternetAccess returns the EnableInternetAccess field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetEnableInternetAccessOk

func (o *UpdateAwsEdcDirectoryConnection) GetEnableInternetAccessOk() (*bool, bool)

GetEnableInternetAccessOk returns a tuple with the EnableInternetAccess field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) GetEnableMaintananceMode

func (o *UpdateAwsEdcDirectoryConnection) GetEnableMaintananceMode() bool

GetEnableMaintananceMode returns the EnableMaintananceMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetEnableMaintananceModeOk

func (o *UpdateAwsEdcDirectoryConnection) GetEnableMaintananceModeOk() (*bool, bool)

GetEnableMaintananceModeOk returns a tuple with the EnableMaintananceMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) GetEnableWorkDocs

func (o *UpdateAwsEdcDirectoryConnection) GetEnableWorkDocs() bool

GetEnableWorkDocs returns the EnableWorkDocs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetEnableWorkDocsOk

func (o *UpdateAwsEdcDirectoryConnection) GetEnableWorkDocsOk() (*bool, bool)

GetEnableWorkDocsOk returns a tuple with the EnableWorkDocs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) GetSecurityGroupId

func (o *UpdateAwsEdcDirectoryConnection) GetSecurityGroupId() string

GetSecurityGroupId returns the SecurityGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetSecurityGroupIdOk

func (o *UpdateAwsEdcDirectoryConnection) GetSecurityGroupIdOk() (*string, bool)

GetSecurityGroupIdOk returns a tuple with the SecurityGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator

func (o *UpdateAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministrator() bool

GetUserEnabledAsLocalAdministrator returns the UserEnabledAsLocalAdministrator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk

func (o *UpdateAwsEdcDirectoryConnection) GetUserEnabledAsLocalAdministratorOk() (*bool, bool)

GetUserEnabledAsLocalAdministratorOk returns a tuple with the UserEnabledAsLocalAdministrator field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateAwsEdcDirectoryConnection) HasDefaultOU

func (o *UpdateAwsEdcDirectoryConnection) HasDefaultOU() bool

HasDefaultOU returns a boolean if a field has been set.

func (*UpdateAwsEdcDirectoryConnection) HasEnableInternetAccess

func (o *UpdateAwsEdcDirectoryConnection) HasEnableInternetAccess() bool

HasEnableInternetAccess returns a boolean if a field has been set.

func (*UpdateAwsEdcDirectoryConnection) HasEnableMaintananceMode

func (o *UpdateAwsEdcDirectoryConnection) HasEnableMaintananceMode() bool

HasEnableMaintananceMode returns a boolean if a field has been set.

func (*UpdateAwsEdcDirectoryConnection) HasEnableWorkDocs

func (o *UpdateAwsEdcDirectoryConnection) HasEnableWorkDocs() bool

HasEnableWorkDocs returns a boolean if a field has been set.

func (*UpdateAwsEdcDirectoryConnection) HasSecurityGroupId

func (o *UpdateAwsEdcDirectoryConnection) HasSecurityGroupId() bool

HasSecurityGroupId returns a boolean if a field has been set.

func (*UpdateAwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator

func (o *UpdateAwsEdcDirectoryConnection) HasUserEnabledAsLocalAdministrator() bool

HasUserEnabledAsLocalAdministrator returns a boolean if a field has been set.

func (UpdateAwsEdcDirectoryConnection) MarshalJSON

func (o UpdateAwsEdcDirectoryConnection) MarshalJSON() ([]byte, error)

func (*UpdateAwsEdcDirectoryConnection) SetDefaultOU

func (o *UpdateAwsEdcDirectoryConnection) SetDefaultOU(v string)

SetDefaultOU gets a reference to the given NullableString and assigns it to the DefaultOU field.

func (*UpdateAwsEdcDirectoryConnection) SetDefaultOUNil

func (o *UpdateAwsEdcDirectoryConnection) SetDefaultOUNil()

SetDefaultOUNil sets the value for DefaultOU to be an explicit nil

func (*UpdateAwsEdcDirectoryConnection) SetEnableInternetAccess

func (o *UpdateAwsEdcDirectoryConnection) SetEnableInternetAccess(v bool)

SetEnableInternetAccess gets a reference to the given NullableBool and assigns it to the EnableInternetAccess field.

func (*UpdateAwsEdcDirectoryConnection) SetEnableInternetAccessNil

func (o *UpdateAwsEdcDirectoryConnection) SetEnableInternetAccessNil()

SetEnableInternetAccessNil sets the value for EnableInternetAccess to be an explicit nil

func (*UpdateAwsEdcDirectoryConnection) SetEnableMaintananceMode

func (o *UpdateAwsEdcDirectoryConnection) SetEnableMaintananceMode(v bool)

SetEnableMaintananceMode gets a reference to the given NullableBool and assigns it to the EnableMaintananceMode field.

func (*UpdateAwsEdcDirectoryConnection) SetEnableMaintananceModeNil

func (o *UpdateAwsEdcDirectoryConnection) SetEnableMaintananceModeNil()

SetEnableMaintananceModeNil sets the value for EnableMaintananceMode to be an explicit nil

func (*UpdateAwsEdcDirectoryConnection) SetEnableWorkDocs

func (o *UpdateAwsEdcDirectoryConnection) SetEnableWorkDocs(v bool)

SetEnableWorkDocs gets a reference to the given NullableBool and assigns it to the EnableWorkDocs field.

func (*UpdateAwsEdcDirectoryConnection) SetEnableWorkDocsNil

func (o *UpdateAwsEdcDirectoryConnection) SetEnableWorkDocsNil()

SetEnableWorkDocsNil sets the value for EnableWorkDocs to be an explicit nil

func (*UpdateAwsEdcDirectoryConnection) SetSecurityGroupId

func (o *UpdateAwsEdcDirectoryConnection) SetSecurityGroupId(v string)

SetSecurityGroupId gets a reference to the given NullableString and assigns it to the SecurityGroupId field.

func (*UpdateAwsEdcDirectoryConnection) SetSecurityGroupIdNil

func (o *UpdateAwsEdcDirectoryConnection) SetSecurityGroupIdNil()

SetSecurityGroupIdNil sets the value for SecurityGroupId to be an explicit nil

func (*UpdateAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator

func (o *UpdateAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministrator(v bool)

SetUserEnabledAsLocalAdministrator gets a reference to the given NullableBool and assigns it to the UserEnabledAsLocalAdministrator field.

func (*UpdateAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministratorNil

func (o *UpdateAwsEdcDirectoryConnection) SetUserEnabledAsLocalAdministratorNil()

SetUserEnabledAsLocalAdministratorNil sets the value for UserEnabledAsLocalAdministrator to be an explicit nil

func (UpdateAwsEdcDirectoryConnection) ToMap

func (o UpdateAwsEdcDirectoryConnection) ToMap() (map[string]interface{}, error)

func (*UpdateAwsEdcDirectoryConnection) UnsetDefaultOU

func (o *UpdateAwsEdcDirectoryConnection) UnsetDefaultOU()

UnsetDefaultOU ensures that no value is present for DefaultOU, not even an explicit nil

func (*UpdateAwsEdcDirectoryConnection) UnsetEnableInternetAccess

func (o *UpdateAwsEdcDirectoryConnection) UnsetEnableInternetAccess()

UnsetEnableInternetAccess ensures that no value is present for EnableInternetAccess, not even an explicit nil

func (*UpdateAwsEdcDirectoryConnection) UnsetEnableMaintananceMode

func (o *UpdateAwsEdcDirectoryConnection) UnsetEnableMaintananceMode()

UnsetEnableMaintananceMode ensures that no value is present for EnableMaintananceMode, not even an explicit nil

func (*UpdateAwsEdcDirectoryConnection) UnsetEnableWorkDocs

func (o *UpdateAwsEdcDirectoryConnection) UnsetEnableWorkDocs()

UnsetEnableWorkDocs ensures that no value is present for EnableWorkDocs, not even an explicit nil

func (*UpdateAwsEdcDirectoryConnection) UnsetSecurityGroupId

func (o *UpdateAwsEdcDirectoryConnection) UnsetSecurityGroupId()

UnsetSecurityGroupId ensures that no value is present for SecurityGroupId, not even an explicit nil

func (*UpdateAwsEdcDirectoryConnection) UnsetUserEnabledAsLocalAdministrator

func (o *UpdateAwsEdcDirectoryConnection) UnsetUserEnabledAsLocalAdministrator()

UnsetUserEnabledAsLocalAdministrator ensures that no value is present for UserEnabledAsLocalAdministrator, not even an explicit nil

type UpdateCustomerAccountAsyncRequest

type UpdateCustomerAccountAsyncRequest struct {
	UpdateAccount                  *UpdateAccount
	UpdateAccountName              *UpdateAccountName
	UpdateAwsEdcAccountCredentials *UpdateAwsEdcAccountCredentials
}

UpdateCustomerAccountAsyncRequest - struct for UpdateCustomerAccountAsyncRequest

func UpdateAccountAsUpdateCustomerAccountAsyncRequest

func UpdateAccountAsUpdateCustomerAccountAsyncRequest(v *UpdateAccount) UpdateCustomerAccountAsyncRequest

UpdateAccountAsUpdateCustomerAccountAsyncRequest is a convenience function that returns UpdateAccount wrapped in UpdateCustomerAccountAsyncRequest

func UpdateAccountNameAsUpdateCustomerAccountAsyncRequest

func UpdateAccountNameAsUpdateCustomerAccountAsyncRequest(v *UpdateAccountName) UpdateCustomerAccountAsyncRequest

UpdateAccountNameAsUpdateCustomerAccountAsyncRequest is a convenience function that returns UpdateAccountName wrapped in UpdateCustomerAccountAsyncRequest

func UpdateAwsEdcAccountCredentialsAsUpdateCustomerAccountAsyncRequest

func UpdateAwsEdcAccountCredentialsAsUpdateCustomerAccountAsyncRequest(v *UpdateAwsEdcAccountCredentials) UpdateCustomerAccountAsyncRequest

UpdateAwsEdcAccountCredentialsAsUpdateCustomerAccountAsyncRequest is a convenience function that returns UpdateAwsEdcAccountCredentials wrapped in UpdateCustomerAccountAsyncRequest

func (*UpdateCustomerAccountAsyncRequest) GetActualInstance

func (obj *UpdateCustomerAccountAsyncRequest) GetActualInstance() interface{}

Get the actual instance

func (UpdateCustomerAccountAsyncRequest) MarshalJSON

func (src UpdateCustomerAccountAsyncRequest) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateCustomerAccountAsyncRequest) UnmarshalJSON

func (dst *UpdateCustomerAccountAsyncRequest) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateDeploymentImage

type UpdateDeploymentImage struct {
	ImageId NullableString `json:"imageId,omitempty"`
}

UpdateDeploymentImage struct for UpdateDeploymentImage

func NewUpdateDeploymentImage

func NewUpdateDeploymentImage() *UpdateDeploymentImage

NewUpdateDeploymentImage instantiates a new UpdateDeploymentImage 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 NewUpdateDeploymentImageWithDefaults

func NewUpdateDeploymentImageWithDefaults() *UpdateDeploymentImage

NewUpdateDeploymentImageWithDefaults instantiates a new UpdateDeploymentImage 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 (*UpdateDeploymentImage) GetImageId

func (o *UpdateDeploymentImage) GetImageId() string

GetImageId returns the ImageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateDeploymentImage) GetImageIdOk

func (o *UpdateDeploymentImage) GetImageIdOk() (*string, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateDeploymentImage) HasImageId

func (o *UpdateDeploymentImage) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (UpdateDeploymentImage) MarshalJSON

func (o UpdateDeploymentImage) MarshalJSON() ([]byte, error)

func (*UpdateDeploymentImage) SetImageId

func (o *UpdateDeploymentImage) SetImageId(v string)

SetImageId gets a reference to the given NullableString and assigns it to the ImageId field.

func (*UpdateDeploymentImage) SetImageIdNil

func (o *UpdateDeploymentImage) SetImageIdNil()

SetImageIdNil sets the value for ImageId to be an explicit nil

func (UpdateDeploymentImage) ToMap

func (o UpdateDeploymentImage) ToMap() (map[string]interface{}, error)

func (*UpdateDeploymentImage) UnsetImageId

func (o *UpdateDeploymentImage) UnsetImageId()

UnsetImageId ensures that no value is present for ImageId, not even an explicit nil

type UpdateDeploymentMachine

type UpdateDeploymentMachine struct {
	AccountType AccountType `json:"accountType"`
}

UpdateDeploymentMachine Adds machines to deployment

func NewUpdateDeploymentMachine

func NewUpdateDeploymentMachine(accountType AccountType) *UpdateDeploymentMachine

NewUpdateDeploymentMachine instantiates a new UpdateDeploymentMachine 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 NewUpdateDeploymentMachineWithDefaults

func NewUpdateDeploymentMachineWithDefaults() *UpdateDeploymentMachine

NewUpdateDeploymentMachineWithDefaults instantiates a new UpdateDeploymentMachine 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 (*UpdateDeploymentMachine) GetAccountType

func (o *UpdateDeploymentMachine) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*UpdateDeploymentMachine) GetAccountTypeOk

func (o *UpdateDeploymentMachine) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (UpdateDeploymentMachine) MarshalJSON

func (o UpdateDeploymentMachine) MarshalJSON() ([]byte, error)

func (*UpdateDeploymentMachine) SetAccountType

func (o *UpdateDeploymentMachine) SetAccountType(v AccountType)

SetAccountType sets field value

func (UpdateDeploymentMachine) ToMap

func (o UpdateDeploymentMachine) ToMap() (map[string]interface{}, error)

type UpdateDeploymentProperties

type UpdateDeploymentProperties struct {
	AccountType AccountType `json:"accountType"`
}

UpdateDeploymentProperties Update deployment properties which includes machine performance, running mode and power management settings depending on deployment type

func NewUpdateDeploymentProperties

func NewUpdateDeploymentProperties(accountType AccountType) *UpdateDeploymentProperties

NewUpdateDeploymentProperties instantiates a new UpdateDeploymentProperties 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 NewUpdateDeploymentPropertiesWithDefaults

func NewUpdateDeploymentPropertiesWithDefaults() *UpdateDeploymentProperties

NewUpdateDeploymentPropertiesWithDefaults instantiates a new UpdateDeploymentProperties 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 (*UpdateDeploymentProperties) GetAccountType

func (o *UpdateDeploymentProperties) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*UpdateDeploymentProperties) GetAccountTypeOk

func (o *UpdateDeploymentProperties) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (UpdateDeploymentProperties) MarshalJSON

func (o UpdateDeploymentProperties) MarshalJSON() ([]byte, error)

func (*UpdateDeploymentProperties) SetAccountType

func (o *UpdateDeploymentProperties) SetAccountType(v AccountType)

SetAccountType sets field value

func (UpdateDeploymentProperties) ToMap

func (o UpdateDeploymentProperties) ToMap() (map[string]interface{}, error)

type UpdatePowerConfigurationModel

type UpdatePowerConfigurationModel struct {
	RunningMode NullableAwsEdcWorkspaceRunningMode `json:"runningMode,omitempty"`
	// Whether auto-scale is enabled for the delivery group.
	AutoScaleEnabled NullableBool `json:"autoScaleEnabled,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session disconnects outside peak hours.
	OffPeakDisconnectTimeoutMinutes NullableInt32 `json:"offPeakDisconnectTimeoutMinutes,omitempty"`
	// The percentage of machines in the delivery group that should be  kept available in an idle state outside peak hours.
	OffPeakBufferSizePercent NullableInt32 `json:"offPeakBufferSizePercent,omitempty"`
	// Specifies the time in seconds after which an idle session  belonging to the delivery group is disconnected during off-peak time.
	DisconnectOffPeakIdleSessionAfterSeconds NullableInt32 `json:"disconnectOffPeakIdleSessionAfterSeconds,omitempty"`
	// The time zone in which this delivery group's machines reside.
	TimeZone                NullableString                     `json:"timeZone,omitempty"`
	OffPeakLogOffAction     NullableSessionChangeHostingAction `json:"offPeakLogOffAction,omitempty"`
	OffPeakDisconnectAction NullableSessionChangeHostingAction `json:"offPeakDisconnectAction,omitempty"`
	// The number of minutes before the configured action should be  performed after a user session ends outside peak hours.
	OffPeakLogOffTimeoutMinutes NullableInt32 `json:"offPeakLogOffTimeoutMinutes,omitempty"`
}

UpdatePowerConfigurationModel struct for UpdatePowerConfigurationModel

func NewUpdatePowerConfigurationModel

func NewUpdatePowerConfigurationModel() *UpdatePowerConfigurationModel

NewUpdatePowerConfigurationModel instantiates a new UpdatePowerConfigurationModel 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 NewUpdatePowerConfigurationModelWithDefaults

func NewUpdatePowerConfigurationModelWithDefaults() *UpdatePowerConfigurationModel

NewUpdatePowerConfigurationModelWithDefaults instantiates a new UpdatePowerConfigurationModel 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 (*UpdatePowerConfigurationModel) GetAutoScaleEnabled

func (o *UpdatePowerConfigurationModel) GetAutoScaleEnabled() bool

GetAutoScaleEnabled returns the AutoScaleEnabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetAutoScaleEnabledOk

func (o *UpdatePowerConfigurationModel) GetAutoScaleEnabledOk() (*bool, bool)

GetAutoScaleEnabledOk returns a tuple with the AutoScaleEnabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetDisconnectOffPeakIdleSessionAfterSeconds

func (o *UpdatePowerConfigurationModel) GetDisconnectOffPeakIdleSessionAfterSeconds() int32

GetDisconnectOffPeakIdleSessionAfterSeconds returns the DisconnectOffPeakIdleSessionAfterSeconds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetDisconnectOffPeakIdleSessionAfterSecondsOk

func (o *UpdatePowerConfigurationModel) GetDisconnectOffPeakIdleSessionAfterSecondsOk() (*int32, bool)

GetDisconnectOffPeakIdleSessionAfterSecondsOk returns a tuple with the DisconnectOffPeakIdleSessionAfterSeconds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetOffPeakBufferSizePercent

func (o *UpdatePowerConfigurationModel) GetOffPeakBufferSizePercent() int32

GetOffPeakBufferSizePercent returns the OffPeakBufferSizePercent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetOffPeakBufferSizePercentOk

func (o *UpdatePowerConfigurationModel) GetOffPeakBufferSizePercentOk() (*int32, bool)

GetOffPeakBufferSizePercentOk returns a tuple with the OffPeakBufferSizePercent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetOffPeakDisconnectAction

func (o *UpdatePowerConfigurationModel) GetOffPeakDisconnectAction() SessionChangeHostingAction

GetOffPeakDisconnectAction returns the OffPeakDisconnectAction field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetOffPeakDisconnectActionOk

func (o *UpdatePowerConfigurationModel) GetOffPeakDisconnectActionOk() (*SessionChangeHostingAction, bool)

GetOffPeakDisconnectActionOk returns a tuple with the OffPeakDisconnectAction field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetOffPeakDisconnectTimeoutMinutes

func (o *UpdatePowerConfigurationModel) GetOffPeakDisconnectTimeoutMinutes() int32

GetOffPeakDisconnectTimeoutMinutes returns the OffPeakDisconnectTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetOffPeakDisconnectTimeoutMinutesOk

func (o *UpdatePowerConfigurationModel) GetOffPeakDisconnectTimeoutMinutesOk() (*int32, bool)

GetOffPeakDisconnectTimeoutMinutesOk returns a tuple with the OffPeakDisconnectTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetOffPeakLogOffAction

func (o *UpdatePowerConfigurationModel) GetOffPeakLogOffAction() SessionChangeHostingAction

GetOffPeakLogOffAction returns the OffPeakLogOffAction field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetOffPeakLogOffActionOk

func (o *UpdatePowerConfigurationModel) GetOffPeakLogOffActionOk() (*SessionChangeHostingAction, bool)

GetOffPeakLogOffActionOk returns a tuple with the OffPeakLogOffAction field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetOffPeakLogOffTimeoutMinutes

func (o *UpdatePowerConfigurationModel) GetOffPeakLogOffTimeoutMinutes() int32

GetOffPeakLogOffTimeoutMinutes returns the OffPeakLogOffTimeoutMinutes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetOffPeakLogOffTimeoutMinutesOk

func (o *UpdatePowerConfigurationModel) GetOffPeakLogOffTimeoutMinutesOk() (*int32, bool)

GetOffPeakLogOffTimeoutMinutesOk returns a tuple with the OffPeakLogOffTimeoutMinutes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetRunningMode

GetRunningMode returns the RunningMode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetRunningModeOk

GetRunningModeOk returns a tuple with the RunningMode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) GetTimeZone

func (o *UpdatePowerConfigurationModel) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePowerConfigurationModel) GetTimeZoneOk

func (o *UpdatePowerConfigurationModel) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePowerConfigurationModel) HasAutoScaleEnabled

func (o *UpdatePowerConfigurationModel) HasAutoScaleEnabled() bool

HasAutoScaleEnabled returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasDisconnectOffPeakIdleSessionAfterSeconds

func (o *UpdatePowerConfigurationModel) HasDisconnectOffPeakIdleSessionAfterSeconds() bool

HasDisconnectOffPeakIdleSessionAfterSeconds returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasOffPeakBufferSizePercent

func (o *UpdatePowerConfigurationModel) HasOffPeakBufferSizePercent() bool

HasOffPeakBufferSizePercent returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasOffPeakDisconnectAction

func (o *UpdatePowerConfigurationModel) HasOffPeakDisconnectAction() bool

HasOffPeakDisconnectAction returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasOffPeakDisconnectTimeoutMinutes

func (o *UpdatePowerConfigurationModel) HasOffPeakDisconnectTimeoutMinutes() bool

HasOffPeakDisconnectTimeoutMinutes returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasOffPeakLogOffAction

func (o *UpdatePowerConfigurationModel) HasOffPeakLogOffAction() bool

HasOffPeakLogOffAction returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasOffPeakLogOffTimeoutMinutes

func (o *UpdatePowerConfigurationModel) HasOffPeakLogOffTimeoutMinutes() bool

HasOffPeakLogOffTimeoutMinutes returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasRunningMode

func (o *UpdatePowerConfigurationModel) HasRunningMode() bool

HasRunningMode returns a boolean if a field has been set.

func (*UpdatePowerConfigurationModel) HasTimeZone

func (o *UpdatePowerConfigurationModel) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (UpdatePowerConfigurationModel) MarshalJSON

func (o UpdatePowerConfigurationModel) MarshalJSON() ([]byte, error)

func (*UpdatePowerConfigurationModel) SetAutoScaleEnabled

func (o *UpdatePowerConfigurationModel) SetAutoScaleEnabled(v bool)

SetAutoScaleEnabled gets a reference to the given NullableBool and assigns it to the AutoScaleEnabled field.

func (*UpdatePowerConfigurationModel) SetAutoScaleEnabledNil

func (o *UpdatePowerConfigurationModel) SetAutoScaleEnabledNil()

SetAutoScaleEnabledNil sets the value for AutoScaleEnabled to be an explicit nil

func (*UpdatePowerConfigurationModel) SetDisconnectOffPeakIdleSessionAfterSeconds

func (o *UpdatePowerConfigurationModel) SetDisconnectOffPeakIdleSessionAfterSeconds(v int32)

SetDisconnectOffPeakIdleSessionAfterSeconds gets a reference to the given NullableInt32 and assigns it to the DisconnectOffPeakIdleSessionAfterSeconds field.

func (*UpdatePowerConfigurationModel) SetDisconnectOffPeakIdleSessionAfterSecondsNil

func (o *UpdatePowerConfigurationModel) SetDisconnectOffPeakIdleSessionAfterSecondsNil()

SetDisconnectOffPeakIdleSessionAfterSecondsNil sets the value for DisconnectOffPeakIdleSessionAfterSeconds to be an explicit nil

func (*UpdatePowerConfigurationModel) SetOffPeakBufferSizePercent

func (o *UpdatePowerConfigurationModel) SetOffPeakBufferSizePercent(v int32)

SetOffPeakBufferSizePercent gets a reference to the given NullableInt32 and assigns it to the OffPeakBufferSizePercent field.

func (*UpdatePowerConfigurationModel) SetOffPeakBufferSizePercentNil

func (o *UpdatePowerConfigurationModel) SetOffPeakBufferSizePercentNil()

SetOffPeakBufferSizePercentNil sets the value for OffPeakBufferSizePercent to be an explicit nil

func (*UpdatePowerConfigurationModel) SetOffPeakDisconnectAction

func (o *UpdatePowerConfigurationModel) SetOffPeakDisconnectAction(v SessionChangeHostingAction)

SetOffPeakDisconnectAction gets a reference to the given NullableSessionChangeHostingAction and assigns it to the OffPeakDisconnectAction field.

func (*UpdatePowerConfigurationModel) SetOffPeakDisconnectActionNil

func (o *UpdatePowerConfigurationModel) SetOffPeakDisconnectActionNil()

SetOffPeakDisconnectActionNil sets the value for OffPeakDisconnectAction to be an explicit nil

func (*UpdatePowerConfigurationModel) SetOffPeakDisconnectTimeoutMinutes

func (o *UpdatePowerConfigurationModel) SetOffPeakDisconnectTimeoutMinutes(v int32)

SetOffPeakDisconnectTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakDisconnectTimeoutMinutes field.

func (*UpdatePowerConfigurationModel) SetOffPeakDisconnectTimeoutMinutesNil

func (o *UpdatePowerConfigurationModel) SetOffPeakDisconnectTimeoutMinutesNil()

SetOffPeakDisconnectTimeoutMinutesNil sets the value for OffPeakDisconnectTimeoutMinutes to be an explicit nil

func (*UpdatePowerConfigurationModel) SetOffPeakLogOffAction

func (o *UpdatePowerConfigurationModel) SetOffPeakLogOffAction(v SessionChangeHostingAction)

SetOffPeakLogOffAction gets a reference to the given NullableSessionChangeHostingAction and assigns it to the OffPeakLogOffAction field.

func (*UpdatePowerConfigurationModel) SetOffPeakLogOffActionNil

func (o *UpdatePowerConfigurationModel) SetOffPeakLogOffActionNil()

SetOffPeakLogOffActionNil sets the value for OffPeakLogOffAction to be an explicit nil

func (*UpdatePowerConfigurationModel) SetOffPeakLogOffTimeoutMinutes

func (o *UpdatePowerConfigurationModel) SetOffPeakLogOffTimeoutMinutes(v int32)

SetOffPeakLogOffTimeoutMinutes gets a reference to the given NullableInt32 and assigns it to the OffPeakLogOffTimeoutMinutes field.

func (*UpdatePowerConfigurationModel) SetOffPeakLogOffTimeoutMinutesNil

func (o *UpdatePowerConfigurationModel) SetOffPeakLogOffTimeoutMinutesNil()

SetOffPeakLogOffTimeoutMinutesNil sets the value for OffPeakLogOffTimeoutMinutes to be an explicit nil

func (*UpdatePowerConfigurationModel) SetRunningMode

SetRunningMode gets a reference to the given NullableAwsEdcWorkspaceRunningMode and assigns it to the RunningMode field.

func (*UpdatePowerConfigurationModel) SetRunningModeNil

func (o *UpdatePowerConfigurationModel) SetRunningModeNil()

SetRunningModeNil sets the value for RunningMode to be an explicit nil

func (*UpdatePowerConfigurationModel) SetTimeZone

func (o *UpdatePowerConfigurationModel) SetTimeZone(v string)

SetTimeZone gets a reference to the given NullableString and assigns it to the TimeZone field.

func (*UpdatePowerConfigurationModel) SetTimeZoneNil

func (o *UpdatePowerConfigurationModel) SetTimeZoneNil()

SetTimeZoneNil sets the value for TimeZone to be an explicit nil

func (UpdatePowerConfigurationModel) ToMap

func (o UpdatePowerConfigurationModel) ToMap() (map[string]interface{}, error)

func (*UpdatePowerConfigurationModel) UnsetAutoScaleEnabled

func (o *UpdatePowerConfigurationModel) UnsetAutoScaleEnabled()

UnsetAutoScaleEnabled ensures that no value is present for AutoScaleEnabled, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetDisconnectOffPeakIdleSessionAfterSeconds

func (o *UpdatePowerConfigurationModel) UnsetDisconnectOffPeakIdleSessionAfterSeconds()

UnsetDisconnectOffPeakIdleSessionAfterSeconds ensures that no value is present for DisconnectOffPeakIdleSessionAfterSeconds, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetOffPeakBufferSizePercent

func (o *UpdatePowerConfigurationModel) UnsetOffPeakBufferSizePercent()

UnsetOffPeakBufferSizePercent ensures that no value is present for OffPeakBufferSizePercent, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetOffPeakDisconnectAction

func (o *UpdatePowerConfigurationModel) UnsetOffPeakDisconnectAction()

UnsetOffPeakDisconnectAction ensures that no value is present for OffPeakDisconnectAction, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetOffPeakDisconnectTimeoutMinutes

func (o *UpdatePowerConfigurationModel) UnsetOffPeakDisconnectTimeoutMinutes()

UnsetOffPeakDisconnectTimeoutMinutes ensures that no value is present for OffPeakDisconnectTimeoutMinutes, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetOffPeakLogOffAction

func (o *UpdatePowerConfigurationModel) UnsetOffPeakLogOffAction()

UnsetOffPeakLogOffAction ensures that no value is present for OffPeakLogOffAction, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetOffPeakLogOffTimeoutMinutes

func (o *UpdatePowerConfigurationModel) UnsetOffPeakLogOffTimeoutMinutes()

UnsetOffPeakLogOffTimeoutMinutes ensures that no value is present for OffPeakLogOffTimeoutMinutes, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetRunningMode

func (o *UpdatePowerConfigurationModel) UnsetRunningMode()

UnsetRunningMode ensures that no value is present for RunningMode, not even an explicit nil

func (*UpdatePowerConfigurationModel) UnsetTimeZone

func (o *UpdatePowerConfigurationModel) UnsetTimeZone()

UnsetTimeZone ensures that no value is present for TimeZone, not even an explicit nil

type UpdateResourceConnection

type UpdateResourceConnection struct {
	AccountType AccountType `json:"accountType"`
}

UpdateResourceConnection Updates resource connection

func NewUpdateResourceConnection

func NewUpdateResourceConnection(accountType AccountType) *UpdateResourceConnection

NewUpdateResourceConnection instantiates a new UpdateResourceConnection 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 NewUpdateResourceConnectionWithDefaults

func NewUpdateResourceConnectionWithDefaults() *UpdateResourceConnection

NewUpdateResourceConnectionWithDefaults instantiates a new UpdateResourceConnection 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 (*UpdateResourceConnection) GetAccountType

func (o *UpdateResourceConnection) GetAccountType() AccountType

GetAccountType returns the AccountType field value

func (*UpdateResourceConnection) GetAccountTypeOk

func (o *UpdateResourceConnection) GetAccountTypeOk() (*AccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (UpdateResourceConnection) MarshalJSON

func (o UpdateResourceConnection) MarshalJSON() ([]byte, error)

func (*UpdateResourceConnection) SetAccountType

func (o *UpdateResourceConnection) SetAccountType(v AccountType)

SetAccountType sets field value

func (UpdateResourceConnection) ToMap

func (o UpdateResourceConnection) ToMap() (map[string]interface{}, error)

type UserIdGroupPair

type UserIdGroupPair struct {
	Description            NullableString `json:"description,omitempty"`
	GroupId                NullableString `json:"groupId,omitempty"`
	GroupName              NullableString `json:"groupName,omitempty"`
	PeeringStatus          NullableString `json:"peeringStatus,omitempty"`
	UserId                 NullableString `json:"userId,omitempty"`
	VpcId                  NullableString `json:"vpcId,omitempty"`
	VpcPeeringConnectionId NullableString `json:"vpcPeeringConnectionId,omitempty"`
}

UserIdGroupPair struct for UserIdGroupPair

func NewUserIdGroupPair

func NewUserIdGroupPair() *UserIdGroupPair

NewUserIdGroupPair instantiates a new UserIdGroupPair 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 NewUserIdGroupPairWithDefaults

func NewUserIdGroupPairWithDefaults() *UserIdGroupPair

NewUserIdGroupPairWithDefaults instantiates a new UserIdGroupPair 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 (*UserIdGroupPair) GetDescription

func (o *UserIdGroupPair) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetDescriptionOk

func (o *UserIdGroupPair) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetGroupId

func (o *UserIdGroupPair) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetGroupIdOk

func (o *UserIdGroupPair) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetGroupName

func (o *UserIdGroupPair) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetGroupNameOk

func (o *UserIdGroupPair) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetPeeringStatus

func (o *UserIdGroupPair) GetPeeringStatus() string

GetPeeringStatus returns the PeeringStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetPeeringStatusOk

func (o *UserIdGroupPair) GetPeeringStatusOk() (*string, bool)

GetPeeringStatusOk returns a tuple with the PeeringStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetUserId

func (o *UserIdGroupPair) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetUserIdOk

func (o *UserIdGroupPair) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetVpcId

func (o *UserIdGroupPair) GetVpcId() string

GetVpcId returns the VpcId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetVpcIdOk

func (o *UserIdGroupPair) GetVpcIdOk() (*string, bool)

GetVpcIdOk returns a tuple with the VpcId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) GetVpcPeeringConnectionId

func (o *UserIdGroupPair) GetVpcPeeringConnectionId() string

GetVpcPeeringConnectionId returns the VpcPeeringConnectionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserIdGroupPair) GetVpcPeeringConnectionIdOk

func (o *UserIdGroupPair) GetVpcPeeringConnectionIdOk() (*string, bool)

GetVpcPeeringConnectionIdOk returns a tuple with the VpcPeeringConnectionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserIdGroupPair) HasDescription

func (o *UserIdGroupPair) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UserIdGroupPair) HasGroupId

func (o *UserIdGroupPair) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*UserIdGroupPair) HasGroupName

func (o *UserIdGroupPair) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*UserIdGroupPair) HasPeeringStatus

func (o *UserIdGroupPair) HasPeeringStatus() bool

HasPeeringStatus returns a boolean if a field has been set.

func (*UserIdGroupPair) HasUserId

func (o *UserIdGroupPair) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*UserIdGroupPair) HasVpcId

func (o *UserIdGroupPair) HasVpcId() bool

HasVpcId returns a boolean if a field has been set.

func (*UserIdGroupPair) HasVpcPeeringConnectionId

func (o *UserIdGroupPair) HasVpcPeeringConnectionId() bool

HasVpcPeeringConnectionId returns a boolean if a field has been set.

func (UserIdGroupPair) MarshalJSON

func (o UserIdGroupPair) MarshalJSON() ([]byte, error)

func (*UserIdGroupPair) SetDescription

func (o *UserIdGroupPair) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*UserIdGroupPair) SetDescriptionNil

func (o *UserIdGroupPair) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*UserIdGroupPair) SetGroupId

func (o *UserIdGroupPair) SetGroupId(v string)

SetGroupId gets a reference to the given NullableString and assigns it to the GroupId field.

func (*UserIdGroupPair) SetGroupIdNil

func (o *UserIdGroupPair) SetGroupIdNil()

SetGroupIdNil sets the value for GroupId to be an explicit nil

func (*UserIdGroupPair) SetGroupName

func (o *UserIdGroupPair) SetGroupName(v string)

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*UserIdGroupPair) SetGroupNameNil

func (o *UserIdGroupPair) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*UserIdGroupPair) SetPeeringStatus

func (o *UserIdGroupPair) SetPeeringStatus(v string)

SetPeeringStatus gets a reference to the given NullableString and assigns it to the PeeringStatus field.

func (*UserIdGroupPair) SetPeeringStatusNil

func (o *UserIdGroupPair) SetPeeringStatusNil()

SetPeeringStatusNil sets the value for PeeringStatus to be an explicit nil

func (*UserIdGroupPair) SetUserId

func (o *UserIdGroupPair) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*UserIdGroupPair) SetUserIdNil

func (o *UserIdGroupPair) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (*UserIdGroupPair) SetVpcId

func (o *UserIdGroupPair) SetVpcId(v string)

SetVpcId gets a reference to the given NullableString and assigns it to the VpcId field.

func (*UserIdGroupPair) SetVpcIdNil

func (o *UserIdGroupPair) SetVpcIdNil()

SetVpcIdNil sets the value for VpcId to be an explicit nil

func (*UserIdGroupPair) SetVpcPeeringConnectionId

func (o *UserIdGroupPair) SetVpcPeeringConnectionId(v string)

SetVpcPeeringConnectionId gets a reference to the given NullableString and assigns it to the VpcPeeringConnectionId field.

func (*UserIdGroupPair) SetVpcPeeringConnectionIdNil

func (o *UserIdGroupPair) SetVpcPeeringConnectionIdNil()

SetVpcPeeringConnectionIdNil sets the value for VpcPeeringConnectionId to be an explicit nil

func (UserIdGroupPair) ToMap

func (o UserIdGroupPair) ToMap() (map[string]interface{}, error)

func (*UserIdGroupPair) UnsetDescription

func (o *UserIdGroupPair) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*UserIdGroupPair) UnsetGroupId

func (o *UserIdGroupPair) UnsetGroupId()

UnsetGroupId ensures that no value is present for GroupId, not even an explicit nil

func (*UserIdGroupPair) UnsetGroupName

func (o *UserIdGroupPair) UnsetGroupName()

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*UserIdGroupPair) UnsetPeeringStatus

func (o *UserIdGroupPair) UnsetPeeringStatus()

UnsetPeeringStatus ensures that no value is present for PeeringStatus, not even an explicit nil

func (*UserIdGroupPair) UnsetUserId

func (o *UserIdGroupPair) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

func (*UserIdGroupPair) UnsetVpcId

func (o *UserIdGroupPair) UnsetVpcId()

UnsetVpcId ensures that no value is present for VpcId, not even an explicit nil

func (*UserIdGroupPair) UnsetVpcPeeringConnectionId

func (o *UserIdGroupPair) UnsetVpcPeeringConnectionId()

UnsetVpcPeeringConnectionId ensures that no value is present for VpcPeeringConnectionId, not even an explicit nil

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL