delphix_dct_api

package module
v10.0.0 Latest Latest
Warning

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

Go to latest
Published: Sep 26, 2023 License: Apache-2.0 Imports: 20 Imported by: 0

README

DCT Go Client SDK

This is a Go Client SDK leveraging the DCT APIGW.

For SDK usage, please refer to OPENAPI-README.md file

DCT Go Client SDK Generator Script

This is a guide on generation of the client SDK in Go Lang for the DCT Orbital APIGW.

Getting Started

The reources for code generation are present in the 'generation-scripts' directory. The script codegen.sh generates a GO Client SDK using the openapi-generator-cli tool. It generates the SDK, initializes the SDK and runs a test go function.

Prerequisites

Java needs to be installed to run the jar file. And Golang >= 1.17 needs to be installed in the machine where the script is run.

Refer to the official docs of the respective languages for guidance.

Delphix Control Tower SDK for Go

This repository houses the Go Client SDK for Delphix Control Tower APIs ( Multi Cloud Version).

Getting Started

To be added.

Prerequisites

Also the script requires an API Spec file for the DCT-APIGW. A sample file is present in the directory. For the latest spec, please download it from https://raw.githubusercontent.com/delphix/orbital-api-gateway/main/app/src/main/resources/api.yaml

Running the Script

As mentioned above the script requires a spec file.

Run the script as follows

sh codegen.sh api.yaml

On successful run, following tasks will result:

1. Generation of client SDK
2. Initialize the SDK module
3. Run the Test Go file, input the API key and hostname of the Delphix Engine and display list of Engines added to the APIGW

Running the tests

The test.go file executes a get all engines operation on the configured DCT-APIGW. To run the test on your delphix engine, provide the API key and Hostname of the engine when prompted.

Break down into end to end tests

The test essentially tests if the client SDK is functional and should be run before raising a PR. The result of the test will be available at the end of the script as follows.

List of engines are:
my-host.domain.co

If in any case, the test fails, we will be getting a 'test failed' message in the end.

Deployment

Once successful generation of client SDK and the test succeeds, we are ready to raise a PR.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

License

This project is licensed under the Apache License 2.0. Full license is available here.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

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 AllowedObjectTypeEnumEnumValues = []ObjectTypeEnum{
	"ACCESS_GROUP",
	"ACCOUNT",
	"ROLE",
	"BOOKMARK",
	"CDB",
	"DATABASE_TEMPLATE",
	"DSOURCE",
	"ENGINE",
	"ENVIRONMENT",
	"MASKING_ENVIRONMENT",
	"MASKING_JOB",
	"MASKING_JOB_SET",
	"REPORT_SCHEDULE",
	"SOURCE",
	"VAULT",
	"VCDB",
	"VDB",
	"VDB_GROUP",
	"CONNECTOR",
	"VIRTUALIZATION_POLICY",
	"DATASET_GROUP",
	"ENGINE_VAULT",
	"KERBEROS_CONFIG",
	"TIMEFLOW",
	"MASKING_ALGORITHM",
	"HYPERSCALE_INSTANCE",
	"HYPERSCALE_CONNECTOR",
	"HYPERSCALE_DATASET",
}

All allowed values of ObjectTypeEnum enum

View Source
var AllowedPermissionEnumEnumValues = []PermissionEnum{
	"READ",
	"UPDATE",
	"DELETE",
	"EXECUTE",
	"CANCEL",
	"MIGRATE",
	"REFRESH",
	"DISABLE",
	"ENABLE",
	"ABANDON",
	"VALIDATE",
	"START",
	"STOP",
	"SNAPSHOT",
	"COPY",
	"REMOVE_JOB",
	"PASSWORD_RESET",
	"UNDO_IMPORT",
	"IMPORT",
	"PROVISION_FROM_BOOKMARK",
	"PROVISION",
	"REFRESH_FROM_BOOKMARK",
	"REFRESH_FROM_SNAPSHOT",
	"REFRESH_FROM_TIMESTAMP",
	"CREATE_ENVIRONMENT",
	"CREATE_BOOKMARK",
	"CREATE_VDBGROUP",
	"MANAGE_TAGS",
	"LINK",
}

All allowed values of PermissionEnum 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 APIClassificationConfig

type APIClassificationConfig struct {
	// Api Classification Config Version.
	Version *string `json:"version,omitempty"`
	// The classification of each APIs, either it is automation or not.
	ApiClassification []ApiClassificationObject `json:"api_classification,omitempty"`
}

APIClassificationConfig Api Classification Config.

func NewAPIClassificationConfig

func NewAPIClassificationConfig() *APIClassificationConfig

NewAPIClassificationConfig instantiates a new APIClassificationConfig 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 NewAPIClassificationConfigWithDefaults

func NewAPIClassificationConfigWithDefaults() *APIClassificationConfig

NewAPIClassificationConfigWithDefaults instantiates a new APIClassificationConfig 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 (*APIClassificationConfig) GetApiClassification

func (o *APIClassificationConfig) GetApiClassification() []ApiClassificationObject

GetApiClassification returns the ApiClassification field value if set, zero value otherwise.

func (*APIClassificationConfig) GetApiClassificationOk

func (o *APIClassificationConfig) GetApiClassificationOk() ([]ApiClassificationObject, bool)

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

func (*APIClassificationConfig) GetVersion

func (o *APIClassificationConfig) GetVersion() string

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

func (*APIClassificationConfig) GetVersionOk

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

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

func (*APIClassificationConfig) HasApiClassification

func (o *APIClassificationConfig) HasApiClassification() bool

HasApiClassification returns a boolean if a field has been set.

func (*APIClassificationConfig) HasVersion

func (o *APIClassificationConfig) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (APIClassificationConfig) MarshalJSON

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

func (*APIClassificationConfig) SetApiClassification

func (o *APIClassificationConfig) SetApiClassification(v []ApiClassificationObject)

SetApiClassification gets a reference to the given []ApiClassificationObject and assigns it to the ApiClassification field.

func (*APIClassificationConfig) SetVersion

func (o *APIClassificationConfig) SetVersion(v string)

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

func (APIClassificationConfig) ToMap

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

type APIClient

type APIClient struct {
	AccountsApi *AccountsApiService

	AlgorithmsApi *AlgorithmsApiService

	AuthorizationApi *AuthorizationApiService

	BookmarksApi *BookmarksApiService

	CDBsApi *CDBsApiService

	ConnectivityApi *ConnectivityApiService

	ConnectorsApi *ConnectorsApiService

	DSourcesApi *DSourcesApiService

	DatabaseTemplatesApi *DatabaseTemplatesApiService

	EnvironmentsApi *EnvironmentsApiService

	ExecutionsApi *ExecutionsApiService

	FeatureFlagApi *FeatureFlagApiService

	GroupsApi *GroupsApiService

	HyperscaleInstanceApi *HyperscaleInstanceApiService

	HyperscaleObjectsApi *HyperscaleObjectsApiService

	JobsApi *JobsApiService

	KerberosConfigApi *KerberosConfigApiService

	LoginApi *LoginApiService

	ManagementApi *ManagementApiService

	MaskingEnvironmentsApi *MaskingEnvironmentsApiService

	MaskingFilesApi *MaskingFilesApiService

	MaskingJobsApi *MaskingJobsApiService

	PasswordVaultsApi *PasswordVaultsApiService

	ReportingApi *ReportingApiService

	SamlLoginApi *SamlLoginApiService

	SnapshotsApi *SnapshotsApiService

	SourcesApi *SourcesApiService

	TestApi *TestApiService

	TimeflowsApi *TimeflowsApiService

	VCDBsApi *VCDBsApiService

	VDBGroupsApi *VDBGroupsApiService

	VDBsApi *VDBsApiService

	VirtualizationPoliciesApi *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Delphix DCT API API v3.5.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ASEDSourceLinkSourceParameters

type ASEDSourceLinkSourceParameters struct {
	// Name of the dSource to be created.
	Name *string `json:"name,omitempty"`
	// Id of the source to link.
	SourceId string `json:"source_id"`
	// Id of the dataset group where this dSource should belong to.
	GroupId *string `json:"group_id,omitempty"`
	// The notes/description for the dSource.
	Description *string `json:"description,omitempty"`
	// True if LogSync should run for this database.
	LogSyncEnabled *bool `json:"log_sync_enabled,omitempty"`
	// Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	// The tags to be created for dSource.
	Tags []Tag `json:"tags,omitempty"`
	// Operations to perform before syncing the created dSource. These operations can quiesce any data prior to syncing.
	OpsPreSync []SourceOperation `json:"ops_pre_sync,omitempty"`
	// Operations to perform after syncing a created dSource.
	OpsPostSync []SourceOperation `json:"ops_post_sync,omitempty"`
	// External file path.
	ExternalFilePath *string `json:"external_file_path,omitempty"`
	// The base mount point to use for the NFS mounts.
	MountBase *string `json:"mount_base,omitempty"`
	// Source database backup location.
	LoadBackupPath string `json:"load_backup_path"`
	// Name of the backup server instance.
	BackupServerName *string `json:"backup_server_name,omitempty"`
	// OS user for the host where the backup server is located.
	BackupHostUser *string `json:"backup_host_user,omitempty"`
	// Host environment where the backup server is located.
	BackupHost *string `json:"backup_host,omitempty"`
	// The password credential for the source DB user.
	DumpCredentials *string `json:"dump_credentials,omitempty"`
	// ID or user reference of the host OS user to use for linking.
	SourceHostUser *string `json:"source_host_user,omitempty"`
	// The user name for the source DB user.
	DbUser *string `json:"db_user,omitempty"`
	// Password for the database user.
	DbPassword *string `json:"db_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials.
	DbVault *string `json:"db_vault,omitempty"`
	// Vault engine name where the credential is stored.
	DbHashicorpVaultEngine *string `json:"db_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	DbHashicorpVaultSecretPath *string `json:"db_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store.
	DbHashicorpVaultUsernameKey *string `json:"db_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store.
	DbHashicorpVaultSecretKey *string `json:"db_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name.
	DbAzureVaultName *string `json:"db_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store.
	DbAzureVaultUsernameKey *string `json:"db_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store.
	DbAzureVaultSecretKey *string `json:"db_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	DbCyberarkVaultQueryString *string `json:"db_cyberark_vault_query_string,omitempty"`
	// The SAP ASE instance on the staging environment that we want to use for validated sync.
	StagingRepository *string `json:"staging_repository,omitempty"`
	// Information about the host OS user on the staging environment to use for linking.
	StagingHostUser *string `json:"staging_host_user,omitempty"`
	// Information about the host OS user on the staging environment to use for linking.
	ValidatedSyncMode *string `json:"validated_sync_mode,omitempty"`
	// Specifies if Dump History File is enabled for backup history detection.
	DumpHistoryFileEnabled *bool `json:"dump_history_file_enabled,omitempty"`
	// If this parameter is set to true, it will drop the older devices and create new devices during manual sync operations instead of trying to remap the devices. This might increase the space utilization on Delphix Engine.
	DropAndRecreateDevices *bool `json:"drop_and_recreate_devices,omitempty"`
	// Determines how the Delphix Engine will take a backup: * `latest_backup` - Use the most recent backup. * `new_backup` - Delphix will take a new backup of your source database. * `specific_backup` - Use a specific backup. Using this option requires setting `ase_backup_files`. Default is `new_backup`.
	SyncStrategy *string `json:"sync_strategy,omitempty"`
	// The location of the full backup of the source database to restore from. The backup should be present in the shared backup location for the source database.
	AseBackupFiles []string `json:"ase_backup_files,omitempty"`
	// Operations to perform on the staging source before performing a validated sync.
	PreValidatedSync []SourceOperation `json:"pre_validated_sync,omitempty"`
	// Operations to perform on the staging source after performing a validated sync.
	PostValidatedSync []SourceOperation `json:"post_validated_sync,omitempty"`
}

ASEDSourceLinkSourceParameters struct for ASEDSourceLinkSourceParameters

func NewASEDSourceLinkSourceParameters

func NewASEDSourceLinkSourceParameters(sourceId string, loadBackupPath string) *ASEDSourceLinkSourceParameters

NewASEDSourceLinkSourceParameters instantiates a new ASEDSourceLinkSourceParameters 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 NewASEDSourceLinkSourceParametersWithDefaults

func NewASEDSourceLinkSourceParametersWithDefaults() *ASEDSourceLinkSourceParameters

NewASEDSourceLinkSourceParametersWithDefaults instantiates a new ASEDSourceLinkSourceParameters 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 (*ASEDSourceLinkSourceParameters) GetAseBackupFiles

func (o *ASEDSourceLinkSourceParameters) GetAseBackupFiles() []string

GetAseBackupFiles returns the AseBackupFiles field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetAseBackupFilesOk

func (o *ASEDSourceLinkSourceParameters) GetAseBackupFilesOk() ([]string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetBackupHost

func (o *ASEDSourceLinkSourceParameters) GetBackupHost() string

GetBackupHost returns the BackupHost field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetBackupHostOk

func (o *ASEDSourceLinkSourceParameters) GetBackupHostOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetBackupHostUser

func (o *ASEDSourceLinkSourceParameters) GetBackupHostUser() string

GetBackupHostUser returns the BackupHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetBackupHostUserOk

func (o *ASEDSourceLinkSourceParameters) GetBackupHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetBackupServerName

func (o *ASEDSourceLinkSourceParameters) GetBackupServerName() string

GetBackupServerName returns the BackupServerName field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetBackupServerNameOk

func (o *ASEDSourceLinkSourceParameters) GetBackupServerNameOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultName

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultName() string

GetDbAzureVaultName returns the DbAzureVaultName field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultNameOk

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultNameOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultSecretKey() string

GetDbAzureVaultSecretKey returns the DbAzureVaultSecretKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultSecretKeyOk

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultSecretKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultUsernameKey() string

GetDbAzureVaultUsernameKey returns the DbAzureVaultUsernameKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbAzureVaultUsernameKeyOk

func (o *ASEDSourceLinkSourceParameters) GetDbAzureVaultUsernameKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParameters) GetDbCyberarkVaultQueryString() string

GetDbCyberarkVaultQueryString returns the DbCyberarkVaultQueryString field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbCyberarkVaultQueryStringOk

func (o *ASEDSourceLinkSourceParameters) GetDbCyberarkVaultQueryStringOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultEngine() string

GetDbHashicorpVaultEngine returns the DbHashicorpVaultEngine field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultEngineOk

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultEngineOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretKey() string

GetDbHashicorpVaultSecretKey returns the DbHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretKeyOk

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretPath() string

GetDbHashicorpVaultSecretPath returns the DbHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretPathOk

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultSecretPathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultUsernameKey() string

GetDbHashicorpVaultUsernameKey returns the DbHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbHashicorpVaultUsernameKeyOk

func (o *ASEDSourceLinkSourceParameters) GetDbHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbPassword

func (o *ASEDSourceLinkSourceParameters) GetDbPassword() string

GetDbPassword returns the DbPassword field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbPasswordOk

func (o *ASEDSourceLinkSourceParameters) GetDbPasswordOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbUser

func (o *ASEDSourceLinkSourceParameters) GetDbUser() string

GetDbUser returns the DbUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbUserOk

func (o *ASEDSourceLinkSourceParameters) GetDbUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDbVault

func (o *ASEDSourceLinkSourceParameters) GetDbVault() string

GetDbVault returns the DbVault field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDbVaultOk

func (o *ASEDSourceLinkSourceParameters) GetDbVaultOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDescription

func (o *ASEDSourceLinkSourceParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDescriptionOk

func (o *ASEDSourceLinkSourceParameters) 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.

func (*ASEDSourceLinkSourceParameters) GetDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParameters) GetDropAndRecreateDevices() bool

GetDropAndRecreateDevices returns the DropAndRecreateDevices field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDropAndRecreateDevicesOk

func (o *ASEDSourceLinkSourceParameters) GetDropAndRecreateDevicesOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDumpCredentials

func (o *ASEDSourceLinkSourceParameters) GetDumpCredentials() string

GetDumpCredentials returns the DumpCredentials field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDumpCredentialsOk

func (o *ASEDSourceLinkSourceParameters) GetDumpCredentialsOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParameters) GetDumpHistoryFileEnabled() bool

GetDumpHistoryFileEnabled returns the DumpHistoryFileEnabled field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetDumpHistoryFileEnabledOk

func (o *ASEDSourceLinkSourceParameters) GetDumpHistoryFileEnabledOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParameters) GetExternalFilePath

func (o *ASEDSourceLinkSourceParameters) GetExternalFilePath() string

GetExternalFilePath returns the ExternalFilePath field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetExternalFilePathOk

func (o *ASEDSourceLinkSourceParameters) GetExternalFilePathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetGroupId

func (o *ASEDSourceLinkSourceParameters) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetGroupIdOk

func (o *ASEDSourceLinkSourceParameters) 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.

func (*ASEDSourceLinkSourceParameters) GetLoadBackupPath

func (o *ASEDSourceLinkSourceParameters) GetLoadBackupPath() string

GetLoadBackupPath returns the LoadBackupPath field value

func (*ASEDSourceLinkSourceParameters) GetLoadBackupPathOk

func (o *ASEDSourceLinkSourceParameters) GetLoadBackupPathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetLogSyncEnabled

func (o *ASEDSourceLinkSourceParameters) GetLogSyncEnabled() bool

GetLogSyncEnabled returns the LogSyncEnabled field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetLogSyncEnabledOk

func (o *ASEDSourceLinkSourceParameters) GetLogSyncEnabledOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParameters) GetMakeCurrentAccountOwner

func (o *ASEDSourceLinkSourceParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk

func (o *ASEDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParameters) GetMountBase

func (o *ASEDSourceLinkSourceParameters) GetMountBase() string

GetMountBase returns the MountBase field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetMountBaseOk

func (o *ASEDSourceLinkSourceParameters) GetMountBaseOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetNameOk

func (o *ASEDSourceLinkSourceParameters) 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.

func (*ASEDSourceLinkSourceParameters) GetOpsPostSync

func (o *ASEDSourceLinkSourceParameters) GetOpsPostSync() []SourceOperation

GetOpsPostSync returns the OpsPostSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetOpsPostSyncOk

func (o *ASEDSourceLinkSourceParameters) GetOpsPostSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParameters) GetOpsPreSync

func (o *ASEDSourceLinkSourceParameters) GetOpsPreSync() []SourceOperation

GetOpsPreSync returns the OpsPreSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetOpsPreSyncOk

func (o *ASEDSourceLinkSourceParameters) GetOpsPreSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParameters) GetPostValidatedSync

func (o *ASEDSourceLinkSourceParameters) GetPostValidatedSync() []SourceOperation

GetPostValidatedSync returns the PostValidatedSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetPostValidatedSyncOk

func (o *ASEDSourceLinkSourceParameters) GetPostValidatedSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParameters) GetPreValidatedSync

func (o *ASEDSourceLinkSourceParameters) GetPreValidatedSync() []SourceOperation

GetPreValidatedSync returns the PreValidatedSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetPreValidatedSyncOk

func (o *ASEDSourceLinkSourceParameters) GetPreValidatedSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParameters) GetSourceHostUser

func (o *ASEDSourceLinkSourceParameters) GetSourceHostUser() string

GetSourceHostUser returns the SourceHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetSourceHostUserOk

func (o *ASEDSourceLinkSourceParameters) GetSourceHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetSourceId

func (o *ASEDSourceLinkSourceParameters) GetSourceId() string

GetSourceId returns the SourceId field value

func (*ASEDSourceLinkSourceParameters) GetSourceIdOk

func (o *ASEDSourceLinkSourceParameters) GetSourceIdOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetStagingHostUser

func (o *ASEDSourceLinkSourceParameters) GetStagingHostUser() string

GetStagingHostUser returns the StagingHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetStagingHostUserOk

func (o *ASEDSourceLinkSourceParameters) GetStagingHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetStagingRepository

func (o *ASEDSourceLinkSourceParameters) GetStagingRepository() string

GetStagingRepository returns the StagingRepository field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetStagingRepositoryOk

func (o *ASEDSourceLinkSourceParameters) GetStagingRepositoryOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetSyncStrategy

func (o *ASEDSourceLinkSourceParameters) GetSyncStrategy() string

GetSyncStrategy returns the SyncStrategy field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetSyncStrategyOk

func (o *ASEDSourceLinkSourceParameters) GetSyncStrategyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetTagsOk

func (o *ASEDSourceLinkSourceParameters) 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.

func (*ASEDSourceLinkSourceParameters) GetValidatedSyncMode

func (o *ASEDSourceLinkSourceParameters) GetValidatedSyncMode() string

GetValidatedSyncMode returns the ValidatedSyncMode field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParameters) GetValidatedSyncModeOk

func (o *ASEDSourceLinkSourceParameters) GetValidatedSyncModeOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParameters) HasAseBackupFiles

func (o *ASEDSourceLinkSourceParameters) HasAseBackupFiles() bool

HasAseBackupFiles returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasBackupHost

func (o *ASEDSourceLinkSourceParameters) HasBackupHost() bool

HasBackupHost returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasBackupHostUser

func (o *ASEDSourceLinkSourceParameters) HasBackupHostUser() bool

HasBackupHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasBackupServerName

func (o *ASEDSourceLinkSourceParameters) HasBackupServerName() bool

HasBackupServerName returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbAzureVaultName

func (o *ASEDSourceLinkSourceParameters) HasDbAzureVaultName() bool

HasDbAzureVaultName returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) HasDbAzureVaultSecretKey() bool

HasDbAzureVaultSecretKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) HasDbAzureVaultUsernameKey() bool

HasDbAzureVaultUsernameKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParameters) HasDbCyberarkVaultQueryString() bool

HasDbCyberarkVaultQueryString returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParameters) HasDbHashicorpVaultEngine() bool

HasDbHashicorpVaultEngine returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) HasDbHashicorpVaultSecretKey() bool

HasDbHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParameters) HasDbHashicorpVaultSecretPath() bool

HasDbHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) HasDbHashicorpVaultUsernameKey() bool

HasDbHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbPassword

func (o *ASEDSourceLinkSourceParameters) HasDbPassword() bool

HasDbPassword returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbUser

func (o *ASEDSourceLinkSourceParameters) HasDbUser() bool

HasDbUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDbVault

func (o *ASEDSourceLinkSourceParameters) HasDbVault() bool

HasDbVault returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDescription

func (o *ASEDSourceLinkSourceParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParameters) HasDropAndRecreateDevices() bool

HasDropAndRecreateDevices returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDumpCredentials

func (o *ASEDSourceLinkSourceParameters) HasDumpCredentials() bool

HasDumpCredentials returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParameters) HasDumpHistoryFileEnabled() bool

HasDumpHistoryFileEnabled returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasExternalFilePath

func (o *ASEDSourceLinkSourceParameters) HasExternalFilePath() bool

HasExternalFilePath returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasGroupId

func (o *ASEDSourceLinkSourceParameters) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasLogSyncEnabled

func (o *ASEDSourceLinkSourceParameters) HasLogSyncEnabled() bool

HasLogSyncEnabled returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasMakeCurrentAccountOwner

func (o *ASEDSourceLinkSourceParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasMountBase

func (o *ASEDSourceLinkSourceParameters) HasMountBase() bool

HasMountBase returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasName

func (o *ASEDSourceLinkSourceParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasOpsPostSync

func (o *ASEDSourceLinkSourceParameters) HasOpsPostSync() bool

HasOpsPostSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasOpsPreSync

func (o *ASEDSourceLinkSourceParameters) HasOpsPreSync() bool

HasOpsPreSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasPostValidatedSync

func (o *ASEDSourceLinkSourceParameters) HasPostValidatedSync() bool

HasPostValidatedSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasPreValidatedSync

func (o *ASEDSourceLinkSourceParameters) HasPreValidatedSync() bool

HasPreValidatedSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasSourceHostUser

func (o *ASEDSourceLinkSourceParameters) HasSourceHostUser() bool

HasSourceHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasStagingHostUser

func (o *ASEDSourceLinkSourceParameters) HasStagingHostUser() bool

HasStagingHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasStagingRepository

func (o *ASEDSourceLinkSourceParameters) HasStagingRepository() bool

HasStagingRepository returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasSyncStrategy

func (o *ASEDSourceLinkSourceParameters) HasSyncStrategy() bool

HasSyncStrategy returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasTags

func (o *ASEDSourceLinkSourceParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParameters) HasValidatedSyncMode

func (o *ASEDSourceLinkSourceParameters) HasValidatedSyncMode() bool

HasValidatedSyncMode returns a boolean if a field has been set.

func (ASEDSourceLinkSourceParameters) MarshalJSON

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

func (*ASEDSourceLinkSourceParameters) SetAseBackupFiles

func (o *ASEDSourceLinkSourceParameters) SetAseBackupFiles(v []string)

SetAseBackupFiles gets a reference to the given []string and assigns it to the AseBackupFiles field.

func (*ASEDSourceLinkSourceParameters) SetBackupHost

func (o *ASEDSourceLinkSourceParameters) SetBackupHost(v string)

SetBackupHost gets a reference to the given string and assigns it to the BackupHost field.

func (*ASEDSourceLinkSourceParameters) SetBackupHostUser

func (o *ASEDSourceLinkSourceParameters) SetBackupHostUser(v string)

SetBackupHostUser gets a reference to the given string and assigns it to the BackupHostUser field.

func (*ASEDSourceLinkSourceParameters) SetBackupServerName

func (o *ASEDSourceLinkSourceParameters) SetBackupServerName(v string)

SetBackupServerName gets a reference to the given string and assigns it to the BackupServerName field.

func (*ASEDSourceLinkSourceParameters) SetDbAzureVaultName

func (o *ASEDSourceLinkSourceParameters) SetDbAzureVaultName(v string)

SetDbAzureVaultName gets a reference to the given string and assigns it to the DbAzureVaultName field.

func (*ASEDSourceLinkSourceParameters) SetDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) SetDbAzureVaultSecretKey(v string)

SetDbAzureVaultSecretKey gets a reference to the given string and assigns it to the DbAzureVaultSecretKey field.

func (*ASEDSourceLinkSourceParameters) SetDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) SetDbAzureVaultUsernameKey(v string)

SetDbAzureVaultUsernameKey gets a reference to the given string and assigns it to the DbAzureVaultUsernameKey field.

func (*ASEDSourceLinkSourceParameters) SetDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParameters) SetDbCyberarkVaultQueryString(v string)

SetDbCyberarkVaultQueryString gets a reference to the given string and assigns it to the DbCyberarkVaultQueryString field.

func (*ASEDSourceLinkSourceParameters) SetDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParameters) SetDbHashicorpVaultEngine(v string)

SetDbHashicorpVaultEngine gets a reference to the given string and assigns it to the DbHashicorpVaultEngine field.

func (*ASEDSourceLinkSourceParameters) SetDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParameters) SetDbHashicorpVaultSecretKey(v string)

SetDbHashicorpVaultSecretKey gets a reference to the given string and assigns it to the DbHashicorpVaultSecretKey field.

func (*ASEDSourceLinkSourceParameters) SetDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParameters) SetDbHashicorpVaultSecretPath(v string)

SetDbHashicorpVaultSecretPath gets a reference to the given string and assigns it to the DbHashicorpVaultSecretPath field.

func (*ASEDSourceLinkSourceParameters) SetDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParameters) SetDbHashicorpVaultUsernameKey(v string)

SetDbHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the DbHashicorpVaultUsernameKey field.

func (*ASEDSourceLinkSourceParameters) SetDbPassword

func (o *ASEDSourceLinkSourceParameters) SetDbPassword(v string)

SetDbPassword gets a reference to the given string and assigns it to the DbPassword field.

func (*ASEDSourceLinkSourceParameters) SetDbUser

func (o *ASEDSourceLinkSourceParameters) SetDbUser(v string)

SetDbUser gets a reference to the given string and assigns it to the DbUser field.

func (*ASEDSourceLinkSourceParameters) SetDbVault

func (o *ASEDSourceLinkSourceParameters) SetDbVault(v string)

SetDbVault gets a reference to the given string and assigns it to the DbVault field.

func (*ASEDSourceLinkSourceParameters) SetDescription

func (o *ASEDSourceLinkSourceParameters) SetDescription(v string)

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

func (*ASEDSourceLinkSourceParameters) SetDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParameters) SetDropAndRecreateDevices(v bool)

SetDropAndRecreateDevices gets a reference to the given bool and assigns it to the DropAndRecreateDevices field.

func (*ASEDSourceLinkSourceParameters) SetDumpCredentials

func (o *ASEDSourceLinkSourceParameters) SetDumpCredentials(v string)

SetDumpCredentials gets a reference to the given string and assigns it to the DumpCredentials field.

func (*ASEDSourceLinkSourceParameters) SetDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParameters) SetDumpHistoryFileEnabled(v bool)

SetDumpHistoryFileEnabled gets a reference to the given bool and assigns it to the DumpHistoryFileEnabled field.

func (*ASEDSourceLinkSourceParameters) SetExternalFilePath

func (o *ASEDSourceLinkSourceParameters) SetExternalFilePath(v string)

SetExternalFilePath gets a reference to the given string and assigns it to the ExternalFilePath field.

func (*ASEDSourceLinkSourceParameters) SetGroupId

func (o *ASEDSourceLinkSourceParameters) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*ASEDSourceLinkSourceParameters) SetLoadBackupPath

func (o *ASEDSourceLinkSourceParameters) SetLoadBackupPath(v string)

SetLoadBackupPath sets field value

func (*ASEDSourceLinkSourceParameters) SetLogSyncEnabled

func (o *ASEDSourceLinkSourceParameters) SetLogSyncEnabled(v bool)

SetLogSyncEnabled gets a reference to the given bool and assigns it to the LogSyncEnabled field.

func (*ASEDSourceLinkSourceParameters) SetMakeCurrentAccountOwner

func (o *ASEDSourceLinkSourceParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ASEDSourceLinkSourceParameters) SetMountBase

func (o *ASEDSourceLinkSourceParameters) SetMountBase(v string)

SetMountBase gets a reference to the given string and assigns it to the MountBase field.

func (*ASEDSourceLinkSourceParameters) SetName

func (o *ASEDSourceLinkSourceParameters) SetName(v string)

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

func (*ASEDSourceLinkSourceParameters) SetOpsPostSync

func (o *ASEDSourceLinkSourceParameters) SetOpsPostSync(v []SourceOperation)

SetOpsPostSync gets a reference to the given []SourceOperation and assigns it to the OpsPostSync field.

func (*ASEDSourceLinkSourceParameters) SetOpsPreSync

func (o *ASEDSourceLinkSourceParameters) SetOpsPreSync(v []SourceOperation)

SetOpsPreSync gets a reference to the given []SourceOperation and assigns it to the OpsPreSync field.

func (*ASEDSourceLinkSourceParameters) SetPostValidatedSync

func (o *ASEDSourceLinkSourceParameters) SetPostValidatedSync(v []SourceOperation)

SetPostValidatedSync gets a reference to the given []SourceOperation and assigns it to the PostValidatedSync field.

func (*ASEDSourceLinkSourceParameters) SetPreValidatedSync

func (o *ASEDSourceLinkSourceParameters) SetPreValidatedSync(v []SourceOperation)

SetPreValidatedSync gets a reference to the given []SourceOperation and assigns it to the PreValidatedSync field.

func (*ASEDSourceLinkSourceParameters) SetSourceHostUser

func (o *ASEDSourceLinkSourceParameters) SetSourceHostUser(v string)

SetSourceHostUser gets a reference to the given string and assigns it to the SourceHostUser field.

func (*ASEDSourceLinkSourceParameters) SetSourceId

func (o *ASEDSourceLinkSourceParameters) SetSourceId(v string)

SetSourceId sets field value

func (*ASEDSourceLinkSourceParameters) SetStagingHostUser

func (o *ASEDSourceLinkSourceParameters) SetStagingHostUser(v string)

SetStagingHostUser gets a reference to the given string and assigns it to the StagingHostUser field.

func (*ASEDSourceLinkSourceParameters) SetStagingRepository

func (o *ASEDSourceLinkSourceParameters) SetStagingRepository(v string)

SetStagingRepository gets a reference to the given string and assigns it to the StagingRepository field.

func (*ASEDSourceLinkSourceParameters) SetSyncStrategy

func (o *ASEDSourceLinkSourceParameters) SetSyncStrategy(v string)

SetSyncStrategy gets a reference to the given string and assigns it to the SyncStrategy field.

func (*ASEDSourceLinkSourceParameters) SetTags

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

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

func (*ASEDSourceLinkSourceParameters) SetValidatedSyncMode

func (o *ASEDSourceLinkSourceParameters) SetValidatedSyncMode(v string)

SetValidatedSyncMode gets a reference to the given string and assigns it to the ValidatedSyncMode field.

func (ASEDSourceLinkSourceParameters) ToMap

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

type ASEDSourceLinkSourceParametersAllOf

type ASEDSourceLinkSourceParametersAllOf struct {
	// External file path.
	ExternalFilePath *string `json:"external_file_path,omitempty"`
	// The base mount point to use for the NFS mounts.
	MountBase *string `json:"mount_base,omitempty"`
	// Source database backup location.
	LoadBackupPath *string `json:"load_backup_path,omitempty"`
	// Name of the backup server instance.
	BackupServerName *string `json:"backup_server_name,omitempty"`
	// OS user for the host where the backup server is located.
	BackupHostUser *string `json:"backup_host_user,omitempty"`
	// Host environment where the backup server is located.
	BackupHost *string `json:"backup_host,omitempty"`
	// The password credential for the source DB user.
	DumpCredentials *string `json:"dump_credentials,omitempty"`
	// ID or user reference of the host OS user to use for linking.
	SourceHostUser *string `json:"source_host_user,omitempty"`
	// The user name for the source DB user.
	DbUser *string `json:"db_user,omitempty"`
	// Password for the database user.
	DbPassword *string `json:"db_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials.
	DbVault *string `json:"db_vault,omitempty"`
	// Vault engine name where the credential is stored.
	DbHashicorpVaultEngine *string `json:"db_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	DbHashicorpVaultSecretPath *string `json:"db_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store.
	DbHashicorpVaultUsernameKey *string `json:"db_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store.
	DbHashicorpVaultSecretKey *string `json:"db_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name.
	DbAzureVaultName *string `json:"db_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store.
	DbAzureVaultUsernameKey *string `json:"db_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store.
	DbAzureVaultSecretKey *string `json:"db_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	DbCyberarkVaultQueryString *string `json:"db_cyberark_vault_query_string,omitempty"`
	// The SAP ASE instance on the staging environment that we want to use for validated sync.
	StagingRepository *string `json:"staging_repository,omitempty"`
	// Information about the host OS user on the staging environment to use for linking.
	StagingHostUser *string `json:"staging_host_user,omitempty"`
	// Information about the host OS user on the staging environment to use for linking.
	ValidatedSyncMode *string `json:"validated_sync_mode,omitempty"`
	// Specifies if Dump History File is enabled for backup history detection.
	DumpHistoryFileEnabled *bool `json:"dump_history_file_enabled,omitempty"`
	// If this parameter is set to true, it will drop the older devices and create new devices during manual sync operations instead of trying to remap the devices. This might increase the space utilization on Delphix Engine.
	DropAndRecreateDevices *bool `json:"drop_and_recreate_devices,omitempty"`
	// Determines how the Delphix Engine will take a backup: * `latest_backup` - Use the most recent backup. * `new_backup` - Delphix will take a new backup of your source database. * `specific_backup` - Use a specific backup. Using this option requires setting `ase_backup_files`. Default is `new_backup`.
	SyncStrategy *string `json:"sync_strategy,omitempty"`
	// The location of the full backup of the source database to restore from. The backup should be present in the shared backup location for the source database.
	AseBackupFiles []string `json:"ase_backup_files,omitempty"`
	// Operations to perform on the staging source before performing a validated sync.
	PreValidatedSync []SourceOperation `json:"pre_validated_sync,omitempty"`
	// Operations to perform on the staging source after performing a validated sync.
	PostValidatedSync []SourceOperation `json:"post_validated_sync,omitempty"`
}

ASEDSourceLinkSourceParametersAllOf struct for ASEDSourceLinkSourceParametersAllOf

func NewASEDSourceLinkSourceParametersAllOf

func NewASEDSourceLinkSourceParametersAllOf() *ASEDSourceLinkSourceParametersAllOf

NewASEDSourceLinkSourceParametersAllOf instantiates a new ASEDSourceLinkSourceParametersAllOf 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 NewASEDSourceLinkSourceParametersAllOfWithDefaults

func NewASEDSourceLinkSourceParametersAllOfWithDefaults() *ASEDSourceLinkSourceParametersAllOf

NewASEDSourceLinkSourceParametersAllOfWithDefaults instantiates a new ASEDSourceLinkSourceParametersAllOf 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 (*ASEDSourceLinkSourceParametersAllOf) GetAseBackupFiles

func (o *ASEDSourceLinkSourceParametersAllOf) GetAseBackupFiles() []string

GetAseBackupFiles returns the AseBackupFiles field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetAseBackupFilesOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetAseBackupFilesOk() ([]string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupHost

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupHost() string

GetBackupHost returns the BackupHost field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupHostOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupHostOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupHostUser() string

GetBackupHostUser returns the BackupHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupHostUserOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupServerName

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupServerName() string

GetBackupServerName returns the BackupServerName field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetBackupServerNameOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetBackupServerNameOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultName

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultName() string

GetDbAzureVaultName returns the DbAzureVaultName field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultNameOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultNameOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultSecretKey() string

GetDbAzureVaultSecretKey returns the DbAzureVaultSecretKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultSecretKeyOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultSecretKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultUsernameKey() string

GetDbAzureVaultUsernameKey returns the DbAzureVaultUsernameKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultUsernameKeyOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbAzureVaultUsernameKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbCyberarkVaultQueryString() string

GetDbCyberarkVaultQueryString returns the DbCyberarkVaultQueryString field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbCyberarkVaultQueryStringOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbCyberarkVaultQueryStringOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultEngine() string

GetDbHashicorpVaultEngine returns the DbHashicorpVaultEngine field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultEngineOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultEngineOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretKey() string

GetDbHashicorpVaultSecretKey returns the DbHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretKeyOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretPath() string

GetDbHashicorpVaultSecretPath returns the DbHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretPathOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultSecretPathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultUsernameKey() string

GetDbHashicorpVaultUsernameKey returns the DbHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultUsernameKeyOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbPassword

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbPassword() string

GetDbPassword returns the DbPassword field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbPasswordOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbPasswordOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbUser

GetDbUser returns the DbUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbUserOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDbVault

GetDbVault returns the DbVault field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDbVaultOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDbVaultOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParametersAllOf) GetDropAndRecreateDevices() bool

GetDropAndRecreateDevices returns the DropAndRecreateDevices field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDropAndRecreateDevicesOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDropAndRecreateDevicesOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDumpCredentials

func (o *ASEDSourceLinkSourceParametersAllOf) GetDumpCredentials() string

GetDumpCredentials returns the DumpCredentials field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDumpCredentialsOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDumpCredentialsOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParametersAllOf) GetDumpHistoryFileEnabled() bool

GetDumpHistoryFileEnabled returns the DumpHistoryFileEnabled field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetDumpHistoryFileEnabledOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetDumpHistoryFileEnabledOk() (*bool, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetExternalFilePath

func (o *ASEDSourceLinkSourceParametersAllOf) GetExternalFilePath() string

GetExternalFilePath returns the ExternalFilePath field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetExternalFilePathOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetExternalFilePathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetLoadBackupPath

func (o *ASEDSourceLinkSourceParametersAllOf) GetLoadBackupPath() string

GetLoadBackupPath returns the LoadBackupPath field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetLoadBackupPathOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetLoadBackupPathOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetMountBase

func (o *ASEDSourceLinkSourceParametersAllOf) GetMountBase() string

GetMountBase returns the MountBase field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetMountBaseOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetMountBaseOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetPostValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) GetPostValidatedSync() []SourceOperation

GetPostValidatedSync returns the PostValidatedSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetPostValidatedSyncOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetPostValidatedSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetPreValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) GetPreValidatedSync() []SourceOperation

GetPreValidatedSync returns the PreValidatedSync field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetPreValidatedSyncOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetPreValidatedSyncOk() ([]SourceOperation, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetSourceHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) GetSourceHostUser() string

GetSourceHostUser returns the SourceHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetSourceHostUserOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetSourceHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetStagingHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) GetStagingHostUser() string

GetStagingHostUser returns the StagingHostUser field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetStagingHostUserOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetStagingHostUserOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetStagingRepository

func (o *ASEDSourceLinkSourceParametersAllOf) GetStagingRepository() string

GetStagingRepository returns the StagingRepository field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetStagingRepositoryOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetStagingRepositoryOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetSyncStrategy

func (o *ASEDSourceLinkSourceParametersAllOf) GetSyncStrategy() string

GetSyncStrategy returns the SyncStrategy field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetSyncStrategyOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetSyncStrategyOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) GetValidatedSyncMode

func (o *ASEDSourceLinkSourceParametersAllOf) GetValidatedSyncMode() string

GetValidatedSyncMode returns the ValidatedSyncMode field value if set, zero value otherwise.

func (*ASEDSourceLinkSourceParametersAllOf) GetValidatedSyncModeOk

func (o *ASEDSourceLinkSourceParametersAllOf) GetValidatedSyncModeOk() (*string, bool)

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

func (*ASEDSourceLinkSourceParametersAllOf) HasAseBackupFiles

func (o *ASEDSourceLinkSourceParametersAllOf) HasAseBackupFiles() bool

HasAseBackupFiles returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasBackupHost

func (o *ASEDSourceLinkSourceParametersAllOf) HasBackupHost() bool

HasBackupHost returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasBackupHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) HasBackupHostUser() bool

HasBackupHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasBackupServerName

func (o *ASEDSourceLinkSourceParametersAllOf) HasBackupServerName() bool

HasBackupServerName returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultName

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultName() bool

HasDbAzureVaultName returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultSecretKey() bool

HasDbAzureVaultSecretKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbAzureVaultUsernameKey() bool

HasDbAzureVaultUsernameKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbCyberarkVaultQueryString() bool

HasDbCyberarkVaultQueryString returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultEngine() bool

HasDbHashicorpVaultEngine returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultSecretKey() bool

HasDbHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultSecretPath() bool

HasDbHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbHashicorpVaultUsernameKey() bool

HasDbHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbPassword

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbPassword() bool

HasDbPassword returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbUser

HasDbUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDbVault

func (o *ASEDSourceLinkSourceParametersAllOf) HasDbVault() bool

HasDbVault returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParametersAllOf) HasDropAndRecreateDevices() bool

HasDropAndRecreateDevices returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDumpCredentials

func (o *ASEDSourceLinkSourceParametersAllOf) HasDumpCredentials() bool

HasDumpCredentials returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParametersAllOf) HasDumpHistoryFileEnabled() bool

HasDumpHistoryFileEnabled returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasExternalFilePath

func (o *ASEDSourceLinkSourceParametersAllOf) HasExternalFilePath() bool

HasExternalFilePath returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasLoadBackupPath

func (o *ASEDSourceLinkSourceParametersAllOf) HasLoadBackupPath() bool

HasLoadBackupPath returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasMountBase

func (o *ASEDSourceLinkSourceParametersAllOf) HasMountBase() bool

HasMountBase returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasPostValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) HasPostValidatedSync() bool

HasPostValidatedSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasPreValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) HasPreValidatedSync() bool

HasPreValidatedSync returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasSourceHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) HasSourceHostUser() bool

HasSourceHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasStagingHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) HasStagingHostUser() bool

HasStagingHostUser returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasStagingRepository

func (o *ASEDSourceLinkSourceParametersAllOf) HasStagingRepository() bool

HasStagingRepository returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasSyncStrategy

func (o *ASEDSourceLinkSourceParametersAllOf) HasSyncStrategy() bool

HasSyncStrategy returns a boolean if a field has been set.

func (*ASEDSourceLinkSourceParametersAllOf) HasValidatedSyncMode

func (o *ASEDSourceLinkSourceParametersAllOf) HasValidatedSyncMode() bool

HasValidatedSyncMode returns a boolean if a field has been set.

func (ASEDSourceLinkSourceParametersAllOf) MarshalJSON

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

func (*ASEDSourceLinkSourceParametersAllOf) SetAseBackupFiles

func (o *ASEDSourceLinkSourceParametersAllOf) SetAseBackupFiles(v []string)

SetAseBackupFiles gets a reference to the given []string and assigns it to the AseBackupFiles field.

func (*ASEDSourceLinkSourceParametersAllOf) SetBackupHost

func (o *ASEDSourceLinkSourceParametersAllOf) SetBackupHost(v string)

SetBackupHost gets a reference to the given string and assigns it to the BackupHost field.

func (*ASEDSourceLinkSourceParametersAllOf) SetBackupHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) SetBackupHostUser(v string)

SetBackupHostUser gets a reference to the given string and assigns it to the BackupHostUser field.

func (*ASEDSourceLinkSourceParametersAllOf) SetBackupServerName

func (o *ASEDSourceLinkSourceParametersAllOf) SetBackupServerName(v string)

SetBackupServerName gets a reference to the given string and assigns it to the BackupServerName field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultName

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultName(v string)

SetDbAzureVaultName gets a reference to the given string and assigns it to the DbAzureVaultName field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultSecretKey(v string)

SetDbAzureVaultSecretKey gets a reference to the given string and assigns it to the DbAzureVaultSecretKey field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbAzureVaultUsernameKey(v string)

SetDbAzureVaultUsernameKey gets a reference to the given string and assigns it to the DbAzureVaultUsernameKey field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbCyberarkVaultQueryString

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbCyberarkVaultQueryString(v string)

SetDbCyberarkVaultQueryString gets a reference to the given string and assigns it to the DbCyberarkVaultQueryString field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultEngine

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultEngine(v string)

SetDbHashicorpVaultEngine gets a reference to the given string and assigns it to the DbHashicorpVaultEngine field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultSecretKey

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultSecretKey(v string)

SetDbHashicorpVaultSecretKey gets a reference to the given string and assigns it to the DbHashicorpVaultSecretKey field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultSecretPath

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultSecretPath(v string)

SetDbHashicorpVaultSecretPath gets a reference to the given string and assigns it to the DbHashicorpVaultSecretPath field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultUsernameKey

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbHashicorpVaultUsernameKey(v string)

SetDbHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the DbHashicorpVaultUsernameKey field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbPassword

func (o *ASEDSourceLinkSourceParametersAllOf) SetDbPassword(v string)

SetDbPassword gets a reference to the given string and assigns it to the DbPassword field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbUser

SetDbUser gets a reference to the given string and assigns it to the DbUser field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDbVault

SetDbVault gets a reference to the given string and assigns it to the DbVault field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDropAndRecreateDevices

func (o *ASEDSourceLinkSourceParametersAllOf) SetDropAndRecreateDevices(v bool)

SetDropAndRecreateDevices gets a reference to the given bool and assigns it to the DropAndRecreateDevices field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDumpCredentials

func (o *ASEDSourceLinkSourceParametersAllOf) SetDumpCredentials(v string)

SetDumpCredentials gets a reference to the given string and assigns it to the DumpCredentials field.

func (*ASEDSourceLinkSourceParametersAllOf) SetDumpHistoryFileEnabled

func (o *ASEDSourceLinkSourceParametersAllOf) SetDumpHistoryFileEnabled(v bool)

SetDumpHistoryFileEnabled gets a reference to the given bool and assigns it to the DumpHistoryFileEnabled field.

func (*ASEDSourceLinkSourceParametersAllOf) SetExternalFilePath

func (o *ASEDSourceLinkSourceParametersAllOf) SetExternalFilePath(v string)

SetExternalFilePath gets a reference to the given string and assigns it to the ExternalFilePath field.

func (*ASEDSourceLinkSourceParametersAllOf) SetLoadBackupPath

func (o *ASEDSourceLinkSourceParametersAllOf) SetLoadBackupPath(v string)

SetLoadBackupPath gets a reference to the given string and assigns it to the LoadBackupPath field.

func (*ASEDSourceLinkSourceParametersAllOf) SetMountBase

func (o *ASEDSourceLinkSourceParametersAllOf) SetMountBase(v string)

SetMountBase gets a reference to the given string and assigns it to the MountBase field.

func (*ASEDSourceLinkSourceParametersAllOf) SetPostValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) SetPostValidatedSync(v []SourceOperation)

SetPostValidatedSync gets a reference to the given []SourceOperation and assigns it to the PostValidatedSync field.

func (*ASEDSourceLinkSourceParametersAllOf) SetPreValidatedSync

func (o *ASEDSourceLinkSourceParametersAllOf) SetPreValidatedSync(v []SourceOperation)

SetPreValidatedSync gets a reference to the given []SourceOperation and assigns it to the PreValidatedSync field.

func (*ASEDSourceLinkSourceParametersAllOf) SetSourceHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) SetSourceHostUser(v string)

SetSourceHostUser gets a reference to the given string and assigns it to the SourceHostUser field.

func (*ASEDSourceLinkSourceParametersAllOf) SetStagingHostUser

func (o *ASEDSourceLinkSourceParametersAllOf) SetStagingHostUser(v string)

SetStagingHostUser gets a reference to the given string and assigns it to the StagingHostUser field.

func (*ASEDSourceLinkSourceParametersAllOf) SetStagingRepository

func (o *ASEDSourceLinkSourceParametersAllOf) SetStagingRepository(v string)

SetStagingRepository gets a reference to the given string and assigns it to the StagingRepository field.

func (*ASEDSourceLinkSourceParametersAllOf) SetSyncStrategy

func (o *ASEDSourceLinkSourceParametersAllOf) SetSyncStrategy(v string)

SetSyncStrategy gets a reference to the given string and assigns it to the SyncStrategy field.

func (*ASEDSourceLinkSourceParametersAllOf) SetValidatedSyncMode

func (o *ASEDSourceLinkSourceParametersAllOf) SetValidatedSyncMode(v string)

SetValidatedSyncMode gets a reference to the given string and assigns it to the ValidatedSyncMode field.

func (ASEDSourceLinkSourceParametersAllOf) ToMap

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

type AccessGroup

type AccessGroup struct {
	// The Access group ID.
	Id *string `json:"id,omitempty"`
	// The Access group name
	Name string `json:"name"`
	// Indicates that this Access group defines the permissions of a single account, and thus account and account tags cannot be modified. Instead create a new Access group to manage permissions of multiple accounts.
	SingleAccount *bool `json:"single_account,omitempty"`
	// List of accounts ids included individually (as opposed to added by tags) in the Access group.
	AccountIds []int64 `json:"account_ids,omitempty"`
	// List of accounts ids included by tags in the Access group.
	TaggedAccountIds []int64 `json:"tagged_account_ids,omitempty"`
	// List of account tags. Accounts matching any of these tags will be automatically added to the Access group.
	AccountTags []Tag `json:"account_tags,omitempty"`
	// The Access group scopes.
	Scopes []AccessGroupScope `json:"scopes,omitempty"`
}

AccessGroup An Access group is the DCT mechanism to grant roles to accounts. Each account has its own Access Group which can be used to manage permissions for that account, and an unlimited number of other Access groups can be created to manage permissions by groups of accounts.

func NewAccessGroup

func NewAccessGroup(name string) *AccessGroup

NewAccessGroup instantiates a new AccessGroup 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 NewAccessGroupWithDefaults

func NewAccessGroupWithDefaults() *AccessGroup

NewAccessGroupWithDefaults instantiates a new AccessGroup 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 (*AccessGroup) GetAccountIds

func (o *AccessGroup) GetAccountIds() []int64

GetAccountIds returns the AccountIds field value if set, zero value otherwise.

func (*AccessGroup) GetAccountIdsOk

func (o *AccessGroup) GetAccountIdsOk() ([]int64, bool)

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

func (*AccessGroup) GetAccountTags

func (o *AccessGroup) GetAccountTags() []Tag

GetAccountTags returns the AccountTags field value if set, zero value otherwise.

func (*AccessGroup) GetAccountTagsOk

func (o *AccessGroup) GetAccountTagsOk() ([]Tag, bool)

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

func (*AccessGroup) GetId

func (o *AccessGroup) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AccessGroup) GetIdOk

func (o *AccessGroup) 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.

func (*AccessGroup) GetName

func (o *AccessGroup) GetName() string

GetName returns the Name field value

func (*AccessGroup) GetNameOk

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

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

func (*AccessGroup) GetScopes

func (o *AccessGroup) GetScopes() []AccessGroupScope

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*AccessGroup) GetScopesOk

func (o *AccessGroup) GetScopesOk() ([]AccessGroupScope, bool)

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

func (*AccessGroup) GetSingleAccount

func (o *AccessGroup) GetSingleAccount() bool

GetSingleAccount returns the SingleAccount field value if set, zero value otherwise.

func (*AccessGroup) GetSingleAccountOk

func (o *AccessGroup) GetSingleAccountOk() (*bool, bool)

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

func (*AccessGroup) GetTaggedAccountIds

func (o *AccessGroup) GetTaggedAccountIds() []int64

GetTaggedAccountIds returns the TaggedAccountIds field value if set, zero value otherwise.

func (*AccessGroup) GetTaggedAccountIdsOk

func (o *AccessGroup) GetTaggedAccountIdsOk() ([]int64, bool)

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

func (*AccessGroup) HasAccountIds

func (o *AccessGroup) HasAccountIds() bool

HasAccountIds returns a boolean if a field has been set.

func (*AccessGroup) HasAccountTags

func (o *AccessGroup) HasAccountTags() bool

HasAccountTags returns a boolean if a field has been set.

func (*AccessGroup) HasId

func (o *AccessGroup) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccessGroup) HasScopes

func (o *AccessGroup) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*AccessGroup) HasSingleAccount

func (o *AccessGroup) HasSingleAccount() bool

HasSingleAccount returns a boolean if a field has been set.

func (*AccessGroup) HasTaggedAccountIds

func (o *AccessGroup) HasTaggedAccountIds() bool

HasTaggedAccountIds returns a boolean if a field has been set.

func (AccessGroup) MarshalJSON

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

func (*AccessGroup) SetAccountIds

func (o *AccessGroup) SetAccountIds(v []int64)

SetAccountIds gets a reference to the given []int64 and assigns it to the AccountIds field.

func (*AccessGroup) SetAccountTags

func (o *AccessGroup) SetAccountTags(v []Tag)

SetAccountTags gets a reference to the given []Tag and assigns it to the AccountTags field.

func (*AccessGroup) SetId

func (o *AccessGroup) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AccessGroup) SetName

func (o *AccessGroup) SetName(v string)

SetName sets field value

func (*AccessGroup) SetScopes

func (o *AccessGroup) SetScopes(v []AccessGroupScope)

SetScopes gets a reference to the given []AccessGroupScope and assigns it to the Scopes field.

func (*AccessGroup) SetSingleAccount

func (o *AccessGroup) SetSingleAccount(v bool)

SetSingleAccount gets a reference to the given bool and assigns it to the SingleAccount field.

func (*AccessGroup) SetTaggedAccountIds

func (o *AccessGroup) SetTaggedAccountIds(v []int64)

SetTaggedAccountIds gets a reference to the given []int64 and assigns it to the TaggedAccountIds field.

func (AccessGroup) ToMap

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

type AccessGroupAccountIdsRequest

type AccessGroupAccountIdsRequest struct {
	AccountIds []int64 `json:"account_ids"`
}

AccessGroupAccountIdsRequest struct for AccessGroupAccountIdsRequest

func NewAccessGroupAccountIdsRequest

func NewAccessGroupAccountIdsRequest(accountIds []int64) *AccessGroupAccountIdsRequest

NewAccessGroupAccountIdsRequest instantiates a new AccessGroupAccountIdsRequest 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 NewAccessGroupAccountIdsRequestWithDefaults

func NewAccessGroupAccountIdsRequestWithDefaults() *AccessGroupAccountIdsRequest

NewAccessGroupAccountIdsRequestWithDefaults instantiates a new AccessGroupAccountIdsRequest 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 (*AccessGroupAccountIdsRequest) GetAccountIds

func (o *AccessGroupAccountIdsRequest) GetAccountIds() []int64

GetAccountIds returns the AccountIds field value

func (*AccessGroupAccountIdsRequest) GetAccountIdsOk

func (o *AccessGroupAccountIdsRequest) GetAccountIdsOk() ([]int64, bool)

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

func (AccessGroupAccountIdsRequest) MarshalJSON

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

func (*AccessGroupAccountIdsRequest) SetAccountIds

func (o *AccessGroupAccountIdsRequest) SetAccountIds(v []int64)

SetAccountIds sets field value

func (AccessGroupAccountIdsRequest) ToMap

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

type AccessGroupScope

type AccessGroupScope struct {
	// The Access group scope ID.
	Id *string `json:"id,omitempty"`
	// The Access group scope name.
	Name *string `json:"name,omitempty"`
	// The Access group role id.
	RoleId string `json:"role_id"`
	// Specifies the type of the scope. Scope of type SIMPLE would grant access to all DCT objects. Scope of type SCOPED would grant access to all objects based on objects and object-tags and permissions defined in linked role. Scope of type ADVANCED would grant access to DCT objects based on objects and object-tags and the individual permissions.
	ScopeType *string `json:"scope_type,omitempty"`
	// The permissions in this access group scope will be granted to all DCT objects tagged with tags matching this property. This is cumulative with objects defined in the 'objects' property, and mutually exclusive with scope_type 'SIMPLE'.
	ObjectTags []ScopeTag `json:"object_tags,omitempty"`
	// The permissions in this access group scope will be granted to all DCT objects with matching object id and object type, mutually exclusive with  scope_type 'SIMPLE'.
	Objects []ScopedObjectItem `json:"objects,omitempty"`
	// An array of always allowed permissions which can be used to specify object type and permission. An object with same object type and permission can not be added in 'objects' array.
	AlwaysAllowedPermissions []AlwaysAllowedPermission `json:"always_allowed_permissions,omitempty"`
}

AccessGroupScope An Access group scope allows a role to be granted to accounts in the Access group.

func NewAccessGroupScope

func NewAccessGroupScope(roleId string) *AccessGroupScope

NewAccessGroupScope instantiates a new AccessGroupScope 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 NewAccessGroupScopeWithDefaults

func NewAccessGroupScopeWithDefaults() *AccessGroupScope

NewAccessGroupScopeWithDefaults instantiates a new AccessGroupScope 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 (*AccessGroupScope) GetAlwaysAllowedPermissions

func (o *AccessGroupScope) GetAlwaysAllowedPermissions() []AlwaysAllowedPermission

GetAlwaysAllowedPermissions returns the AlwaysAllowedPermissions field value if set, zero value otherwise.

func (*AccessGroupScope) GetAlwaysAllowedPermissionsOk

func (o *AccessGroupScope) GetAlwaysAllowedPermissionsOk() ([]AlwaysAllowedPermission, bool)

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

func (*AccessGroupScope) GetId

func (o *AccessGroupScope) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AccessGroupScope) GetIdOk

func (o *AccessGroupScope) 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.

func (*AccessGroupScope) GetName

func (o *AccessGroupScope) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AccessGroupScope) GetNameOk

func (o *AccessGroupScope) 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.

func (*AccessGroupScope) GetObjectTags

func (o *AccessGroupScope) GetObjectTags() []ScopeTag

GetObjectTags returns the ObjectTags field value if set, zero value otherwise.

func (*AccessGroupScope) GetObjectTagsOk

func (o *AccessGroupScope) GetObjectTagsOk() ([]ScopeTag, bool)

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

func (*AccessGroupScope) GetObjects

func (o *AccessGroupScope) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value if set, zero value otherwise.

func (*AccessGroupScope) GetObjectsOk

func (o *AccessGroupScope) GetObjectsOk() ([]ScopedObjectItem, bool)

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

func (*AccessGroupScope) GetRoleId

func (o *AccessGroupScope) GetRoleId() string

GetRoleId returns the RoleId field value

func (*AccessGroupScope) GetRoleIdOk

func (o *AccessGroupScope) GetRoleIdOk() (*string, bool)

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

func (*AccessGroupScope) GetScopeType

func (o *AccessGroupScope) GetScopeType() string

GetScopeType returns the ScopeType field value if set, zero value otherwise.

func (*AccessGroupScope) GetScopeTypeOk

func (o *AccessGroupScope) GetScopeTypeOk() (*string, bool)

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

func (*AccessGroupScope) HasAlwaysAllowedPermissions

func (o *AccessGroupScope) HasAlwaysAllowedPermissions() bool

HasAlwaysAllowedPermissions returns a boolean if a field has been set.

func (*AccessGroupScope) HasId

func (o *AccessGroupScope) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccessGroupScope) HasName

func (o *AccessGroupScope) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccessGroupScope) HasObjectTags

func (o *AccessGroupScope) HasObjectTags() bool

HasObjectTags returns a boolean if a field has been set.

func (*AccessGroupScope) HasObjects

func (o *AccessGroupScope) HasObjects() bool

HasObjects returns a boolean if a field has been set.

func (*AccessGroupScope) HasScopeType

func (o *AccessGroupScope) HasScopeType() bool

HasScopeType returns a boolean if a field has been set.

func (AccessGroupScope) MarshalJSON

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

func (*AccessGroupScope) SetAlwaysAllowedPermissions

func (o *AccessGroupScope) SetAlwaysAllowedPermissions(v []AlwaysAllowedPermission)

SetAlwaysAllowedPermissions gets a reference to the given []AlwaysAllowedPermission and assigns it to the AlwaysAllowedPermissions field.

func (*AccessGroupScope) SetId

func (o *AccessGroupScope) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AccessGroupScope) SetName

func (o *AccessGroupScope) SetName(v string)

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

func (*AccessGroupScope) SetObjectTags

func (o *AccessGroupScope) SetObjectTags(v []ScopeTag)

SetObjectTags gets a reference to the given []ScopeTag and assigns it to the ObjectTags field.

func (*AccessGroupScope) SetObjects

func (o *AccessGroupScope) SetObjects(v []ScopedObjectItem)

SetObjects gets a reference to the given []ScopedObjectItem and assigns it to the Objects field.

func (*AccessGroupScope) SetRoleId

func (o *AccessGroupScope) SetRoleId(v string)

SetRoleId sets field value

func (*AccessGroupScope) SetScopeType

func (o *AccessGroupScope) SetScopeType(v string)

SetScopeType gets a reference to the given string and assigns it to the ScopeType field.

func (AccessGroupScope) ToMap

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

type AccessGroupScopesRequest

type AccessGroupScopesRequest struct {
	Scopes []AccessGroupScope `json:"scopes"`
}

AccessGroupScopesRequest struct for AccessGroupScopesRequest

func NewAccessGroupScopesRequest

func NewAccessGroupScopesRequest(scopes []AccessGroupScope) *AccessGroupScopesRequest

NewAccessGroupScopesRequest instantiates a new AccessGroupScopesRequest 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 NewAccessGroupScopesRequestWithDefaults

func NewAccessGroupScopesRequestWithDefaults() *AccessGroupScopesRequest

NewAccessGroupScopesRequestWithDefaults instantiates a new AccessGroupScopesRequest 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 (*AccessGroupScopesRequest) GetScopes

func (o *AccessGroupScopesRequest) GetScopes() []AccessGroupScope

GetScopes returns the Scopes field value

func (*AccessGroupScopesRequest) GetScopesOk

func (o *AccessGroupScopesRequest) GetScopesOk() ([]AccessGroupScope, bool)

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

func (AccessGroupScopesRequest) MarshalJSON

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

func (*AccessGroupScopesRequest) SetScopes

func (o *AccessGroupScopesRequest) SetScopes(v []AccessGroupScope)

SetScopes sets field value

func (AccessGroupScopesRequest) ToMap

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

type AccessGroupUpdateParameters

type AccessGroupUpdateParameters struct {
	// The Access group name
	Name *string `json:"name,omitempty"`
}

AccessGroupUpdateParameters struct for AccessGroupUpdateParameters

func NewAccessGroupUpdateParameters

func NewAccessGroupUpdateParameters() *AccessGroupUpdateParameters

NewAccessGroupUpdateParameters instantiates a new AccessGroupUpdateParameters 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 NewAccessGroupUpdateParametersWithDefaults

func NewAccessGroupUpdateParametersWithDefaults() *AccessGroupUpdateParameters

NewAccessGroupUpdateParametersWithDefaults instantiates a new AccessGroupUpdateParameters 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 (*AccessGroupUpdateParameters) GetName

func (o *AccessGroupUpdateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AccessGroupUpdateParameters) GetNameOk

func (o *AccessGroupUpdateParameters) 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.

func (*AccessGroupUpdateParameters) HasName

func (o *AccessGroupUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (AccessGroupUpdateParameters) MarshalJSON

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

func (*AccessGroupUpdateParameters) SetName

func (o *AccessGroupUpdateParameters) SetName(v string)

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

func (AccessGroupUpdateParameters) ToMap

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

type Account

type Account struct {
	// Numeric ID of the Account.
	Id *int64 `json:"id,omitempty"`
	// The unique ID which is used to identify the identity of an API request. The web server (nginx) configuration must be configured so as to include the external ID as the value of the X_CLIENT_ID HTTP request header when requests are proxied. For OAuth2/JWT based authentication, this typically corresponds to a value extracted from the JWT, uniquely identifying the Account.
	ApiClientId *string `json:"api_client_id,omitempty"`
	// An optional first name for the Account.
	FirstName *string `json:"first_name,omitempty"`
	// An optional last name for the Account.
	LastName *string `json:"last_name,omitempty"`
	// An optional email for the Account.
	Email *string `json:"email,omitempty"`
	// The username for username/password authentication. This can also be used to provide an optional logical name for the Account.
	Username *string `json:"username,omitempty"`
	// This value will be used for linking this account to an LDAP user when authenticated with the same LDAP principal. When accounts authenticate with LDAP, an LDAP principal value is calculated based on the username, msad_domain_name, search_base and username_pattern.
	LdapPrincipal *string `json:"ldap_principal,omitempty"`
	// last time this account made a (successful or failed) API call. Note that updates to this property are asynchronous and make take some time to be reflected.
	LastAccessTime *time.Time `json:"last_access_time,omitempty"`
	// Creation time of this Account. This value is null for accounts created prior to version 9.0.0 of the product.
	CreationTime *time.Time `json:"creation_time,omitempty"`
	// Access group scopes associated with this account.
	EffectiveScopes []EffectiveScope `json:"effective_scopes,omitempty"`
	// The tags to be created for this Account.
	Tags []Tag `json:"tags,omitempty"`
	// Whether this account can be used to make API calls.
	Enabled *bool `json:"enabled,omitempty"`
}

Account struct for Account

func NewAccount

func NewAccount() *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) GetApiClientId

func (o *Account) GetApiClientId() string

GetApiClientId returns the ApiClientId field value if set, zero value otherwise.

func (*Account) GetApiClientIdOk

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

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

func (*Account) GetCreationTime

func (o *Account) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Account) GetCreationTimeOk

func (o *Account) GetCreationTimeOk() (*time.Time, bool)

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

func (*Account) GetEffectiveScopes

func (o *Account) GetEffectiveScopes() []EffectiveScope

GetEffectiveScopes returns the EffectiveScopes field value if set, zero value otherwise.

func (*Account) GetEffectiveScopesOk

func (o *Account) GetEffectiveScopesOk() ([]EffectiveScope, bool)

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

func (*Account) GetEmail

func (o *Account) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*Account) GetEmailOk

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

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

func (*Account) GetEnabled

func (o *Account) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*Account) GetEnabledOk

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

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

func (*Account) GetFirstName

func (o *Account) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*Account) GetFirstNameOk

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

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

func (*Account) GetId

func (o *Account) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*Account) GetIdOk

func (o *Account) GetIdOk() (*int64, 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.

func (*Account) GetLastAccessTime

func (o *Account) GetLastAccessTime() time.Time

GetLastAccessTime returns the LastAccessTime field value if set, zero value otherwise.

func (*Account) GetLastAccessTimeOk

func (o *Account) GetLastAccessTimeOk() (*time.Time, bool)

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

func (*Account) GetLastName

func (o *Account) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*Account) GetLastNameOk

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

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

func (*Account) GetLdapPrincipal

func (o *Account) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*Account) GetLdapPrincipalOk

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

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

func (*Account) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*Account) GetTagsOk

func (o *Account) 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.

func (*Account) GetUsername

func (o *Account) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*Account) GetUsernameOk

func (o *Account) 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.

func (*Account) HasApiClientId

func (o *Account) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*Account) HasCreationTime

func (o *Account) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Account) HasEffectiveScopes

func (o *Account) HasEffectiveScopes() bool

HasEffectiveScopes returns a boolean if a field has been set.

func (*Account) HasEmail

func (o *Account) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Account) HasEnabled

func (o *Account) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*Account) HasFirstName

func (o *Account) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*Account) HasId

func (o *Account) HasId() bool

HasId returns a boolean if a field has been set.

func (*Account) HasLastAccessTime

func (o *Account) HasLastAccessTime() bool

HasLastAccessTime returns a boolean if a field has been set.

func (*Account) HasLastName

func (o *Account) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*Account) HasLdapPrincipal

func (o *Account) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*Account) HasTags

func (o *Account) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Account) HasUsername

func (o *Account) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (Account) MarshalJSON

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

func (*Account) SetApiClientId

func (o *Account) SetApiClientId(v string)

SetApiClientId gets a reference to the given string and assigns it to the ApiClientId field.

func (*Account) SetCreationTime

func (o *Account) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Account) SetEffectiveScopes

func (o *Account) SetEffectiveScopes(v []EffectiveScope)

SetEffectiveScopes gets a reference to the given []EffectiveScope and assigns it to the EffectiveScopes field.

func (*Account) SetEmail

func (o *Account) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*Account) SetEnabled

func (o *Account) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*Account) SetFirstName

func (o *Account) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*Account) SetId

func (o *Account) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*Account) SetLastAccessTime

func (o *Account) SetLastAccessTime(v time.Time)

SetLastAccessTime gets a reference to the given time.Time and assigns it to the LastAccessTime field.

func (*Account) SetLastName

func (o *Account) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*Account) SetLdapPrincipal

func (o *Account) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*Account) SetTags

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

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

func (*Account) SetUsername

func (o *Account) SetUsername(v string)

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

func (Account) ToMap

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

type AccountCreateParameter

type AccountCreateParameter struct {
	// Whether the created account must be granted to admin role.
	IsAdmin *bool `json:"is_admin,omitempty"`
	// Whether an API key must be generated for this Account. This must be set if the Account will be used for API key based authentication, and unset otherwise.
	GenerateApiKey *bool `json:"generate_api_key,omitempty"`
	// The unique ID which is used to identify the identity of an API request. The web server (nginx) configuration must be configured so as to include the external ID as the value of the X_CLIENT_ID HTTP request header when requests are proxied. If this value isn't set, the application will automatically generate one. For OAuth2/JWT based authentication, this typically corresponds to a value extracted from the JWT, uniquely identifying the Account.
	ApiClientId *string `json:"api_client_id,omitempty"`
	// An optional first name for the Account.
	FirstName *string `json:"first_name,omitempty"`
	// An optional last name for the Account.
	LastName *string `json:"last_name,omitempty"`
	// An optional email for the Account.
	Email *string `json:"email,omitempty"`
	// The username for username/password authentication. This can also be used to provide an optional logical name for the Account.
	Username *string `json:"username,omitempty"`
	// The password for username/password authentication.
	Password *string `json:"password,omitempty"`
	// This value will be used for linking this account to an LDAP user when authenticated with the same LDAP principal. When accounts authenticate with LDAP, an LDAP principal value is calculated based on the username, msad_domain_name, search_base and username_pattern.
	LdapPrincipal *string `json:"ldap_principal,omitempty"`
	// The tags to be created for this Account.
	Tags []Tag `json:"tags,omitempty"`
}

AccountCreateParameter struct for AccountCreateParameter

func NewAccountCreateParameter

func NewAccountCreateParameter() *AccountCreateParameter

NewAccountCreateParameter instantiates a new AccountCreateParameter 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 NewAccountCreateParameterWithDefaults

func NewAccountCreateParameterWithDefaults() *AccountCreateParameter

NewAccountCreateParameterWithDefaults instantiates a new AccountCreateParameter 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 (*AccountCreateParameter) GetApiClientId

func (o *AccountCreateParameter) GetApiClientId() string

GetApiClientId returns the ApiClientId field value if set, zero value otherwise.

func (*AccountCreateParameter) GetApiClientIdOk

func (o *AccountCreateParameter) GetApiClientIdOk() (*string, bool)

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

func (*AccountCreateParameter) GetEmail

func (o *AccountCreateParameter) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*AccountCreateParameter) GetEmailOk

func (o *AccountCreateParameter) GetEmailOk() (*string, bool)

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

func (*AccountCreateParameter) GetFirstName

func (o *AccountCreateParameter) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*AccountCreateParameter) GetFirstNameOk

func (o *AccountCreateParameter) GetFirstNameOk() (*string, bool)

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

func (*AccountCreateParameter) GetGenerateApiKey

func (o *AccountCreateParameter) GetGenerateApiKey() bool

GetGenerateApiKey returns the GenerateApiKey field value if set, zero value otherwise.

func (*AccountCreateParameter) GetGenerateApiKeyOk

func (o *AccountCreateParameter) GetGenerateApiKeyOk() (*bool, bool)

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

func (*AccountCreateParameter) GetIsAdmin

func (o *AccountCreateParameter) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*AccountCreateParameter) GetIsAdminOk

func (o *AccountCreateParameter) GetIsAdminOk() (*bool, bool)

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

func (*AccountCreateParameter) GetLastName

func (o *AccountCreateParameter) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*AccountCreateParameter) GetLastNameOk

func (o *AccountCreateParameter) GetLastNameOk() (*string, bool)

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

func (*AccountCreateParameter) GetLdapPrincipal

func (o *AccountCreateParameter) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*AccountCreateParameter) GetLdapPrincipalOk

func (o *AccountCreateParameter) GetLdapPrincipalOk() (*string, bool)

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

func (*AccountCreateParameter) GetPassword

func (o *AccountCreateParameter) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*AccountCreateParameter) GetPasswordOk

func (o *AccountCreateParameter) GetPasswordOk() (*string, bool)

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

func (*AccountCreateParameter) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*AccountCreateParameter) GetTagsOk

func (o *AccountCreateParameter) 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.

func (*AccountCreateParameter) GetUsername

func (o *AccountCreateParameter) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AccountCreateParameter) GetUsernameOk

func (o *AccountCreateParameter) 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.

func (*AccountCreateParameter) HasApiClientId

func (o *AccountCreateParameter) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*AccountCreateParameter) HasEmail

func (o *AccountCreateParameter) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountCreateParameter) HasFirstName

func (o *AccountCreateParameter) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountCreateParameter) HasGenerateApiKey

func (o *AccountCreateParameter) HasGenerateApiKey() bool

HasGenerateApiKey returns a boolean if a field has been set.

func (*AccountCreateParameter) HasIsAdmin

func (o *AccountCreateParameter) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*AccountCreateParameter) HasLastName

func (o *AccountCreateParameter) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountCreateParameter) HasLdapPrincipal

func (o *AccountCreateParameter) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountCreateParameter) HasPassword

func (o *AccountCreateParameter) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AccountCreateParameter) HasTags

func (o *AccountCreateParameter) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AccountCreateParameter) HasUsername

func (o *AccountCreateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountCreateParameter) MarshalJSON

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

func (*AccountCreateParameter) SetApiClientId

func (o *AccountCreateParameter) SetApiClientId(v string)

SetApiClientId gets a reference to the given string and assigns it to the ApiClientId field.

func (*AccountCreateParameter) SetEmail

func (o *AccountCreateParameter) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*AccountCreateParameter) SetFirstName

func (o *AccountCreateParameter) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*AccountCreateParameter) SetGenerateApiKey

func (o *AccountCreateParameter) SetGenerateApiKey(v bool)

SetGenerateApiKey gets a reference to the given bool and assigns it to the GenerateApiKey field.

func (*AccountCreateParameter) SetIsAdmin

func (o *AccountCreateParameter) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*AccountCreateParameter) SetLastName

func (o *AccountCreateParameter) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*AccountCreateParameter) SetLdapPrincipal

func (o *AccountCreateParameter) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*AccountCreateParameter) SetPassword

func (o *AccountCreateParameter) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*AccountCreateParameter) SetTags

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

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

func (*AccountCreateParameter) SetUsername

func (o *AccountCreateParameter) SetUsername(v string)

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

func (AccountCreateParameter) ToMap

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

type AccountCreateResponse

type AccountCreateResponse struct {
	// The opaque token to use to authenticate for other API calls. The token must be included in all HTTP API calls in a request header named \"Authorization\", and prefixed with \"apk \" to denote that it is a proprietary API key format. For instance, if the token is \"abc123\", request must contain the following HTTP request header: \"Authorization: apk abc123\".
	Token *string `json:"token,omitempty"`
	// Numeric ID of the created Account.
	Id *int64 `json:"id,omitempty"`
	// First name of the created Account.
	FirstName *string `json:"first_name,omitempty"`
	// Last name of the created Account.
	LastName *string `json:"last_name,omitempty"`
	// Email of the created Account.
	Email *string `json:"email,omitempty"`
	// Username of the created Account.
	Username *string `json:"username,omitempty"`
	// The LDAP principal of the created Account.
	LdapPrincipal *string `json:"ldap_principal,omitempty"`
	// The tags to be created for this Account.
	Tags []Tag `json:"tags,omitempty"`
}

AccountCreateResponse struct for AccountCreateResponse

func NewAccountCreateResponse

func NewAccountCreateResponse() *AccountCreateResponse

NewAccountCreateResponse instantiates a new AccountCreateResponse 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 NewAccountCreateResponseWithDefaults

func NewAccountCreateResponseWithDefaults() *AccountCreateResponse

NewAccountCreateResponseWithDefaults instantiates a new AccountCreateResponse 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 (*AccountCreateResponse) GetEmail

func (o *AccountCreateResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*AccountCreateResponse) GetEmailOk

func (o *AccountCreateResponse) GetEmailOk() (*string, bool)

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

func (*AccountCreateResponse) GetFirstName

func (o *AccountCreateResponse) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*AccountCreateResponse) GetFirstNameOk

func (o *AccountCreateResponse) GetFirstNameOk() (*string, bool)

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

func (*AccountCreateResponse) GetId

func (o *AccountCreateResponse) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AccountCreateResponse) GetIdOk

func (o *AccountCreateResponse) GetIdOk() (*int64, 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.

func (*AccountCreateResponse) GetLastName

func (o *AccountCreateResponse) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*AccountCreateResponse) GetLastNameOk

func (o *AccountCreateResponse) GetLastNameOk() (*string, bool)

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

func (*AccountCreateResponse) GetLdapPrincipal

func (o *AccountCreateResponse) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*AccountCreateResponse) GetLdapPrincipalOk

func (o *AccountCreateResponse) GetLdapPrincipalOk() (*string, bool)

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

func (*AccountCreateResponse) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*AccountCreateResponse) GetTagsOk

func (o *AccountCreateResponse) 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.

func (*AccountCreateResponse) GetToken

func (o *AccountCreateResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*AccountCreateResponse) GetTokenOk

func (o *AccountCreateResponse) GetTokenOk() (*string, bool)

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

func (*AccountCreateResponse) GetUsername

func (o *AccountCreateResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AccountCreateResponse) GetUsernameOk

func (o *AccountCreateResponse) 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.

func (*AccountCreateResponse) HasEmail

func (o *AccountCreateResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountCreateResponse) HasFirstName

func (o *AccountCreateResponse) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountCreateResponse) HasId

func (o *AccountCreateResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountCreateResponse) HasLastName

func (o *AccountCreateResponse) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountCreateResponse) HasLdapPrincipal

func (o *AccountCreateResponse) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountCreateResponse) HasTags

func (o *AccountCreateResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AccountCreateResponse) HasToken

func (o *AccountCreateResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*AccountCreateResponse) HasUsername

func (o *AccountCreateResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountCreateResponse) MarshalJSON

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

func (*AccountCreateResponse) SetEmail

func (o *AccountCreateResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*AccountCreateResponse) SetFirstName

func (o *AccountCreateResponse) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*AccountCreateResponse) SetId

func (o *AccountCreateResponse) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AccountCreateResponse) SetLastName

func (o *AccountCreateResponse) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*AccountCreateResponse) SetLdapPrincipal

func (o *AccountCreateResponse) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*AccountCreateResponse) SetTags

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

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

func (*AccountCreateResponse) SetToken

func (o *AccountCreateResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*AccountCreateResponse) SetUsername

func (o *AccountCreateResponse) SetUsername(v string)

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

func (AccountCreateResponse) ToMap

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

type AccountLoginParameter

type AccountLoginParameter struct {
	// Username of the account that needs to login
	Username string `json:"username"`
	// Password of the account that needs to login.
	Password string `json:"password"`
}

AccountLoginParameter struct for AccountLoginParameter

func NewAccountLoginParameter

func NewAccountLoginParameter(username string, password string) *AccountLoginParameter

NewAccountLoginParameter instantiates a new AccountLoginParameter 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 NewAccountLoginParameterWithDefaults

func NewAccountLoginParameterWithDefaults() *AccountLoginParameter

NewAccountLoginParameterWithDefaults instantiates a new AccountLoginParameter 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 (*AccountLoginParameter) GetPassword

func (o *AccountLoginParameter) GetPassword() string

GetPassword returns the Password field value

func (*AccountLoginParameter) GetPasswordOk

func (o *AccountLoginParameter) GetPasswordOk() (*string, bool)

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

func (*AccountLoginParameter) GetUsername

func (o *AccountLoginParameter) GetUsername() string

GetUsername returns the Username field value

func (*AccountLoginParameter) GetUsernameOk

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

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

func (AccountLoginParameter) MarshalJSON

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

func (*AccountLoginParameter) SetPassword

func (o *AccountLoginParameter) SetPassword(v string)

SetPassword sets field value

func (*AccountLoginParameter) SetUsername

func (o *AccountLoginParameter) SetUsername(v string)

SetUsername sets field value

func (AccountLoginParameter) ToMap

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

type AccountUpdateParameter

type AccountUpdateParameter struct {
	// Numeric ID of the Account.
	Id *int64 `json:"id,omitempty"`
	// The unique ID which is used to identify the identity of an API request. The web server (nginx) configuration must be configured so as to include the external ID as the value of the X_CLIENT_ID HTTP request header when requests are proxied. For OAuth2/JWT based authentication, this typically corresponds to a value extracted from the JWT, uniquely identifying the Account.
	ApiClientId *string `json:"api_client_id,omitempty"`
	// An optional first name for the Account.
	FirstName *string `json:"first_name,omitempty"`
	// An optional last name for the Account.
	LastName *string `json:"last_name,omitempty"`
	// An optional email for the Account.
	Email *string `json:"email,omitempty"`
	// The username for username/password authentication. This can also be used to provide an optional logical name for the Account.
	Username *string `json:"username,omitempty"`
	// This value will be used for linking this account to an LDAP user when authenticated with the same LDAP principal. When accounts authenticate with LDAP, an LDAP principal value is calculated based on the username, msad_domain_name, search_base and username_pattern.
	LdapPrincipal *string `json:"ldap_principal,omitempty"`
}

AccountUpdateParameter struct for AccountUpdateParameter

func NewAccountUpdateParameter

func NewAccountUpdateParameter() *AccountUpdateParameter

NewAccountUpdateParameter instantiates a new AccountUpdateParameter 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 NewAccountUpdateParameterWithDefaults

func NewAccountUpdateParameterWithDefaults() *AccountUpdateParameter

NewAccountUpdateParameterWithDefaults instantiates a new AccountUpdateParameter 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 (*AccountUpdateParameter) GetApiClientId

func (o *AccountUpdateParameter) GetApiClientId() string

GetApiClientId returns the ApiClientId field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetApiClientIdOk

func (o *AccountUpdateParameter) GetApiClientIdOk() (*string, bool)

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

func (*AccountUpdateParameter) GetEmail

func (o *AccountUpdateParameter) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetEmailOk

func (o *AccountUpdateParameter) GetEmailOk() (*string, bool)

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

func (*AccountUpdateParameter) GetFirstName

func (o *AccountUpdateParameter) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetFirstNameOk

func (o *AccountUpdateParameter) GetFirstNameOk() (*string, bool)

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

func (*AccountUpdateParameter) GetId

func (o *AccountUpdateParameter) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetIdOk

func (o *AccountUpdateParameter) GetIdOk() (*int64, 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.

func (*AccountUpdateParameter) GetLastName

func (o *AccountUpdateParameter) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetLastNameOk

func (o *AccountUpdateParameter) GetLastNameOk() (*string, bool)

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

func (*AccountUpdateParameter) GetLdapPrincipal

func (o *AccountUpdateParameter) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetLdapPrincipalOk

func (o *AccountUpdateParameter) GetLdapPrincipalOk() (*string, bool)

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

func (*AccountUpdateParameter) GetUsername

func (o *AccountUpdateParameter) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AccountUpdateParameter) GetUsernameOk

func (o *AccountUpdateParameter) 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.

func (*AccountUpdateParameter) HasApiClientId

func (o *AccountUpdateParameter) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasEmail

func (o *AccountUpdateParameter) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasFirstName

func (o *AccountUpdateParameter) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasId

func (o *AccountUpdateParameter) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasLastName

func (o *AccountUpdateParameter) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasLdapPrincipal

func (o *AccountUpdateParameter) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasUsername

func (o *AccountUpdateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountUpdateParameter) MarshalJSON

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

func (*AccountUpdateParameter) SetApiClientId

func (o *AccountUpdateParameter) SetApiClientId(v string)

SetApiClientId gets a reference to the given string and assigns it to the ApiClientId field.

func (*AccountUpdateParameter) SetEmail

func (o *AccountUpdateParameter) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*AccountUpdateParameter) SetFirstName

func (o *AccountUpdateParameter) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*AccountUpdateParameter) SetId

func (o *AccountUpdateParameter) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AccountUpdateParameter) SetLastName

func (o *AccountUpdateParameter) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*AccountUpdateParameter) SetLdapPrincipal

func (o *AccountUpdateParameter) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*AccountUpdateParameter) SetUsername

func (o *AccountUpdateParameter) SetUsername(v string)

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

func (AccountUpdateParameter) ToMap

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

type AccountsApiService

type AccountsApiService service

AccountsApiService AccountsApi service

func (*AccountsApiService) ChangeAccountPassword

func (a *AccountsApiService) ChangeAccountPassword(ctx context.Context, id int64) ApiChangeAccountPasswordRequest

ChangeAccountPassword Change Account Password.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiChangeAccountPasswordRequest

func (*AccountsApiService) ChangeAccountPasswordExecute

func (a *AccountsApiService) ChangeAccountPasswordExecute(r ApiChangeAccountPasswordRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) CreateAccount

CreateAccount Create a new Account

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

func (*AccountsApiService) CreateAccountExecute

Execute executes the request

@return AccountCreateResponse

func (*AccountsApiService) CreateAccountTags

func (a *AccountsApiService) CreateAccountTags(ctx context.Context, id int64) ApiCreateAccountTagsRequest

CreateAccountTags Create tags for an Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiCreateAccountTagsRequest

func (*AccountsApiService) CreateAccountTagsExecute

func (a *AccountsApiService) CreateAccountTagsExecute(r ApiCreateAccountTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*AccountsApiService) DeleteAccount

DeleteAccount Delete an Account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiDeleteAccountRequest

func (*AccountsApiService) DeleteAccountExecute

func (a *AccountsApiService) DeleteAccountExecute(r ApiDeleteAccountRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) DeleteAccountTags

func (a *AccountsApiService) DeleteAccountTags(ctx context.Context, id int64) ApiDeleteAccountTagsRequest

DeleteAccountTags Delete tags for an Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiDeleteAccountTagsRequest

func (*AccountsApiService) DeleteAccountTagsExecute

func (a *AccountsApiService) DeleteAccountTagsExecute(r ApiDeleteAccountTagsRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) Disable

Disable Disable an Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiDisableRequest

func (*AccountsApiService) DisableExecute

func (a *AccountsApiService) DisableExecute(r ApiDisableRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) EnableAccount

EnableAccount Enable an Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiEnableAccountRequest

func (*AccountsApiService) EnableAccountExecute

func (a *AccountsApiService) EnableAccountExecute(r ApiEnableAccountRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) GetAccount

GetAccount Get an Account by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiGetAccountRequest

func (*AccountsApiService) GetAccountExecute

func (a *AccountsApiService) GetAccountExecute(r ApiGetAccountRequest) (*Account, *http.Response, error)

Execute executes the request

@return Account

func (*AccountsApiService) GetAccountTags

GetAccountTags Get tags for an Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiGetAccountTagsRequest

func (*AccountsApiService) GetAccountTagsExecute

func (a *AccountsApiService) GetAccountTagsExecute(r ApiGetAccountTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*AccountsApiService) GetAccounts

GetAccounts Returns a list of Accounts

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

func (*AccountsApiService) GetAccountsExecute

Execute executes the request

@return ListAccountsResponse

func (*AccountsApiService) GetPasswordPolicies

GetPasswordPolicies Returns the password policies

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

func (*AccountsApiService) GetPasswordPoliciesExecute

Execute executes the request

@return PasswordPoliciesParams

func (*AccountsApiService) ResetAccountPassword

func (a *AccountsApiService) ResetAccountPassword(ctx context.Context, id int64) ApiResetAccountPasswordRequest

ResetAccountPassword Reset Account Password.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiResetAccountPasswordRequest

func (*AccountsApiService) ResetAccountPasswordExecute

func (a *AccountsApiService) ResetAccountPasswordExecute(r ApiResetAccountPasswordRequest) (*http.Response, error)

Execute executes the request

func (*AccountsApiService) SearchAccounts

SearchAccounts Search for Accounts.

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

func (*AccountsApiService) SearchAccountsExecute

Execute executes the request

@return SearchAccountsResponse

func (*AccountsApiService) UpdateAccount

UpdateAccount Update an Account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric ID of the Account.
@return ApiUpdateAccountRequest

func (*AccountsApiService) UpdateAccountExecute

func (a *AccountsApiService) UpdateAccountExecute(r ApiUpdateAccountRequest) (*Account, *http.Response, error)

Execute executes the request

@return Account

func (*AccountsApiService) UpdatePasswordPolicies

func (a *AccountsApiService) UpdatePasswordPolicies(ctx context.Context) ApiUpdatePasswordPoliciesRequest

UpdatePasswordPolicies Update password policies.

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

func (*AccountsApiService) UpdatePasswordPoliciesExecute

Execute executes the request

@return PasswordPoliciesParams

type AdditionalMountPoint

type AdditionalMountPoint struct {
	// Relative path within the container of the directory that should be mounted.
	SharedPath *string `json:"shared_path,omitempty"`
	// Absolute path on the target environment were the filesystem should be mounted
	MountPath *string `json:"mount_path,omitempty"`
	// The entity ID of the environment on which the file system will be mounted.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

AdditionalMountPoint Specifies an additional location on which to mount a subdirectory of an AppData container.

func NewAdditionalMountPoint

func NewAdditionalMountPoint() *AdditionalMountPoint

NewAdditionalMountPoint instantiates a new AdditionalMountPoint 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 NewAdditionalMountPointWithDefaults

func NewAdditionalMountPointWithDefaults() *AdditionalMountPoint

NewAdditionalMountPointWithDefaults instantiates a new AdditionalMountPoint 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 (*AdditionalMountPoint) GetEnvironmentId

func (o *AdditionalMountPoint) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*AdditionalMountPoint) GetEnvironmentIdOk

func (o *AdditionalMountPoint) GetEnvironmentIdOk() (*string, bool)

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

func (*AdditionalMountPoint) GetMountPath

func (o *AdditionalMountPoint) GetMountPath() string

GetMountPath returns the MountPath field value if set, zero value otherwise.

func (*AdditionalMountPoint) GetMountPathOk

func (o *AdditionalMountPoint) GetMountPathOk() (*string, bool)

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

func (*AdditionalMountPoint) GetSharedPath

func (o *AdditionalMountPoint) GetSharedPath() string

GetSharedPath returns the SharedPath field value if set, zero value otherwise.

func (*AdditionalMountPoint) GetSharedPathOk

func (o *AdditionalMountPoint) GetSharedPathOk() (*string, bool)

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

func (*AdditionalMountPoint) HasEnvironmentId

func (o *AdditionalMountPoint) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*AdditionalMountPoint) HasMountPath

func (o *AdditionalMountPoint) HasMountPath() bool

HasMountPath returns a boolean if a field has been set.

func (*AdditionalMountPoint) HasSharedPath

func (o *AdditionalMountPoint) HasSharedPath() bool

HasSharedPath returns a boolean if a field has been set.

func (AdditionalMountPoint) MarshalJSON

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

func (*AdditionalMountPoint) SetEnvironmentId

func (o *AdditionalMountPoint) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*AdditionalMountPoint) SetMountPath

func (o *AdditionalMountPoint) SetMountPath(v string)

SetMountPath gets a reference to the given string and assigns it to the MountPath field.

func (*AdditionalMountPoint) SetSharedPath

func (o *AdditionalMountPoint) SetSharedPath(v string)

SetSharedPath gets a reference to the given string and assigns it to the SharedPath field.

func (AdditionalMountPoint) ToMap

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

type Algorithm

type Algorithm struct {
	// The Algorithm entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this Algorithm.
	Name *string `json:"name,omitempty"`
	// The algorithm type.
	Type *string `json:"type,omitempty"`
	// A description of this algorithm.
	Description NullableString `json:"description,omitempty"`
	// A reference to the Engine that this algorithm belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Whether tokenization is supported on this algorithm.
	IsTokenizationSupported *bool `json:"is_tokenization_supported,omitempty"`
	// The configuration of this algorithm.
	Config map[string]interface{} `json:"config,omitempty"`
	// Entity ID for the plugin that provides this algorithm.
	PluginId NullableInt32 `json:"plugin_id,omitempty"`
	// Entity ID for the framework of this algorithm.
	FrameworkId NullableInt32 `json:"framework_id,omitempty"`
}

Algorithm A masking algorithm.

func NewAlgorithm

func NewAlgorithm() *Algorithm

NewAlgorithm instantiates a new Algorithm 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 NewAlgorithmWithDefaults

func NewAlgorithmWithDefaults() *Algorithm

NewAlgorithmWithDefaults instantiates a new Algorithm 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 (*Algorithm) GetConfig

func (o *Algorithm) GetConfig() map[string]interface{}

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

func (*Algorithm) GetConfigOk

func (o *Algorithm) GetConfigOk() (map[string]interface{}, bool)

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

func (*Algorithm) GetDescription

func (o *Algorithm) GetDescription() string

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

func (*Algorithm) GetDescriptionOk

func (o *Algorithm) 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 (*Algorithm) GetEngineId

func (o *Algorithm) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Algorithm) GetEngineIdOk

func (o *Algorithm) GetEngineIdOk() (*string, bool)

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

func (*Algorithm) GetFrameworkId

func (o *Algorithm) GetFrameworkId() int32

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

func (*Algorithm) GetFrameworkIdOk

func (o *Algorithm) GetFrameworkIdOk() (*int32, bool)

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

func (*Algorithm) GetId

func (o *Algorithm) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Algorithm) GetIdOk

func (o *Algorithm) 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.

func (*Algorithm) GetIsTokenizationSupported

func (o *Algorithm) GetIsTokenizationSupported() bool

GetIsTokenizationSupported returns the IsTokenizationSupported field value if set, zero value otherwise.

func (*Algorithm) GetIsTokenizationSupportedOk

func (o *Algorithm) GetIsTokenizationSupportedOk() (*bool, bool)

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

func (*Algorithm) GetName

func (o *Algorithm) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Algorithm) GetNameOk

func (o *Algorithm) 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.

func (*Algorithm) GetPluginId

func (o *Algorithm) GetPluginId() int32

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

func (*Algorithm) GetPluginIdOk

func (o *Algorithm) GetPluginIdOk() (*int32, bool)

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

func (*Algorithm) GetType

func (o *Algorithm) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Algorithm) GetTypeOk

func (o *Algorithm) 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.

func (*Algorithm) HasConfig

func (o *Algorithm) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*Algorithm) HasDescription

func (o *Algorithm) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Algorithm) HasEngineId

func (o *Algorithm) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Algorithm) HasFrameworkId

func (o *Algorithm) HasFrameworkId() bool

HasFrameworkId returns a boolean if a field has been set.

func (*Algorithm) HasId

func (o *Algorithm) HasId() bool

HasId returns a boolean if a field has been set.

func (*Algorithm) HasIsTokenizationSupported

func (o *Algorithm) HasIsTokenizationSupported() bool

HasIsTokenizationSupported returns a boolean if a field has been set.

func (*Algorithm) HasName

func (o *Algorithm) HasName() bool

HasName returns a boolean if a field has been set.

func (*Algorithm) HasPluginId

func (o *Algorithm) HasPluginId() bool

HasPluginId returns a boolean if a field has been set.

func (*Algorithm) HasType

func (o *Algorithm) HasType() bool

HasType returns a boolean if a field has been set.

func (Algorithm) MarshalJSON

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

func (*Algorithm) SetConfig

func (o *Algorithm) SetConfig(v map[string]interface{})

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

func (*Algorithm) SetDescription

func (o *Algorithm) SetDescription(v string)

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

func (*Algorithm) SetDescriptionNil

func (o *Algorithm) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Algorithm) SetEngineId

func (o *Algorithm) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Algorithm) SetFrameworkId

func (o *Algorithm) SetFrameworkId(v int32)

SetFrameworkId gets a reference to the given NullableInt32 and assigns it to the FrameworkId field.

func (*Algorithm) SetFrameworkIdNil

func (o *Algorithm) SetFrameworkIdNil()

SetFrameworkIdNil sets the value for FrameworkId to be an explicit nil

func (*Algorithm) SetId

func (o *Algorithm) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Algorithm) SetIsTokenizationSupported

func (o *Algorithm) SetIsTokenizationSupported(v bool)

SetIsTokenizationSupported gets a reference to the given bool and assigns it to the IsTokenizationSupported field.

func (*Algorithm) SetName

func (o *Algorithm) SetName(v string)

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

func (*Algorithm) SetPluginId

func (o *Algorithm) SetPluginId(v int32)

SetPluginId gets a reference to the given NullableInt32 and assigns it to the PluginId field.

func (*Algorithm) SetPluginIdNil

func (o *Algorithm) SetPluginIdNil()

SetPluginIdNil sets the value for PluginId to be an explicit nil

func (*Algorithm) SetType

func (o *Algorithm) SetType(v string)

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

func (Algorithm) ToMap

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

func (*Algorithm) UnsetDescription

func (o *Algorithm) UnsetDescription()

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

func (*Algorithm) UnsetFrameworkId

func (o *Algorithm) UnsetFrameworkId()

UnsetFrameworkId ensures that no value is present for FrameworkId, not even an explicit nil

func (*Algorithm) UnsetPluginId

func (o *Algorithm) UnsetPluginId()

UnsetPluginId ensures that no value is present for PluginId, not even an explicit nil

type AlgorithmCreateParameters

type AlgorithmCreateParameters struct {
	// The name of this Algorithm.
	Name string `json:"name"`
	// A description of this algorithm.
	Description *string `json:"description,omitempty"`
	// The id of the engine onto which this algorithm will be created.
	EngineId string `json:"engine_id"`
	// The configuration of this algorithm.
	Config map[string]interface{} `json:"config"`
	// Entity ID for the framework of this algorithm.
	FrameworkId int32 `json:"framework_id"`
}

AlgorithmCreateParameters Parameters to create a masking algorithm.

func NewAlgorithmCreateParameters

func NewAlgorithmCreateParameters(name string, engineId string, config map[string]interface{}, frameworkId int32) *AlgorithmCreateParameters

NewAlgorithmCreateParameters instantiates a new AlgorithmCreateParameters 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 NewAlgorithmCreateParametersWithDefaults

func NewAlgorithmCreateParametersWithDefaults() *AlgorithmCreateParameters

NewAlgorithmCreateParametersWithDefaults instantiates a new AlgorithmCreateParameters 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 (*AlgorithmCreateParameters) GetConfig

func (o *AlgorithmCreateParameters) GetConfig() map[string]interface{}

GetConfig returns the Config field value

func (*AlgorithmCreateParameters) GetConfigOk

func (o *AlgorithmCreateParameters) GetConfigOk() (map[string]interface{}, bool)

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

func (*AlgorithmCreateParameters) GetDescription

func (o *AlgorithmCreateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AlgorithmCreateParameters) GetDescriptionOk

func (o *AlgorithmCreateParameters) 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.

func (*AlgorithmCreateParameters) GetEngineId

func (o *AlgorithmCreateParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*AlgorithmCreateParameters) GetEngineIdOk

func (o *AlgorithmCreateParameters) GetEngineIdOk() (*string, bool)

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

func (*AlgorithmCreateParameters) GetFrameworkId

func (o *AlgorithmCreateParameters) GetFrameworkId() int32

GetFrameworkId returns the FrameworkId field value

func (*AlgorithmCreateParameters) GetFrameworkIdOk

func (o *AlgorithmCreateParameters) GetFrameworkIdOk() (*int32, bool)

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

func (*AlgorithmCreateParameters) GetName

func (o *AlgorithmCreateParameters) GetName() string

GetName returns the Name field value

func (*AlgorithmCreateParameters) GetNameOk

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

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

func (*AlgorithmCreateParameters) HasDescription

func (o *AlgorithmCreateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (AlgorithmCreateParameters) MarshalJSON

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

func (*AlgorithmCreateParameters) SetConfig

func (o *AlgorithmCreateParameters) SetConfig(v map[string]interface{})

SetConfig sets field value

func (*AlgorithmCreateParameters) SetDescription

func (o *AlgorithmCreateParameters) SetDescription(v string)

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

func (*AlgorithmCreateParameters) SetEngineId

func (o *AlgorithmCreateParameters) SetEngineId(v string)

SetEngineId sets field value

func (*AlgorithmCreateParameters) SetFrameworkId

func (o *AlgorithmCreateParameters) SetFrameworkId(v int32)

SetFrameworkId sets field value

func (*AlgorithmCreateParameters) SetName

func (o *AlgorithmCreateParameters) SetName(v string)

SetName sets field value

func (AlgorithmCreateParameters) ToMap

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

type AlgorithmsApiService

type AlgorithmsApiService service

AlgorithmsApiService AlgorithmsApi service

func (*AlgorithmsApiService) CreateAlgorithm

CreateAlgorithm Create a new algorithm.

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

func (*AlgorithmsApiService) CreateAlgorithmExecute

Execute executes the request

@return CreateAlgorithmResponse

func (*AlgorithmsApiService) DeleteAlgorithm

func (a *AlgorithmsApiService) DeleteAlgorithm(ctx context.Context, algorithmId string) ApiDeleteAlgorithmRequest

DeleteAlgorithm Delete an algorithm.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param algorithmId The ID of the Algorithm.
@return ApiDeleteAlgorithmRequest

func (*AlgorithmsApiService) DeleteAlgorithmExecute

func (a *AlgorithmsApiService) DeleteAlgorithmExecute(r ApiDeleteAlgorithmRequest) (*http.Response, error)

Execute executes the request

func (*AlgorithmsApiService) GetAlgorithmById

func (a *AlgorithmsApiService) GetAlgorithmById(ctx context.Context, algorithmId string) ApiGetAlgorithmByIdRequest

GetAlgorithmById Get an algorithm by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param algorithmId The ID of the Algorithm.
@return ApiGetAlgorithmByIdRequest

func (*AlgorithmsApiService) GetAlgorithmByIdExecute

func (a *AlgorithmsApiService) GetAlgorithmByIdExecute(r ApiGetAlgorithmByIdRequest) (*Algorithm, *http.Response, error)

Execute executes the request

@return Algorithm

func (*AlgorithmsApiService) GetAlgorithms

GetAlgorithms Retrieve the list of algorithms.

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

func (*AlgorithmsApiService) GetAlgorithmsExecute

Execute executes the request

@return ListAlgorithmsResponse

func (*AlgorithmsApiService) SearchAlgorithms

SearchAlgorithms Search for algorithms.

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

func (*AlgorithmsApiService) SearchAlgorithmsExecute

Execute executes the request

@return SearchAlgorithmsResponse

type AllObjectPermissionsResponse

type AllObjectPermissionsResponse struct {
	ObjectPermissions []PermissionObject `json:"object_permissions,omitempty"`
}

AllObjectPermissionsResponse struct for AllObjectPermissionsResponse

func NewAllObjectPermissionsResponse

func NewAllObjectPermissionsResponse() *AllObjectPermissionsResponse

NewAllObjectPermissionsResponse instantiates a new AllObjectPermissionsResponse 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 NewAllObjectPermissionsResponseWithDefaults

func NewAllObjectPermissionsResponseWithDefaults() *AllObjectPermissionsResponse

NewAllObjectPermissionsResponseWithDefaults instantiates a new AllObjectPermissionsResponse 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 (*AllObjectPermissionsResponse) GetObjectPermissions

func (o *AllObjectPermissionsResponse) GetObjectPermissions() []PermissionObject

GetObjectPermissions returns the ObjectPermissions field value if set, zero value otherwise.

func (*AllObjectPermissionsResponse) GetObjectPermissionsOk

func (o *AllObjectPermissionsResponse) GetObjectPermissionsOk() ([]PermissionObject, bool)

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

func (*AllObjectPermissionsResponse) HasObjectPermissions

func (o *AllObjectPermissionsResponse) HasObjectPermissions() bool

HasObjectPermissions returns a boolean if a field has been set.

func (AllObjectPermissionsResponse) MarshalJSON

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

func (*AllObjectPermissionsResponse) SetObjectPermissions

func (o *AllObjectPermissionsResponse) SetObjectPermissions(v []PermissionObject)

SetObjectPermissions gets a reference to the given []PermissionObject and assigns it to the ObjectPermissions field.

func (AllObjectPermissionsResponse) ToMap

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

type AlwaysAllowedPermission

type AlwaysAllowedPermission struct {
	ObjectType ObjectTypeEnum `json:"object_type"`
	Permission PermissionEnum `json:"permission"`
}

AlwaysAllowedPermission struct for AlwaysAllowedPermission

func NewAlwaysAllowedPermission

func NewAlwaysAllowedPermission(objectType ObjectTypeEnum, permission PermissionEnum) *AlwaysAllowedPermission

NewAlwaysAllowedPermission instantiates a new AlwaysAllowedPermission 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 NewAlwaysAllowedPermissionWithDefaults

func NewAlwaysAllowedPermissionWithDefaults() *AlwaysAllowedPermission

NewAlwaysAllowedPermissionWithDefaults instantiates a new AlwaysAllowedPermission 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 (*AlwaysAllowedPermission) GetObjectType

func (o *AlwaysAllowedPermission) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value

func (*AlwaysAllowedPermission) GetObjectTypeOk

func (o *AlwaysAllowedPermission) GetObjectTypeOk() (*ObjectTypeEnum, bool)

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

func (*AlwaysAllowedPermission) GetPermission

func (o *AlwaysAllowedPermission) GetPermission() PermissionEnum

GetPermission returns the Permission field value

func (*AlwaysAllowedPermission) GetPermissionOk

func (o *AlwaysAllowedPermission) GetPermissionOk() (*PermissionEnum, bool)

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

func (AlwaysAllowedPermission) MarshalJSON

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

func (*AlwaysAllowedPermission) SetObjectType

func (o *AlwaysAllowedPermission) SetObjectType(v ObjectTypeEnum)

SetObjectType sets field value

func (*AlwaysAllowedPermission) SetPermission

func (o *AlwaysAllowedPermission) SetPermission(v PermissionEnum)

SetPermission sets field value

func (AlwaysAllowedPermission) ToMap

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

type AlwaysAllowedPermissionRequest

type AlwaysAllowedPermissionRequest struct {
	// An array of always allowed permissions
	AlwaysAllowedPermissions []AlwaysAllowedPermission `json:"always_allowed_permissions"`
}

AlwaysAllowedPermissionRequest struct for AlwaysAllowedPermissionRequest

func NewAlwaysAllowedPermissionRequest

func NewAlwaysAllowedPermissionRequest(alwaysAllowedPermissions []AlwaysAllowedPermission) *AlwaysAllowedPermissionRequest

NewAlwaysAllowedPermissionRequest instantiates a new AlwaysAllowedPermissionRequest 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 NewAlwaysAllowedPermissionRequestWithDefaults

func NewAlwaysAllowedPermissionRequestWithDefaults() *AlwaysAllowedPermissionRequest

NewAlwaysAllowedPermissionRequestWithDefaults instantiates a new AlwaysAllowedPermissionRequest 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 (*AlwaysAllowedPermissionRequest) GetAlwaysAllowedPermissions

func (o *AlwaysAllowedPermissionRequest) GetAlwaysAllowedPermissions() []AlwaysAllowedPermission

GetAlwaysAllowedPermissions returns the AlwaysAllowedPermissions field value

func (*AlwaysAllowedPermissionRequest) GetAlwaysAllowedPermissionsOk

func (o *AlwaysAllowedPermissionRequest) GetAlwaysAllowedPermissionsOk() ([]AlwaysAllowedPermission, bool)

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

func (AlwaysAllowedPermissionRequest) MarshalJSON

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

func (*AlwaysAllowedPermissionRequest) SetAlwaysAllowedPermissions

func (o *AlwaysAllowedPermissionRequest) SetAlwaysAllowedPermissions(v []AlwaysAllowedPermission)

SetAlwaysAllowedPermissions sets field value

func (AlwaysAllowedPermissionRequest) ToMap

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

type ApiAbandonJobRequest

type ApiAbandonJobRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiAbandonJobRequest) Execute

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

type ApiAccountLoginRequest

type ApiAccountLoginRequest struct {
	ApiService *LoginApiService
	// contains filtered or unexported fields
}

func (ApiAccountLoginRequest) AccountLoginParameter

func (r ApiAccountLoginRequest) AccountLoginParameter(accountLoginParameter AccountLoginParameter) ApiAccountLoginRequest

func (ApiAccountLoginRequest) Execute

type ApiAccountLogoutRequest

type ApiAccountLogoutRequest struct {
	ApiService *LoginApiService
	// contains filtered or unexported fields
}

func (ApiAccountLogoutRequest) Authorization

func (r ApiAccountLogoutRequest) Authorization(authorization string) ApiAccountLogoutRequest

Access token

func (ApiAccountLogoutRequest) Execute

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

type ApiAddAccessGroupAccountIdsRequest

type ApiAddAccessGroupAccountIdsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddAccessGroupAccountIdsRequest) AccessGroupAccountIdsRequest

func (r ApiAddAccessGroupAccountIdsRequest) AccessGroupAccountIdsRequest(accessGroupAccountIdsRequest AccessGroupAccountIdsRequest) ApiAddAccessGroupAccountIdsRequest

Account ids to add to the Access group.

func (ApiAddAccessGroupAccountIdsRequest) Execute

type ApiAddAccessGroupAccountTagsRequest

type ApiAddAccessGroupAccountTagsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddAccessGroupAccountTagsRequest) Execute

func (ApiAddAccessGroupAccountTagsRequest) TagsRequest

Account Tags to add to the Access group.

type ApiAddAccessGroupScopesRequest

type ApiAddAccessGroupScopesRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddAccessGroupScopesRequest) AccessGroupScopesRequest

func (r ApiAddAccessGroupScopesRequest) AccessGroupScopesRequest(accessGroupScopesRequest AccessGroupScopesRequest) ApiAddAccessGroupScopesRequest

Scopes to add to the Access group.

func (ApiAddAccessGroupScopesRequest) Execute

type ApiAddAlwaysAllowedPermissionsRequest

type ApiAddAlwaysAllowedPermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest

func (r ApiAddAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest(alwaysAllowedPermissionRequest AlwaysAllowedPermissionRequest) ApiAddAlwaysAllowedPermissionsRequest

Add always allowed permissions for given object type.

func (ApiAddAlwaysAllowedPermissionsRequest) Execute

type ApiAddObjectsToAccessGroupScopeRequest

type ApiAddObjectsToAccessGroupScopeRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddObjectsToAccessGroupScopeRequest) Execute

func (ApiAddObjectsToAccessGroupScopeRequest) ScopedObjectsRequest

Add objects to the access group scope.

type ApiAddRolePermissionsRequest

type ApiAddRolePermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddRolePermissionsRequest) Execute

func (ApiAddRolePermissionsRequest) PermissionsRequest

func (r ApiAddRolePermissionsRequest) PermissionsRequest(permissionsRequest PermissionsRequest) ApiAddRolePermissionsRequest

Permissions to add to the role.

type ApiAddTagsToScopeRequest

type ApiAddTagsToScopeRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiAddTagsToScopeRequest) Execute

func (ApiAddTagsToScopeRequest) ScopeTagsRequest

func (r ApiAddTagsToScopeRequest) ScopeTagsRequest(scopeTagsRequest ScopeTagsRequest) ApiAddTagsToScopeRequest

Object tags for the access group scope.

type ApiCancelExecutionRequest

type ApiCancelExecutionRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiCancelExecutionRequest) Execute

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

func (ApiCancelExecutionRequest) ExecutionCancelParameters

func (r ApiCancelExecutionRequest) ExecutionCancelParameters(executionCancelParameters ExecutionCancelParameters) ApiCancelExecutionRequest

type ApiChangeAccountPasswordRequest

type ApiChangeAccountPasswordRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiChangeAccountPasswordRequest) ChangePasswordParameter

func (r ApiChangeAccountPasswordRequest) ChangePasswordParameter(changePasswordParameter ChangePasswordParameter) ApiChangeAccountPasswordRequest

func (ApiChangeAccountPasswordRequest) Execute

type ApiCheckSamlRequest

type ApiCheckSamlRequest struct {
	ApiService *SamlLoginApiService
	// contains filtered or unexported fields
}

func (ApiCheckSamlRequest) Execute

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

type ApiClassificationObject

type ApiClassificationObject struct {
	// HTTP method of the API.
	ApiMethod *string `json:"api_method,omitempty"`
	// context path of the API.
	Path *string `json:"path,omitempty"`
	// Either this API is automation or not.
	IsAutomation *bool `json:"is_automation,omitempty"`
	// The start date and time from when this api's is_automation definition has changed.
	StartDate *time.Time `json:"start_date,omitempty"`
	// The end date and time from when this api's is_automation definition has changed.
	EndDate *time.Time `json:"end_date,omitempty"`
}

ApiClassificationObject An API classification object which classifies APIs as automation or governance.

func NewApiClassificationObject

func NewApiClassificationObject() *ApiClassificationObject

NewApiClassificationObject instantiates a new ApiClassificationObject 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 NewApiClassificationObjectWithDefaults

func NewApiClassificationObjectWithDefaults() *ApiClassificationObject

NewApiClassificationObjectWithDefaults instantiates a new ApiClassificationObject 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 (*ApiClassificationObject) GetApiMethod

func (o *ApiClassificationObject) GetApiMethod() string

GetApiMethod returns the ApiMethod field value if set, zero value otherwise.

func (*ApiClassificationObject) GetApiMethodOk

func (o *ApiClassificationObject) GetApiMethodOk() (*string, bool)

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

func (*ApiClassificationObject) GetEndDate

func (o *ApiClassificationObject) GetEndDate() time.Time

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*ApiClassificationObject) GetEndDateOk

func (o *ApiClassificationObject) GetEndDateOk() (*time.Time, bool)

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

func (*ApiClassificationObject) GetIsAutomation

func (o *ApiClassificationObject) GetIsAutomation() bool

GetIsAutomation returns the IsAutomation field value if set, zero value otherwise.

func (*ApiClassificationObject) GetIsAutomationOk

func (o *ApiClassificationObject) GetIsAutomationOk() (*bool, bool)

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

func (*ApiClassificationObject) GetPath

func (o *ApiClassificationObject) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*ApiClassificationObject) GetPathOk

func (o *ApiClassificationObject) GetPathOk() (*string, bool)

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

func (*ApiClassificationObject) GetStartDate

func (o *ApiClassificationObject) GetStartDate() time.Time

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*ApiClassificationObject) GetStartDateOk

func (o *ApiClassificationObject) GetStartDateOk() (*time.Time, bool)

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

func (*ApiClassificationObject) HasApiMethod

func (o *ApiClassificationObject) HasApiMethod() bool

HasApiMethod returns a boolean if a field has been set.

func (*ApiClassificationObject) HasEndDate

func (o *ApiClassificationObject) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*ApiClassificationObject) HasIsAutomation

func (o *ApiClassificationObject) HasIsAutomation() bool

HasIsAutomation returns a boolean if a field has been set.

func (*ApiClassificationObject) HasPath

func (o *ApiClassificationObject) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*ApiClassificationObject) HasStartDate

func (o *ApiClassificationObject) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (ApiClassificationObject) MarshalJSON

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

func (*ApiClassificationObject) SetApiMethod

func (o *ApiClassificationObject) SetApiMethod(v string)

SetApiMethod gets a reference to the given string and assigns it to the ApiMethod field.

func (*ApiClassificationObject) SetEndDate

func (o *ApiClassificationObject) SetEndDate(v time.Time)

SetEndDate gets a reference to the given time.Time and assigns it to the EndDate field.

func (*ApiClassificationObject) SetIsAutomation

func (o *ApiClassificationObject) SetIsAutomation(v bool)

SetIsAutomation gets a reference to the given bool and assigns it to the IsAutomation field.

func (*ApiClassificationObject) SetPath

func (o *ApiClassificationObject) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*ApiClassificationObject) SetStartDate

func (o *ApiClassificationObject) SetStartDate(v time.Time)

SetStartDate gets a reference to the given time.Time and assigns it to the StartDate field.

func (ApiClassificationObject) ToMap

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

type ApiCompatibleRepositoriesByLocationRequest

type ApiCompatibleRepositoriesByLocationRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCompatibleRepositoriesByLocationRequest) Execute

func (ApiCompatibleRepositoriesByLocationRequest) LocationCompatibleRepositoryRequest

func (r ApiCompatibleRepositoriesByLocationRequest) LocationCompatibleRepositoryRequest(locationCompatibleRepositoryRequest LocationCompatibleRepositoryRequest) ApiCompatibleRepositoriesByLocationRequest

The request to get compatible repositories for provisioning a new VDB by location.

type ApiCompatibleRepositoriesBySnapshotRequest

type ApiCompatibleRepositoriesBySnapshotRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCompatibleRepositoriesBySnapshotRequest) Execute

func (ApiCompatibleRepositoriesBySnapshotRequest) SnapshotCompatibleRepositoryRequest

func (r ApiCompatibleRepositoriesBySnapshotRequest) SnapshotCompatibleRepositoryRequest(snapshotCompatibleRepositoryRequest SnapshotCompatibleRepositoryRequest) ApiCompatibleRepositoriesBySnapshotRequest

The request to get compatible repositories for provisioning a new VDB by snapshot.

type ApiCompatibleRepositoriesByTimestampRequest

type ApiCompatibleRepositoriesByTimestampRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCompatibleRepositoriesByTimestampRequest) Execute

func (ApiCompatibleRepositoriesByTimestampRequest) TimestampCompatibleRepositoryRequest

func (r ApiCompatibleRepositoriesByTimestampRequest) TimestampCompatibleRepositoryRequest(timestampCompatibleRepositoryRequest TimestampCompatibleRepositoryRequest) ApiCompatibleRepositoriesByTimestampRequest

The request to get compatible repositories for provisioning a new VDB by timestamp.

type ApiCompatibleRepositoriesFromBookmarkRequest

type ApiCompatibleRepositoriesFromBookmarkRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCompatibleRepositoriesFromBookmarkRequest) BookmarkCompatibleRepositoryRequest

func (r ApiCompatibleRepositoriesFromBookmarkRequest) BookmarkCompatibleRepositoryRequest(bookmarkCompatibleRepositoryRequest BookmarkCompatibleRepositoryRequest) ApiCompatibleRepositoriesFromBookmarkRequest

The request to get compatible repositories for provisioning a new VDB by bookmark.

func (ApiCompatibleRepositoriesFromBookmarkRequest) Execute

type ApiConnectivityCheckRequest

type ApiConnectivityCheckRequest struct {
	ApiService *ConnectivityApiService
	// contains filtered or unexported fields
}

func (ApiConnectivityCheckRequest) ConnectivityCheckParameters

func (r ApiConnectivityCheckRequest) ConnectivityCheckParameters(connectivityCheckParameters ConnectivityCheckParameters) ApiConnectivityCheckRequest

The api to check connectivity of engine and a remote host on given port.

func (ApiConnectivityCheckRequest) Execute

type ApiConnectorsTestRequest

type ApiConnectorsTestRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiConnectorsTestRequest) Execute

type ApiCopyMaskingJobRequest

type ApiCopyMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiCopyMaskingJobRequest) CopyMaskingJobParameters

func (r ApiCopyMaskingJobRequest) CopyMaskingJobParameters(copyMaskingJobParameters CopyMaskingJobParameters) ApiCopyMaskingJobRequest

func (ApiCopyMaskingJobRequest) Execute

type ApiCreateAccessGroupRequest

type ApiCreateAccessGroupRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiCreateAccessGroupRequest) AccessGroup

func (ApiCreateAccessGroupRequest) Execute

type ApiCreateAccountRequest

type ApiCreateAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiCreateAccountRequest) AccountCreateParameter

func (r ApiCreateAccountRequest) AccountCreateParameter(accountCreateParameter AccountCreateParameter) ApiCreateAccountRequest

func (ApiCreateAccountRequest) Execute

type ApiCreateAccountTagsRequest

type ApiCreateAccountTagsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiCreateAccountTagsRequest) Execute

func (ApiCreateAccountTagsRequest) TagsRequest

Tags information for Account.

type ApiCreateAlgorithmRequest

type ApiCreateAlgorithmRequest struct {
	ApiService *AlgorithmsApiService
	// contains filtered or unexported fields
}

func (ApiCreateAlgorithmRequest) AlgorithmCreateParameters

func (r ApiCreateAlgorithmRequest) AlgorithmCreateParameters(algorithmCreateParameters AlgorithmCreateParameters) ApiCreateAlgorithmRequest

The parameters to create an algorithm.

func (ApiCreateAlgorithmRequest) Execute

type ApiCreateBookmarkRequest

type ApiCreateBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiCreateBookmarkRequest) BookmarkCreateParameters

func (r ApiCreateBookmarkRequest) BookmarkCreateParameters(bookmarkCreateParameters BookmarkCreateParameters) ApiCreateBookmarkRequest

The parameters to create a bookmark.

func (ApiCreateBookmarkRequest) Execute

type ApiCreateBookmarkTagsRequest

type ApiCreateBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiCreateBookmarkTagsRequest) Execute

func (ApiCreateBookmarkTagsRequest) TagsRequest

Tags information for Bookmark.

type ApiCreateCdbTagsRequest

type ApiCreateCdbTagsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiCreateCdbTagsRequest) Execute

func (ApiCreateCdbTagsRequest) TagsRequest

func (r ApiCreateCdbTagsRequest) TagsRequest(tagsRequest TagsRequest) ApiCreateCdbTagsRequest

Tags information for CDB.

type ApiCreateConnectorTagsRequest

type ApiCreateConnectorTagsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiCreateConnectorTagsRequest) Execute

func (ApiCreateConnectorTagsRequest) TagsRequest

Tags information for Connector.

type ApiCreateDatabaseTemplateRequest

type ApiCreateDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseTemplateRequest) DatabaseTemplateCreateParameters

func (r ApiCreateDatabaseTemplateRequest) DatabaseTemplateCreateParameters(databaseTemplateCreateParameters DatabaseTemplateCreateParameters) ApiCreateDatabaseTemplateRequest

The parameters to create a database template.

func (ApiCreateDatabaseTemplateRequest) Execute

type ApiCreateDatabaseTemplateTagsRequest

type ApiCreateDatabaseTemplateTagsRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseTemplateTagsRequest) Execute

func (ApiCreateDatabaseTemplateTagsRequest) TagsRequest

Tags information for a DatabaseTemplate.

type ApiCreateEngineTagsRequest

type ApiCreateEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateEngineTagsRequest) Execute

func (ApiCreateEngineTagsRequest) TagsRequest

Tags information for Engine.

type ApiCreateEnvironmentRequest

type ApiCreateEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentRequest) EnvironmentCreateParameters

func (r ApiCreateEnvironmentRequest) EnvironmentCreateParameters(environmentCreateParameters EnvironmentCreateParameters) ApiCreateEnvironmentRequest

The parameters to create an environment.

func (ApiCreateEnvironmentRequest) Execute

type ApiCreateEnvironmentTagsRequest

type ApiCreateEnvironmentTagsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentTagsRequest) Execute

func (ApiCreateEnvironmentTagsRequest) TagsRequest

Tags information for Environment.

type ApiCreateEnvironmentUserRequest

type ApiCreateEnvironmentUserRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentUserRequest) EnvironmentUserParams

func (r ApiCreateEnvironmentUserRequest) EnvironmentUserParams(environmentUserParams EnvironmentUserParams) ApiCreateEnvironmentUserRequest

The parameters to create an environment user.

func (ApiCreateEnvironmentUserRequest) Execute

type ApiCreateHashicorpVaultRequest

type ApiCreateHashicorpVaultRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateHashicorpVaultRequest) Execute

func (ApiCreateHashicorpVaultRequest) HashicorpVault

type ApiCreateHashicorpVaultTagsRequest

type ApiCreateHashicorpVaultTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateHashicorpVaultTagsRequest) Execute

func (ApiCreateHashicorpVaultTagsRequest) TagsRequest

Tags information for Hashicorp vault.

type ApiCreateHostRequest

type ApiCreateHostRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateHostRequest) Execute

func (ApiCreateHostRequest) HostCreateParameters

func (r ApiCreateHostRequest) HostCreateParameters(hostCreateParameters HostCreateParameters) ApiCreateHostRequest

type ApiCreateHyperscaleInstanceTagsRequest

type ApiCreateHyperscaleInstanceTagsRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiCreateHyperscaleInstanceTagsRequest) Execute

func (ApiCreateHyperscaleInstanceTagsRequest) TagsRequest

Tags information for Hyperscale Instance.

type ApiCreateJobTagsRequest

type ApiCreateJobTagsRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiCreateJobTagsRequest) Execute

func (ApiCreateJobTagsRequest) TagsRequest

func (r ApiCreateJobTagsRequest) TagsRequest(tagsRequest TagsRequest) ApiCreateJobTagsRequest

Tags information for Job.

type ApiCreateMaskingJobTagRequest

type ApiCreateMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiCreateMaskingJobTagRequest) Execute

func (ApiCreateMaskingJobTagRequest) TagsRequest

Tags information for Masking Job.

type ApiCreateReportingScheduleRequest

type ApiCreateReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiCreateReportingScheduleRequest) Execute

func (ApiCreateReportingScheduleRequest) ReportingScheduleCreateParameters

func (r ApiCreateReportingScheduleRequest) ReportingScheduleCreateParameters(reportingScheduleCreateParameters ReportingScheduleCreateParameters) ApiCreateReportingScheduleRequest

The parameters to create a reporting schedule.

type ApiCreateReportingScheduleTagsRequest

type ApiCreateReportingScheduleTagsRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiCreateReportingScheduleTagsRequest) Execute

func (ApiCreateReportingScheduleTagsRequest) TagsRequest

Tags information for report schedule.

type ApiCreateRoleRequest

type ApiCreateRoleRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiCreateRoleRequest) CreateRole

func (r ApiCreateRoleRequest) CreateRole(createRole CreateRole) ApiCreateRoleRequest

func (ApiCreateRoleRequest) Execute

func (r ApiCreateRoleRequest) Execute() (*Role, *http.Response, error)

type ApiCreateRoleTagsRequest

type ApiCreateRoleTagsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiCreateRoleTagsRequest) Execute

func (ApiCreateRoleTagsRequest) TagsRequest

Tags information for Roles.

type ApiCreateSnapshotTagsRequest

type ApiCreateSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiCreateSnapshotTagsRequest) Execute

func (ApiCreateSnapshotTagsRequest) TagsRequest

Tags information for Snapshot.

type ApiCreateSourceTagsRequest

type ApiCreateSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiCreateSourceTagsRequest) Execute

func (ApiCreateSourceTagsRequest) TagsRequest

Tags information for Source.

type ApiCreateTagsDsourceRequest

type ApiCreateTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiCreateTagsDsourceRequest) Execute

func (ApiCreateTagsDsourceRequest) TagsRequest

Tags information for DSource.

type ApiCreateTimeflowTagsRequest

type ApiCreateTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiCreateTimeflowTagsRequest) Execute

func (ApiCreateTimeflowTagsRequest) TagsRequest

Tags information for Timeflow.

type ApiCreateVcdbTagsRequest

type ApiCreateVcdbTagsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVcdbTagsRequest) Execute

func (ApiCreateVcdbTagsRequest) TagsRequest

Tags information for vCDB.

type ApiCreateVdbGroupRequest

type ApiCreateVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVdbGroupRequest) CreateVDBGroupRequest

func (r ApiCreateVdbGroupRequest) CreateVDBGroupRequest(createVDBGroupRequest CreateVDBGroupRequest) ApiCreateVdbGroupRequest

The parameters to create a VDBGroup.

func (ApiCreateVdbGroupRequest) Execute

type ApiCreateVdbGroupsTagsRequest

type ApiCreateVdbGroupsTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVdbGroupsTagsRequest) Execute

func (ApiCreateVdbGroupsTagsRequest) TagsRequest

Tags information for VDB Group.

type ApiCreateVdbTagsRequest

type ApiCreateVdbTagsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVdbTagsRequest) Execute

func (ApiCreateVdbTagsRequest) TagsRequest

func (r ApiCreateVdbTagsRequest) TagsRequest(tagsRequest TagsRequest) ApiCreateVdbTagsRequest

Tags information for VDB.

type ApiDatabaseConnectivityCheckRequest

type ApiDatabaseConnectivityCheckRequest struct {
	ApiService *ConnectivityApiService
	// contains filtered or unexported fields
}

func (ApiDatabaseConnectivityCheckRequest) DatabaseConnectivityCheckParameters

func (r ApiDatabaseConnectivityCheckRequest) DatabaseConnectivityCheckParameters(databaseConnectivityCheckParameters DatabaseConnectivityCheckParameters) ApiDatabaseConnectivityCheckRequest

func (ApiDatabaseConnectivityCheckRequest) Execute

type ApiDeleteAccessGroupRequest

type ApiDeleteAccessGroupRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAccessGroupRequest) Execute

type ApiDeleteAccessGroupScopeObjectTagsRequest

type ApiDeleteAccessGroupScopeObjectTagsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAccessGroupScopeObjectTagsRequest) DeleteScopeObjectTags

The parameters to delete scope objects tags

func (ApiDeleteAccessGroupScopeObjectTagsRequest) Execute

type ApiDeleteAccessGroupScopeObjectsRequest

type ApiDeleteAccessGroupScopeObjectsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAccessGroupScopeObjectsRequest) DeleteScopedObjectItem

The parameters to delete scope objects

func (ApiDeleteAccessGroupScopeObjectsRequest) Execute

type ApiDeleteAccountRequest

type ApiDeleteAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAccountRequest) Execute

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

type ApiDeleteAccountTagsRequest

type ApiDeleteAccountTagsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAccountTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteAccountTagsRequest) Execute

type ApiDeleteAlgorithmRequest

type ApiDeleteAlgorithmRequest struct {
	ApiService *AlgorithmsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAlgorithmRequest) Execute

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

type ApiDeleteBookmarkRequest

type ApiDeleteBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiDeleteBookmarkRequest) Execute

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

type ApiDeleteBookmarkTagsRequest

type ApiDeleteBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiDeleteBookmarkTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteBookmarkTagsRequest) Execute

type ApiDeleteCdbTagsRequest

type ApiDeleteCdbTagsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteCdbTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteCdbTagsRequest) Execute

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

type ApiDeleteConnectorTagRequest

type ApiDeleteConnectorTagRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteConnectorTagRequest) Execute

type ApiDeleteDatabaseTemplateRequest

type ApiDeleteDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDatabaseTemplateRequest) Execute

type ApiDeleteDatabaseTemplateTagRequest

type ApiDeleteDatabaseTemplateTagRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDatabaseTemplateTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteDatabaseTemplateTagRequest) Execute

type ApiDeleteDsourceRequest

type ApiDeleteDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDsourceRequest) DeleteDSourceRequest

func (r ApiDeleteDsourceRequest) DeleteDSourceRequest(deleteDSourceRequest DeleteDSourceRequest) ApiDeleteDsourceRequest

func (ApiDeleteDsourceRequest) Execute

func (r ApiDeleteDsourceRequest) Execute() (*Job, *http.Response, error)

type ApiDeleteEngineTagsRequest

type ApiDeleteEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEngineTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteEngineTagsRequest) Execute

type ApiDeleteEnvironmentRequest

type ApiDeleteEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentRequest) Execute

type ApiDeleteEnvironmentTagsRequest

type ApiDeleteEnvironmentTagsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteEnvironmentTagsRequest) Execute

type ApiDeleteEnvironmentUserRequest

type ApiDeleteEnvironmentUserRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentUserRequest) Execute

type ApiDeleteHashicorpVaultRequest

type ApiDeleteHashicorpVaultRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHashicorpVaultRequest) Execute

type ApiDeleteHashicorpVaultTagRequest

type ApiDeleteHashicorpVaultTagRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHashicorpVaultTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteHashicorpVaultTagRequest) Execute

type ApiDeleteHostRequest

type ApiDeleteHostRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHostRequest) Execute

type ApiDeleteHyperscaleInstanceTagsRequest

type ApiDeleteHyperscaleInstanceTagsRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHyperscaleInstanceTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteHyperscaleInstanceTagsRequest) Execute

type ApiDeleteJobTagRequest

type ApiDeleteJobTagRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteJobTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteJobTagRequest) Execute

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

type ApiDeleteMaskingJobRequest

type ApiDeleteMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteMaskingJobRequest) Execute

func (ApiDeleteMaskingJobRequest) Force

If true, ignores any failures to remove a masking job on an engine.

type ApiDeleteMaskingJobTagRequest

type ApiDeleteMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteMaskingJobTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteMaskingJobTagRequest) Execute

type ApiDeleteReportingScheduleRequest

type ApiDeleteReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiDeleteReportingScheduleRequest) Execute

type ApiDeleteReportingScheduleTagRequest

type ApiDeleteReportingScheduleTagRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiDeleteReportingScheduleTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteReportingScheduleTagRequest) Execute

type ApiDeleteRoleRequest

type ApiDeleteRoleRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRoleRequest) Execute

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

type ApiDeleteRoleTagRequest

type ApiDeleteRoleTagRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRoleTagRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteRoleTagRequest) Execute

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

type ApiDeleteSnapshotRequest

type ApiDeleteSnapshotRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSnapshotRequest) Execute

type ApiDeleteSnapshotTagsRequest

type ApiDeleteSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSnapshotTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteSnapshotTagsRequest) Execute

type ApiDeleteSourceTagsRequest

type ApiDeleteSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSourceTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteSourceTagsRequest) Execute

type ApiDeleteTagsDsourceRequest

type ApiDeleteTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTagsDsourceRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteTagsDsourceRequest) Execute

type ApiDeleteTimeflowRequest

type ApiDeleteTimeflowRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTimeflowRequest) Execute

type ApiDeleteTimeflowTagsRequest

type ApiDeleteTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTimeflowTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteTimeflowTagsRequest) Execute

type ApiDeleteVcdbTagsRequest

type ApiDeleteVcdbTagsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVcdbTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteVcdbTagsRequest) Execute

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

type ApiDeleteVdbGroupRequest

type ApiDeleteVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVdbGroupRequest) Execute

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

type ApiDeleteVdbGroupTagsRequest

type ApiDeleteVdbGroupTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVdbGroupTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteVdbGroupTagsRequest) Execute

type ApiDeleteVdbRequest

type ApiDeleteVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVdbRequest) DeleteVDBParameters

func (r ApiDeleteVdbRequest) DeleteVDBParameters(deleteVDBParameters DeleteVDBParameters) ApiDeleteVdbRequest

The parameters to delete a VDB.

func (ApiDeleteVdbRequest) Execute

type ApiDeleteVdbTagsRequest

type ApiDeleteVdbTagsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVdbTagsRequest) DeleteTag

The parameters to delete tags

func (ApiDeleteVdbTagsRequest) Execute

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

type ApiDisableEnvironmentRequest

type ApiDisableEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDisableEnvironmentRequest) Execute

type ApiDisableRequest

type ApiDisableRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiDisableRequest) Execute

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

type ApiDisableVdbRequest

type ApiDisableVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiDisableVdbRequest) DisableVDBParameters

func (r ApiDisableVdbRequest) DisableVDBParameters(disableVDBParameters DisableVDBParameters) ApiDisableVdbRequest

The parameters to disable a VDB.

func (ApiDisableVdbRequest) Execute

type ApiEnableAccountRequest

type ApiEnableAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiEnableAccountRequest) Execute

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

type ApiEnableEnvironmentRequest

type ApiEnableEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiEnableEnvironmentRequest) Execute

type ApiEnableScaleTestingRequest

type ApiEnableScaleTestingRequest struct {
	ApiService *TestApiService
	// contains filtered or unexported fields
}

func (ApiEnableScaleTestingRequest) EnableScaleTestingRequest

func (r ApiEnableScaleTestingRequest) EnableScaleTestingRequest(enableScaleTestingRequest EnableScaleTestingRequest) ApiEnableScaleTestingRequest

func (ApiEnableScaleTestingRequest) Execute

type ApiEnableVdbRequest

type ApiEnableVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiEnableVdbRequest) EnableVDBParameters

func (r ApiEnableVdbRequest) EnableVDBParameters(enableVDBParameters EnableVDBParameters) ApiEnableVdbRequest

The parameters to enable a VDB.

func (ApiEnableVdbRequest) Execute

type ApiExecuteMaskingJobRequest

type ApiExecuteMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiExecuteMaskingJobRequest) Execute

func (ApiExecuteMaskingJobRequest) ExecuteMaskingJobParameters

func (r ApiExecuteMaskingJobRequest) ExecuteMaskingJobParameters(executeMaskingJobParameters ExecuteMaskingJobParameters) ApiExecuteMaskingJobRequest

type ApiFindByLocationRequest

type ApiFindByLocationRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiFindByLocationRequest) DatasetId

The ID of the dSource or VDB.

func (ApiFindByLocationRequest) Execute

func (ApiFindByLocationRequest) Location

The location

type ApiFindByTimestampRequest

type ApiFindByTimestampRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiFindByTimestampRequest) DatasetId

The ID of the dSource or VDB.

func (ApiFindByTimestampRequest) Execute

func (ApiFindByTimestampRequest) Timestamp

The desired point in time.

type ApiGetAccessGroupByIdRequest

type ApiGetAccessGroupByIdRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupByIdRequest) Execute

type ApiGetAccessGroupScopeRequest

type ApiGetAccessGroupScopeRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupScopeRequest) Execute

type ApiGetAccessGroupsRequest

type ApiGetAccessGroupsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetAccessGroupsRequest) Execute

func (ApiGetAccessGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetAccessGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetAccountRequest

type ApiGetAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiGetAccountRequest) Execute

func (r ApiGetAccountRequest) Execute() (*Account, *http.Response, error)

type ApiGetAccountTagsRequest

type ApiGetAccountTagsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiGetAccountTagsRequest) Execute

type ApiGetAccountsRequest

type ApiGetAccountsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiGetAccountsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetAccountsRequest) Execute

func (ApiGetAccountsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetAccountsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetAlgorithmByIdRequest

type ApiGetAlgorithmByIdRequest struct {
	ApiService *AlgorithmsApiService
	// contains filtered or unexported fields
}

func (ApiGetAlgorithmByIdRequest) Execute

type ApiGetAlgorithmsRequest

type ApiGetAlgorithmsRequest struct {
	ApiService *AlgorithmsApiService
	// contains filtered or unexported fields
}

func (ApiGetAlgorithmsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetAlgorithmsRequest) Execute

func (ApiGetAlgorithmsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetAlgorithmsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetAllObjectPermissionsRequest

type ApiGetAllObjectPermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetAllObjectPermissionsRequest) Execute

type ApiGetApiClassificationRequest

type ApiGetApiClassificationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetApiClassificationRequest) Execute

type ApiGetApiUsageReportRequest

type ApiGetApiUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetApiUsageReportRequest) ApiMetricKind

func (r ApiGetApiUsageReportRequest) ApiMetricKind(apiMetricKind string) ApiGetApiUsageReportRequest

Restrict the list to API usage metric of the given kind

func (ApiGetApiUsageReportRequest) ClientName

The Client names to be included in the report.

func (ApiGetApiUsageReportRequest) DctVersion

The DCT versions to be included in the report.

func (ApiGetApiUsageReportRequest) EndDate

Report end date/time. Defaults to current time.

func (ApiGetApiUsageReportRequest) Execute

func (ApiGetApiUsageReportRequest) GroupBy

The field to group results by.

func (ApiGetApiUsageReportRequest) StartDate

Report start date/time. Defaults to first API request.

func (ApiGetApiUsageReportRequest) UserAgent

The UserAgent names to be included in the report.

type ApiGetAppdataDsourceLinkingDefaultsRequest

type ApiGetAppdataDsourceLinkingDefaultsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetAppdataDsourceLinkingDefaultsRequest) Execute

func (ApiGetAppdataDsourceLinkingDefaultsRequest) LinkDSourceDefaultRequest

type ApiGetAseDsourceLinkingDefaultsRequest

type ApiGetAseDsourceLinkingDefaultsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetAseDsourceLinkingDefaultsRequest) Execute

func (ApiGetAseDsourceLinkingDefaultsRequest) LinkDSourceDefaultRequest

type ApiGetAuditLogsSummaryReportRequest

type ApiGetAuditLogsSummaryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetAuditLogsSummaryReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetAuditLogsSummaryReportRequest) Execute

func (ApiGetAuditLogsSummaryReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetAuditLogsSummaryReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetBookmarkByIdRequest

type ApiGetBookmarkByIdRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarkByIdRequest) Execute

type ApiGetBookmarkTagsRequest

type ApiGetBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarkTagsRequest) Execute

type ApiGetBookmarksByVdbGroupRequest

type ApiGetBookmarksByVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarksByVdbGroupRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetBookmarksByVdbGroupRequest) Execute

func (ApiGetBookmarksByVdbGroupRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetBookmarksByVdbGroupRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetBookmarksByVdbRequest

type ApiGetBookmarksByVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarksByVdbRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetBookmarksByVdbRequest) Execute

func (ApiGetBookmarksByVdbRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetBookmarksByVdbRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetBookmarksRequest

type ApiGetBookmarksRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarksRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetBookmarksRequest) Execute

func (ApiGetBookmarksRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetBookmarksRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetCdbByIdRequest

type ApiGetCdbByIdRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetCdbByIdRequest) Execute

func (r ApiGetCdbByIdRequest) Execute() (*CDB, *http.Response, error)

type ApiGetCdbsRequest

type ApiGetCdbsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetCdbsRequest) Cursor

func (r ApiGetCdbsRequest) Cursor(cursor string) ApiGetCdbsRequest

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetCdbsRequest) Execute

func (ApiGetCdbsRequest) Limit

func (r ApiGetCdbsRequest) Limit(limit int32) ApiGetCdbsRequest

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetCdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetConnectorByIdRequest

type ApiGetConnectorByIdRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorByIdRequest) Execute

type ApiGetConnectorTagsRequest

type ApiGetConnectorTagsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorTagsRequest) Execute

type ApiGetConnectorsRequest

type ApiGetConnectorsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetConnectorsRequest) Execute

func (ApiGetConnectorsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetConnectorsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetDatabaseTemplateByIdRequest

type ApiGetDatabaseTemplateByIdRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplateByIdRequest) Execute

type ApiGetDatabaseTemplateTagsRequest

type ApiGetDatabaseTemplateTagsRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplateTagsRequest) Execute

type ApiGetDatabaseTemplatesRequest

type ApiGetDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplatesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDatabaseTemplatesRequest) Execute

func (ApiGetDatabaseTemplatesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetDatabaseTemplatesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDatasetGroupByIdRequest

type ApiGetDatasetGroupByIdRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetDatasetGroupByIdRequest) Execute

type ApiGetDatasetGroupsRequest

type ApiGetDatasetGroupsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetDatasetGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDatasetGroupsRequest) Execute

func (ApiGetDatasetGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetDatasetGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDsourceByIdRequest

type ApiGetDsourceByIdRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceByIdRequest) Execute

type ApiGetDsourceConsumptionReportRequest

type ApiGetDsourceConsumptionReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceConsumptionReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDsourceConsumptionReportRequest) Execute

func (ApiGetDsourceConsumptionReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetDsourceConsumptionReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDsourceSnapshotsRequest

type ApiGetDsourceSnapshotsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceSnapshotsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDsourceSnapshotsRequest) Execute

func (ApiGetDsourceSnapshotsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

type ApiGetDsourceUsageReportRequest

type ApiGetDsourceUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceUsageReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDsourceUsageReportRequest) Execute

func (ApiGetDsourceUsageReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetDsourceUsageReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDsourcesRequest

type ApiGetDsourcesRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourcesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetDsourcesRequest) Execute

func (ApiGetDsourcesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetDsourcesRequest) Permission

Restrict the objects, which are allowed.

func (ApiGetDsourcesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetEnabledFeaturesFlagRequest

type ApiGetEnabledFeaturesFlagRequest struct {
	ApiService *FeatureFlagApiService
	// contains filtered or unexported fields
}

func (ApiGetEnabledFeaturesFlagRequest) Execute

type ApiGetEngineTagsRequest

type ApiGetEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetEngineTagsRequest) Execute

type ApiGetEnvironmentByIdRequest

type ApiGetEnvironmentByIdRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetEnvironmentByIdRequest) Execute

type ApiGetEnvironmentsRequest

type ApiGetEnvironmentsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetEnvironmentsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetEnvironmentsRequest) Execute

func (ApiGetEnvironmentsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetEnvironmentsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetExecutionByIdRequest

type ApiGetExecutionByIdRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiGetExecutionByIdRequest) Execute

type ApiGetExecutionEventsRequest

type ApiGetExecutionEventsRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiGetExecutionEventsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetExecutionEventsRequest) Execute

func (ApiGetExecutionEventsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetExecutionEventsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetExecutionLogRequest

type ApiGetExecutionLogRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiGetExecutionLogRequest) Execute

type ApiGetExecutionsRequest

type ApiGetExecutionsRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiGetExecutionsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetExecutionsRequest) Execute

func (ApiGetExecutionsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetExecutionsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetHashicorpVaultRequest

type ApiGetHashicorpVaultRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetHashicorpVaultRequest) Execute

type ApiGetHashicorpVaultTagsRequest

type ApiGetHashicorpVaultTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetHashicorpVaultTagsRequest) Execute

type ApiGetHashicorpVaultsRequest

type ApiGetHashicorpVaultsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetHashicorpVaultsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHashicorpVaultsRequest) Execute

func (ApiGetHashicorpVaultsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHashicorpVaultsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetHyperscaleConnectorByIdRequest

type ApiGetHyperscaleConnectorByIdRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleConnectorByIdRequest) Execute

type ApiGetHyperscaleConnectorsRequest

type ApiGetHyperscaleConnectorsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleConnectorsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHyperscaleConnectorsRequest) Execute

func (ApiGetHyperscaleConnectorsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHyperscaleConnectorsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetHyperscaleDatasetByIdRequest

type ApiGetHyperscaleDatasetByIdRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleDatasetByIdRequest) Execute

type ApiGetHyperscaleDatasetTablesOrFilesRequest

type ApiGetHyperscaleDatasetTablesOrFilesRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleDatasetTablesOrFilesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHyperscaleDatasetTablesOrFilesRequest) Execute

func (ApiGetHyperscaleDatasetTablesOrFilesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHyperscaleDatasetTablesOrFilesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetHyperscaleDatasetsRequest

type ApiGetHyperscaleDatasetsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleDatasetsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHyperscaleDatasetsRequest) Execute

func (ApiGetHyperscaleDatasetsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHyperscaleDatasetsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetHyperscaleInstanceByIdRequest

type ApiGetHyperscaleInstanceByIdRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleInstanceByIdRequest) Execute

type ApiGetHyperscaleInstanceTagsRequest

type ApiGetHyperscaleInstanceTagsRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleInstanceTagsRequest) Execute

type ApiGetHyperscaleInstancesRequest

type ApiGetHyperscaleInstancesRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleInstancesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHyperscaleInstancesRequest) Execute

func (ApiGetHyperscaleInstancesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHyperscaleInstancesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetHyperscaleMountPointByIdRequest

type ApiGetHyperscaleMountPointByIdRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleMountPointByIdRequest) Execute

type ApiGetHyperscaleMountPointsRequest

type ApiGetHyperscaleMountPointsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiGetHyperscaleMountPointsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetHyperscaleMountPointsRequest) Execute

func (ApiGetHyperscaleMountPointsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHyperscaleMountPointsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetJobByIdRequest

type ApiGetJobByIdRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiGetJobByIdRequest) Execute

func (r ApiGetJobByIdRequest) Execute() (*Job, *http.Response, error)

type ApiGetJobTagsRequest

type ApiGetJobTagsRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiGetJobTagsRequest) Execute

type ApiGetJobsRequest

type ApiGetJobsRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiGetJobsRequest) Cursor

func (r ApiGetJobsRequest) Cursor(cursor string) ApiGetJobsRequest

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetJobsRequest) Execute

func (ApiGetJobsRequest) Limit

func (r ApiGetJobsRequest) Limit(limit int32) ApiGetJobsRequest

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetJobsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetKerberosConfigByIdRequest

type ApiGetKerberosConfigByIdRequest struct {
	ApiService *KerberosConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetKerberosConfigByIdRequest) Execute

type ApiGetLdapConfigRequest

type ApiGetLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetLdapConfigRequest) Execute

type ApiGetMaskingEnvironmentByIdRequest

type ApiGetMaskingEnvironmentByIdRequest struct {
	ApiService *MaskingEnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingEnvironmentByIdRequest) Execute

type ApiGetMaskingEnvironmentsRequest

type ApiGetMaskingEnvironmentsRequest struct {
	ApiService *MaskingEnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingEnvironmentsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetMaskingEnvironmentsRequest) Execute

func (ApiGetMaskingEnvironmentsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetMaskingEnvironmentsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMaskingExecutionMetricsReportRequest

type ApiGetMaskingExecutionMetricsReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingExecutionMetricsReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetMaskingExecutionMetricsReportRequest) Execute

func (ApiGetMaskingExecutionMetricsReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetMaskingExecutionMetricsReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMaskingJobByIdRequest

type ApiGetMaskingJobByIdRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobByIdRequest) Execute

type ApiGetMaskingJobConnectorsRequest

type ApiGetMaskingJobConnectorsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobConnectorsRequest) Execute

type ApiGetMaskingJobSourceEnginesRequest

type ApiGetMaskingJobSourceEnginesRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobSourceEnginesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetMaskingJobSourceEnginesRequest) Execute

func (ApiGetMaskingJobSourceEnginesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetMaskingJobSourceEnginesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMaskingJobTagRequest

type ApiGetMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobTagRequest) Execute

type ApiGetMaskingJobsRequest

type ApiGetMaskingJobsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetMaskingJobsRequest) Execute

func (ApiGetMaskingJobsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetMaskingJobsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMetadataDatabaseRequest

type ApiGetMetadataDatabaseRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetMetadataDatabaseRequest) Execute

type ApiGetObjectPermissionsRequest

type ApiGetObjectPermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetObjectPermissionsRequest) Execute

type ApiGetOracleDsourceLinkingDefaultsRequest

type ApiGetOracleDsourceLinkingDefaultsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetOracleDsourceLinkingDefaultsRequest) Execute

func (ApiGetOracleDsourceLinkingDefaultsRequest) LinkDSourceDefaultRequest

type ApiGetPasswordPoliciesRequest

type ApiGetPasswordPoliciesRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiGetPasswordPoliciesRequest) Execute

type ApiGetPasswordVaultByIdRequest

type ApiGetPasswordVaultByIdRequest struct {
	ApiService *PasswordVaultsApiService
	// contains filtered or unexported fields
}

func (ApiGetPasswordVaultByIdRequest) Execute

type ApiGetPasswordVaultsRequest

type ApiGetPasswordVaultsRequest struct {
	ApiService *PasswordVaultsApiService
	// contains filtered or unexported fields
}

func (ApiGetPasswordVaultsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetPasswordVaultsRequest) Execute

func (ApiGetPasswordVaultsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetPasswordVaultsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetProductInfoRequest

type ApiGetProductInfoRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetProductInfoRequest) Execute

type ApiGetProxyConfigurationRequest

type ApiGetProxyConfigurationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetProxyConfigurationRequest) Execute

type ApiGetRegisteredEngineRequest

type ApiGetRegisteredEngineRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredEngineRequest) Execute

type ApiGetRegisteredEnginesRequest

type ApiGetRegisteredEnginesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredEnginesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetRegisteredEnginesRequest) Execute

func (ApiGetRegisteredEnginesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetRegisteredEnginesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetReportingScheduleByIdRequest

type ApiGetReportingScheduleByIdRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingScheduleByIdRequest) Execute

type ApiGetReportingScheduleTagsRequest

type ApiGetReportingScheduleTagsRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingScheduleTagsRequest) Execute

type ApiGetReportingSchedulesRequest

type ApiGetReportingSchedulesRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingSchedulesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetReportingSchedulesRequest) Execute

func (ApiGetReportingSchedulesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetReportingSchedulesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetRoleByIdRequest

type ApiGetRoleByIdRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetRoleByIdRequest) Execute

func (r ApiGetRoleByIdRequest) Execute() (*Role, *http.Response, error)

type ApiGetRoleTagsRequest

type ApiGetRoleTagsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetRoleTagsRequest) Execute

type ApiGetRolesRequest

type ApiGetRolesRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiGetRolesRequest) Execute

type ApiGetSamlConfigRequest

type ApiGetSamlConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetSamlConfigRequest) Execute

type ApiGetSmtpConfigRequest

type ApiGetSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetSmtpConfigRequest) Execute

type ApiGetSnapshotByIdRequest

type ApiGetSnapshotByIdRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotByIdRequest) Execute

type ApiGetSnapshotTagsRequest

type ApiGetSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotTagsRequest) Execute

type ApiGetSnapshotTimeflowRangeRequest

type ApiGetSnapshotTimeflowRangeRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotTimeflowRangeRequest) Execute

type ApiGetSnapshotsRequest

type ApiGetSnapshotsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetSnapshotsRequest) Execute

func (ApiGetSnapshotsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetSnapshotsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetSourceByIdRequest

type ApiGetSourceByIdRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceByIdRequest) Execute

func (r ApiGetSourceByIdRequest) Execute() (*Source, *http.Response, error)

type ApiGetSourceCompatibleRepoRequest

type ApiGetSourceCompatibleRepoRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceCompatibleRepoRequest) Execute

type ApiGetSourceTagsRequest

type ApiGetSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceTagsRequest) Execute

type ApiGetSourcesRequest

type ApiGetSourcesRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetSourcesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetSourcesRequest) Execute

func (ApiGetSourcesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetSourcesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetTagsCdbRequest

type ApiGetTagsCdbRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsCdbRequest) Execute

type ApiGetTagsDsourceRequest

type ApiGetTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsDsourceRequest) Execute

type ApiGetTagsEnvironmentRequest

type ApiGetTagsEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsEnvironmentRequest) Execute

type ApiGetTagsVcdbRequest

type ApiGetTagsVcdbRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsVcdbRequest) Execute

type ApiGetTagsVdbRequest

type ApiGetTagsVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsVdbRequest) Execute

type ApiGetTimeflowByIdRequest

type ApiGetTimeflowByIdRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowByIdRequest) Execute

type ApiGetTimeflowSnapshotDayRangeRequest

type ApiGetTimeflowSnapshotDayRangeRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowSnapshotDayRangeRequest) Execute

type ApiGetTimeflowTagsRequest

type ApiGetTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowTagsRequest) Execute

type ApiGetTimeflowsRequest

type ApiGetTimeflowsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetTimeflowsRequest) Execute

func (ApiGetTimeflowsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetTimeflowsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVcdbByIdRequest

type ApiGetVcdbByIdRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVcdbByIdRequest) Execute

func (r ApiGetVcdbByIdRequest) Execute() (*VCDB, *http.Response, error)

type ApiGetVcdbsRequest

type ApiGetVcdbsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVcdbsRequest) Cursor

func (r ApiGetVcdbsRequest) Cursor(cursor string) ApiGetVcdbsRequest

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVcdbsRequest) Execute

func (ApiGetVcdbsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVcdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbByIdRequest

type ApiGetVdbByIdRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbByIdRequest) Execute

func (r ApiGetVdbByIdRequest) Execute() (*VDB, *http.Response, error)

type ApiGetVdbGroupRequest

type ApiGetVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupRequest) Execute

func (r ApiGetVdbGroupRequest) Execute() (*VDBGroup, *http.Response, error)

type ApiGetVdbGroupTagsRequest

type ApiGetVdbGroupTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupTagsRequest) Execute

type ApiGetVdbGroupsByBookmarkRequest

type ApiGetVdbGroupsByBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupsByBookmarkRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVdbGroupsByBookmarkRequest) Execute

func (ApiGetVdbGroupsByBookmarkRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVdbGroupsByBookmarkRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbGroupsRequest

type ApiGetVdbGroupsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVdbGroupsRequest) Execute

func (ApiGetVdbGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVdbGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbInventoryReportRequest

type ApiGetVdbInventoryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbInventoryReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVdbInventoryReportRequest) Execute

func (ApiGetVdbInventoryReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetVdbInventoryReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbSnapshotsRequest

type ApiGetVdbSnapshotsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbSnapshotsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVdbSnapshotsRequest) Execute

func (ApiGetVdbSnapshotsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

type ApiGetVdbsRequest

type ApiGetVdbsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbsRequest) Cursor

func (r ApiGetVdbsRequest) Cursor(cursor string) ApiGetVdbsRequest

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVdbsRequest) Execute

func (ApiGetVdbsRequest) Limit

func (r ApiGetVdbsRequest) Limit(limit int32) ApiGetVdbsRequest

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVdbsRequest) Permission

func (r ApiGetVdbsRequest) Permission(permission PermissionEnum) ApiGetVdbsRequest

Restrict the objects, which are allowed.

func (ApiGetVdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVirtualizationPolicyByIdRequest

type ApiGetVirtualizationPolicyByIdRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiGetVirtualizationPolicyByIdRequest) Execute

type ApiGetVirtualizationStorageSummaryReportRequest

type ApiGetVirtualizationStorageSummaryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetVirtualizationStorageSummaryReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiGetVirtualizationStorageSummaryReportRequest) Execute

func (ApiGetVirtualizationStorageSummaryReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetVirtualizationStorageSummaryReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiImportDatabaseTemplatesRequest

type ApiImportDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiImportDatabaseTemplatesRequest) EngineIdBody

Body containing the ID of the registered engine.

func (ApiImportDatabaseTemplatesRequest) Execute

type ApiLinkAppdataDatabaseRequest

type ApiLinkAppdataDatabaseRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiLinkAppdataDatabaseRequest) AppDataDSourceLinkSourceParameters

func (r ApiLinkAppdataDatabaseRequest) AppDataDSourceLinkSourceParameters(appDataDSourceLinkSourceParameters AppDataDSourceLinkSourceParameters) ApiLinkAppdataDatabaseRequest

The parameters to link an AppData dSource.

func (ApiLinkAppdataDatabaseRequest) Execute

type ApiLinkAseDatabaseRequest

type ApiLinkAseDatabaseRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiLinkAseDatabaseRequest) ASEDSourceLinkSourceParameters

func (r ApiLinkAseDatabaseRequest) ASEDSourceLinkSourceParameters(aSEDSourceLinkSourceParameters ASEDSourceLinkSourceParameters) ApiLinkAseDatabaseRequest

The parameters to link an ASE dSource.

func (ApiLinkAseDatabaseRequest) Execute

type ApiLinkOracleDatabaseRequest

type ApiLinkOracleDatabaseRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiLinkOracleDatabaseRequest) Execute

func (ApiLinkOracleDatabaseRequest) OracleDSourceLinkSourceParameters

func (r ApiLinkOracleDatabaseRequest) OracleDSourceLinkSourceParameters(oracleDSourceLinkSourceParameters OracleDSourceLinkSourceParameters) ApiLinkOracleDatabaseRequest

The parameters to link an Oracle dSource.

type ApiListEnvironmentUsersRequest

type ApiListEnvironmentUsersRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiListEnvironmentUsersRequest) Execute

type ApiListKerberosConfigsRequest

type ApiListKerberosConfigsRequest struct {
	ApiService *KerberosConfigApiService
	// contains filtered or unexported fields
}

func (ApiListKerberosConfigsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiListKerberosConfigsRequest) Execute

func (ApiListKerberosConfigsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiListKerberosConfigsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiListPropertiesRequest

type ApiListPropertiesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiListPropertiesRequest) Execute

type ApiListVirtualizationPoliciesRequest

type ApiListVirtualizationPoliciesRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiListVirtualizationPoliciesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiListVirtualizationPoliciesRequest) Execute

func (ApiListVirtualizationPoliciesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiListVirtualizationPoliciesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiLockVdbGroupRequest

type ApiLockVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiLockVdbGroupRequest) Execute

func (ApiLockVdbGroupRequest) LockVDBGroupParameters

func (r ApiLockVdbGroupRequest) LockVDBGroupParameters(lockVDBGroupParameters LockVDBGroupParameters) ApiLockVdbGroupRequest

The parameters to lock a VDB Group.

type ApiLockVdbRequest

type ApiLockVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiLockVdbRequest) Execute

func (r ApiLockVdbRequest) Execute() (*VDB, *http.Response, error)

func (ApiLockVdbRequest) LockVDBParameters

func (r ApiLockVdbRequest) LockVDBParameters(lockVDBParameters LockVDBParameters) ApiLockVdbRequest

The parameters to lock a VDB.

type ApiMigrateMaskingJobRequest

type ApiMigrateMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiMigrateMaskingJobRequest) Execute

func (ApiMigrateMaskingJobRequest) MigrateMaskingJobParameters

func (r ApiMigrateMaskingJobRequest) MigrateMaskingJobParameters(migrateMaskingJobParameters MigrateMaskingJobParameters) ApiMigrateMaskingJobRequest

type ApiPrimaryEnvironmentUserRequest

type ApiPrimaryEnvironmentUserRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiPrimaryEnvironmentUserRequest) Execute

type ApiProvisionVdbByLocationDefaultsRequest

type ApiProvisionVdbByLocationDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbByLocationDefaultsRequest) Execute

func (ApiProvisionVdbByLocationDefaultsRequest) ProvisionVDBByLocationDefaultsRequest

func (r ApiProvisionVdbByLocationDefaultsRequest) ProvisionVDBByLocationDefaultsRequest(provisionVDBByLocationDefaultsRequest ProvisionVDBByLocationDefaultsRequest) ApiProvisionVdbByLocationDefaultsRequest

The request to get default VDB provision parameters for provisioning a new VDB by location.

type ApiProvisionVdbByLocationRequest

type ApiProvisionVdbByLocationRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbByLocationRequest) Execute

func (ApiProvisionVdbByLocationRequest) ProvisionVDBByLocationParameters

func (r ApiProvisionVdbByLocationRequest) ProvisionVDBByLocationParameters(provisionVDBByLocationParameters ProvisionVDBByLocationParameters) ApiProvisionVdbByLocationRequest

The parameters to provision a VDB.

type ApiProvisionVdbBySnapshotDefaultsRequest

type ApiProvisionVdbBySnapshotDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbBySnapshotDefaultsRequest) Execute

func (ApiProvisionVdbBySnapshotDefaultsRequest) ProvisionVDBBySnapshotDefaultsRequest

func (r ApiProvisionVdbBySnapshotDefaultsRequest) ProvisionVDBBySnapshotDefaultsRequest(provisionVDBBySnapshotDefaultsRequest ProvisionVDBBySnapshotDefaultsRequest) ApiProvisionVdbBySnapshotDefaultsRequest

The request to get default VDB provision parameters for provisioning a new VDB by snapshot.

type ApiProvisionVdbBySnapshotRequest

type ApiProvisionVdbBySnapshotRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbBySnapshotRequest) Execute

func (ApiProvisionVdbBySnapshotRequest) ProvisionVDBBySnapshotParameters

func (r ApiProvisionVdbBySnapshotRequest) ProvisionVDBBySnapshotParameters(provisionVDBBySnapshotParameters ProvisionVDBBySnapshotParameters) ApiProvisionVdbBySnapshotRequest

The parameters to provision a VDB.

type ApiProvisionVdbByTimestampDefaultsRequest

type ApiProvisionVdbByTimestampDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbByTimestampDefaultsRequest) Execute

func (ApiProvisionVdbByTimestampDefaultsRequest) ProvisionVDBByTimestampDefaultsRequest

func (r ApiProvisionVdbByTimestampDefaultsRequest) ProvisionVDBByTimestampDefaultsRequest(provisionVDBByTimestampDefaultsRequest ProvisionVDBByTimestampDefaultsRequest) ApiProvisionVdbByTimestampDefaultsRequest

The request to get default VDB provision parameters for provisioning a new VDB by timestamp.

type ApiProvisionVdbByTimestampRequest

type ApiProvisionVdbByTimestampRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbByTimestampRequest) Execute

func (ApiProvisionVdbByTimestampRequest) ProvisionVDBByTimestampParameters

func (r ApiProvisionVdbByTimestampRequest) ProvisionVDBByTimestampParameters(provisionVDBByTimestampParameters ProvisionVDBByTimestampParameters) ApiProvisionVdbByTimestampRequest

The parameters to provision a VDB.

type ApiProvisionVdbFromBookmarkDefaultsRequest

type ApiProvisionVdbFromBookmarkDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbFromBookmarkDefaultsRequest) Execute

func (ApiProvisionVdbFromBookmarkDefaultsRequest) ProvisionVDBFromBookmarkDefaultsRequest

func (r ApiProvisionVdbFromBookmarkDefaultsRequest) ProvisionVDBFromBookmarkDefaultsRequest(provisionVDBFromBookmarkDefaultsRequest ProvisionVDBFromBookmarkDefaultsRequest) ApiProvisionVdbFromBookmarkDefaultsRequest

The request to get default VDB provision parameters for provisioning a new VDB from a bookmark.

type ApiProvisionVdbFromBookmarkRequest

type ApiProvisionVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbFromBookmarkRequest) Execute

func (ApiProvisionVdbFromBookmarkRequest) ProvisionVDBFromBookmarkParameters

func (r ApiProvisionVdbFromBookmarkRequest) ProvisionVDBFromBookmarkParameters(provisionVDBFromBookmarkParameters ProvisionVDBFromBookmarkParameters) ApiProvisionVdbFromBookmarkRequest

The parameters to provision a VDB.

type ApiProvisionVdbGroupFromBookmarkRequest

type ApiProvisionVdbGroupFromBookmarkRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbGroupFromBookmarkRequest) Execute

func (ApiProvisionVdbGroupFromBookmarkRequest) ProvisionVDBGroupFromBookmarkParameters

func (r ApiProvisionVdbGroupFromBookmarkRequest) ProvisionVDBGroupFromBookmarkParameters(provisionVDBGroupFromBookmarkParameters ProvisionVDBGroupFromBookmarkParameters) ApiProvisionVdbGroupFromBookmarkRequest

The parameters to provision a VDB group from a Bookmark.

type ApiRefreshEnvironmentRequest

type ApiRefreshEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshEnvironmentRequest) Execute

type ApiRefreshVdbByLocationRequest

type ApiRefreshVdbByLocationRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbByLocationRequest) Execute

func (ApiRefreshVdbByLocationRequest) RefreshVDBByLocationParameters

func (r ApiRefreshVdbByLocationRequest) RefreshVDBByLocationParameters(refreshVDBByLocationParameters RefreshVDBByLocationParameters) ApiRefreshVdbByLocationRequest

The parameters to refresh a VDB.

type ApiRefreshVdbBySnapshotRequest

type ApiRefreshVdbBySnapshotRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbBySnapshotRequest) Execute

func (ApiRefreshVdbBySnapshotRequest) RefreshVDBBySnapshotParameters

func (r ApiRefreshVdbBySnapshotRequest) RefreshVDBBySnapshotParameters(refreshVDBBySnapshotParameters RefreshVDBBySnapshotParameters) ApiRefreshVdbBySnapshotRequest

The parameters to refresh a VDB.

type ApiRefreshVdbByTimestampRequest

type ApiRefreshVdbByTimestampRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbByTimestampRequest) Execute

func (ApiRefreshVdbByTimestampRequest) RefreshVDBByTimestampParameters

func (r ApiRefreshVdbByTimestampRequest) RefreshVDBByTimestampParameters(refreshVDBByTimestampParameters RefreshVDBByTimestampParameters) ApiRefreshVdbByTimestampRequest

The parameters to refresh a VDB.

type ApiRefreshVdbFromBookmarkRequest

type ApiRefreshVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbFromBookmarkRequest) Execute

func (ApiRefreshVdbFromBookmarkRequest) RefreshVDBFromBookmarkParameters

func (r ApiRefreshVdbFromBookmarkRequest) RefreshVDBFromBookmarkParameters(refreshVDBFromBookmarkParameters RefreshVDBFromBookmarkParameters) ApiRefreshVdbFromBookmarkRequest

The parameters to refresh a VDB.

type ApiRefreshVdbGroupRequest

type ApiRefreshVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbGroupRequest) Execute

func (ApiRefreshVdbGroupRequest) RefreshVDBGroupParameters

func (r ApiRefreshVdbGroupRequest) RefreshVDBGroupParameters(refreshVDBGroupParameters RefreshVDBGroupParameters) ApiRefreshVdbGroupRequest

The parameters to refresh a VDBGroup.

type ApiRegisterEngineRequest

type ApiRegisterEngineRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiRegisterEngineRequest) EngineRegistrationParameter

func (r ApiRegisterEngineRequest) EngineRegistrationParameter(engineRegistrationParameter EngineRegistrationParameter) ApiRegisterEngineRequest

The parameters to register an engine.

func (ApiRegisterEngineRequest) Execute

type ApiRegisterHyperscaleInstanceRequest

type ApiRegisterHyperscaleInstanceRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiRegisterHyperscaleInstanceRequest) Execute

func (ApiRegisterHyperscaleInstanceRequest) HyperscaleInstanceRegistrationParameter

func (r ApiRegisterHyperscaleInstanceRequest) HyperscaleInstanceRegistrationParameter(hyperscaleInstanceRegistrationParameter HyperscaleInstanceRegistrationParameter) ApiRegisterHyperscaleInstanceRequest

The parameters to register a Hyperscale instance.

type ApiRemoveAccessGroupAccountIdRequest

type ApiRemoveAccessGroupAccountIdRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiRemoveAccessGroupAccountIdRequest) Execute

type ApiRemoveAccessGroupAccountTagsRequest

type ApiRemoveAccessGroupAccountTagsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiRemoveAccessGroupAccountTagsRequest) DeleteTag

The parameters to delete tags

func (ApiRemoveAccessGroupAccountTagsRequest) Execute

type ApiRemoveAccessGroupScopeRequest

type ApiRemoveAccessGroupScopeRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiRemoveAccessGroupScopeRequest) Execute

type ApiRemoveAlwaysAllowedPermissionsRequest

type ApiRemoveAlwaysAllowedPermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiRemoveAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest

func (r ApiRemoveAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest(alwaysAllowedPermissionRequest AlwaysAllowedPermissionRequest) ApiRemoveAlwaysAllowedPermissionsRequest

Remove always allowed permissions for given object type.

func (ApiRemoveAlwaysAllowedPermissionsRequest) Execute

type ApiRemoveRolePermissionsRequest

type ApiRemoveRolePermissionsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiRemoveRolePermissionsRequest) Execute

func (ApiRemoveRolePermissionsRequest) PermissionsRequest

Permissions to remove from the role.

type ApiResetAccountPasswordRequest

type ApiResetAccountPasswordRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiResetAccountPasswordRequest) Execute

func (ApiResetAccountPasswordRequest) ResetPasswordParameter

func (r ApiResetAccountPasswordRequest) ResetPasswordParameter(resetPasswordParameter ResetPasswordParameter) ApiResetAccountPasswordRequest

type ApiRollbackVdbBySnapshotRequest

type ApiRollbackVdbBySnapshotRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbBySnapshotRequest) Execute

func (ApiRollbackVdbBySnapshotRequest) RollbackVDBBySnapshotParameters

func (r ApiRollbackVdbBySnapshotRequest) RollbackVDBBySnapshotParameters(rollbackVDBBySnapshotParameters RollbackVDBBySnapshotParameters) ApiRollbackVdbBySnapshotRequest

The parameters to rollback a VDB.

type ApiRollbackVdbByTimestampRequest

type ApiRollbackVdbByTimestampRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbByTimestampRequest) Execute

func (ApiRollbackVdbByTimestampRequest) RollbackVDBByTimestampParameters

func (r ApiRollbackVdbByTimestampRequest) RollbackVDBByTimestampParameters(rollbackVDBByTimestampParameters RollbackVDBByTimestampParameters) ApiRollbackVdbByTimestampRequest

The parameters to rollback a VDB.

type ApiRollbackVdbFromBookmarkRequest

type ApiRollbackVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbFromBookmarkRequest) Execute

func (ApiRollbackVdbFromBookmarkRequest) RollbackVDBFromBookmarkParameters

func (r ApiRollbackVdbFromBookmarkRequest) RollbackVDBFromBookmarkParameters(rollbackVDBFromBookmarkParameters RollbackVDBFromBookmarkParameters) ApiRollbackVdbFromBookmarkRequest

The parameters to rollback a VDB.

type ApiRollbackVdbGroupRequest

type ApiRollbackVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbGroupRequest) Execute

func (ApiRollbackVdbGroupRequest) RollbackVDBGroupParameters

func (r ApiRollbackVdbGroupRequest) RollbackVDBGroupParameters(rollbackVDBGroupParameters RollbackVDBGroupParameters) ApiRollbackVdbGroupRequest

The parameters to rollback a VDBGroup.

type ApiSearchAccessGroupsRequest

type ApiSearchAccessGroupsRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiSearchAccessGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchAccessGroupsRequest) Execute

func (ApiSearchAccessGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchAccessGroupsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchAccessGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchAccountsRequest

type ApiSearchAccountsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiSearchAccountsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchAccountsRequest) Execute

func (ApiSearchAccountsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchAccountsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchAccountsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchAlgorithmsRequest

type ApiSearchAlgorithmsRequest struct {
	ApiService *AlgorithmsApiService
	// contains filtered or unexported fields
}

func (ApiSearchAlgorithmsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchAlgorithmsRequest) Execute

func (ApiSearchAlgorithmsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchAlgorithmsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchAlgorithmsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchBookmarksByVdbGroupRequest

type ApiSearchBookmarksByVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiSearchBookmarksByVdbGroupRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchBookmarksByVdbGroupRequest) Execute

func (ApiSearchBookmarksByVdbGroupRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchBookmarksByVdbGroupRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchBookmarksByVdbGroupRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchBookmarksByVdbRequest

type ApiSearchBookmarksByVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchBookmarksByVdbRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchBookmarksByVdbRequest) Execute

func (ApiSearchBookmarksByVdbRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchBookmarksByVdbRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchBookmarksByVdbRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchBookmarksRequest

type ApiSearchBookmarksRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiSearchBookmarksRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchBookmarksRequest) Execute

func (ApiSearchBookmarksRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchBookmarksRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchBookmarksRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchCdbsRequest

type ApiSearchCdbsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchCdbsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchCdbsRequest) Execute

func (ApiSearchCdbsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchCdbsRequest) SearchBody

func (r ApiSearchCdbsRequest) SearchBody(searchBody SearchBody) ApiSearchCdbsRequest

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchCdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchConnectorsRequest

type ApiSearchConnectorsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiSearchConnectorsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchConnectorsRequest) Execute

func (ApiSearchConnectorsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchConnectorsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchConnectorsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchDatabaseTemplatesRequest

type ApiSearchDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiSearchDatabaseTemplatesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchDatabaseTemplatesRequest) Execute

func (ApiSearchDatabaseTemplatesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDatabaseTemplatesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchDatabaseTemplatesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDatasetGroupsRequest

type ApiSearchDatasetGroupsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiSearchDatasetGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchDatasetGroupsRequest) Execute

func (ApiSearchDatasetGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDatasetGroupsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchDatasetGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourceConsumptionReportRequest

type ApiSearchDsourceConsumptionReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourceConsumptionReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchDsourceConsumptionReportRequest) Execute

func (ApiSearchDsourceConsumptionReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchDsourceConsumptionReportRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchDsourceConsumptionReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourceUsageReportRequest

type ApiSearchDsourceUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourceUsageReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchDsourceUsageReportRequest) Execute

func (ApiSearchDsourceUsageReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchDsourceUsageReportRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchDsourceUsageReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourcesRequest

type ApiSearchDsourcesRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourcesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchDsourcesRequest) Execute

func (ApiSearchDsourcesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDsourcesRequest) Permission

Restrict the objects, which are allowed.

func (ApiSearchDsourcesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchDsourcesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchEnginesRequest

type ApiSearchEnginesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiSearchEnginesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchEnginesRequest) Execute

func (ApiSearchEnginesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchEnginesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchEnginesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchEnvironmentsRequest

type ApiSearchEnvironmentsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiSearchEnvironmentsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchEnvironmentsRequest) Execute

func (ApiSearchEnvironmentsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchEnvironmentsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchEnvironmentsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchExecutionEventsRequest

type ApiSearchExecutionEventsRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiSearchExecutionEventsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchExecutionEventsRequest) Execute

func (ApiSearchExecutionEventsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchExecutionEventsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchExecutionEventsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchExecutionsRequest

type ApiSearchExecutionsRequest struct {
	ApiService *ExecutionsApiService
	// contains filtered or unexported fields
}

func (ApiSearchExecutionsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchExecutionsRequest) Execute

func (ApiSearchExecutionsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchExecutionsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchExecutionsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchHashicorpVaultsRequest

type ApiSearchHashicorpVaultsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiSearchHashicorpVaultsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHashicorpVaultsRequest) Execute

func (ApiSearchHashicorpVaultsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHashicorpVaultsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHashicorpVaultsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchHyperscaleConnectorsRequest

type ApiSearchHyperscaleConnectorsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiSearchHyperscaleConnectorsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHyperscaleConnectorsRequest) Execute

func (ApiSearchHyperscaleConnectorsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHyperscaleConnectorsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHyperscaleConnectorsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchHyperscaleDatasetTablesOrFilesRequest

type ApiSearchHyperscaleDatasetTablesOrFilesRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiSearchHyperscaleDatasetTablesOrFilesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHyperscaleDatasetTablesOrFilesRequest) Execute

func (ApiSearchHyperscaleDatasetTablesOrFilesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHyperscaleDatasetTablesOrFilesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHyperscaleDatasetTablesOrFilesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchHyperscaleDatasetsRequest

type ApiSearchHyperscaleDatasetsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiSearchHyperscaleDatasetsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHyperscaleDatasetsRequest) Execute

func (ApiSearchHyperscaleDatasetsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHyperscaleDatasetsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHyperscaleDatasetsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchHyperscaleInstancesRequest

type ApiSearchHyperscaleInstancesRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiSearchHyperscaleInstancesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHyperscaleInstancesRequest) Execute

func (ApiSearchHyperscaleInstancesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHyperscaleInstancesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHyperscaleInstancesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchHyperscaleMountPointsRequest

type ApiSearchHyperscaleMountPointsRequest struct {
	ApiService *HyperscaleObjectsApiService
	// contains filtered or unexported fields
}

func (ApiSearchHyperscaleMountPointsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchHyperscaleMountPointsRequest) Execute

func (ApiSearchHyperscaleMountPointsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchHyperscaleMountPointsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchHyperscaleMountPointsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchJobsRequest

type ApiSearchJobsRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiSearchJobsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchJobsRequest) Execute

func (ApiSearchJobsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchJobsRequest) SearchBody

func (r ApiSearchJobsRequest) SearchBody(searchBody SearchBody) ApiSearchJobsRequest

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchJobsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchKerberosConfigsRequest

type ApiSearchKerberosConfigsRequest struct {
	ApiService *KerberosConfigApiService
	// contains filtered or unexported fields
}

func (ApiSearchKerberosConfigsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchKerberosConfigsRequest) Execute

func (ApiSearchKerberosConfigsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchKerberosConfigsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchKerberosConfigsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchMaskingEnvironmentsRequest

type ApiSearchMaskingEnvironmentsRequest struct {
	ApiService *MaskingEnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingEnvironmentsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchMaskingEnvironmentsRequest) Execute

func (ApiSearchMaskingEnvironmentsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchMaskingEnvironmentsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchMaskingEnvironmentsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchMaskingExecutionMetricsReportRequest

type ApiSearchMaskingExecutionMetricsReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingExecutionMetricsReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchMaskingExecutionMetricsReportRequest) Execute

func (ApiSearchMaskingExecutionMetricsReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchMaskingExecutionMetricsReportRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchMaskingExecutionMetricsReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchMaskingJobSourceEnginesRequest

type ApiSearchMaskingJobSourceEnginesRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingJobSourceEnginesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchMaskingJobSourceEnginesRequest) Execute

func (ApiSearchMaskingJobSourceEnginesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchMaskingJobSourceEnginesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchMaskingJobSourceEnginesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchMaskingJobsRequest

type ApiSearchMaskingJobsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingJobsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchMaskingJobsRequest) Execute

func (ApiSearchMaskingJobsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchMaskingJobsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchMaskingJobsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchPasswordVaultsRequest

type ApiSearchPasswordVaultsRequest struct {
	ApiService *PasswordVaultsApiService
	// contains filtered or unexported fields
}

func (ApiSearchPasswordVaultsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchPasswordVaultsRequest) Execute

func (ApiSearchPasswordVaultsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchPasswordVaultsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchPasswordVaultsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchReportingSchedulesRequest

type ApiSearchReportingSchedulesRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchReportingSchedulesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchReportingSchedulesRequest) Execute

func (ApiSearchReportingSchedulesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchReportingSchedulesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchReportingSchedulesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchRolesRequest

type ApiSearchRolesRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiSearchRolesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchRolesRequest) Execute

func (ApiSearchRolesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchRolesRequest) SearchBody

func (r ApiSearchRolesRequest) SearchBody(searchBody SearchBody) ApiSearchRolesRequest

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchRolesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchSnapshotsRequest

type ApiSearchSnapshotsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiSearchSnapshotsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchSnapshotsRequest) Execute

func (ApiSearchSnapshotsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchSnapshotsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchSnapshotsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchSourcesRequest

type ApiSearchSourcesRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiSearchSourcesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchSourcesRequest) Execute

func (ApiSearchSourcesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchSourcesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchSourcesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchTimeflowsRequest

type ApiSearchTimeflowsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiSearchTimeflowsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchTimeflowsRequest) Execute

func (ApiSearchTimeflowsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchTimeflowsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchTimeflowsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVcdbsRequest

type ApiSearchVcdbsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVcdbsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVcdbsRequest) Execute

func (ApiSearchVcdbsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVcdbsRequest) SearchBody

func (r ApiSearchVcdbsRequest) SearchBody(searchBody SearchBody) ApiSearchVcdbsRequest

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVcdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbGroupsByBookmarkRequest

type ApiSearchVdbGroupsByBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbGroupsByBookmarkRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVdbGroupsByBookmarkRequest) Execute

func (ApiSearchVdbGroupsByBookmarkRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVdbGroupsByBookmarkRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVdbGroupsByBookmarkRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbGroupsRequest

type ApiSearchVdbGroupsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbGroupsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVdbGroupsRequest) Execute

func (ApiSearchVdbGroupsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVdbGroupsRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVdbGroupsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbInventoryReportRequest

type ApiSearchVdbInventoryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbInventoryReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVdbInventoryReportRequest) Execute

func (ApiSearchVdbInventoryReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchVdbInventoryReportRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVdbInventoryReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbsRequest

type ApiSearchVdbsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbsRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVdbsRequest) Execute

func (ApiSearchVdbsRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVdbsRequest) Permission

func (r ApiSearchVdbsRequest) Permission(permission PermissionEnum) ApiSearchVdbsRequest

Restrict the objects, which are allowed.

func (ApiSearchVdbsRequest) SearchBody

func (r ApiSearchVdbsRequest) SearchBody(searchBody SearchBody) ApiSearchVdbsRequest

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVdbsRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVirtualizationPoliciesRequest

type ApiSearchVirtualizationPoliciesRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiSearchVirtualizationPoliciesRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVirtualizationPoliciesRequest) Execute

func (ApiSearchVirtualizationPoliciesRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVirtualizationPoliciesRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVirtualizationPoliciesRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchVirtualizationStorageSummaryReportRequest

type ApiSearchVirtualizationStorageSummaryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchVirtualizationStorageSummaryReportRequest) Cursor

Cursor to fetch the next or previous page of results. The value of this property must be extracted from the 'prev_cursor' or 'next_cursor' property of a PaginatedResponseMetadata which is contained in the response of list and search API endpoints.

func (ApiSearchVirtualizationStorageSummaryReportRequest) Execute

func (ApiSearchVirtualizationStorageSummaryReportRequest) Limit

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchVirtualizationStorageSummaryReportRequest) SearchBody

A request body containing a filter expression. This enables searching for items matching arbitrarily complex conditions. The list of attributes which can be used in filter expressions is available in the x-filterable vendor extension. # Filter Expression Overview **Note: All keywords are case-insensitive** ## Comparison Operators | Operator | Description | Example | | --- | --- | --- | | CONTAINS | Substring or membership testing for string and list attributes respectively. | field3 CONTAINS 'foobar', field4 CONTAINS TRUE | | IN | Tests if field is a member of a list literal. List can contain a maximum of 100 values | field2 IN ['Goku', 'Vegeta'] | | GE | Tests if a field is greater than or equal to a literal value | field1 GE 1.2e-2 | | GT | Tests if a field is greater than a literal value | field1 GT 1.2e-2 | | LE | Tests if a field is less than or equal to a literal value | field1 LE 9000 | | LT | Tests if a field is less than a literal value | field1 LT 9.02 | | NE | Tests if a field is not equal to a literal value | field1 NE 42 | | EQ | Tests if a field is equal to a literal value | field1 EQ 42 | ## Search Operator The SEARCH operator filters for items which have any filterable attribute that contains the input string as a substring, comparison is done case-insensitively. This is not restricted to attributes with string values. Specifically `SEARCH '12'` would match an item with an attribute with an integer value of `123`. ## Logical Operators Ordered by precedence. | Operator | Description | Example | | --- | --- | --- | | NOT | Logical NOT (Right associative) | NOT field1 LE 9000 | | AND | Logical AND (Left Associative) | field1 GT 9000 AND field2 EQ 'Goku' | | OR | Logical OR (Left Associative) | field1 GT 9000 OR field2 EQ 'Goku' | ## Grouping Parenthesis `()` can be used to override operator precedence. For example: NOT (field1 LT 1234 AND field2 CONTAINS 'foo') ## Literal Values | Literal | Description | Examples | | --- | --- | --- | | Nil | Represents the absence of a value | nil, Nil, nIl, NIL | | Boolean | true/false boolean | true, false, True, False, TRUE, FALSE | | Number | Signed integer and floating point numbers. Also supports scientific notation. | 0, 1, -1, 1.2, 0.35, 1.2e-2, -1.2e+2 | | String | Single or double quoted | \"foo\", \"bar\", \"foo bar\", 'foo', 'bar', 'foo bar' | | Datetime | Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) | 2018-04-27T18:39:26.397237+00:00 | | List | Comma-separated literals wrapped in square brackets | [0], [0, 1], ['foo', \"bar\"] | ## Limitations - A maximum of 8 unique identifiers may be used inside a filter expression.

func (ApiSearchVirtualizationStorageSummaryReportRequest) Sort

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSnapshotDsourceRequest

type ApiSnapshotDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiSnapshotDsourceRequest) DSourceSnapshotParameters

func (r ApiSnapshotDsourceRequest) DSourceSnapshotParameters(dSourceSnapshotParameters DSourceSnapshotParameters) ApiSnapshotDsourceRequest

Optional parameters to snapshot a DSource.

func (ApiSnapshotDsourceRequest) Execute

type ApiSnapshotVdbRequest

type ApiSnapshotVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSnapshotVdbRequest) Execute

type ApiStartVdbRequest

type ApiStartVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiStartVdbRequest) Execute

type ApiStopVdbRequest

type ApiStopVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiStopVdbRequest) Execute

type ApiSwitchTimeflowRequest

type ApiSwitchTimeflowRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSwitchTimeflowRequest) Execute

func (ApiSwitchTimeflowRequest) SwitchTimeflowParameters

func (r ApiSwitchTimeflowRequest) SwitchTimeflowParameters(switchTimeflowParameters SwitchTimeflowParameters) ApiSwitchTimeflowRequest

The parameters to switch the timeflow of a VDB.

type ApiTokenInfoRequest

type ApiTokenInfoRequest struct {
	ApiService *LoginApiService
	// contains filtered or unexported fields
}

func (ApiTokenInfoRequest) Execute

func (ApiTokenInfoRequest) TokenInfoRequest

func (r ApiTokenInfoRequest) TokenInfoRequest(tokenInfoRequest TokenInfoRequest) ApiTokenInfoRequest

type ApiUndoImportDatabaseTemplatesRequest

type ApiUndoImportDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUndoImportDatabaseTemplatesRequest) EngineIdBody

Body containing the ID of the registered engine.

func (ApiUndoImportDatabaseTemplatesRequest) Execute

type ApiUnlockVdbGroupRequest

type ApiUnlockVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiUnlockVdbGroupRequest) Execute

type ApiUnlockVdbRequest

type ApiUnlockVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiUnlockVdbRequest) Execute

func (r ApiUnlockVdbRequest) Execute() (*VDB, *http.Response, error)

type ApiUnregisterEngineRequest

type ApiUnregisterEngineRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUnregisterEngineRequest) Execute

type ApiUnregisterHyperscaleInstanceRequest

type ApiUnregisterHyperscaleInstanceRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiUnregisterHyperscaleInstanceRequest) Execute

type ApiUnsetSnapshotRetentionRequest

type ApiUnsetSnapshotRetentionRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiUnsetSnapshotRetentionRequest) Execute

type ApiUpdateAccessGroupRequest

type ApiUpdateAccessGroupRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAccessGroupRequest) AccessGroupUpdateParameters

func (r ApiUpdateAccessGroupRequest) AccessGroupUpdateParameters(accessGroupUpdateParameters AccessGroupUpdateParameters) ApiUpdateAccessGroupRequest

func (ApiUpdateAccessGroupRequest) Execute

type ApiUpdateAccessGroupScopeRequest

type ApiUpdateAccessGroupScopeRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAccessGroupScopeRequest) Execute

func (ApiUpdateAccessGroupScopeRequest) UpdateAccessGroupScope

func (r ApiUpdateAccessGroupScopeRequest) UpdateAccessGroupScope(updateAccessGroupScope UpdateAccessGroupScope) ApiUpdateAccessGroupScopeRequest

Access group scope to update.

type ApiUpdateAccountRequest

type ApiUpdateAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAccountRequest) AccountUpdateParameter

func (r ApiUpdateAccountRequest) AccountUpdateParameter(accountUpdateParameter AccountUpdateParameter) ApiUpdateAccountRequest

func (ApiUpdateAccountRequest) Execute

type ApiUpdateApiClassificationRequest

type ApiUpdateApiClassificationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApiClassificationRequest) APIClassificationConfig

func (r ApiUpdateApiClassificationRequest) APIClassificationConfig(aPIClassificationConfig APIClassificationConfig) ApiUpdateApiClassificationRequest

Request to update api classification config.

func (ApiUpdateApiClassificationRequest) Execute

type ApiUpdateBookmarkRequest

type ApiUpdateBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiUpdateBookmarkRequest) Execute

func (ApiUpdateBookmarkRequest) UpdateBookmarkParameters

func (r ApiUpdateBookmarkRequest) UpdateBookmarkParameters(updateBookmarkParameters UpdateBookmarkParameters) ApiUpdateBookmarkRequest

The new data to update a Bookmark.

type ApiUpdateConnectorByIdRequest

type ApiUpdateConnectorByIdRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateConnectorByIdRequest) ConnectorUpdateParameters

func (r ApiUpdateConnectorByIdRequest) ConnectorUpdateParameters(connectorUpdateParameters ConnectorUpdateParameters) ApiUpdateConnectorByIdRequest

The new data to update a masking Connector.

func (ApiUpdateConnectorByIdRequest) Execute

type ApiUpdateDatabaseTemplateRequest

type ApiUpdateDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDatabaseTemplateRequest) Execute

func (ApiUpdateDatabaseTemplateRequest) UpdateDatabaseTemplateParameters

func (r ApiUpdateDatabaseTemplateRequest) UpdateDatabaseTemplateParameters(updateDatabaseTemplateParameters UpdateDatabaseTemplateParameters) ApiUpdateDatabaseTemplateRequest

The new data to update a VDB.

type ApiUpdateEnvironmentRequest

type ApiUpdateEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEnvironmentRequest) EnvironmentUpdateParameters

func (r ApiUpdateEnvironmentRequest) EnvironmentUpdateParameters(environmentUpdateParameters EnvironmentUpdateParameters) ApiUpdateEnvironmentRequest

the parameters to update an environment

func (ApiUpdateEnvironmentRequest) Execute

type ApiUpdateEnvironmentUserRequest

type ApiUpdateEnvironmentUserRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEnvironmentUserRequest) EnvironmentUserParams

func (r ApiUpdateEnvironmentUserRequest) EnvironmentUserParams(environmentUserParams EnvironmentUserParams) ApiUpdateEnvironmentUserRequest

The parameters to create an environment user.

func (ApiUpdateEnvironmentUserRequest) Execute

type ApiUpdateHostRequest

type ApiUpdateHostRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateHostRequest) Execute

func (ApiUpdateHostRequest) HostUpdateParameters

func (r ApiUpdateHostRequest) HostUpdateParameters(hostUpdateParameters HostUpdateParameters) ApiUpdateHostRequest

the parameters to update a host.

type ApiUpdateHyperscaleInstanceRequest

type ApiUpdateHyperscaleInstanceRequest struct {
	ApiService *HyperscaleInstanceApiService
	// contains filtered or unexported fields
}

func (ApiUpdateHyperscaleInstanceRequest) Execute

func (ApiUpdateHyperscaleInstanceRequest) HyperscaleInstanceUpdateParams

func (r ApiUpdateHyperscaleInstanceRequest) HyperscaleInstanceUpdateParams(hyperscaleInstanceUpdateParams HyperscaleInstanceUpdateParams) ApiUpdateHyperscaleInstanceRequest

Update parameters for a hyperscale instance.

type ApiUpdateLdapConfigRequest

type ApiUpdateLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateLdapConfigRequest) Execute

func (ApiUpdateLdapConfigRequest) LDAPConfigParams

func (r ApiUpdateLdapConfigRequest) LDAPConfigParams(lDAPConfigParams LDAPConfigParams) ApiUpdateLdapConfigRequest

The parameters to update the LDAP config.

type ApiUpdateMaskingJobByIdRequest

type ApiUpdateMaskingJobByIdRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateMaskingJobByIdRequest) Execute

func (ApiUpdateMaskingJobByIdRequest) UpdateMaskingJobParameters

func (r ApiUpdateMaskingJobByIdRequest) UpdateMaskingJobParameters(updateMaskingJobParameters UpdateMaskingJobParameters) ApiUpdateMaskingJobByIdRequest

The new data to update a Masking Job.

type ApiUpdatePasswordPoliciesRequest

type ApiUpdatePasswordPoliciesRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePasswordPoliciesRequest) Execute

func (ApiUpdatePasswordPoliciesRequest) PasswordPoliciesParams

func (r ApiUpdatePasswordPoliciesRequest) PasswordPoliciesParams(passwordPoliciesParams PasswordPoliciesParams) ApiUpdatePasswordPoliciesRequest

The parameters to update the password policies.

type ApiUpdatePropertiesRequest

type ApiUpdatePropertiesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePropertiesRequest) Execute

func (ApiUpdatePropertiesRequest) GlobalProperties

func (r ApiUpdatePropertiesRequest) GlobalProperties(globalProperties GlobalProperties) ApiUpdatePropertiesRequest

The parameters to update property value.

type ApiUpdateProxyConfigurationRequest

type ApiUpdateProxyConfigurationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateProxyConfigurationRequest) Execute

func (ApiUpdateProxyConfigurationRequest) ProxyConfiguration

type ApiUpdateRegisteredEngineRequest

type ApiUpdateRegisteredEngineRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateRegisteredEngineRequest) Execute

func (ApiUpdateRegisteredEngineRequest) RegisteredEngine

The updated registration engine information.

type ApiUpdateReportingScheduleRequest

type ApiUpdateReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiUpdateReportingScheduleRequest) Execute

func (ApiUpdateReportingScheduleRequest) ReportingSchedule

type ApiUpdateRepositoryRequest

type ApiUpdateRepositoryRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateRepositoryRequest) Execute

func (ApiUpdateRepositoryRequest) UpdateRepositoryParameters

func (r ApiUpdateRepositoryRequest) UpdateRepositoryParameters(updateRepositoryParameters UpdateRepositoryParameters) ApiUpdateRepositoryRequest

type ApiUpdateRoleRequest

type ApiUpdateRoleRequest struct {
	ApiService *AuthorizationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateRoleRequest) Execute

func (r ApiUpdateRoleRequest) Execute() (*Role, *http.Response, error)

func (ApiUpdateRoleRequest) RoleUpdateParameters

func (r ApiUpdateRoleRequest) RoleUpdateParameters(roleUpdateParameters RoleUpdateParameters) ApiUpdateRoleRequest

type ApiUpdateSamlConfigRequest

type ApiUpdateSamlConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSamlConfigRequest) Execute

func (ApiUpdateSamlConfigRequest) SAMLConfigParams

func (r ApiUpdateSamlConfigRequest) SAMLConfigParams(sAMLConfigParams SAMLConfigParams) ApiUpdateSamlConfigRequest

The parameters to update the SAML config.

type ApiUpdateSmtpConfigRequest

type ApiUpdateSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSmtpConfigRequest) Execute

func (ApiUpdateSmtpConfigRequest) SMTPConfigParams

func (r ApiUpdateSmtpConfigRequest) SMTPConfigParams(sMTPConfigParams SMTPConfigParams) ApiUpdateSmtpConfigRequest

The parameters to update the SMTP config.

type ApiUpdateSnapshotRequest

type ApiUpdateSnapshotRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSnapshotRequest) Execute

func (ApiUpdateSnapshotRequest) UpdateSnapshotParameters

func (r ApiUpdateSnapshotRequest) UpdateSnapshotParameters(updateSnapshotParameters UpdateSnapshotParameters) ApiUpdateSnapshotRequest

The new data to update a Snapshot.

type ApiUpdateTimeflowRequest

type ApiUpdateTimeflowRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTimeflowRequest) Execute

func (ApiUpdateTimeflowRequest) UpdateTimeflowParameters

func (r ApiUpdateTimeflowRequest) UpdateTimeflowParameters(updateTimeflowParameters UpdateTimeflowParameters) ApiUpdateTimeflowRequest

The new data to update a timeflow.

type ApiUpdateVdbByIdRequest

type ApiUpdateVdbByIdRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVdbByIdRequest) Execute

func (ApiUpdateVdbByIdRequest) UpdateVDBParameters

func (r ApiUpdateVdbByIdRequest) UpdateVDBParameters(updateVDBParameters UpdateVDBParameters) ApiUpdateVdbByIdRequest

The new data to update a VDB.

type ApiUpdateVdbGroupByIdRequest

type ApiUpdateVdbGroupByIdRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVdbGroupByIdRequest) Execute

func (ApiUpdateVdbGroupByIdRequest) UpdateVDBGroupParameters

func (r ApiUpdateVdbGroupByIdRequest) UpdateVDBGroupParameters(updateVDBGroupParameters UpdateVDBGroupParameters) ApiUpdateVdbGroupByIdRequest

The new data to update a VDB group.

type ApiUploadMaskingFileRequest

type ApiUploadMaskingFileRequest struct {
	ApiService *MaskingFilesApiService
	// contains filtered or unexported fields
}

func (ApiUploadMaskingFileRequest) Execute

func (ApiUploadMaskingFileRequest) MaskingFileUploadParameters

func (r ApiUploadMaskingFileRequest) MaskingFileUploadParameters(maskingFileUploadParameters MaskingFileUploadParameters) ApiUploadMaskingFileRequest

The parameters to upload a file to a masking engine.

type ApiUsageData

type ApiUsageData struct {
	// API called.
	ApiEndpoint *string `json:"api_endpoint,omitempty"`
	// HTTP method for API called.
	ApiMethod *string `json:"api_method,omitempty"`
	// Count of API calls over the requested timeframe.
	ApiCount int64 `json:"api_count"`
	// Whether the API calls are of kind automation or governance
	Kind *string `json:"kind,omitempty"`
	// Name of the api client that called the API endpoint
	ClientName *string `json:"client_name,omitempty"`
	// Version of the api client that called the API endpoint
	UserAgent *string `json:"user_agent,omitempty"`
	// DCT version at the time of api call
	DctVersion *string `json:"dct_version,omitempty"`
}

ApiUsageData struct for ApiUsageData

func NewApiUsageData

func NewApiUsageData(apiCount int64) *ApiUsageData

NewApiUsageData instantiates a new ApiUsageData 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 NewApiUsageDataWithDefaults

func NewApiUsageDataWithDefaults() *ApiUsageData

NewApiUsageDataWithDefaults instantiates a new ApiUsageData 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 (*ApiUsageData) GetApiCount

func (o *ApiUsageData) GetApiCount() int64

GetApiCount returns the ApiCount field value

func (*ApiUsageData) GetApiCountOk

func (o *ApiUsageData) GetApiCountOk() (*int64, bool)

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

func (*ApiUsageData) GetApiEndpoint

func (o *ApiUsageData) GetApiEndpoint() string

GetApiEndpoint returns the ApiEndpoint field value if set, zero value otherwise.

func (*ApiUsageData) GetApiEndpointOk

func (o *ApiUsageData) GetApiEndpointOk() (*string, bool)

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

func (*ApiUsageData) GetApiMethod

func (o *ApiUsageData) GetApiMethod() string

GetApiMethod returns the ApiMethod field value if set, zero value otherwise.

func (*ApiUsageData) GetApiMethodOk

func (o *ApiUsageData) GetApiMethodOk() (*string, bool)

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

func (*ApiUsageData) GetClientName

func (o *ApiUsageData) GetClientName() string

GetClientName returns the ClientName field value if set, zero value otherwise.

func (*ApiUsageData) GetClientNameOk

func (o *ApiUsageData) GetClientNameOk() (*string, bool)

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

func (*ApiUsageData) GetDctVersion

func (o *ApiUsageData) GetDctVersion() string

GetDctVersion returns the DctVersion field value if set, zero value otherwise.

func (*ApiUsageData) GetDctVersionOk

func (o *ApiUsageData) GetDctVersionOk() (*string, bool)

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

func (*ApiUsageData) GetKind

func (o *ApiUsageData) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ApiUsageData) GetKindOk

func (o *ApiUsageData) GetKindOk() (*string, bool)

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

func (*ApiUsageData) GetUserAgent

func (o *ApiUsageData) GetUserAgent() string

GetUserAgent returns the UserAgent field value if set, zero value otherwise.

func (*ApiUsageData) GetUserAgentOk

func (o *ApiUsageData) GetUserAgentOk() (*string, bool)

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

func (*ApiUsageData) HasApiEndpoint

func (o *ApiUsageData) HasApiEndpoint() bool

HasApiEndpoint returns a boolean if a field has been set.

func (*ApiUsageData) HasApiMethod

func (o *ApiUsageData) HasApiMethod() bool

HasApiMethod returns a boolean if a field has been set.

func (*ApiUsageData) HasClientName

func (o *ApiUsageData) HasClientName() bool

HasClientName returns a boolean if a field has been set.

func (*ApiUsageData) HasDctVersion

func (o *ApiUsageData) HasDctVersion() bool

HasDctVersion returns a boolean if a field has been set.

func (*ApiUsageData) HasKind

func (o *ApiUsageData) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ApiUsageData) HasUserAgent

func (o *ApiUsageData) HasUserAgent() bool

HasUserAgent returns a boolean if a field has been set.

func (ApiUsageData) MarshalJSON

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

func (*ApiUsageData) SetApiCount

func (o *ApiUsageData) SetApiCount(v int64)

SetApiCount sets field value

func (*ApiUsageData) SetApiEndpoint

func (o *ApiUsageData) SetApiEndpoint(v string)

SetApiEndpoint gets a reference to the given string and assigns it to the ApiEndpoint field.

func (*ApiUsageData) SetApiMethod

func (o *ApiUsageData) SetApiMethod(v string)

SetApiMethod gets a reference to the given string and assigns it to the ApiMethod field.

func (*ApiUsageData) SetClientName

func (o *ApiUsageData) SetClientName(v string)

SetClientName gets a reference to the given string and assigns it to the ClientName field.

func (*ApiUsageData) SetDctVersion

func (o *ApiUsageData) SetDctVersion(v string)

SetDctVersion gets a reference to the given string and assigns it to the DctVersion field.

func (*ApiUsageData) SetKind

func (o *ApiUsageData) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ApiUsageData) SetUserAgent

func (o *ApiUsageData) SetUserAgent(v string)

SetUserAgent gets a reference to the given string and assigns it to the UserAgent field.

func (ApiUsageData) ToMap

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

type ApiUsageReportResponse

type ApiUsageReportResponse struct {
	Items []ApiUsageData `json:"items,omitempty"`
	// Total count of automation API calls over the requested timeframe.
	TotalAutomationApiCount *int64 `json:"total_automation_api_count,omitempty"`
	// Total count of governance API calls over the requested timeframe.
	TotalGovernanceApiCount *int64 `json:"total_governance_api_count,omitempty"`
}

ApiUsageReportResponse struct for ApiUsageReportResponse

func NewApiUsageReportResponse

func NewApiUsageReportResponse() *ApiUsageReportResponse

NewApiUsageReportResponse instantiates a new ApiUsageReportResponse 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 NewApiUsageReportResponseWithDefaults

func NewApiUsageReportResponseWithDefaults() *ApiUsageReportResponse

NewApiUsageReportResponseWithDefaults instantiates a new ApiUsageReportResponse 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 (*ApiUsageReportResponse) GetItems

func (o *ApiUsageReportResponse) GetItems() []ApiUsageData

GetItems returns the Items field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetItemsOk

func (o *ApiUsageReportResponse) GetItemsOk() ([]ApiUsageData, 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.

func (*ApiUsageReportResponse) GetTotalAutomationApiCount

func (o *ApiUsageReportResponse) GetTotalAutomationApiCount() int64

GetTotalAutomationApiCount returns the TotalAutomationApiCount field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetTotalAutomationApiCountOk

func (o *ApiUsageReportResponse) GetTotalAutomationApiCountOk() (*int64, bool)

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

func (*ApiUsageReportResponse) GetTotalGovernanceApiCount

func (o *ApiUsageReportResponse) GetTotalGovernanceApiCount() int64

GetTotalGovernanceApiCount returns the TotalGovernanceApiCount field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetTotalGovernanceApiCountOk

func (o *ApiUsageReportResponse) GetTotalGovernanceApiCountOk() (*int64, bool)

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

func (*ApiUsageReportResponse) HasItems

func (o *ApiUsageReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ApiUsageReportResponse) HasTotalAutomationApiCount

func (o *ApiUsageReportResponse) HasTotalAutomationApiCount() bool

HasTotalAutomationApiCount returns a boolean if a field has been set.

func (*ApiUsageReportResponse) HasTotalGovernanceApiCount

func (o *ApiUsageReportResponse) HasTotalGovernanceApiCount() bool

HasTotalGovernanceApiCount returns a boolean if a field has been set.

func (ApiUsageReportResponse) MarshalJSON

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

func (*ApiUsageReportResponse) SetItems

func (o *ApiUsageReportResponse) SetItems(v []ApiUsageData)

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

func (*ApiUsageReportResponse) SetTotalAutomationApiCount

func (o *ApiUsageReportResponse) SetTotalAutomationApiCount(v int64)

SetTotalAutomationApiCount gets a reference to the given int64 and assigns it to the TotalAutomationApiCount field.

func (*ApiUsageReportResponse) SetTotalGovernanceApiCount

func (o *ApiUsageReportResponse) SetTotalGovernanceApiCount(v int64)

SetTotalGovernanceApiCount gets a reference to the given int64 and assigns it to the TotalGovernanceApiCount field.

func (ApiUsageReportResponse) ToMap

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

type ApiValidateJavaPathRequest

type ApiValidateJavaPathRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiValidateJavaPathRequest) Execute

func (ApiValidateJavaPathRequest) ValidateJavaParameters

func (r ApiValidateJavaPathRequest) ValidateJavaParameters(validateJavaParameters ValidateJavaParameters) ApiValidateJavaPathRequest

The api to check connectivity of engine and a remote host on given port.

type ApiValidateLdapConfigRequest

type ApiValidateLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiValidateLdapConfigRequest) Execute

func (ApiValidateLdapConfigRequest) LdapConfigValidateParameter

func (r ApiValidateLdapConfigRequest) LdapConfigValidateParameter(ldapConfigValidateParameter LdapConfigValidateParameter) ApiValidateLdapConfigRequest

type ApiValidateSmtpConfigRequest

type ApiValidateSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiValidateSmtpConfigRequest) Execute

func (ApiValidateSmtpConfigRequest) SMTPConfigValidate

func (r ApiValidateSmtpConfigRequest) SMTPConfigValidate(sMTPConfigValidate SMTPConfigValidate) ApiValidateSmtpConfigRequest

The parameters to validate the SMTP config.

type AppDataDSourceLinkSourceParameters

type AppDataDSourceLinkSourceParameters struct {
	// Name of the dSource to be created.
	Name *string `json:"name,omitempty"`
	// Id of the source to link.
	SourceId *string `json:"source_id,omitempty"`
	// Id of the dataset group where this dSource should belong to.
	GroupId *string `json:"group_id,omitempty"`
	// The notes/description for the dSource.
	Description *string `json:"description,omitempty"`
	// True if LogSync should run for this database.
	LogSyncEnabled *bool `json:"log_sync_enabled,omitempty"`
	// Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	// The tags to be created for dSource.
	Tags []Tag `json:"tags,omitempty"`
	// Operations to perform before syncing the created dSource. These operations can quiesce any data prior to syncing.
	OpsPreSync []SourceOperation `json:"ops_pre_sync,omitempty"`
	// Operations to perform after syncing a created dSource.
	OpsPostSync []SourceOperation `json:"ops_post_sync,omitempty"`
	// The type of link to create. Default is AppDataDirect.  * `AppDataDirect` - Represents the AppData specific parameters of a link request for a source directly replicated into the Delphix Engine. * `AppDataStaged` - Represents the AppData specific parameters of a link request for a source with a staging source.
	LinkType *string `json:"link_type,omitempty"`
	// The base mount point for the NFS mount on the staging environment [AppDataStaged only].
	StagingMountBase *string `json:"staging_mount_base,omitempty"`
	// The environment used as an intermediate stage to pull data into Delphix [AppDataStaged only].
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// The environment user used to access the staging environment [AppDataStaged only].
	StagingEnvironmentUser *string `json:"staging_environment_user,omitempty"`
	// The OS user to use for linking.
	EnvironmentUser string `json:"environment_user"`
	// List of subdirectories in the source to exclude when syncing data. These paths are relative to the root of the source directory. [AppDataDirect only]
	Excludes []string `json:"excludes,omitempty"`
	// List of symlinks in the source to follow when syncing data. These paths are relative to the root of the source directory. All other symlinks are preserved. [AppDataDirect only]
	FollowSymlinks []string `json:"follow_symlinks,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	Parameters map[string]interface{} `json:"parameters"`
	// The JSON payload conforming to the snapshot parameters definition in a LUA toolkit or platform plugin.
	SyncParameters map[string]interface{} `json:"sync_parameters"`
}

AppDataDSourceLinkSourceParameters struct for AppDataDSourceLinkSourceParameters

func NewAppDataDSourceLinkSourceParameters

func NewAppDataDSourceLinkSourceParameters(environmentUser string, parameters map[string]interface{}, syncParameters map[string]interface{}) *AppDataDSourceLinkSourceParameters

NewAppDataDSourceLinkSourceParameters instantiates a new AppDataDSourceLinkSourceParameters 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 NewAppDataDSourceLinkSourceParametersWithDefaults

func NewAppDataDSourceLinkSourceParametersWithDefaults() *AppDataDSourceLinkSourceParameters

NewAppDataDSourceLinkSourceParametersWithDefaults instantiates a new AppDataDSourceLinkSourceParameters 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 (*AppDataDSourceLinkSourceParameters) GetDescription

func (o *AppDataDSourceLinkSourceParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetDescriptionOk

func (o *AppDataDSourceLinkSourceParameters) 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.

func (*AppDataDSourceLinkSourceParameters) GetEnvironmentUser

func (o *AppDataDSourceLinkSourceParameters) GetEnvironmentUser() string

GetEnvironmentUser returns the EnvironmentUser field value

func (*AppDataDSourceLinkSourceParameters) GetEnvironmentUserOk

func (o *AppDataDSourceLinkSourceParameters) GetEnvironmentUserOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetExcludes

func (o *AppDataDSourceLinkSourceParameters) GetExcludes() []string

GetExcludes returns the Excludes field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetExcludesOk

func (o *AppDataDSourceLinkSourceParameters) GetExcludesOk() ([]string, bool)

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

func (o *AppDataDSourceLinkSourceParameters) GetFollowSymlinks() []string

GetFollowSymlinks returns the FollowSymlinks field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetFollowSymlinksOk

func (o *AppDataDSourceLinkSourceParameters) GetFollowSymlinksOk() ([]string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetGroupId

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetGroupIdOk

func (o *AppDataDSourceLinkSourceParameters) 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.

func (*AppDataDSourceLinkSourceParameters) GetLinkType

func (o *AppDataDSourceLinkSourceParameters) GetLinkType() string

GetLinkType returns the LinkType field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetLinkTypeOk

func (o *AppDataDSourceLinkSourceParameters) GetLinkTypeOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetLogSyncEnabled

func (o *AppDataDSourceLinkSourceParameters) GetLogSyncEnabled() bool

GetLogSyncEnabled returns the LogSyncEnabled field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetLogSyncEnabledOk

func (o *AppDataDSourceLinkSourceParameters) GetLogSyncEnabledOk() (*bool, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetMakeCurrentAccountOwner

func (o *AppDataDSourceLinkSourceParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk

func (o *AppDataDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetNameOk

func (o *AppDataDSourceLinkSourceParameters) 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.

func (*AppDataDSourceLinkSourceParameters) GetOpsPostSync

GetOpsPostSync returns the OpsPostSync field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetOpsPostSyncOk

func (o *AppDataDSourceLinkSourceParameters) GetOpsPostSyncOk() ([]SourceOperation, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetOpsPreSync

GetOpsPreSync returns the OpsPreSync field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetOpsPreSyncOk

func (o *AppDataDSourceLinkSourceParameters) GetOpsPreSyncOk() ([]SourceOperation, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetParameters

func (o *AppDataDSourceLinkSourceParameters) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value

func (*AppDataDSourceLinkSourceParameters) GetParametersOk

func (o *AppDataDSourceLinkSourceParameters) GetParametersOk() (map[string]interface{}, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetSourceId

func (o *AppDataDSourceLinkSourceParameters) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetSourceIdOk

func (o *AppDataDSourceLinkSourceParameters) GetSourceIdOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetStagingEnvironment

func (o *AppDataDSourceLinkSourceParameters) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetStagingEnvironmentOk

func (o *AppDataDSourceLinkSourceParameters) GetStagingEnvironmentOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParameters) GetStagingEnvironmentUser() string

GetStagingEnvironmentUser returns the StagingEnvironmentUser field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetStagingEnvironmentUserOk

func (o *AppDataDSourceLinkSourceParameters) GetStagingEnvironmentUserOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetStagingMountBase

func (o *AppDataDSourceLinkSourceParameters) GetStagingMountBase() string

GetStagingMountBase returns the StagingMountBase field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetStagingMountBaseOk

func (o *AppDataDSourceLinkSourceParameters) GetStagingMountBaseOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetSyncParameters

func (o *AppDataDSourceLinkSourceParameters) GetSyncParameters() map[string]interface{}

GetSyncParameters returns the SyncParameters field value

func (*AppDataDSourceLinkSourceParameters) GetSyncParametersOk

func (o *AppDataDSourceLinkSourceParameters) GetSyncParametersOk() (map[string]interface{}, bool)

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

func (*AppDataDSourceLinkSourceParameters) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParameters) GetTagsOk

func (o *AppDataDSourceLinkSourceParameters) 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.

func (*AppDataDSourceLinkSourceParameters) HasDescription

func (o *AppDataDSourceLinkSourceParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasExcludes

func (o *AppDataDSourceLinkSourceParameters) HasExcludes() bool

HasExcludes returns a boolean if a field has been set.

func (o *AppDataDSourceLinkSourceParameters) HasFollowSymlinks() bool

HasFollowSymlinks returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasGroupId

func (o *AppDataDSourceLinkSourceParameters) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasLinkType

func (o *AppDataDSourceLinkSourceParameters) HasLinkType() bool

HasLinkType returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasLogSyncEnabled

func (o *AppDataDSourceLinkSourceParameters) HasLogSyncEnabled() bool

HasLogSyncEnabled returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasMakeCurrentAccountOwner

func (o *AppDataDSourceLinkSourceParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasName

HasName returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasOpsPostSync

func (o *AppDataDSourceLinkSourceParameters) HasOpsPostSync() bool

HasOpsPostSync returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasOpsPreSync

func (o *AppDataDSourceLinkSourceParameters) HasOpsPreSync() bool

HasOpsPreSync returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasSourceId

func (o *AppDataDSourceLinkSourceParameters) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasStagingEnvironment

func (o *AppDataDSourceLinkSourceParameters) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParameters) HasStagingEnvironmentUser() bool

HasStagingEnvironmentUser returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasStagingMountBase

func (o *AppDataDSourceLinkSourceParameters) HasStagingMountBase() bool

HasStagingMountBase returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParameters) HasTags

HasTags returns a boolean if a field has been set.

func (AppDataDSourceLinkSourceParameters) MarshalJSON

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

func (*AppDataDSourceLinkSourceParameters) SetDescription

func (o *AppDataDSourceLinkSourceParameters) SetDescription(v string)

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

func (*AppDataDSourceLinkSourceParameters) SetEnvironmentUser

func (o *AppDataDSourceLinkSourceParameters) SetEnvironmentUser(v string)

SetEnvironmentUser sets field value

func (*AppDataDSourceLinkSourceParameters) SetExcludes

func (o *AppDataDSourceLinkSourceParameters) SetExcludes(v []string)

SetExcludes gets a reference to the given []string and assigns it to the Excludes field.

func (o *AppDataDSourceLinkSourceParameters) SetFollowSymlinks(v []string)

SetFollowSymlinks gets a reference to the given []string and assigns it to the FollowSymlinks field.

func (*AppDataDSourceLinkSourceParameters) SetGroupId

func (o *AppDataDSourceLinkSourceParameters) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*AppDataDSourceLinkSourceParameters) SetLinkType

func (o *AppDataDSourceLinkSourceParameters) SetLinkType(v string)

SetLinkType gets a reference to the given string and assigns it to the LinkType field.

func (*AppDataDSourceLinkSourceParameters) SetLogSyncEnabled

func (o *AppDataDSourceLinkSourceParameters) SetLogSyncEnabled(v bool)

SetLogSyncEnabled gets a reference to the given bool and assigns it to the LogSyncEnabled field.

func (*AppDataDSourceLinkSourceParameters) SetMakeCurrentAccountOwner

func (o *AppDataDSourceLinkSourceParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*AppDataDSourceLinkSourceParameters) SetName

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

func (*AppDataDSourceLinkSourceParameters) SetOpsPostSync

func (o *AppDataDSourceLinkSourceParameters) SetOpsPostSync(v []SourceOperation)

SetOpsPostSync gets a reference to the given []SourceOperation and assigns it to the OpsPostSync field.

func (*AppDataDSourceLinkSourceParameters) SetOpsPreSync

SetOpsPreSync gets a reference to the given []SourceOperation and assigns it to the OpsPreSync field.

func (*AppDataDSourceLinkSourceParameters) SetParameters

func (o *AppDataDSourceLinkSourceParameters) SetParameters(v map[string]interface{})

SetParameters sets field value

func (*AppDataDSourceLinkSourceParameters) SetSourceId

func (o *AppDataDSourceLinkSourceParameters) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*AppDataDSourceLinkSourceParameters) SetStagingEnvironment

func (o *AppDataDSourceLinkSourceParameters) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (*AppDataDSourceLinkSourceParameters) SetStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParameters) SetStagingEnvironmentUser(v string)

SetStagingEnvironmentUser gets a reference to the given string and assigns it to the StagingEnvironmentUser field.

func (*AppDataDSourceLinkSourceParameters) SetStagingMountBase

func (o *AppDataDSourceLinkSourceParameters) SetStagingMountBase(v string)

SetStagingMountBase gets a reference to the given string and assigns it to the StagingMountBase field.

func (*AppDataDSourceLinkSourceParameters) SetSyncParameters

func (o *AppDataDSourceLinkSourceParameters) SetSyncParameters(v map[string]interface{})

SetSyncParameters sets field value

func (*AppDataDSourceLinkSourceParameters) SetTags

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

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

func (AppDataDSourceLinkSourceParameters) ToMap

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

type AppDataDSourceLinkSourceParametersAllOf

type AppDataDSourceLinkSourceParametersAllOf struct {
	// The type of link to create. Default is AppDataDirect.  * `AppDataDirect` - Represents the AppData specific parameters of a link request for a source directly replicated into the Delphix Engine. * `AppDataStaged` - Represents the AppData specific parameters of a link request for a source with a staging source.
	LinkType *string `json:"link_type,omitempty"`
	// The base mount point for the NFS mount on the staging environment [AppDataStaged only].
	StagingMountBase *string `json:"staging_mount_base,omitempty"`
	// The environment used as an intermediate stage to pull data into Delphix [AppDataStaged only].
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// The environment user used to access the staging environment [AppDataStaged only].
	StagingEnvironmentUser *string `json:"staging_environment_user,omitempty"`
	// The OS user to use for linking.
	EnvironmentUser *string `json:"environment_user,omitempty"`
	// List of subdirectories in the source to exclude when syncing data. These paths are relative to the root of the source directory. [AppDataDirect only]
	Excludes []string `json:"excludes,omitempty"`
	// List of symlinks in the source to follow when syncing data. These paths are relative to the root of the source directory. All other symlinks are preserved. [AppDataDirect only]
	FollowSymlinks []string `json:"follow_symlinks,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	Parameters map[string]interface{} `json:"parameters,omitempty"`
	// The JSON payload conforming to the snapshot parameters definition in a LUA toolkit or platform plugin.
	SyncParameters map[string]interface{} `json:"sync_parameters,omitempty"`
}

AppDataDSourceLinkSourceParametersAllOf struct for AppDataDSourceLinkSourceParametersAllOf

func NewAppDataDSourceLinkSourceParametersAllOf

func NewAppDataDSourceLinkSourceParametersAllOf() *AppDataDSourceLinkSourceParametersAllOf

NewAppDataDSourceLinkSourceParametersAllOf instantiates a new AppDataDSourceLinkSourceParametersAllOf 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 NewAppDataDSourceLinkSourceParametersAllOfWithDefaults

func NewAppDataDSourceLinkSourceParametersAllOfWithDefaults() *AppDataDSourceLinkSourceParametersAllOf

NewAppDataDSourceLinkSourceParametersAllOfWithDefaults instantiates a new AppDataDSourceLinkSourceParametersAllOf 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 (*AppDataDSourceLinkSourceParametersAllOf) GetEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) GetEnvironmentUser() string

GetEnvironmentUser returns the EnvironmentUser field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetEnvironmentUserOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetEnvironmentUserOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetExcludes

GetExcludes returns the Excludes field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetExcludesOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetExcludesOk() ([]string, bool)

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

func (o *AppDataDSourceLinkSourceParametersAllOf) GetFollowSymlinks() []string

GetFollowSymlinks returns the FollowSymlinks field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetFollowSymlinksOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetFollowSymlinksOk() ([]string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetLinkType

GetLinkType returns the LinkType field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetLinkTypeOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetLinkTypeOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetParametersOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetParametersOk() (map[string]interface{}, 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.

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironment

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentUser() string

GetStagingEnvironmentUser returns the StagingEnvironmentUser field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentUserOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingEnvironmentUserOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingMountBase

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingMountBase() string

GetStagingMountBase returns the StagingMountBase field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetStagingMountBaseOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetStagingMountBaseOk() (*string, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) GetSyncParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) GetSyncParameters() map[string]interface{}

GetSyncParameters returns the SyncParameters field value if set, zero value otherwise.

func (*AppDataDSourceLinkSourceParametersAllOf) GetSyncParametersOk

func (o *AppDataDSourceLinkSourceParametersAllOf) GetSyncParametersOk() (map[string]interface{}, bool)

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

func (*AppDataDSourceLinkSourceParametersAllOf) HasEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) HasEnvironmentUser() bool

HasEnvironmentUser returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasExcludes

HasExcludes returns a boolean if a field has been set.

func (o *AppDataDSourceLinkSourceParametersAllOf) HasFollowSymlinks() bool

HasFollowSymlinks returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasLinkType

HasLinkType returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasStagingEnvironment

func (o *AppDataDSourceLinkSourceParametersAllOf) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) HasStagingEnvironmentUser() bool

HasStagingEnvironmentUser returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasStagingMountBase

func (o *AppDataDSourceLinkSourceParametersAllOf) HasStagingMountBase() bool

HasStagingMountBase returns a boolean if a field has been set.

func (*AppDataDSourceLinkSourceParametersAllOf) HasSyncParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) HasSyncParameters() bool

HasSyncParameters returns a boolean if a field has been set.

func (AppDataDSourceLinkSourceParametersAllOf) MarshalJSON

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

func (*AppDataDSourceLinkSourceParametersAllOf) SetEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) SetEnvironmentUser(v string)

SetEnvironmentUser gets a reference to the given string and assigns it to the EnvironmentUser field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetExcludes

func (o *AppDataDSourceLinkSourceParametersAllOf) SetExcludes(v []string)

SetExcludes gets a reference to the given []string and assigns it to the Excludes field.

func (o *AppDataDSourceLinkSourceParametersAllOf) SetFollowSymlinks(v []string)

SetFollowSymlinks gets a reference to the given []string and assigns it to the FollowSymlinks field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetLinkType

SetLinkType gets a reference to the given string and assigns it to the LinkType field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) SetParameters(v map[string]interface{})

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

func (*AppDataDSourceLinkSourceParametersAllOf) SetStagingEnvironment

func (o *AppDataDSourceLinkSourceParametersAllOf) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetStagingEnvironmentUser

func (o *AppDataDSourceLinkSourceParametersAllOf) SetStagingEnvironmentUser(v string)

SetStagingEnvironmentUser gets a reference to the given string and assigns it to the StagingEnvironmentUser field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetStagingMountBase

func (o *AppDataDSourceLinkSourceParametersAllOf) SetStagingMountBase(v string)

SetStagingMountBase gets a reference to the given string and assigns it to the StagingMountBase field.

func (*AppDataDSourceLinkSourceParametersAllOf) SetSyncParameters

func (o *AppDataDSourceLinkSourceParametersAllOf) SetSyncParameters(v map[string]interface{})

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

func (AppDataDSourceLinkSourceParametersAllOf) ToMap

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

type AuditLogsSummary

type AuditLogsSummary struct {
	AccountId        *int64  `json:"account_id,omitempty"`
	AccountFirstName *string `json:"account_first_name,omitempty"`
	AccountLastName  *string `json:"account_last_name,omitempty"`
	// The number of VDB refreshes performed by the account.
	VdbRefreshes *int32 `json:"vdb_refreshes,omitempty"`
	// The number of compliance jobs executed by the account.
	MaskingJobs *int32 `json:"masking_jobs,omitempty"`
}

AuditLogsSummary The summary of actions performed by an account.

func NewAuditLogsSummary

func NewAuditLogsSummary() *AuditLogsSummary

NewAuditLogsSummary instantiates a new AuditLogsSummary 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 NewAuditLogsSummaryWithDefaults

func NewAuditLogsSummaryWithDefaults() *AuditLogsSummary

NewAuditLogsSummaryWithDefaults instantiates a new AuditLogsSummary 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 (*AuditLogsSummary) GetAccountFirstName

func (o *AuditLogsSummary) GetAccountFirstName() string

GetAccountFirstName returns the AccountFirstName field value if set, zero value otherwise.

func (*AuditLogsSummary) GetAccountFirstNameOk

func (o *AuditLogsSummary) GetAccountFirstNameOk() (*string, bool)

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

func (*AuditLogsSummary) GetAccountId

func (o *AuditLogsSummary) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*AuditLogsSummary) GetAccountIdOk

func (o *AuditLogsSummary) GetAccountIdOk() (*int64, 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.

func (*AuditLogsSummary) GetAccountLastName

func (o *AuditLogsSummary) GetAccountLastName() string

GetAccountLastName returns the AccountLastName field value if set, zero value otherwise.

func (*AuditLogsSummary) GetAccountLastNameOk

func (o *AuditLogsSummary) GetAccountLastNameOk() (*string, bool)

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

func (*AuditLogsSummary) GetMaskingJobs

func (o *AuditLogsSummary) GetMaskingJobs() int32

GetMaskingJobs returns the MaskingJobs field value if set, zero value otherwise.

func (*AuditLogsSummary) GetMaskingJobsOk

func (o *AuditLogsSummary) GetMaskingJobsOk() (*int32, bool)

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

func (*AuditLogsSummary) GetVdbRefreshes

func (o *AuditLogsSummary) GetVdbRefreshes() int32

GetVdbRefreshes returns the VdbRefreshes field value if set, zero value otherwise.

func (*AuditLogsSummary) GetVdbRefreshesOk

func (o *AuditLogsSummary) GetVdbRefreshesOk() (*int32, bool)

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

func (*AuditLogsSummary) HasAccountFirstName

func (o *AuditLogsSummary) HasAccountFirstName() bool

HasAccountFirstName returns a boolean if a field has been set.

func (*AuditLogsSummary) HasAccountId

func (o *AuditLogsSummary) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*AuditLogsSummary) HasAccountLastName

func (o *AuditLogsSummary) HasAccountLastName() bool

HasAccountLastName returns a boolean if a field has been set.

func (*AuditLogsSummary) HasMaskingJobs

func (o *AuditLogsSummary) HasMaskingJobs() bool

HasMaskingJobs returns a boolean if a field has been set.

func (*AuditLogsSummary) HasVdbRefreshes

func (o *AuditLogsSummary) HasVdbRefreshes() bool

HasVdbRefreshes returns a boolean if a field has been set.

func (AuditLogsSummary) MarshalJSON

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

func (*AuditLogsSummary) SetAccountFirstName

func (o *AuditLogsSummary) SetAccountFirstName(v string)

SetAccountFirstName gets a reference to the given string and assigns it to the AccountFirstName field.

func (*AuditLogsSummary) SetAccountId

func (o *AuditLogsSummary) SetAccountId(v int64)

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

func (*AuditLogsSummary) SetAccountLastName

func (o *AuditLogsSummary) SetAccountLastName(v string)

SetAccountLastName gets a reference to the given string and assigns it to the AccountLastName field.

func (*AuditLogsSummary) SetMaskingJobs

func (o *AuditLogsSummary) SetMaskingJobs(v int32)

SetMaskingJobs gets a reference to the given int32 and assigns it to the MaskingJobs field.

func (*AuditLogsSummary) SetVdbRefreshes

func (o *AuditLogsSummary) SetVdbRefreshes(v int32)

SetVdbRefreshes gets a reference to the given int32 and assigns it to the VdbRefreshes field.

func (AuditLogsSummary) ToMap

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

type AuditLogsSummaryReportResponse

type AuditLogsSummaryReportResponse struct {
	Items            []AuditLogsSummary         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
	Totals           *AuditLogsSummaryTotals    `json:"totals,omitempty"`
}

AuditLogsSummaryReportResponse struct for AuditLogsSummaryReportResponse

func NewAuditLogsSummaryReportResponse

func NewAuditLogsSummaryReportResponse() *AuditLogsSummaryReportResponse

NewAuditLogsSummaryReportResponse instantiates a new AuditLogsSummaryReportResponse 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 NewAuditLogsSummaryReportResponseWithDefaults

func NewAuditLogsSummaryReportResponseWithDefaults() *AuditLogsSummaryReportResponse

NewAuditLogsSummaryReportResponseWithDefaults instantiates a new AuditLogsSummaryReportResponse 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 (*AuditLogsSummaryReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*AuditLogsSummaryReportResponse) GetItemsOk

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

func (*AuditLogsSummaryReportResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*AuditLogsSummaryReportResponse) GetResponseMetadataOk

func (o *AuditLogsSummaryReportResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

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

func (*AuditLogsSummaryReportResponse) GetTotals

GetTotals returns the Totals field value if set, zero value otherwise.

func (*AuditLogsSummaryReportResponse) GetTotalsOk

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

func (*AuditLogsSummaryReportResponse) HasItems

func (o *AuditLogsSummaryReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*AuditLogsSummaryReportResponse) HasResponseMetadata

func (o *AuditLogsSummaryReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (*AuditLogsSummaryReportResponse) HasTotals

func (o *AuditLogsSummaryReportResponse) HasTotals() bool

HasTotals returns a boolean if a field has been set.

func (AuditLogsSummaryReportResponse) MarshalJSON

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

func (*AuditLogsSummaryReportResponse) SetItems

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

func (*AuditLogsSummaryReportResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (*AuditLogsSummaryReportResponse) SetTotals

SetTotals gets a reference to the given AuditLogsSummaryTotals and assigns it to the Totals field.

func (AuditLogsSummaryReportResponse) ToMap

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

type AuditLogsSummaryTotals

type AuditLogsSummaryTotals struct {
	TotalVdbRefreshes *int32 `json:"total_vdb_refreshes,omitempty"`
	TotalMaskingJobs  *int32 `json:"total_masking_jobs,omitempty"`
}

AuditLogsSummaryTotals The global totals of different actions performed across all accounts.

func NewAuditLogsSummaryTotals

func NewAuditLogsSummaryTotals() *AuditLogsSummaryTotals

NewAuditLogsSummaryTotals instantiates a new AuditLogsSummaryTotals 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 NewAuditLogsSummaryTotalsWithDefaults

func NewAuditLogsSummaryTotalsWithDefaults() *AuditLogsSummaryTotals

NewAuditLogsSummaryTotalsWithDefaults instantiates a new AuditLogsSummaryTotals 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 (*AuditLogsSummaryTotals) GetTotalMaskingJobs

func (o *AuditLogsSummaryTotals) GetTotalMaskingJobs() int32

GetTotalMaskingJobs returns the TotalMaskingJobs field value if set, zero value otherwise.

func (*AuditLogsSummaryTotals) GetTotalMaskingJobsOk

func (o *AuditLogsSummaryTotals) GetTotalMaskingJobsOk() (*int32, bool)

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

func (*AuditLogsSummaryTotals) GetTotalVdbRefreshes

func (o *AuditLogsSummaryTotals) GetTotalVdbRefreshes() int32

GetTotalVdbRefreshes returns the TotalVdbRefreshes field value if set, zero value otherwise.

func (*AuditLogsSummaryTotals) GetTotalVdbRefreshesOk

func (o *AuditLogsSummaryTotals) GetTotalVdbRefreshesOk() (*int32, bool)

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

func (*AuditLogsSummaryTotals) HasTotalMaskingJobs

func (o *AuditLogsSummaryTotals) HasTotalMaskingJobs() bool

HasTotalMaskingJobs returns a boolean if a field has been set.

func (*AuditLogsSummaryTotals) HasTotalVdbRefreshes

func (o *AuditLogsSummaryTotals) HasTotalVdbRefreshes() bool

HasTotalVdbRefreshes returns a boolean if a field has been set.

func (AuditLogsSummaryTotals) MarshalJSON

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

func (*AuditLogsSummaryTotals) SetTotalMaskingJobs

func (o *AuditLogsSummaryTotals) SetTotalMaskingJobs(v int32)

SetTotalMaskingJobs gets a reference to the given int32 and assigns it to the TotalMaskingJobs field.

func (*AuditLogsSummaryTotals) SetTotalVdbRefreshes

func (o *AuditLogsSummaryTotals) SetTotalVdbRefreshes(v int32)

SetTotalVdbRefreshes gets a reference to the given int32 and assigns it to the TotalVdbRefreshes field.

func (AuditLogsSummaryTotals) ToMap

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

type AuthorizationApiService

type AuthorizationApiService service

AuthorizationApiService AuthorizationApi service

func (*AuthorizationApiService) AddAccessGroupAccountIds

func (a *AuthorizationApiService) AddAccessGroupAccountIds(ctx context.Context, accessGroupId string) ApiAddAccessGroupAccountIdsRequest

AddAccessGroupAccountIds Add account ids to an Access group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiAddAccessGroupAccountIdsRequest

func (*AuthorizationApiService) AddAccessGroupAccountIdsExecute

func (a *AuthorizationApiService) AddAccessGroupAccountIdsExecute(r ApiAddAccessGroupAccountIdsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAccessGroupAccountTags

func (a *AuthorizationApiService) AddAccessGroupAccountTags(ctx context.Context, accessGroupId string) ApiAddAccessGroupAccountTagsRequest

AddAccessGroupAccountTags Add account tags to an Access group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiAddAccessGroupAccountTagsRequest

func (*AuthorizationApiService) AddAccessGroupAccountTagsExecute

func (a *AuthorizationApiService) AddAccessGroupAccountTagsExecute(r ApiAddAccessGroupAccountTagsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAccessGroupScopes

func (a *AuthorizationApiService) AddAccessGroupScopes(ctx context.Context, accessGroupId string) ApiAddAccessGroupScopesRequest

AddAccessGroupScopes Add scopes to an Access group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiAddAccessGroupScopesRequest

func (*AuthorizationApiService) AddAccessGroupScopesExecute

func (a *AuthorizationApiService) AddAccessGroupScopesExecute(r ApiAddAccessGroupScopesRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAlwaysAllowedPermissions

func (a *AuthorizationApiService) AddAlwaysAllowedPermissions(ctx context.Context, accessGroupId string, scopeId string) ApiAddAlwaysAllowedPermissionsRequest

AddAlwaysAllowedPermissions Add always allowed permissions for given object type.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiAddAlwaysAllowedPermissionsRequest

func (*AuthorizationApiService) AddAlwaysAllowedPermissionsExecute

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) AddObjectsToAccessGroupScope

func (a *AuthorizationApiService) AddObjectsToAccessGroupScope(ctx context.Context, accessGroupId string, scopeId string) ApiAddObjectsToAccessGroupScopeRequest

AddObjectsToAccessGroupScope Add objects to the access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiAddObjectsToAccessGroupScopeRequest

func (*AuthorizationApiService) AddObjectsToAccessGroupScopeExecute

Execute executes the request

@return ScopedObjectItemsResponse

func (*AuthorizationApiService) AddRolePermissions

func (a *AuthorizationApiService) AddRolePermissions(ctx context.Context, roleId string) ApiAddRolePermissionsRequest

AddRolePermissions Add permissions to a role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiAddRolePermissionsRequest

func (*AuthorizationApiService) AddRolePermissionsExecute

func (a *AuthorizationApiService) AddRolePermissionsExecute(r ApiAddRolePermissionsRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) AddTagsToScope

func (a *AuthorizationApiService) AddTagsToScope(ctx context.Context, accessGroupId string, scopeId string) ApiAddTagsToScopeRequest

AddTagsToScope Add object tags to the access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiAddTagsToScopeRequest

func (*AuthorizationApiService) AddTagsToScopeExecute

Execute executes the request

@return ScopeTagsResponse

func (*AuthorizationApiService) CreateAccessGroup

CreateAccessGroup Create a new access group.

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

func (*AuthorizationApiService) CreateAccessGroupExecute

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) CreateRole

CreateRole Create custom role

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

func (*AuthorizationApiService) CreateRoleExecute

func (a *AuthorizationApiService) CreateRoleExecute(r ApiCreateRoleRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) CreateRoleTags

CreateRoleTags Create tags for a role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiCreateRoleTagsRequest

func (*AuthorizationApiService) CreateRoleTagsExecute

Execute executes the request

@return TagsResponse

func (*AuthorizationApiService) DeleteAccessGroup

func (a *AuthorizationApiService) DeleteAccessGroup(ctx context.Context, accessGroupId string) ApiDeleteAccessGroupRequest

DeleteAccessGroup Delete an Access group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiDeleteAccessGroupRequest

func (*AuthorizationApiService) DeleteAccessGroupExecute

func (a *AuthorizationApiService) DeleteAccessGroupExecute(r ApiDeleteAccessGroupRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) DeleteAccessGroupScopeObjectTags

func (a *AuthorizationApiService) DeleteAccessGroupScopeObjectTags(ctx context.Context, accessGroupId string, scopeId string) ApiDeleteAccessGroupScopeObjectTagsRequest

DeleteAccessGroupScopeObjectTags Remove tags from the access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiDeleteAccessGroupScopeObjectTagsRequest

func (*AuthorizationApiService) DeleteAccessGroupScopeObjectTagsExecute

func (a *AuthorizationApiService) DeleteAccessGroupScopeObjectTagsExecute(r ApiDeleteAccessGroupScopeObjectTagsRequest) (*ScopeTagsResponse, *http.Response, error)

Execute executes the request

@return ScopeTagsResponse

func (*AuthorizationApiService) DeleteAccessGroupScopeObjects

func (a *AuthorizationApiService) DeleteAccessGroupScopeObjects(ctx context.Context, accessGroupId string, scopeId string) ApiDeleteAccessGroupScopeObjectsRequest

DeleteAccessGroupScopeObjects Remove objects from the access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiDeleteAccessGroupScopeObjectsRequest

func (*AuthorizationApiService) DeleteAccessGroupScopeObjectsExecute

Execute executes the request

@return ScopedObjectItemsResponse

func (*AuthorizationApiService) DeleteRole

DeleteRole Delete role by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiDeleteRoleRequest

func (*AuthorizationApiService) DeleteRoleExecute

func (a *AuthorizationApiService) DeleteRoleExecute(r ApiDeleteRoleRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) DeleteRoleTag

DeleteRoleTag Delete tags for a Role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiDeleteRoleTagRequest

func (*AuthorizationApiService) DeleteRoleTagExecute

func (a *AuthorizationApiService) DeleteRoleTagExecute(r ApiDeleteRoleTagRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) GetAccessGroupById

func (a *AuthorizationApiService) GetAccessGroupById(ctx context.Context, accessGroupId string) ApiGetAccessGroupByIdRequest

GetAccessGroupById Returns an Access group by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiGetAccessGroupByIdRequest

func (*AuthorizationApiService) GetAccessGroupByIdExecute

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) GetAccessGroupScope

func (a *AuthorizationApiService) GetAccessGroupScope(ctx context.Context, accessGroupId string, scopeId string) ApiGetAccessGroupScopeRequest

GetAccessGroupScope Get access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiGetAccessGroupScopeRequest

func (*AuthorizationApiService) GetAccessGroupScopeExecute

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) GetAccessGroups

GetAccessGroups List all access groups.

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

func (*AuthorizationApiService) GetAccessGroupsExecute

Execute executes the request

@return ListAccessGroupsResponse

func (*AuthorizationApiService) GetAllObjectPermissions

GetAllObjectPermissions Returns all of the possible permissions for all of the objects.

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

func (*AuthorizationApiService) GetAllObjectPermissionsExecute

Execute executes the request

@return AllObjectPermissionsResponse

func (*AuthorizationApiService) GetObjectPermissions

func (a *AuthorizationApiService) GetObjectPermissions(ctx context.Context, objectType string, objectId string) ApiGetObjectPermissionsRequest

GetObjectPermissions Returns permissions for given object.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param objectType The type of the DCT object.
@param objectId The ID of the DCT Object.
@return ApiGetObjectPermissionsRequest

func (*AuthorizationApiService) GetObjectPermissionsExecute

Execute executes the request

@return ObjectPermissionsResponse

func (*AuthorizationApiService) GetRoleById

GetRoleById Returns role by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiGetRoleByIdRequest

func (*AuthorizationApiService) GetRoleByIdExecute

func (a *AuthorizationApiService) GetRoleByIdExecute(r ApiGetRoleByIdRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) GetRoleTags

GetRoleTags Get tags for a Role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiGetRoleTagsRequest

func (*AuthorizationApiService) GetRoleTagsExecute

Execute executes the request

@return TagsResponse

func (*AuthorizationApiService) GetRoles

GetRoles List all roles

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

func (*AuthorizationApiService) GetRolesExecute

Execute executes the request

@return ListRolesResponse

func (*AuthorizationApiService) RemoveAccessGroupAccountId

func (a *AuthorizationApiService) RemoveAccessGroupAccountId(ctx context.Context, accessGroupId string, accountId int64) ApiRemoveAccessGroupAccountIdRequest

RemoveAccessGroupAccountId Remove the account from the access group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param accountId The ID of the account.
@return ApiRemoveAccessGroupAccountIdRequest

func (*AuthorizationApiService) RemoveAccessGroupAccountIdExecute

func (a *AuthorizationApiService) RemoveAccessGroupAccountIdExecute(r ApiRemoveAccessGroupAccountIdRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAccessGroupAccountTags

func (a *AuthorizationApiService) RemoveAccessGroupAccountTags(ctx context.Context, accessGroupId string) ApiRemoveAccessGroupAccountTagsRequest

RemoveAccessGroupAccountTags Remove account tags from an access group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiRemoveAccessGroupAccountTagsRequest

func (*AuthorizationApiService) RemoveAccessGroupAccountTagsExecute

func (a *AuthorizationApiService) RemoveAccessGroupAccountTagsExecute(r ApiRemoveAccessGroupAccountTagsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAccessGroupScope

func (a *AuthorizationApiService) RemoveAccessGroupScope(ctx context.Context, accessGroupId string, scopeId string) ApiRemoveAccessGroupScopeRequest

RemoveAccessGroupScope Remove the scope from the Access group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiRemoveAccessGroupScopeRequest

func (*AuthorizationApiService) RemoveAccessGroupScopeExecute

func (a *AuthorizationApiService) RemoveAccessGroupScopeExecute(r ApiRemoveAccessGroupScopeRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAlwaysAllowedPermissions

func (a *AuthorizationApiService) RemoveAlwaysAllowedPermissions(ctx context.Context, accessGroupId string, scopeId string) ApiRemoveAlwaysAllowedPermissionsRequest

RemoveAlwaysAllowedPermissions Remove always allowed permissions for given object type.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiRemoveAlwaysAllowedPermissionsRequest

func (*AuthorizationApiService) RemoveAlwaysAllowedPermissionsExecute

func (a *AuthorizationApiService) RemoveAlwaysAllowedPermissionsExecute(r ApiRemoveAlwaysAllowedPermissionsRequest) (*AccessGroupScope, *http.Response, error)

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) RemoveRolePermissions

func (a *AuthorizationApiService) RemoveRolePermissions(ctx context.Context, roleId string) ApiRemoveRolePermissionsRequest

RemoveRolePermissions Remove permissions from a role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiRemoveRolePermissionsRequest

func (*AuthorizationApiService) RemoveRolePermissionsExecute

func (a *AuthorizationApiService) RemoveRolePermissionsExecute(r ApiRemoveRolePermissionsRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) SearchAccessGroups

SearchAccessGroups Search for access groups.

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

func (*AuthorizationApiService) SearchAccessGroupsExecute

Execute executes the request

@return SearchAccessGroupsResponse

func (*AuthorizationApiService) SearchRoles

SearchRoles Search for roles.

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

func (*AuthorizationApiService) SearchRolesExecute

Execute executes the request

@return SearchRolesResponse

func (*AuthorizationApiService) UpdateAccessGroup

func (a *AuthorizationApiService) UpdateAccessGroup(ctx context.Context, accessGroupId string) ApiUpdateAccessGroupRequest

UpdateAccessGroup Update an Access group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@return ApiUpdateAccessGroupRequest

func (*AuthorizationApiService) UpdateAccessGroupExecute

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) UpdateAccessGroupScope

func (a *AuthorizationApiService) UpdateAccessGroupScope(ctx context.Context, accessGroupId string, scopeId string) ApiUpdateAccessGroupScopeRequest

UpdateAccessGroupScope Update access group scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The ID of the Access group.
@param scopeId The ID of the Access group scope.
@return ApiUpdateAccessGroupScopeRequest

func (*AuthorizationApiService) UpdateAccessGroupScopeExecute

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) UpdateRole

UpdateRole Update a Role.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId The ID of the role.
@return ApiUpdateRoleRequest

func (*AuthorizationApiService) UpdateRoleExecute

func (a *AuthorizationApiService) UpdateRoleExecute(r ApiUpdateRoleRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

type BaseDSourceLinkSourceParameters

type BaseDSourceLinkSourceParameters struct {
	// Name of the dSource to be created.
	Name *string `json:"name,omitempty"`
	// Id of the source to link.
	SourceId *string `json:"source_id,omitempty"`
	// Id of the dataset group where this dSource should belong to.
	GroupId *string `json:"group_id,omitempty"`
	// The notes/description for the dSource.
	Description *string `json:"description,omitempty"`
	// True if LogSync should run for this database.
	LogSyncEnabled *bool `json:"log_sync_enabled,omitempty"`
	// Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	// The tags to be created for dSource.
	Tags []Tag `json:"tags,omitempty"`
	// Operations to perform before syncing the created dSource. These operations can quiesce any data prior to syncing.
	OpsPreSync []SourceOperation `json:"ops_pre_sync,omitempty"`
	// Operations to perform after syncing a created dSource.
	OpsPostSync []SourceOperation `json:"ops_post_sync,omitempty"`
}

BaseDSourceLinkSourceParameters struct for BaseDSourceLinkSourceParameters

func NewBaseDSourceLinkSourceParameters

func NewBaseDSourceLinkSourceParameters() *BaseDSourceLinkSourceParameters

NewBaseDSourceLinkSourceParameters instantiates a new BaseDSourceLinkSourceParameters 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 NewBaseDSourceLinkSourceParametersWithDefaults

func NewBaseDSourceLinkSourceParametersWithDefaults() *BaseDSourceLinkSourceParameters

NewBaseDSourceLinkSourceParametersWithDefaults instantiates a new BaseDSourceLinkSourceParameters 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 (*BaseDSourceLinkSourceParameters) GetDescription

func (o *BaseDSourceLinkSourceParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetDescriptionOk

func (o *BaseDSourceLinkSourceParameters) 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.

func (*BaseDSourceLinkSourceParameters) GetGroupId

func (o *BaseDSourceLinkSourceParameters) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetGroupIdOk

func (o *BaseDSourceLinkSourceParameters) 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.

func (*BaseDSourceLinkSourceParameters) GetLogSyncEnabled

func (o *BaseDSourceLinkSourceParameters) GetLogSyncEnabled() bool

GetLogSyncEnabled returns the LogSyncEnabled field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetLogSyncEnabledOk

func (o *BaseDSourceLinkSourceParameters) GetLogSyncEnabledOk() (*bool, bool)

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

func (*BaseDSourceLinkSourceParameters) GetMakeCurrentAccountOwner

func (o *BaseDSourceLinkSourceParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk

func (o *BaseDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*BaseDSourceLinkSourceParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetNameOk

func (o *BaseDSourceLinkSourceParameters) 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.

func (*BaseDSourceLinkSourceParameters) GetOpsPostSync

func (o *BaseDSourceLinkSourceParameters) GetOpsPostSync() []SourceOperation

GetOpsPostSync returns the OpsPostSync field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetOpsPostSyncOk

func (o *BaseDSourceLinkSourceParameters) GetOpsPostSyncOk() ([]SourceOperation, bool)

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

func (*BaseDSourceLinkSourceParameters) GetOpsPreSync

func (o *BaseDSourceLinkSourceParameters) GetOpsPreSync() []SourceOperation

GetOpsPreSync returns the OpsPreSync field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetOpsPreSyncOk

func (o *BaseDSourceLinkSourceParameters) GetOpsPreSyncOk() ([]SourceOperation, bool)

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

func (*BaseDSourceLinkSourceParameters) GetSourceId

func (o *BaseDSourceLinkSourceParameters) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetSourceIdOk

func (o *BaseDSourceLinkSourceParameters) GetSourceIdOk() (*string, bool)

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

func (*BaseDSourceLinkSourceParameters) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*BaseDSourceLinkSourceParameters) GetTagsOk

func (o *BaseDSourceLinkSourceParameters) 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.

func (*BaseDSourceLinkSourceParameters) HasDescription

func (o *BaseDSourceLinkSourceParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasGroupId

func (o *BaseDSourceLinkSourceParameters) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasLogSyncEnabled

func (o *BaseDSourceLinkSourceParameters) HasLogSyncEnabled() bool

HasLogSyncEnabled returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasMakeCurrentAccountOwner

func (o *BaseDSourceLinkSourceParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasName

HasName returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasOpsPostSync

func (o *BaseDSourceLinkSourceParameters) HasOpsPostSync() bool

HasOpsPostSync returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasOpsPreSync

func (o *BaseDSourceLinkSourceParameters) HasOpsPreSync() bool

HasOpsPreSync returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasSourceId

func (o *BaseDSourceLinkSourceParameters) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*BaseDSourceLinkSourceParameters) HasTags

HasTags returns a boolean if a field has been set.

func (BaseDSourceLinkSourceParameters) MarshalJSON

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

func (*BaseDSourceLinkSourceParameters) SetDescription

func (o *BaseDSourceLinkSourceParameters) SetDescription(v string)

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

func (*BaseDSourceLinkSourceParameters) SetGroupId

func (o *BaseDSourceLinkSourceParameters) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*BaseDSourceLinkSourceParameters) SetLogSyncEnabled

func (o *BaseDSourceLinkSourceParameters) SetLogSyncEnabled(v bool)

SetLogSyncEnabled gets a reference to the given bool and assigns it to the LogSyncEnabled field.

func (*BaseDSourceLinkSourceParameters) SetMakeCurrentAccountOwner

func (o *BaseDSourceLinkSourceParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*BaseDSourceLinkSourceParameters) SetName

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

func (*BaseDSourceLinkSourceParameters) SetOpsPostSync

func (o *BaseDSourceLinkSourceParameters) SetOpsPostSync(v []SourceOperation)

SetOpsPostSync gets a reference to the given []SourceOperation and assigns it to the OpsPostSync field.

func (*BaseDSourceLinkSourceParameters) SetOpsPreSync

func (o *BaseDSourceLinkSourceParameters) SetOpsPreSync(v []SourceOperation)

SetOpsPreSync gets a reference to the given []SourceOperation and assigns it to the OpsPreSync field.

func (*BaseDSourceLinkSourceParameters) SetSourceId

func (o *BaseDSourceLinkSourceParameters) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*BaseDSourceLinkSourceParameters) SetTags

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

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

func (BaseDSourceLinkSourceParameters) ToMap

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

type BaseProvisionVDBParameters

type BaseProvisionVDBParameters struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
}

BaseProvisionVDBParameters struct for BaseProvisionVDBParameters

func NewBaseProvisionVDBParameters

func NewBaseProvisionVDBParameters() *BaseProvisionVDBParameters

NewBaseProvisionVDBParameters instantiates a new BaseProvisionVDBParameters 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 NewBaseProvisionVDBParametersWithDefaults

func NewBaseProvisionVDBParametersWithDefaults() *BaseProvisionVDBParameters

NewBaseProvisionVDBParametersWithDefaults instantiates a new BaseProvisionVDBParameters 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 (*BaseProvisionVDBParameters) GetAdditionalMountPoints

func (o *BaseProvisionVDBParameters) GetAdditionalMountPoints() []AdditionalMountPoint

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

func (*BaseProvisionVDBParameters) GetAdditionalMountPointsOk

func (o *BaseProvisionVDBParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

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

func (*BaseProvisionVDBParameters) GetAppdataConfigParams

func (o *BaseProvisionVDBParameters) GetAppdataConfigParams() map[string]interface{}

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

func (*BaseProvisionVDBParameters) GetAppdataConfigParamsOk

func (o *BaseProvisionVDBParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParameters) GetAppdataSourceParams

func (o *BaseProvisionVDBParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetAppdataSourceParamsOk

func (o *BaseProvisionVDBParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParameters) GetArchiveLog

func (o *BaseProvisionVDBParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetArchiveLogOk

func (o *BaseProvisionVDBParameters) GetArchiveLogOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetAutoSelectRepository

func (o *BaseProvisionVDBParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetAutoSelectRepositoryOk

func (o *BaseProvisionVDBParameters) GetAutoSelectRepositoryOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetAuxiliaryTemplateId

func (o *BaseProvisionVDBParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetAuxiliaryTemplateIdOk

func (o *BaseProvisionVDBParameters) GetAuxiliaryTemplateIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetCdbId

func (o *BaseProvisionVDBParameters) GetCdbId() string

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCdbIdOk

func (o *BaseProvisionVDBParameters) GetCdbIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetCdbTdeKeystorePassword

func (o *BaseProvisionVDBParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCdbTdeKeystorePasswordOk

func (o *BaseProvisionVDBParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetCdcOnProvision

func (o *BaseProvisionVDBParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCdcOnProvisionOk

func (o *BaseProvisionVDBParameters) GetCdcOnProvisionOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetClusterNodeIds

func (o *BaseProvisionVDBParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetClusterNodeIdsOk

func (o *BaseProvisionVDBParameters) GetClusterNodeIdsOk() ([]string, bool)

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

func (*BaseProvisionVDBParameters) GetClusterNodeInstances

func (o *BaseProvisionVDBParameters) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetClusterNodeInstancesOk

func (o *BaseProvisionVDBParameters) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

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

func (*BaseProvisionVDBParameters) GetConfigParams

func (o *BaseProvisionVDBParameters) GetConfigParams() map[string]interface{}

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

func (*BaseProvisionVDBParameters) GetConfigParamsOk

func (o *BaseProvisionVDBParameters) GetConfigParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParameters) GetConfigSettingsStg

func (o *BaseProvisionVDBParameters) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetConfigSettingsStgOk

func (o *BaseProvisionVDBParameters) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

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

func (*BaseProvisionVDBParameters) GetConfigureClone

func (o *BaseProvisionVDBParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetConfigureCloneOk

func (o *BaseProvisionVDBParameters) GetConfigureCloneOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetCustomEnvFiles

func (o *BaseProvisionVDBParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCustomEnvFilesOk

func (o *BaseProvisionVDBParameters) GetCustomEnvFilesOk() ([]string, bool)

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

func (*BaseProvisionVDBParameters) GetCustomEnvVars

func (o *BaseProvisionVDBParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCustomEnvVarsOk

func (o *BaseProvisionVDBParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

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

func (*BaseProvisionVDBParameters) GetDatabaseName

func (o *BaseProvisionVDBParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetDatabaseNameOk

func (o *BaseProvisionVDBParameters) GetDatabaseNameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetEnvironmentId

func (o *BaseProvisionVDBParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetEnvironmentIdOk

func (o *BaseProvisionVDBParameters) GetEnvironmentIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetEnvironmentUserId

func (o *BaseProvisionVDBParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetEnvironmentUserIdOk

func (o *BaseProvisionVDBParameters) GetEnvironmentUserIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetFileMappingRules

func (o *BaseProvisionVDBParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetFileMappingRulesOk

func (o *BaseProvisionVDBParameters) GetFileMappingRulesOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetListenerIds

func (o *BaseProvisionVDBParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetListenerIdsOk

func (o *BaseProvisionVDBParameters) GetListenerIdsOk() ([]string, bool)

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

func (*BaseProvisionVDBParameters) GetMountPoint

func (o *BaseProvisionVDBParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetMountPointOk

func (o *BaseProvisionVDBParameters) GetMountPointOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParameters) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetMssqlFailoverDriveLetterOk

func (o *BaseProvisionVDBParameters) GetMssqlFailoverDriveLetterOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetName

func (o *BaseProvisionVDBParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetNameOk

func (o *BaseProvisionVDBParameters) 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.

func (*BaseProvisionVDBParameters) GetNewDbid

func (o *BaseProvisionVDBParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetNewDbidOk

func (o *BaseProvisionVDBParameters) GetNewDbidOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetOnlineLogGroups

func (o *BaseProvisionVDBParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOnlineLogGroupsOk

func (o *BaseProvisionVDBParameters) GetOnlineLogGroupsOk() (*int32, bool)

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

func (*BaseProvisionVDBParameters) GetOnlineLogSize

func (o *BaseProvisionVDBParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOnlineLogSizeOk

func (o *BaseProvisionVDBParameters) GetOnlineLogSizeOk() (*int32, bool)

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

func (*BaseProvisionVDBParameters) GetOpenResetLogs

func (o *BaseProvisionVDBParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOpenResetLogsOk

func (o *BaseProvisionVDBParameters) GetOpenResetLogsOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetOracleInstanceName

func (o *BaseProvisionVDBParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOracleInstanceNameOk

func (o *BaseProvisionVDBParameters) GetOracleInstanceNameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvFilesOk

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

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

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvVars

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvVarsOk

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

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

func (*BaseProvisionVDBParameters) GetOsPassword

func (o *BaseProvisionVDBParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOsPasswordOk

func (o *BaseProvisionVDBParameters) GetOsPasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetOsUsername

func (o *BaseProvisionVDBParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOsUsernameOk

func (o *BaseProvisionVDBParameters) GetOsUsernameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePassword

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePasswordOk

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePath

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePathOk

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePathOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetPostRefresh

func (o *BaseProvisionVDBParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostRefreshOk

func (o *BaseProvisionVDBParameters) GetPostRefreshOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPostRollback

func (o *BaseProvisionVDBParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*BaseProvisionVDBParameters) GetPostRollbackOk

func (o *BaseProvisionVDBParameters) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*BaseProvisionVDBParameters) GetPostScript

func (o *BaseProvisionVDBParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostScriptOk

func (o *BaseProvisionVDBParameters) GetPostScriptOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetPostSelfRefresh

func (o *BaseProvisionVDBParameters) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostSelfRefreshOk

func (o *BaseProvisionVDBParameters) GetPostSelfRefreshOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPostSnapshot

func (o *BaseProvisionVDBParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostSnapshotOk

func (o *BaseProvisionVDBParameters) GetPostSnapshotOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPostStart

func (o *BaseProvisionVDBParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostStartOk

func (o *BaseProvisionVDBParameters) GetPostStartOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPostStop

func (o *BaseProvisionVDBParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostStopOk

func (o *BaseProvisionVDBParameters) GetPostStopOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPostgresPort

func (o *BaseProvisionVDBParameters) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPostgresPortOk

func (o *BaseProvisionVDBParameters) GetPostgresPortOk() (*int32, bool)

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

func (*BaseProvisionVDBParameters) GetPreRefresh

func (o *BaseProvisionVDBParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreRefreshOk

func (o *BaseProvisionVDBParameters) GetPreRefreshOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPreRollback

func (o *BaseProvisionVDBParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*BaseProvisionVDBParameters) GetPreRollbackOk

func (o *BaseProvisionVDBParameters) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*BaseProvisionVDBParameters) GetPreScript

func (o *BaseProvisionVDBParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreScriptOk

func (o *BaseProvisionVDBParameters) GetPreScriptOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetPreSelfRefresh

func (o *BaseProvisionVDBParameters) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreSelfRefreshOk

func (o *BaseProvisionVDBParameters) GetPreSelfRefreshOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPreSnapshot

func (o *BaseProvisionVDBParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreSnapshotOk

func (o *BaseProvisionVDBParameters) GetPreSnapshotOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPreStart

func (o *BaseProvisionVDBParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreStartOk

func (o *BaseProvisionVDBParameters) GetPreStartOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPreStop

func (o *BaseProvisionVDBParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPreStopOk

func (o *BaseProvisionVDBParameters) GetPreStopOk() ([]Hook, bool)

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

func (*BaseProvisionVDBParameters) GetPrivilegedOsUser

func (o *BaseProvisionVDBParameters) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetPrivilegedOsUserOk

func (o *BaseProvisionVDBParameters) GetPrivilegedOsUserOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetRecoveryModel

func (o *BaseProvisionVDBParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetRecoveryModelOk

func (o *BaseProvisionVDBParameters) GetRecoveryModelOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetRepositoryId

func (o *BaseProvisionVDBParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetRepositoryIdOk

func (o *BaseProvisionVDBParameters) GetRepositoryIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetRetentionPolicyId

func (o *BaseProvisionVDBParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetRetentionPolicyIdOk

func (o *BaseProvisionVDBParameters) GetRetentionPolicyIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetSnapshotPolicyId

func (o *BaseProvisionVDBParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetSnapshotPolicyIdOk

func (o *BaseProvisionVDBParameters) GetSnapshotPolicyIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTagsOk

func (o *BaseProvisionVDBParameters) 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.

func (*BaseProvisionVDBParameters) GetTargetGroupId

func (o *BaseProvisionVDBParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTargetGroupIdOk

func (o *BaseProvisionVDBParameters) GetTargetGroupIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePathOk

func (o *BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTdeExportedKeyFileSecretOk

func (o *BaseProvisionVDBParameters) GetTdeExportedKeyFileSecretOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTdeKeyIdentifierOk

func (o *BaseProvisionVDBParameters) GetTdeKeyIdentifierOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTemplateId

func (o *BaseProvisionVDBParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTemplateIdOk

func (o *BaseProvisionVDBParameters) GetTemplateIdOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTruncateLogOnCheckpointOk

func (o *BaseProvisionVDBParameters) GetTruncateLogOnCheckpointOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetUniqueName

func (o *BaseProvisionVDBParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetUniqueNameOk

func (o *BaseProvisionVDBParameters) GetUniqueNameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetVcdbDatabaseName

func (o *BaseProvisionVDBParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbDatabaseNameOk

func (o *BaseProvisionVDBParameters) GetVcdbDatabaseNameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetVcdbName

func (o *BaseProvisionVDBParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbNameOk

func (o *BaseProvisionVDBParameters) GetVcdbNameOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetVcdbRestart

func (o *BaseProvisionVDBParameters) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbRestartOk

func (o *BaseProvisionVDBParameters) GetVcdbRestartOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifierOk

func (o *BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifierOk() (*string, bool)

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

func (*BaseProvisionVDBParameters) GetVdbRestart

func (o *BaseProvisionVDBParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVdbRestartOk

func (o *BaseProvisionVDBParameters) GetVdbRestartOk() (*bool, bool)

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

func (*BaseProvisionVDBParameters) HasAdditionalMountPoints

func (o *BaseProvisionVDBParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAppdataConfigParams

func (o *BaseProvisionVDBParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAppdataSourceParams

func (o *BaseProvisionVDBParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasArchiveLog

func (o *BaseProvisionVDBParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAutoSelectRepository

func (o *BaseProvisionVDBParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAuxiliaryTemplateId

func (o *BaseProvisionVDBParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCdbId

func (o *BaseProvisionVDBParameters) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCdbTdeKeystorePassword

func (o *BaseProvisionVDBParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCdcOnProvision

func (o *BaseProvisionVDBParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasClusterNodeIds

func (o *BaseProvisionVDBParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasClusterNodeInstances

func (o *BaseProvisionVDBParameters) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasConfigParams

func (o *BaseProvisionVDBParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasConfigSettingsStg

func (o *BaseProvisionVDBParameters) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasConfigureClone

func (o *BaseProvisionVDBParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCustomEnvFiles

func (o *BaseProvisionVDBParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCustomEnvVars

func (o *BaseProvisionVDBParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasDatabaseName

func (o *BaseProvisionVDBParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasEnvironmentId

func (o *BaseProvisionVDBParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasEnvironmentUserId

func (o *BaseProvisionVDBParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasFileMappingRules

func (o *BaseProvisionVDBParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasListenerIds

func (o *BaseProvisionVDBParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasMountPoint

func (o *BaseProvisionVDBParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParameters) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasName

func (o *BaseProvisionVDBParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasNewDbid

func (o *BaseProvisionVDBParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOnlineLogGroups

func (o *BaseProvisionVDBParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOnlineLogSize

func (o *BaseProvisionVDBParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOpenResetLogs

func (o *BaseProvisionVDBParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOracleInstanceName

func (o *BaseProvisionVDBParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOracleRacCustomEnvVars

func (o *BaseProvisionVDBParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOsPassword

func (o *BaseProvisionVDBParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOsUsername

func (o *BaseProvisionVDBParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasParentTdeKeystorePassword

func (o *BaseProvisionVDBParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasParentTdeKeystorePath

func (o *BaseProvisionVDBParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostRefresh

func (o *BaseProvisionVDBParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostRollback

func (o *BaseProvisionVDBParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostScript

func (o *BaseProvisionVDBParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostSelfRefresh

func (o *BaseProvisionVDBParameters) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostSnapshot

func (o *BaseProvisionVDBParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostStart

func (o *BaseProvisionVDBParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostStop

func (o *BaseProvisionVDBParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPostgresPort

func (o *BaseProvisionVDBParameters) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreRefresh

func (o *BaseProvisionVDBParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreRollback

func (o *BaseProvisionVDBParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreScript

func (o *BaseProvisionVDBParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreSelfRefresh

func (o *BaseProvisionVDBParameters) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreSnapshot

func (o *BaseProvisionVDBParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreStart

func (o *BaseProvisionVDBParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPreStop

func (o *BaseProvisionVDBParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasPrivilegedOsUser

func (o *BaseProvisionVDBParameters) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasRecoveryModel

func (o *BaseProvisionVDBParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasRepositoryId

func (o *BaseProvisionVDBParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasRetentionPolicyId

func (o *BaseProvisionVDBParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasSnapshotPolicyId

func (o *BaseProvisionVDBParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTags

func (o *BaseProvisionVDBParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTargetGroupId

func (o *BaseProvisionVDBParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTemplateId

func (o *BaseProvisionVDBParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasUniqueName

func (o *BaseProvisionVDBParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbDatabaseName

func (o *BaseProvisionVDBParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbName

func (o *BaseProvisionVDBParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbRestart

func (o *BaseProvisionVDBParameters) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVdbRestart

func (o *BaseProvisionVDBParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (BaseProvisionVDBParameters) MarshalJSON

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

func (*BaseProvisionVDBParameters) SetAdditionalMountPoints

func (o *BaseProvisionVDBParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*BaseProvisionVDBParameters) SetAppdataConfigParams

func (o *BaseProvisionVDBParameters) SetAppdataConfigParams(v map[string]interface{})

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

func (*BaseProvisionVDBParameters) SetAppdataSourceParams

func (o *BaseProvisionVDBParameters) SetAppdataSourceParams(v map[string]interface{})

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

func (*BaseProvisionVDBParameters) SetArchiveLog

func (o *BaseProvisionVDBParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*BaseProvisionVDBParameters) SetAutoSelectRepository

func (o *BaseProvisionVDBParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*BaseProvisionVDBParameters) SetAuxiliaryTemplateId

func (o *BaseProvisionVDBParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*BaseProvisionVDBParameters) SetCdbId

func (o *BaseProvisionVDBParameters) SetCdbId(v string)

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*BaseProvisionVDBParameters) SetCdbTdeKeystorePassword

func (o *BaseProvisionVDBParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*BaseProvisionVDBParameters) SetCdcOnProvision

func (o *BaseProvisionVDBParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*BaseProvisionVDBParameters) SetClusterNodeIds

func (o *BaseProvisionVDBParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*BaseProvisionVDBParameters) SetClusterNodeInstances

func (o *BaseProvisionVDBParameters) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*BaseProvisionVDBParameters) SetConfigParams

func (o *BaseProvisionVDBParameters) SetConfigParams(v map[string]interface{})

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

func (*BaseProvisionVDBParameters) SetConfigSettingsStg

func (o *BaseProvisionVDBParameters) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*BaseProvisionVDBParameters) SetConfigureClone

func (o *BaseProvisionVDBParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*BaseProvisionVDBParameters) SetCustomEnvFiles

func (o *BaseProvisionVDBParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*BaseProvisionVDBParameters) SetCustomEnvVars

func (o *BaseProvisionVDBParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*BaseProvisionVDBParameters) SetDatabaseName

func (o *BaseProvisionVDBParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*BaseProvisionVDBParameters) SetEnvironmentId

func (o *BaseProvisionVDBParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*BaseProvisionVDBParameters) SetEnvironmentUserId

func (o *BaseProvisionVDBParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*BaseProvisionVDBParameters) SetFileMappingRules

func (o *BaseProvisionVDBParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*BaseProvisionVDBParameters) SetListenerIds

func (o *BaseProvisionVDBParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*BaseProvisionVDBParameters) SetMountPoint

func (o *BaseProvisionVDBParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*BaseProvisionVDBParameters) SetMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParameters) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*BaseProvisionVDBParameters) SetName

func (o *BaseProvisionVDBParameters) SetName(v string)

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

func (*BaseProvisionVDBParameters) SetNewDbid

func (o *BaseProvisionVDBParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*BaseProvisionVDBParameters) SetOnlineLogGroups

func (o *BaseProvisionVDBParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*BaseProvisionVDBParameters) SetOnlineLogSize

func (o *BaseProvisionVDBParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*BaseProvisionVDBParameters) SetOpenResetLogs

func (o *BaseProvisionVDBParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*BaseProvisionVDBParameters) SetOracleInstanceName

func (o *BaseProvisionVDBParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*BaseProvisionVDBParameters) SetOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*BaseProvisionVDBParameters) SetOracleRacCustomEnvVars

func (o *BaseProvisionVDBParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*BaseProvisionVDBParameters) SetOsPassword

func (o *BaseProvisionVDBParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*BaseProvisionVDBParameters) SetOsUsername

func (o *BaseProvisionVDBParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*BaseProvisionVDBParameters) SetParentTdeKeystorePassword

func (o *BaseProvisionVDBParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*BaseProvisionVDBParameters) SetParentTdeKeystorePath

func (o *BaseProvisionVDBParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*BaseProvisionVDBParameters) SetPostRefresh

func (o *BaseProvisionVDBParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*BaseProvisionVDBParameters) SetPostRollback

func (o *BaseProvisionVDBParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*BaseProvisionVDBParameters) SetPostScript

func (o *BaseProvisionVDBParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*BaseProvisionVDBParameters) SetPostSelfRefresh

func (o *BaseProvisionVDBParameters) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*BaseProvisionVDBParameters) SetPostSnapshot

func (o *BaseProvisionVDBParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*BaseProvisionVDBParameters) SetPostStart

func (o *BaseProvisionVDBParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*BaseProvisionVDBParameters) SetPostStop

func (o *BaseProvisionVDBParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*BaseProvisionVDBParameters) SetPostgresPort

func (o *BaseProvisionVDBParameters) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*BaseProvisionVDBParameters) SetPreRefresh

func (o *BaseProvisionVDBParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*BaseProvisionVDBParameters) SetPreRollback

func (o *BaseProvisionVDBParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*BaseProvisionVDBParameters) SetPreScript

func (o *BaseProvisionVDBParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*BaseProvisionVDBParameters) SetPreSelfRefresh

func (o *BaseProvisionVDBParameters) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*BaseProvisionVDBParameters) SetPreSnapshot

func (o *BaseProvisionVDBParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*BaseProvisionVDBParameters) SetPreStart

func (o *BaseProvisionVDBParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*BaseProvisionVDBParameters) SetPreStop

func (o *BaseProvisionVDBParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*BaseProvisionVDBParameters) SetPrivilegedOsUser

func (o *BaseProvisionVDBParameters) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*BaseProvisionVDBParameters) SetRecoveryModel

func (o *BaseProvisionVDBParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*BaseProvisionVDBParameters) SetRepositoryId

func (o *BaseProvisionVDBParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*BaseProvisionVDBParameters) SetRetentionPolicyId

func (o *BaseProvisionVDBParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*BaseProvisionVDBParameters) SetSnapshotPolicyId

func (o *BaseProvisionVDBParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*BaseProvisionVDBParameters) SetTags

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

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

func (*BaseProvisionVDBParameters) SetTargetGroupId

func (o *BaseProvisionVDBParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*BaseProvisionVDBParameters) SetTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*BaseProvisionVDBParameters) SetTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*BaseProvisionVDBParameters) SetTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*BaseProvisionVDBParameters) SetTemplateId

func (o *BaseProvisionVDBParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*BaseProvisionVDBParameters) SetTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*BaseProvisionVDBParameters) SetUniqueName

func (o *BaseProvisionVDBParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*BaseProvisionVDBParameters) SetVcdbDatabaseName

func (o *BaseProvisionVDBParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*BaseProvisionVDBParameters) SetVcdbName

func (o *BaseProvisionVDBParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*BaseProvisionVDBParameters) SetVcdbRestart

func (o *BaseProvisionVDBParameters) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*BaseProvisionVDBParameters) SetVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*BaseProvisionVDBParameters) SetVdbRestart

func (o *BaseProvisionVDBParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (BaseProvisionVDBParameters) ToMap

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

type BaseProvisionVDBParametersAllOf

type BaseProvisionVDBParametersAllOf struct {
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
}

BaseProvisionVDBParametersAllOf struct for BaseProvisionVDBParametersAllOf

func NewBaseProvisionVDBParametersAllOf

func NewBaseProvisionVDBParametersAllOf() *BaseProvisionVDBParametersAllOf

NewBaseProvisionVDBParametersAllOf instantiates a new BaseProvisionVDBParametersAllOf 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 NewBaseProvisionVDBParametersAllOfWithDefaults

func NewBaseProvisionVDBParametersAllOfWithDefaults() *BaseProvisionVDBParametersAllOf

NewBaseProvisionVDBParametersAllOfWithDefaults instantiates a new BaseProvisionVDBParametersAllOf 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 (*BaseProvisionVDBParametersAllOf) GetAdditionalMountPoints

func (o *BaseProvisionVDBParametersAllOf) GetAdditionalMountPoints() []AdditionalMountPoint

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

func (*BaseProvisionVDBParametersAllOf) GetAdditionalMountPointsOk

func (o *BaseProvisionVDBParametersAllOf) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetAppdataConfigParams

func (o *BaseProvisionVDBParametersAllOf) GetAppdataConfigParams() map[string]interface{}

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

func (*BaseProvisionVDBParametersAllOf) GetAppdataConfigParamsOk

func (o *BaseProvisionVDBParametersAllOf) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetAppdataSourceParams

func (o *BaseProvisionVDBParametersAllOf) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAppdataSourceParamsOk

func (o *BaseProvisionVDBParametersAllOf) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetArchiveLog

func (o *BaseProvisionVDBParametersAllOf) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetArchiveLogOk

func (o *BaseProvisionVDBParametersAllOf) GetArchiveLogOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetAutoSelectRepository

func (o *BaseProvisionVDBParametersAllOf) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAutoSelectRepositoryOk

func (o *BaseProvisionVDBParametersAllOf) GetAutoSelectRepositoryOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateId

func (o *BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateIdOk

func (o *BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetCdbId

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdbIdOk

func (o *BaseProvisionVDBParametersAllOf) GetCdbIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePasswordOk

func (o *BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetCdcOnProvision

func (o *BaseProvisionVDBParametersAllOf) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdcOnProvisionOk

func (o *BaseProvisionVDBParametersAllOf) GetCdcOnProvisionOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetClusterNodeIds

func (o *BaseProvisionVDBParametersAllOf) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetClusterNodeIdsOk

func (o *BaseProvisionVDBParametersAllOf) GetClusterNodeIdsOk() ([]string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetClusterNodeInstances

func (o *BaseProvisionVDBParametersAllOf) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetClusterNodeInstancesOk

func (o *BaseProvisionVDBParametersAllOf) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetConfigParams

func (o *BaseProvisionVDBParametersAllOf) GetConfigParams() map[string]interface{}

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

func (*BaseProvisionVDBParametersAllOf) GetConfigParamsOk

func (o *BaseProvisionVDBParametersAllOf) GetConfigParamsOk() (map[string]interface{}, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetConfigSettingsStg

func (o *BaseProvisionVDBParametersAllOf) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetConfigSettingsStgOk

func (o *BaseProvisionVDBParametersAllOf) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvFilesOk

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvFilesOk() ([]string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvVarsOk

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvVarsOk() (*map[string]string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetDatabaseName

func (o *BaseProvisionVDBParametersAllOf) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetDatabaseNameOk

func (o *BaseProvisionVDBParametersAllOf) GetDatabaseNameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentId

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentIdOk

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentUserId

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentUserIdOk

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentUserIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetFileMappingRules

func (o *BaseProvisionVDBParametersAllOf) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetFileMappingRulesOk

func (o *BaseProvisionVDBParametersAllOf) GetFileMappingRulesOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetListenerIds

func (o *BaseProvisionVDBParametersAllOf) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetListenerIdsOk

func (o *BaseProvisionVDBParametersAllOf) GetListenerIdsOk() ([]string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetMountPoint

func (o *BaseProvisionVDBParametersAllOf) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetMountPointOk

func (o *BaseProvisionVDBParametersAllOf) GetMountPointOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParametersAllOf) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetMssqlFailoverDriveLetterOk

func (o *BaseProvisionVDBParametersAllOf) GetMssqlFailoverDriveLetterOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetNameOk

func (o *BaseProvisionVDBParametersAllOf) 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.

func (*BaseProvisionVDBParametersAllOf) GetNewDbid

func (o *BaseProvisionVDBParametersAllOf) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetNewDbidOk

func (o *BaseProvisionVDBParametersAllOf) GetNewDbidOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogGroups

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogGroupsOk

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogGroupsOk() (*int32, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogSize

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogSizeOk

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogSizeOk() (*int32, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOpenResetLogs

func (o *BaseProvisionVDBParametersAllOf) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOpenResetLogsOk

func (o *BaseProvisionVDBParametersAllOf) GetOpenResetLogsOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOracleInstanceName

func (o *BaseProvisionVDBParametersAllOf) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleInstanceNameOk

func (o *BaseProvisionVDBParametersAllOf) GetOracleInstanceNameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFilesOk

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVarsOk

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOsPassword

func (o *BaseProvisionVDBParametersAllOf) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOsPasswordOk

func (o *BaseProvisionVDBParametersAllOf) GetOsPasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetOsUsername

func (o *BaseProvisionVDBParametersAllOf) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOsUsernameOk

func (o *BaseProvisionVDBParametersAllOf) GetOsUsernameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePasswordOk

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePasswordOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePathOk

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePathOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetPostScript

func (o *BaseProvisionVDBParametersAllOf) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPostScriptOk

func (o *BaseProvisionVDBParametersAllOf) GetPostScriptOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetPostgresPort

func (o *BaseProvisionVDBParametersAllOf) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPostgresPortOk

func (o *BaseProvisionVDBParametersAllOf) GetPostgresPortOk() (*int32, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetPreScript

func (o *BaseProvisionVDBParametersAllOf) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPreScriptOk

func (o *BaseProvisionVDBParametersAllOf) GetPreScriptOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetPrivilegedOsUser

func (o *BaseProvisionVDBParametersAllOf) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPrivilegedOsUserOk

func (o *BaseProvisionVDBParametersAllOf) GetPrivilegedOsUserOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetRecoveryModel

func (o *BaseProvisionVDBParametersAllOf) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRecoveryModelOk

func (o *BaseProvisionVDBParametersAllOf) GetRecoveryModelOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetRepositoryId

func (o *BaseProvisionVDBParametersAllOf) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRepositoryIdOk

func (o *BaseProvisionVDBParametersAllOf) GetRepositoryIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetRetentionPolicyId

func (o *BaseProvisionVDBParametersAllOf) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRetentionPolicyIdOk

func (o *BaseProvisionVDBParametersAllOf) GetRetentionPolicyIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetSnapshotPolicyId

func (o *BaseProvisionVDBParametersAllOf) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetSnapshotPolicyIdOk

func (o *BaseProvisionVDBParametersAllOf) GetSnapshotPolicyIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTagsOk

func (o *BaseProvisionVDBParametersAllOf) 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.

func (*BaseProvisionVDBParametersAllOf) GetTargetGroupId

func (o *BaseProvisionVDBParametersAllOf) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTargetGroupIdOk

func (o *BaseProvisionVDBParametersAllOf) GetTargetGroupIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePathOk

func (o *BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecretOk

func (o *BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecretOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifierOk

func (o *BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifierOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTemplateId

func (o *BaseProvisionVDBParametersAllOf) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTemplateIdOk

func (o *BaseProvisionVDBParametersAllOf) GetTemplateIdOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpointOk

func (o *BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpointOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetUniqueName

func (o *BaseProvisionVDBParametersAllOf) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetUniqueNameOk

func (o *BaseProvisionVDBParametersAllOf) GetUniqueNameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetVcdbDatabaseName

func (o *BaseProvisionVDBParametersAllOf) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbDatabaseNameOk

func (o *BaseProvisionVDBParametersAllOf) GetVcdbDatabaseNameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetVcdbName

func (o *BaseProvisionVDBParametersAllOf) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbNameOk

func (o *BaseProvisionVDBParametersAllOf) GetVcdbNameOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetVcdbRestart

func (o *BaseProvisionVDBParametersAllOf) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbRestartOk

func (o *BaseProvisionVDBParametersAllOf) GetVcdbRestartOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifierOk

func (o *BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifierOk() (*string, bool)

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

func (*BaseProvisionVDBParametersAllOf) GetVdbRestart

func (o *BaseProvisionVDBParametersAllOf) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVdbRestartOk

func (o *BaseProvisionVDBParametersAllOf) GetVdbRestartOk() (*bool, bool)

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

func (*BaseProvisionVDBParametersAllOf) HasAdditionalMountPoints

func (o *BaseProvisionVDBParametersAllOf) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAppdataConfigParams

func (o *BaseProvisionVDBParametersAllOf) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAppdataSourceParams

func (o *BaseProvisionVDBParametersAllOf) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasArchiveLog

func (o *BaseProvisionVDBParametersAllOf) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAutoSelectRepository

func (o *BaseProvisionVDBParametersAllOf) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAuxiliaryTemplateId

func (o *BaseProvisionVDBParametersAllOf) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdbId

func (o *BaseProvisionVDBParametersAllOf) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdbTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdcOnProvision

func (o *BaseProvisionVDBParametersAllOf) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasClusterNodeIds

func (o *BaseProvisionVDBParametersAllOf) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasClusterNodeInstances

func (o *BaseProvisionVDBParametersAllOf) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasConfigParams

func (o *BaseProvisionVDBParametersAllOf) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasConfigSettingsStg

func (o *BaseProvisionVDBParametersAllOf) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasDatabaseName

func (o *BaseProvisionVDBParametersAllOf) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasEnvironmentId

func (o *BaseProvisionVDBParametersAllOf) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasEnvironmentUserId

func (o *BaseProvisionVDBParametersAllOf) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasFileMappingRules

func (o *BaseProvisionVDBParametersAllOf) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasListenerIds

func (o *BaseProvisionVDBParametersAllOf) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasMountPoint

func (o *BaseProvisionVDBParametersAllOf) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParametersAllOf) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasName

HasName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasNewDbid

func (o *BaseProvisionVDBParametersAllOf) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOnlineLogGroups

func (o *BaseProvisionVDBParametersAllOf) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOnlineLogSize

func (o *BaseProvisionVDBParametersAllOf) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOpenResetLogs

func (o *BaseProvisionVDBParametersAllOf) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleInstanceName

func (o *BaseProvisionVDBParametersAllOf) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOsPassword

func (o *BaseProvisionVDBParametersAllOf) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOsUsername

func (o *BaseProvisionVDBParametersAllOf) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPostScript

func (o *BaseProvisionVDBParametersAllOf) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPostgresPort

func (o *BaseProvisionVDBParametersAllOf) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPreScript

func (o *BaseProvisionVDBParametersAllOf) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPrivilegedOsUser

func (o *BaseProvisionVDBParametersAllOf) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRecoveryModel

func (o *BaseProvisionVDBParametersAllOf) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRepositoryId

func (o *BaseProvisionVDBParametersAllOf) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRetentionPolicyId

func (o *BaseProvisionVDBParametersAllOf) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasSnapshotPolicyId

func (o *BaseProvisionVDBParametersAllOf) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTags

HasTags returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTargetGroupId

func (o *BaseProvisionVDBParametersAllOf) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParametersAllOf) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTemplateId

func (o *BaseProvisionVDBParametersAllOf) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParametersAllOf) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasUniqueName

func (o *BaseProvisionVDBParametersAllOf) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbDatabaseName

func (o *BaseProvisionVDBParametersAllOf) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbName

func (o *BaseProvisionVDBParametersAllOf) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbRestart

func (o *BaseProvisionVDBParametersAllOf) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVdbRestart

func (o *BaseProvisionVDBParametersAllOf) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (BaseProvisionVDBParametersAllOf) MarshalJSON

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

func (*BaseProvisionVDBParametersAllOf) SetAdditionalMountPoints

func (o *BaseProvisionVDBParametersAllOf) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*BaseProvisionVDBParametersAllOf) SetAppdataConfigParams

func (o *BaseProvisionVDBParametersAllOf) SetAppdataConfigParams(v map[string]interface{})

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

func (*BaseProvisionVDBParametersAllOf) SetAppdataSourceParams

func (o *BaseProvisionVDBParametersAllOf) SetAppdataSourceParams(v map[string]interface{})

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

func (*BaseProvisionVDBParametersAllOf) SetArchiveLog

func (o *BaseProvisionVDBParametersAllOf) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*BaseProvisionVDBParametersAllOf) SetAutoSelectRepository

func (o *BaseProvisionVDBParametersAllOf) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*BaseProvisionVDBParametersAllOf) SetAuxiliaryTemplateId

func (o *BaseProvisionVDBParametersAllOf) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*BaseProvisionVDBParametersAllOf) SetCdbId

func (o *BaseProvisionVDBParametersAllOf) SetCdbId(v string)

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*BaseProvisionVDBParametersAllOf) SetCdbTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*BaseProvisionVDBParametersAllOf) SetCdcOnProvision

func (o *BaseProvisionVDBParametersAllOf) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*BaseProvisionVDBParametersAllOf) SetClusterNodeIds

func (o *BaseProvisionVDBParametersAllOf) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*BaseProvisionVDBParametersAllOf) SetClusterNodeInstances

func (o *BaseProvisionVDBParametersAllOf) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*BaseProvisionVDBParametersAllOf) SetConfigParams

func (o *BaseProvisionVDBParametersAllOf) SetConfigParams(v map[string]interface{})

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

func (*BaseProvisionVDBParametersAllOf) SetConfigSettingsStg

func (o *BaseProvisionVDBParametersAllOf) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*BaseProvisionVDBParametersAllOf) SetCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*BaseProvisionVDBParametersAllOf) SetCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*BaseProvisionVDBParametersAllOf) SetDatabaseName

func (o *BaseProvisionVDBParametersAllOf) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*BaseProvisionVDBParametersAllOf) SetEnvironmentId

func (o *BaseProvisionVDBParametersAllOf) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*BaseProvisionVDBParametersAllOf) SetEnvironmentUserId

func (o *BaseProvisionVDBParametersAllOf) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*BaseProvisionVDBParametersAllOf) SetFileMappingRules

func (o *BaseProvisionVDBParametersAllOf) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*BaseProvisionVDBParametersAllOf) SetListenerIds

func (o *BaseProvisionVDBParametersAllOf) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*BaseProvisionVDBParametersAllOf) SetMountPoint

func (o *BaseProvisionVDBParametersAllOf) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*BaseProvisionVDBParametersAllOf) SetMssqlFailoverDriveLetter

func (o *BaseProvisionVDBParametersAllOf) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*BaseProvisionVDBParametersAllOf) SetName

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

func (*BaseProvisionVDBParametersAllOf) SetNewDbid

func (o *BaseProvisionVDBParametersAllOf) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*BaseProvisionVDBParametersAllOf) SetOnlineLogGroups

func (o *BaseProvisionVDBParametersAllOf) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*BaseProvisionVDBParametersAllOf) SetOnlineLogSize

func (o *BaseProvisionVDBParametersAllOf) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*BaseProvisionVDBParametersAllOf) SetOpenResetLogs

func (o *BaseProvisionVDBParametersAllOf) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*BaseProvisionVDBParametersAllOf) SetOracleInstanceName

func (o *BaseProvisionVDBParametersAllOf) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvFiles

func (o *BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvVars

func (o *BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*BaseProvisionVDBParametersAllOf) SetOsPassword

func (o *BaseProvisionVDBParametersAllOf) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*BaseProvisionVDBParametersAllOf) SetOsUsername

func (o *BaseProvisionVDBParametersAllOf) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePassword

func (o *BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*BaseProvisionVDBParametersAllOf) SetPostScript

func (o *BaseProvisionVDBParametersAllOf) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*BaseProvisionVDBParametersAllOf) SetPostgresPort

func (o *BaseProvisionVDBParametersAllOf) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*BaseProvisionVDBParametersAllOf) SetPreScript

func (o *BaseProvisionVDBParametersAllOf) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*BaseProvisionVDBParametersAllOf) SetPrivilegedOsUser

func (o *BaseProvisionVDBParametersAllOf) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*BaseProvisionVDBParametersAllOf) SetRecoveryModel

func (o *BaseProvisionVDBParametersAllOf) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*BaseProvisionVDBParametersAllOf) SetRepositoryId

func (o *BaseProvisionVDBParametersAllOf) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*BaseProvisionVDBParametersAllOf) SetRetentionPolicyId

func (o *BaseProvisionVDBParametersAllOf) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*BaseProvisionVDBParametersAllOf) SetSnapshotPolicyId

func (o *BaseProvisionVDBParametersAllOf) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*BaseProvisionVDBParametersAllOf) SetTags

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

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

func (*BaseProvisionVDBParametersAllOf) SetTargetGroupId

func (o *BaseProvisionVDBParametersAllOf) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*BaseProvisionVDBParametersAllOf) SetTargetVcdbTdeKeystorePath

func (o *BaseProvisionVDBParametersAllOf) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*BaseProvisionVDBParametersAllOf) SetTdeExportedKeyFileSecret

func (o *BaseProvisionVDBParametersAllOf) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*BaseProvisionVDBParametersAllOf) SetTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*BaseProvisionVDBParametersAllOf) SetTemplateId

func (o *BaseProvisionVDBParametersAllOf) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*BaseProvisionVDBParametersAllOf) SetTruncateLogOnCheckpoint

func (o *BaseProvisionVDBParametersAllOf) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*BaseProvisionVDBParametersAllOf) SetUniqueName

func (o *BaseProvisionVDBParametersAllOf) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbDatabaseName

func (o *BaseProvisionVDBParametersAllOf) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbName

func (o *BaseProvisionVDBParametersAllOf) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbRestart

func (o *BaseProvisionVDBParametersAllOf) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbTdeKeyIdentifier

func (o *BaseProvisionVDBParametersAllOf) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*BaseProvisionVDBParametersAllOf) SetVdbRestart

func (o *BaseProvisionVDBParametersAllOf) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (BaseProvisionVDBParametersAllOf) ToMap

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

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 Bookmark

type Bookmark struct {
	// The Bookmark object entity ID.
	Id *string `json:"id,omitempty"`
	// The user-defined name of this bookmark.
	Name *string `json:"name,omitempty"`
	// The date and time that this bookmark was created.
	CreationDate *time.Time `json:"creation_date,omitempty"`
	// The list of VDB IDs associated with this bookmark.
	VdbIds []string `json:"vdb_ids,omitempty"`
	// The retention policy for this bookmark, in days. A value of -1 indicates the bookmark should be kept forever. Deprecated in favor of expiration.
	// Deprecated
	Retention *int64 `json:"retention,omitempty"`
	// The expiration for this bookmark. When unset, indicates the bookmark is kept forever.
	Expiration *string `json:"expiration,omitempty"`
	// A message with details about operation progress or state of this bookmark.
	Status NullableString `json:"status,omitempty"`
	// The tags to be created for this Bookmark.
	Tags []Tag `json:"tags,omitempty"`
}

Bookmark A Data Control Tower object that references points in time for one or more datasets.

func NewBookmark

func NewBookmark() *Bookmark

NewBookmark instantiates a new Bookmark 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 NewBookmarkWithDefaults

func NewBookmarkWithDefaults() *Bookmark

NewBookmarkWithDefaults instantiates a new Bookmark 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 (*Bookmark) GetCreationDate

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

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*Bookmark) GetCreationDateOk

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

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

func (*Bookmark) GetExpiration

func (o *Bookmark) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*Bookmark) GetExpirationOk

func (o *Bookmark) GetExpirationOk() (*string, bool)

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

func (*Bookmark) GetId

func (o *Bookmark) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Bookmark) GetIdOk

func (o *Bookmark) 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.

func (*Bookmark) GetName

func (o *Bookmark) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Bookmark) GetNameOk

func (o *Bookmark) 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.

func (*Bookmark) GetRetention

func (o *Bookmark) GetRetention() int64

GetRetention returns the Retention field value if set, zero value otherwise. Deprecated

func (*Bookmark) GetRetentionOk

func (o *Bookmark) GetRetentionOk() (*int64, bool)

GetRetentionOk returns a tuple with the Retention field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Bookmark) GetStatus

func (o *Bookmark) GetStatus() string

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

func (*Bookmark) GetStatusOk

func (o *Bookmark) 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 (*Bookmark) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*Bookmark) GetTagsOk

func (o *Bookmark) 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.

func (*Bookmark) GetVdbIds

func (o *Bookmark) GetVdbIds() []string

GetVdbIds returns the VdbIds field value if set, zero value otherwise.

func (*Bookmark) GetVdbIdsOk

func (o *Bookmark) GetVdbIdsOk() ([]string, bool)

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

func (*Bookmark) HasCreationDate

func (o *Bookmark) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*Bookmark) HasExpiration

func (o *Bookmark) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*Bookmark) HasId

func (o *Bookmark) HasId() bool

HasId returns a boolean if a field has been set.

func (*Bookmark) HasName

func (o *Bookmark) HasName() bool

HasName returns a boolean if a field has been set.

func (*Bookmark) HasRetention

func (o *Bookmark) HasRetention() bool

HasRetention returns a boolean if a field has been set.

func (*Bookmark) HasStatus

func (o *Bookmark) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Bookmark) HasTags

func (o *Bookmark) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Bookmark) HasVdbIds

func (o *Bookmark) HasVdbIds() bool

HasVdbIds returns a boolean if a field has been set.

func (Bookmark) MarshalJSON

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

func (*Bookmark) SetCreationDate

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

SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.

func (*Bookmark) SetExpiration

func (o *Bookmark) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*Bookmark) SetId

func (o *Bookmark) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Bookmark) SetName

func (o *Bookmark) SetName(v string)

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

func (*Bookmark) SetRetention

func (o *Bookmark) SetRetention(v int64)

SetRetention gets a reference to the given int64 and assigns it to the Retention field. Deprecated

func (*Bookmark) SetStatus

func (o *Bookmark) SetStatus(v string)

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

func (*Bookmark) SetStatusNil

func (o *Bookmark) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*Bookmark) SetTags

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

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

func (*Bookmark) SetVdbIds

func (o *Bookmark) SetVdbIds(v []string)

SetVdbIds gets a reference to the given []string and assigns it to the VdbIds field.

func (Bookmark) ToMap

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

func (*Bookmark) UnsetStatus

func (o *Bookmark) UnsetStatus()

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

type BookmarkCompatibleEnvironmentsResponse

type BookmarkCompatibleEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
}

BookmarkCompatibleEnvironmentsResponse struct for BookmarkCompatibleEnvironmentsResponse

func NewBookmarkCompatibleEnvironmentsResponse

func NewBookmarkCompatibleEnvironmentsResponse() *BookmarkCompatibleEnvironmentsResponse

NewBookmarkCompatibleEnvironmentsResponse instantiates a new BookmarkCompatibleEnvironmentsResponse 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 NewBookmarkCompatibleEnvironmentsResponseWithDefaults

func NewBookmarkCompatibleEnvironmentsResponseWithDefaults() *BookmarkCompatibleEnvironmentsResponse

NewBookmarkCompatibleEnvironmentsResponseWithDefaults instantiates a new BookmarkCompatibleEnvironmentsResponse 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 (*BookmarkCompatibleEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*BookmarkCompatibleEnvironmentsResponse) GetItemsOk

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

func (*BookmarkCompatibleEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (BookmarkCompatibleEnvironmentsResponse) MarshalJSON

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

func (*BookmarkCompatibleEnvironmentsResponse) SetItems

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

func (BookmarkCompatibleEnvironmentsResponse) ToMap

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

type BookmarkCompatibleRepositoryRequest

type BookmarkCompatibleRepositoryRequest struct {
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
	// The ID or name of the target environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

BookmarkCompatibleRepositoryRequest struct for BookmarkCompatibleRepositoryRequest

func NewBookmarkCompatibleRepositoryRequest

func NewBookmarkCompatibleRepositoryRequest(bookmarkId string) *BookmarkCompatibleRepositoryRequest

NewBookmarkCompatibleRepositoryRequest instantiates a new BookmarkCompatibleRepositoryRequest 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 NewBookmarkCompatibleRepositoryRequestWithDefaults

func NewBookmarkCompatibleRepositoryRequestWithDefaults() *BookmarkCompatibleRepositoryRequest

NewBookmarkCompatibleRepositoryRequestWithDefaults instantiates a new BookmarkCompatibleRepositoryRequest 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 (*BookmarkCompatibleRepositoryRequest) GetBookmarkId

func (o *BookmarkCompatibleRepositoryRequest) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*BookmarkCompatibleRepositoryRequest) GetBookmarkIdOk

func (o *BookmarkCompatibleRepositoryRequest) GetBookmarkIdOk() (*string, bool)

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

func (*BookmarkCompatibleRepositoryRequest) GetEnvironmentId

func (o *BookmarkCompatibleRepositoryRequest) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*BookmarkCompatibleRepositoryRequest) GetEnvironmentIdOk

func (o *BookmarkCompatibleRepositoryRequest) GetEnvironmentIdOk() (*string, bool)

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

func (*BookmarkCompatibleRepositoryRequest) HasEnvironmentId

func (o *BookmarkCompatibleRepositoryRequest) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (BookmarkCompatibleRepositoryRequest) MarshalJSON

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

func (*BookmarkCompatibleRepositoryRequest) SetBookmarkId

func (o *BookmarkCompatibleRepositoryRequest) SetBookmarkId(v string)

SetBookmarkId sets field value

func (*BookmarkCompatibleRepositoryRequest) SetEnvironmentId

func (o *BookmarkCompatibleRepositoryRequest) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (BookmarkCompatibleRepositoryRequest) ToMap

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

type BookmarkCreateParameters

type BookmarkCreateParameters struct {
	// The user-defined name of this bookmark.
	Name string `json:"name"`
	// The IDs of the VDBs to create the Bookmark on. This parameter is mutually exclusive with snapshot_ids and timeflow_ids.
	VdbIds []string `json:"vdb_ids,omitempty"`
	// The IDs of the snapshots that will be part of the Bookmark. This parameter is mutually exclusive with vdb_ids, timestamp, timestamp_in_database_timezone, location and timeflow_ids.
	SnapshotIds []string `json:"snapshot_ids,omitempty"`
	// The array of timeflow Id. Only allowed to set when timestamp, timestamp_in_database_timezone or location is provided.
	TimeflowIds []string `json:"timeflow_ids,omitempty"`
	// The point in time from which to execute the operation. Mutually exclusive with snapshot_ids, timestamp_in_database_timezone and location.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with snapshot_ids, timestamp and location.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// The location to create bookmark from. Mutually exclusive with snapshot_ids, timestamp, and timestamp_in_database_timezone.
	Location *string `json:"location,omitempty"`
	// The retention policy for this bookmark, in days. A value of -1 indicates the bookmark should be kept forever. Deprecated in favor of expiration and retain_forever.
	// Deprecated
	Retention *int64 `json:"retention,omitempty"`
	// The expiration for this bookmark. Mutually exclusive with retention and retain_forever.
	Expiration *string `json:"expiration,omitempty"`
	// Indicates that the bookmark should be retained forever.
	RetainForever *bool `json:"retain_forever,omitempty"`
	// The tags to be created for this Bookmark.
	Tags []Tag `json:"tags,omitempty"`
	// Whether the account creating this bookmark must be configured as owner of the bookmark.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	// Whether this bookmark should inherit tags from the parent VDB.
	InheritParentVdbTags *bool `json:"inherit_parent_vdb_tags,omitempty"`
}

BookmarkCreateParameters A Data Control Tower object that references points in time for one or more datasets.

func NewBookmarkCreateParameters

func NewBookmarkCreateParameters(name string) *BookmarkCreateParameters

NewBookmarkCreateParameters instantiates a new BookmarkCreateParameters 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 NewBookmarkCreateParametersWithDefaults

func NewBookmarkCreateParametersWithDefaults() *BookmarkCreateParameters

NewBookmarkCreateParametersWithDefaults instantiates a new BookmarkCreateParameters 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 (*BookmarkCreateParameters) GetExpiration

func (o *BookmarkCreateParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetExpirationOk

func (o *BookmarkCreateParameters) GetExpirationOk() (*string, bool)

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

func (*BookmarkCreateParameters) GetInheritParentVdbTags

func (o *BookmarkCreateParameters) GetInheritParentVdbTags() bool

GetInheritParentVdbTags returns the InheritParentVdbTags field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetInheritParentVdbTagsOk

func (o *BookmarkCreateParameters) GetInheritParentVdbTagsOk() (*bool, bool)

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

func (*BookmarkCreateParameters) GetLocation

func (o *BookmarkCreateParameters) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetLocationOk

func (o *BookmarkCreateParameters) 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.

func (*BookmarkCreateParameters) GetMakeCurrentAccountOwner

func (o *BookmarkCreateParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetMakeCurrentAccountOwnerOk

func (o *BookmarkCreateParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*BookmarkCreateParameters) GetName

func (o *BookmarkCreateParameters) GetName() string

GetName returns the Name field value

func (*BookmarkCreateParameters) GetNameOk

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

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

func (*BookmarkCreateParameters) GetRetainForever

func (o *BookmarkCreateParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetRetainForeverOk

func (o *BookmarkCreateParameters) GetRetainForeverOk() (*bool, bool)

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

func (*BookmarkCreateParameters) GetRetention

func (o *BookmarkCreateParameters) GetRetention() int64

GetRetention returns the Retention field value if set, zero value otherwise. Deprecated

func (*BookmarkCreateParameters) GetRetentionOk

func (o *BookmarkCreateParameters) GetRetentionOk() (*int64, bool)

GetRetentionOk returns a tuple with the Retention field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*BookmarkCreateParameters) GetSnapshotIds

func (o *BookmarkCreateParameters) GetSnapshotIds() []string

GetSnapshotIds returns the SnapshotIds field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetSnapshotIdsOk

func (o *BookmarkCreateParameters) GetSnapshotIdsOk() ([]string, bool)

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

func (*BookmarkCreateParameters) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetTagsOk

func (o *BookmarkCreateParameters) 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.

func (*BookmarkCreateParameters) GetTimeflowIds

func (o *BookmarkCreateParameters) GetTimeflowIds() []string

GetTimeflowIds returns the TimeflowIds field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetTimeflowIdsOk

func (o *BookmarkCreateParameters) GetTimeflowIdsOk() ([]string, bool)

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

func (*BookmarkCreateParameters) GetTimestamp

func (o *BookmarkCreateParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetTimestampInDatabaseTimezone

func (o *BookmarkCreateParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetTimestampInDatabaseTimezoneOk

func (o *BookmarkCreateParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

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

func (*BookmarkCreateParameters) GetTimestampOk

func (o *BookmarkCreateParameters) GetTimestampOk() (*time.Time, bool)

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

func (*BookmarkCreateParameters) GetVdbIds

func (o *BookmarkCreateParameters) GetVdbIds() []string

GetVdbIds returns the VdbIds field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetVdbIdsOk

func (o *BookmarkCreateParameters) GetVdbIdsOk() ([]string, bool)

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

func (*BookmarkCreateParameters) HasExpiration

func (o *BookmarkCreateParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasInheritParentVdbTags

func (o *BookmarkCreateParameters) HasInheritParentVdbTags() bool

HasInheritParentVdbTags returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasLocation

func (o *BookmarkCreateParameters) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasMakeCurrentAccountOwner

func (o *BookmarkCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasRetainForever

func (o *BookmarkCreateParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasRetention

func (o *BookmarkCreateParameters) HasRetention() bool

HasRetention returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasSnapshotIds

func (o *BookmarkCreateParameters) HasSnapshotIds() bool

HasSnapshotIds returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasTags

func (o *BookmarkCreateParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasTimeflowIds

func (o *BookmarkCreateParameters) HasTimeflowIds() bool

HasTimeflowIds returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasTimestamp

func (o *BookmarkCreateParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasTimestampInDatabaseTimezone

func (o *BookmarkCreateParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasVdbIds

func (o *BookmarkCreateParameters) HasVdbIds() bool

HasVdbIds returns a boolean if a field has been set.

func (BookmarkCreateParameters) MarshalJSON

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

func (*BookmarkCreateParameters) SetExpiration

func (o *BookmarkCreateParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*BookmarkCreateParameters) SetInheritParentVdbTags

func (o *BookmarkCreateParameters) SetInheritParentVdbTags(v bool)

SetInheritParentVdbTags gets a reference to the given bool and assigns it to the InheritParentVdbTags field.

func (*BookmarkCreateParameters) SetLocation

func (o *BookmarkCreateParameters) SetLocation(v string)

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

func (*BookmarkCreateParameters) SetMakeCurrentAccountOwner

func (o *BookmarkCreateParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*BookmarkCreateParameters) SetName

func (o *BookmarkCreateParameters) SetName(v string)

SetName sets field value

func (*BookmarkCreateParameters) SetRetainForever

func (o *BookmarkCreateParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (*BookmarkCreateParameters) SetRetention

func (o *BookmarkCreateParameters) SetRetention(v int64)

SetRetention gets a reference to the given int64 and assigns it to the Retention field. Deprecated

func (*BookmarkCreateParameters) SetSnapshotIds

func (o *BookmarkCreateParameters) SetSnapshotIds(v []string)

SetSnapshotIds gets a reference to the given []string and assigns it to the SnapshotIds field.

func (*BookmarkCreateParameters) SetTags

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

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

func (*BookmarkCreateParameters) SetTimeflowIds

func (o *BookmarkCreateParameters) SetTimeflowIds(v []string)

SetTimeflowIds gets a reference to the given []string and assigns it to the TimeflowIds field.

func (*BookmarkCreateParameters) SetTimestamp

func (o *BookmarkCreateParameters) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*BookmarkCreateParameters) SetTimestampInDatabaseTimezone

func (o *BookmarkCreateParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (*BookmarkCreateParameters) SetVdbIds

func (o *BookmarkCreateParameters) SetVdbIds(v []string)

SetVdbIds gets a reference to the given []string and assigns it to the VdbIds field.

func (BookmarkCreateParameters) ToMap

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

type BookmarksApiService

type BookmarksApiService service

BookmarksApiService BookmarksApi service

func (*BookmarksApiService) CreateBookmark

CreateBookmark Create a bookmark at the current time.

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

func (*BookmarksApiService) CreateBookmarkExecute

Execute executes the request

@return CreateBookmarkResponse

func (*BookmarksApiService) CreateBookmarkTags

func (a *BookmarksApiService) CreateBookmarkTags(ctx context.Context, bookmarkId string) ApiCreateBookmarkTagsRequest

CreateBookmarkTags Create tags for a Bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiCreateBookmarkTagsRequest

func (*BookmarksApiService) CreateBookmarkTagsExecute

func (a *BookmarksApiService) CreateBookmarkTagsExecute(r ApiCreateBookmarkTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*BookmarksApiService) DeleteBookmark

func (a *BookmarksApiService) DeleteBookmark(ctx context.Context, bookmarkId string) ApiDeleteBookmarkRequest

DeleteBookmark Delete a bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiDeleteBookmarkRequest

func (*BookmarksApiService) DeleteBookmarkExecute

func (a *BookmarksApiService) DeleteBookmarkExecute(r ApiDeleteBookmarkRequest) (*http.Response, error)

Execute executes the request

func (*BookmarksApiService) DeleteBookmarkTags

func (a *BookmarksApiService) DeleteBookmarkTags(ctx context.Context, bookmarkId string) ApiDeleteBookmarkTagsRequest

DeleteBookmarkTags Delete tags for a Bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiDeleteBookmarkTagsRequest

func (*BookmarksApiService) DeleteBookmarkTagsExecute

func (a *BookmarksApiService) DeleteBookmarkTagsExecute(r ApiDeleteBookmarkTagsRequest) (*http.Response, error)

Execute executes the request

func (*BookmarksApiService) GetBookmarkById

func (a *BookmarksApiService) GetBookmarkById(ctx context.Context, bookmarkId string) ApiGetBookmarkByIdRequest

GetBookmarkById Get a bookmark by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiGetBookmarkByIdRequest

func (*BookmarksApiService) GetBookmarkByIdExecute

func (a *BookmarksApiService) GetBookmarkByIdExecute(r ApiGetBookmarkByIdRequest) (*Bookmark, *http.Response, error)

Execute executes the request

@return Bookmark

func (*BookmarksApiService) GetBookmarkTags

func (a *BookmarksApiService) GetBookmarkTags(ctx context.Context, bookmarkId string) ApiGetBookmarkTagsRequest

GetBookmarkTags Get tags for a Bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiGetBookmarkTagsRequest

func (*BookmarksApiService) GetBookmarkTagsExecute

func (a *BookmarksApiService) GetBookmarkTagsExecute(r ApiGetBookmarkTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*BookmarksApiService) GetBookmarks

GetBookmarks List all bookmarks.

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

func (*BookmarksApiService) GetBookmarksExecute

Execute executes the request

@return ListBookmarksResponse

func (*BookmarksApiService) GetVdbGroupsByBookmark

func (a *BookmarksApiService) GetVdbGroupsByBookmark(ctx context.Context, bookmarkId string) ApiGetVdbGroupsByBookmarkRequest

GetVdbGroupsByBookmark List VDB Groups compatible with this bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiGetVdbGroupsByBookmarkRequest

func (*BookmarksApiService) GetVdbGroupsByBookmarkExecute

Execute executes the request

@return ListVDBGroupsByBookmarkResponse

func (*BookmarksApiService) SearchBookmarks

SearchBookmarks Search for bookmarks.

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

func (*BookmarksApiService) SearchBookmarksExecute

Execute executes the request

@return SearchBookmarksResponse

func (*BookmarksApiService) SearchVdbGroupsByBookmark

func (a *BookmarksApiService) SearchVdbGroupsByBookmark(ctx context.Context, bookmarkId string) ApiSearchVdbGroupsByBookmarkRequest

SearchVdbGroupsByBookmark Search for VDB Groups compatible with this bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiSearchVdbGroupsByBookmarkRequest

func (*BookmarksApiService) SearchVdbGroupsByBookmarkExecute

Execute executes the request

@return SearchVDBGroupsByBookmarkResponse

func (*BookmarksApiService) UpdateBookmark

func (a *BookmarksApiService) UpdateBookmark(ctx context.Context, bookmarkId string) ApiUpdateBookmarkRequest

UpdateBookmark Update a bookmark

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bookmarkId The ID of the Bookmark.
@return ApiUpdateBookmarkRequest

func (*BookmarksApiService) UpdateBookmarkExecute

Execute executes the request

@return UpdateBookmarkResponse

type CDB

type CDB struct {
	// The CDB object entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this CDB.
	Name NullableString `json:"name,omitempty"`
	// The namespace id of this CDB.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this CDB.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// The version of this CDB.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// A reference to the Environment that hosts this CDB.
	EnvironmentId NullableString `json:"environment_id,omitempty"`
	// The total size of the data files used by this CDB, in bytes.
	Size NullableInt64 `json:"size,omitempty"`
	// The JDBC connection URL for this CDB.
	JdbcConnectionString NullableString `json:"jdbc_connection_string,omitempty"`
	// A reference to the Engine that this CDB belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	Tags     []Tag   `json:"tags,omitempty"`
}

CDB The Delphix representation of an Oracle Container Database.

func NewCDB

func NewCDB() *CDB

NewCDB instantiates a new CDB 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 NewCDBWithDefaults

func NewCDBWithDefaults() *CDB

NewCDBWithDefaults instantiates a new CDB 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 (*CDB) GetDatabaseVersion

func (o *CDB) GetDatabaseVersion() string

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

func (*CDB) GetDatabaseVersionOk

func (o *CDB) GetDatabaseVersionOk() (*string, bool)

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

func (*CDB) GetEngineId

func (o *CDB) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*CDB) GetEngineIdOk

func (o *CDB) GetEngineIdOk() (*string, bool)

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

func (*CDB) GetEnvironmentId

func (o *CDB) GetEnvironmentId() string

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

func (*CDB) GetEnvironmentIdOk

func (o *CDB) GetEnvironmentIdOk() (*string, bool)

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

func (*CDB) GetId

func (o *CDB) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CDB) GetIdOk

func (o *CDB) 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.

func (*CDB) GetIsReplica

func (o *CDB) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*CDB) GetIsReplicaOk

func (o *CDB) GetIsReplicaOk() (*bool, bool)

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

func (*CDB) GetJdbcConnectionString

func (o *CDB) GetJdbcConnectionString() string

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

func (*CDB) GetJdbcConnectionStringOk

func (o *CDB) GetJdbcConnectionStringOk() (*string, bool)

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

func (*CDB) GetName

func (o *CDB) GetName() string

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

func (*CDB) GetNameOk

func (o *CDB) 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 (*CDB) GetNamespaceId

func (o *CDB) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*CDB) GetNamespaceIdOk

func (o *CDB) GetNamespaceIdOk() (*string, bool)

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

func (*CDB) GetNamespaceName

func (o *CDB) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*CDB) GetNamespaceNameOk

func (o *CDB) GetNamespaceNameOk() (*string, bool)

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

func (*CDB) GetSize

func (o *CDB) GetSize() int64

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

func (*CDB) GetSizeOk

func (o *CDB) GetSizeOk() (*int64, bool)

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 (*CDB) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*CDB) GetTagsOk

func (o *CDB) 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.

func (*CDB) HasDatabaseVersion

func (o *CDB) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*CDB) HasEngineId

func (o *CDB) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*CDB) HasEnvironmentId

func (o *CDB) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*CDB) HasId

func (o *CDB) HasId() bool

HasId returns a boolean if a field has been set.

func (*CDB) HasIsReplica

func (o *CDB) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*CDB) HasJdbcConnectionString

func (o *CDB) HasJdbcConnectionString() bool

HasJdbcConnectionString returns a boolean if a field has been set.

func (*CDB) HasName

func (o *CDB) HasName() bool

HasName returns a boolean if a field has been set.

func (*CDB) HasNamespaceId

func (o *CDB) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*CDB) HasNamespaceName

func (o *CDB) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*CDB) HasSize

func (o *CDB) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*CDB) HasTags

func (o *CDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CDB) MarshalJSON

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

func (*CDB) SetDatabaseVersion

func (o *CDB) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*CDB) SetDatabaseVersionNil

func (o *CDB) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*CDB) SetEngineId

func (o *CDB) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*CDB) SetEnvironmentId

func (o *CDB) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given NullableString and assigns it to the EnvironmentId field.

func (*CDB) SetEnvironmentIdNil

func (o *CDB) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*CDB) SetId

func (o *CDB) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CDB) SetIsReplica

func (o *CDB) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*CDB) SetJdbcConnectionString

func (o *CDB) SetJdbcConnectionString(v string)

SetJdbcConnectionString gets a reference to the given NullableString and assigns it to the JdbcConnectionString field.

func (*CDB) SetJdbcConnectionStringNil

func (o *CDB) SetJdbcConnectionStringNil()

SetJdbcConnectionStringNil sets the value for JdbcConnectionString to be an explicit nil

func (*CDB) SetName

func (o *CDB) SetName(v string)

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

func (*CDB) SetNameNil

func (o *CDB) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CDB) SetNamespaceId

func (o *CDB) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*CDB) SetNamespaceName

func (o *CDB) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*CDB) SetSize

func (o *CDB) SetSize(v int64)

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

func (*CDB) SetSizeNil

func (o *CDB) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*CDB) SetTags

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

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

func (CDB) ToMap

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

func (*CDB) UnsetDatabaseVersion

func (o *CDB) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*CDB) UnsetEnvironmentId

func (o *CDB) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*CDB) UnsetJdbcConnectionString

func (o *CDB) UnsetJdbcConnectionString()

UnsetJdbcConnectionString ensures that no value is present for JdbcConnectionString, not even an explicit nil

func (*CDB) UnsetName

func (o *CDB) UnsetName()

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

func (*CDB) UnsetSize

func (o *CDB) UnsetSize()

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

type CDBsApiService

type CDBsApiService service

CDBsApiService CDBsApi service

func (*CDBsApiService) CreateCdbTags

func (a *CDBsApiService) CreateCdbTags(ctx context.Context, cdbId string) ApiCreateCdbTagsRequest

CreateCdbTags Create tags for a CDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cdbId The ID of the CDB.
@return ApiCreateCdbTagsRequest

func (*CDBsApiService) CreateCdbTagsExecute

func (a *CDBsApiService) CreateCdbTagsExecute(r ApiCreateCdbTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*CDBsApiService) DeleteCdbTags

func (a *CDBsApiService) DeleteCdbTags(ctx context.Context, cdbId string) ApiDeleteCdbTagsRequest

DeleteCdbTags Delete tags for a CDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cdbId The ID of the CDB.
@return ApiDeleteCdbTagsRequest

func (*CDBsApiService) DeleteCdbTagsExecute

func (a *CDBsApiService) DeleteCdbTagsExecute(r ApiDeleteCdbTagsRequest) (*http.Response, error)

Execute executes the request

func (*CDBsApiService) GetCdbById

func (a *CDBsApiService) GetCdbById(ctx context.Context, cdbId string) ApiGetCdbByIdRequest

GetCdbById Get a CDB by ID (Oracle only).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cdbId The ID of the CDB.
@return ApiGetCdbByIdRequest

func (*CDBsApiService) GetCdbByIdExecute

func (a *CDBsApiService) GetCdbByIdExecute(r ApiGetCdbByIdRequest) (*CDB, *http.Response, error)

Execute executes the request

@return CDB

func (*CDBsApiService) GetCdbs

GetCdbs List all CDBs (Oracle only).

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

func (*CDBsApiService) GetCdbsExecute

Execute executes the request

@return ListCDBsResponse

func (*CDBsApiService) GetTagsCdb

func (a *CDBsApiService) GetTagsCdb(ctx context.Context, cdbId string) ApiGetTagsCdbRequest

GetTagsCdb Get tags for a CDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cdbId The ID of the CDB.
@return ApiGetTagsCdbRequest

func (*CDBsApiService) GetTagsCdbExecute

func (a *CDBsApiService) GetTagsCdbExecute(r ApiGetTagsCdbRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*CDBsApiService) SearchCdbs

SearchCdbs Search for CDBs (Oracle only).

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

func (*CDBsApiService) SearchCdbsExecute

Execute executes the request

@return SearchCDBsResponse

type ChangePasswordParameter

type ChangePasswordParameter struct {
	// Old password that needs to be changed for the Account.
	OldPassword string `json:"old_password"`
	// New password that needs to be set for the Account. Set this to null for unsetting the current password. Not including this property also results in unsetting of the current password.
	NewPassword *string `json:"new_password,omitempty"`
}

ChangePasswordParameter struct for ChangePasswordParameter

func NewChangePasswordParameter

func NewChangePasswordParameter(oldPassword string) *ChangePasswordParameter

NewChangePasswordParameter instantiates a new ChangePasswordParameter 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 NewChangePasswordParameterWithDefaults

func NewChangePasswordParameterWithDefaults() *ChangePasswordParameter

NewChangePasswordParameterWithDefaults instantiates a new ChangePasswordParameter 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 (*ChangePasswordParameter) GetNewPassword

func (o *ChangePasswordParameter) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*ChangePasswordParameter) GetNewPasswordOk

func (o *ChangePasswordParameter) GetNewPasswordOk() (*string, bool)

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

func (*ChangePasswordParameter) GetOldPassword

func (o *ChangePasswordParameter) GetOldPassword() string

GetOldPassword returns the OldPassword field value

func (*ChangePasswordParameter) GetOldPasswordOk

func (o *ChangePasswordParameter) GetOldPasswordOk() (*string, bool)

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

func (*ChangePasswordParameter) HasNewPassword

func (o *ChangePasswordParameter) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (ChangePasswordParameter) MarshalJSON

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

func (*ChangePasswordParameter) SetNewPassword

func (o *ChangePasswordParameter) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (*ChangePasswordParameter) SetOldPassword

func (o *ChangePasswordParameter) SetOldPassword(v string)

SetOldPassword sets field value

func (ChangePasswordParameter) ToMap

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

type ClusterNodeInstance

type ClusterNodeInstance struct {
	// The cluster node id, name or addresses for this provision operation
	NodeReference string `json:"node_reference"`
	// The instance number for this provision operation
	InstanceNumber int32 `json:"instance_number"`
	// The instance name for this provision operation
	InstanceName string `json:"instance_name"`
}

ClusterNodeInstance struct for ClusterNodeInstance

func NewClusterNodeInstance

func NewClusterNodeInstance(nodeReference string, instanceNumber int32, instanceName string) *ClusterNodeInstance

NewClusterNodeInstance instantiates a new ClusterNodeInstance 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 NewClusterNodeInstanceWithDefaults

func NewClusterNodeInstanceWithDefaults() *ClusterNodeInstance

NewClusterNodeInstanceWithDefaults instantiates a new ClusterNodeInstance 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 (*ClusterNodeInstance) GetInstanceName

func (o *ClusterNodeInstance) GetInstanceName() string

GetInstanceName returns the InstanceName field value

func (*ClusterNodeInstance) GetInstanceNameOk

func (o *ClusterNodeInstance) GetInstanceNameOk() (*string, bool)

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

func (*ClusterNodeInstance) GetInstanceNumber

func (o *ClusterNodeInstance) GetInstanceNumber() int32

GetInstanceNumber returns the InstanceNumber field value

func (*ClusterNodeInstance) GetInstanceNumberOk

func (o *ClusterNodeInstance) GetInstanceNumberOk() (*int32, bool)

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

func (*ClusterNodeInstance) GetNodeReference

func (o *ClusterNodeInstance) GetNodeReference() string

GetNodeReference returns the NodeReference field value

func (*ClusterNodeInstance) GetNodeReferenceOk

func (o *ClusterNodeInstance) GetNodeReferenceOk() (*string, bool)

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

func (ClusterNodeInstance) MarshalJSON

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

func (*ClusterNodeInstance) SetInstanceName

func (o *ClusterNodeInstance) SetInstanceName(v string)

SetInstanceName sets field value

func (*ClusterNodeInstance) SetInstanceNumber

func (o *ClusterNodeInstance) SetInstanceNumber(v int32)

SetInstanceNumber sets field value

func (*ClusterNodeInstance) SetNodeReference

func (o *ClusterNodeInstance) SetNodeReference(v string)

SetNodeReference sets field value

func (ClusterNodeInstance) ToMap

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

type ConfigSettingsStg

type ConfigSettingsStg struct {
	// Name of the property.
	PropertyName *string `json:"property_name,omitempty"`
	// Value of the property.
	Value *string `json:"value,omitempty"`
	// Select this option to comment out the provided property name in the configuration file.
	CommentProperty *bool `json:"comment_property,omitempty"`
}

ConfigSettingsStg Custom Database-Level config settings.

func NewConfigSettingsStg

func NewConfigSettingsStg() *ConfigSettingsStg

NewConfigSettingsStg instantiates a new ConfigSettingsStg 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 NewConfigSettingsStgWithDefaults

func NewConfigSettingsStgWithDefaults() *ConfigSettingsStg

NewConfigSettingsStgWithDefaults instantiates a new ConfigSettingsStg 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 (*ConfigSettingsStg) GetCommentProperty

func (o *ConfigSettingsStg) GetCommentProperty() bool

GetCommentProperty returns the CommentProperty field value if set, zero value otherwise.

func (*ConfigSettingsStg) GetCommentPropertyOk

func (o *ConfigSettingsStg) GetCommentPropertyOk() (*bool, bool)

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

func (*ConfigSettingsStg) GetPropertyName

func (o *ConfigSettingsStg) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*ConfigSettingsStg) GetPropertyNameOk

func (o *ConfigSettingsStg) GetPropertyNameOk() (*string, bool)

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

func (*ConfigSettingsStg) GetValue

func (o *ConfigSettingsStg) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ConfigSettingsStg) GetValueOk

func (o *ConfigSettingsStg) 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.

func (*ConfigSettingsStg) HasCommentProperty

func (o *ConfigSettingsStg) HasCommentProperty() bool

HasCommentProperty returns a boolean if a field has been set.

func (*ConfigSettingsStg) HasPropertyName

func (o *ConfigSettingsStg) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*ConfigSettingsStg) HasValue

func (o *ConfigSettingsStg) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ConfigSettingsStg) MarshalJSON

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

func (*ConfigSettingsStg) SetCommentProperty

func (o *ConfigSettingsStg) SetCommentProperty(v bool)

SetCommentProperty gets a reference to the given bool and assigns it to the CommentProperty field.

func (*ConfigSettingsStg) SetPropertyName

func (o *ConfigSettingsStg) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*ConfigSettingsStg) SetValue

func (o *ConfigSettingsStg) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ConfigSettingsStg) ToMap

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type ConnectivityApiService

type ConnectivityApiService service

ConnectivityApiService ConnectivityApi service

func (*ConnectivityApiService) ConnectivityCheck

ConnectivityCheck Checks connectivity between an engine and a remote host machine on a given port.

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

func (*ConnectivityApiService) ConnectivityCheckExecute

Execute executes the request

@return ConnectivityCheckResponse

func (*ConnectivityApiService) DatabaseConnectivityCheck

DatabaseConnectivityCheck Tests the validity of the supplied database credentials, returning an error if unable to connect to the database.

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

func (*ConnectivityApiService) DatabaseConnectivityCheckExecute

Execute executes the request

@return ConnectivityCheckResponse

type ConnectivityCheckParameters

type ConnectivityCheckParameters struct {
	// The ID of the engine to check.
	EngineId string `json:"engine_id"`
	// Whether to use public key authentication.
	UseEnginePublicKey *bool `json:"use_engine_public_key,omitempty"`
	// Operating system type of the environment.
	OsName *string `json:"os_name,omitempty"`
	// Id of the connector environment which is used to connect to this source environment.
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// The hostname of the remote host machine to check.
	Host string `json:"host"`
	// The port of the remote host machine to check. For Windows, port on which Delphix connector is running.
	Port NullableInt32 `json:"port"`
	// The username of the remote host machine to check. Username is mandatory input with password/use_engine_public_key/kerberos_authentication.
	Username *string `json:"username,omitempty"`
	// The password of the remote host machine to check.
	Password *string `json:"password,omitempty"`
	// The DCT id or name of the vault from which to read the host credentials.
	VaultId *string `json:"vault_id,omitempty"`
	// Vault engine name where the credential is stored.
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultName *string `json:"azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultUsernameKey *string `json:"azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultSecretKey *string `json:"azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication.
	UseKerberosAuthentication *bool `json:"use_kerberos_authentication,omitempty"`
}

ConnectivityCheckParameters Parameters to check connectivity between engine and remote host.

func NewConnectivityCheckParameters

func NewConnectivityCheckParameters(engineId string, host string, port NullableInt32) *ConnectivityCheckParameters

NewConnectivityCheckParameters instantiates a new ConnectivityCheckParameters 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 NewConnectivityCheckParametersWithDefaults

func NewConnectivityCheckParametersWithDefaults() *ConnectivityCheckParameters

NewConnectivityCheckParametersWithDefaults instantiates a new ConnectivityCheckParameters 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 (*ConnectivityCheckParameters) GetAzureVaultName

func (o *ConnectivityCheckParameters) GetAzureVaultName() string

GetAzureVaultName returns the AzureVaultName field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetAzureVaultNameOk

func (o *ConnectivityCheckParameters) GetAzureVaultNameOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetAzureVaultSecretKey

func (o *ConnectivityCheckParameters) GetAzureVaultSecretKey() string

GetAzureVaultSecretKey returns the AzureVaultSecretKey field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetAzureVaultSecretKeyOk

func (o *ConnectivityCheckParameters) GetAzureVaultSecretKeyOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetAzureVaultUsernameKey

func (o *ConnectivityCheckParameters) GetAzureVaultUsernameKey() string

GetAzureVaultUsernameKey returns the AzureVaultUsernameKey field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetAzureVaultUsernameKeyOk

func (o *ConnectivityCheckParameters) GetAzureVaultUsernameKeyOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetCyberarkVaultQueryString

func (o *ConnectivityCheckParameters) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetCyberarkVaultQueryStringOk

func (o *ConnectivityCheckParameters) GetCyberarkVaultQueryStringOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetEngineId

func (o *ConnectivityCheckParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*ConnectivityCheckParameters) GetEngineIdOk

func (o *ConnectivityCheckParameters) GetEngineIdOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetHashicorpVaultEngine

func (o *ConnectivityCheckParameters) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetHashicorpVaultEngineOk

func (o *ConnectivityCheckParameters) GetHashicorpVaultEngineOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetHashicorpVaultSecretKey

func (o *ConnectivityCheckParameters) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetHashicorpVaultSecretKeyOk

func (o *ConnectivityCheckParameters) GetHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetHashicorpVaultSecretPath

func (o *ConnectivityCheckParameters) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetHashicorpVaultSecretPathOk

func (o *ConnectivityCheckParameters) GetHashicorpVaultSecretPathOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetHashicorpVaultUsernameKey

func (o *ConnectivityCheckParameters) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetHashicorpVaultUsernameKeyOk

func (o *ConnectivityCheckParameters) GetHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetHost

func (o *ConnectivityCheckParameters) GetHost() string

GetHost returns the Host field value

func (*ConnectivityCheckParameters) GetHostOk

func (o *ConnectivityCheckParameters) GetHostOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetOsName

func (o *ConnectivityCheckParameters) GetOsName() string

GetOsName returns the OsName field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetOsNameOk

func (o *ConnectivityCheckParameters) GetOsNameOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetPassword

func (o *ConnectivityCheckParameters) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetPasswordOk

func (o *ConnectivityCheckParameters) GetPasswordOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetPort

func (o *ConnectivityCheckParameters) GetPort() int32

GetPort returns the Port field value If the value is explicit nil, the zero value for int32 will be returned

func (*ConnectivityCheckParameters) GetPortOk

func (o *ConnectivityCheckParameters) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port 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 (*ConnectivityCheckParameters) GetStagingEnvironment

func (o *ConnectivityCheckParameters) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetStagingEnvironmentOk

func (o *ConnectivityCheckParameters) GetStagingEnvironmentOk() (*string, bool)

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

func (*ConnectivityCheckParameters) GetUseEnginePublicKey

func (o *ConnectivityCheckParameters) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetUseEnginePublicKeyOk

func (o *ConnectivityCheckParameters) GetUseEnginePublicKeyOk() (*bool, bool)

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

func (*ConnectivityCheckParameters) GetUseKerberosAuthentication

func (o *ConnectivityCheckParameters) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetUseKerberosAuthenticationOk

func (o *ConnectivityCheckParameters) GetUseKerberosAuthenticationOk() (*bool, bool)

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

func (*ConnectivityCheckParameters) GetUsername

func (o *ConnectivityCheckParameters) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetUsernameOk

func (o *ConnectivityCheckParameters) 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.

func (*ConnectivityCheckParameters) GetVaultId

func (o *ConnectivityCheckParameters) GetVaultId() string

GetVaultId returns the VaultId field value if set, zero value otherwise.

func (*ConnectivityCheckParameters) GetVaultIdOk

func (o *ConnectivityCheckParameters) GetVaultIdOk() (*string, bool)

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

func (*ConnectivityCheckParameters) HasAzureVaultName

func (o *ConnectivityCheckParameters) HasAzureVaultName() bool

HasAzureVaultName returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasAzureVaultSecretKey

func (o *ConnectivityCheckParameters) HasAzureVaultSecretKey() bool

HasAzureVaultSecretKey returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasAzureVaultUsernameKey

func (o *ConnectivityCheckParameters) HasAzureVaultUsernameKey() bool

HasAzureVaultUsernameKey returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasCyberarkVaultQueryString

func (o *ConnectivityCheckParameters) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasHashicorpVaultEngine

func (o *ConnectivityCheckParameters) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasHashicorpVaultSecretKey

func (o *ConnectivityCheckParameters) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasHashicorpVaultSecretPath

func (o *ConnectivityCheckParameters) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasHashicorpVaultUsernameKey

func (o *ConnectivityCheckParameters) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasOsName

func (o *ConnectivityCheckParameters) HasOsName() bool

HasOsName returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasPassword

func (o *ConnectivityCheckParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasStagingEnvironment

func (o *ConnectivityCheckParameters) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasUseEnginePublicKey

func (o *ConnectivityCheckParameters) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasUseKerberosAuthentication

func (o *ConnectivityCheckParameters) HasUseKerberosAuthentication() bool

HasUseKerberosAuthentication returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasUsername

func (o *ConnectivityCheckParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasVaultId

func (o *ConnectivityCheckParameters) HasVaultId() bool

HasVaultId returns a boolean if a field has been set.

func (ConnectivityCheckParameters) MarshalJSON

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

func (*ConnectivityCheckParameters) SetAzureVaultName

func (o *ConnectivityCheckParameters) SetAzureVaultName(v string)

SetAzureVaultName gets a reference to the given string and assigns it to the AzureVaultName field.

func (*ConnectivityCheckParameters) SetAzureVaultSecretKey

func (o *ConnectivityCheckParameters) SetAzureVaultSecretKey(v string)

SetAzureVaultSecretKey gets a reference to the given string and assigns it to the AzureVaultSecretKey field.

func (*ConnectivityCheckParameters) SetAzureVaultUsernameKey

func (o *ConnectivityCheckParameters) SetAzureVaultUsernameKey(v string)

SetAzureVaultUsernameKey gets a reference to the given string and assigns it to the AzureVaultUsernameKey field.

func (*ConnectivityCheckParameters) SetCyberarkVaultQueryString

func (o *ConnectivityCheckParameters) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*ConnectivityCheckParameters) SetEngineId

func (o *ConnectivityCheckParameters) SetEngineId(v string)

SetEngineId sets field value

func (*ConnectivityCheckParameters) SetHashicorpVaultEngine

func (o *ConnectivityCheckParameters) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*ConnectivityCheckParameters) SetHashicorpVaultSecretKey

func (o *ConnectivityCheckParameters) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*ConnectivityCheckParameters) SetHashicorpVaultSecretPath

func (o *ConnectivityCheckParameters) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*ConnectivityCheckParameters) SetHashicorpVaultUsernameKey

func (o *ConnectivityCheckParameters) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*ConnectivityCheckParameters) SetHost

func (o *ConnectivityCheckParameters) SetHost(v string)

SetHost sets field value

func (*ConnectivityCheckParameters) SetOsName

func (o *ConnectivityCheckParameters) SetOsName(v string)

SetOsName gets a reference to the given string and assigns it to the OsName field.

func (*ConnectivityCheckParameters) SetPassword

func (o *ConnectivityCheckParameters) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ConnectivityCheckParameters) SetPort

func (o *ConnectivityCheckParameters) SetPort(v int32)

SetPort sets field value

func (*ConnectivityCheckParameters) SetStagingEnvironment

func (o *ConnectivityCheckParameters) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (*ConnectivityCheckParameters) SetUseEnginePublicKey

func (o *ConnectivityCheckParameters) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*ConnectivityCheckParameters) SetUseKerberosAuthentication

func (o *ConnectivityCheckParameters) SetUseKerberosAuthentication(v bool)

SetUseKerberosAuthentication gets a reference to the given bool and assigns it to the UseKerberosAuthentication field.

func (*ConnectivityCheckParameters) SetUsername

func (o *ConnectivityCheckParameters) SetUsername(v string)

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

func (*ConnectivityCheckParameters) SetVaultId

func (o *ConnectivityCheckParameters) SetVaultId(v string)

SetVaultId gets a reference to the given string and assigns it to the VaultId field.

func (ConnectivityCheckParameters) ToMap

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

type ConnectivityCheckResponse

type ConnectivityCheckResponse struct {
	// A message describing the result of the connectivity check.
	Message string `json:"message"`
	// A status describing the status of the connectivity check.
	Status *string `json:"status,omitempty"`
}

ConnectivityCheckResponse The result of the connectivity check.

func NewConnectivityCheckResponse

func NewConnectivityCheckResponse(message string) *ConnectivityCheckResponse

NewConnectivityCheckResponse instantiates a new ConnectivityCheckResponse 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 NewConnectivityCheckResponseWithDefaults

func NewConnectivityCheckResponseWithDefaults() *ConnectivityCheckResponse

NewConnectivityCheckResponseWithDefaults instantiates a new ConnectivityCheckResponse 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 (*ConnectivityCheckResponse) GetMessage

func (o *ConnectivityCheckResponse) GetMessage() string

GetMessage returns the Message field value

func (*ConnectivityCheckResponse) GetMessageOk

func (o *ConnectivityCheckResponse) GetMessageOk() (*string, bool)

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

func (*ConnectivityCheckResponse) GetStatus

func (o *ConnectivityCheckResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ConnectivityCheckResponse) GetStatusOk

func (o *ConnectivityCheckResponse) 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.

func (*ConnectivityCheckResponse) HasStatus

func (o *ConnectivityCheckResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectivityCheckResponse) MarshalJSON

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

func (*ConnectivityCheckResponse) SetMessage

func (o *ConnectivityCheckResponse) SetMessage(v string)

SetMessage sets field value

func (*ConnectivityCheckResponse) SetStatus

func (o *ConnectivityCheckResponse) SetStatus(v string)

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

func (ConnectivityCheckResponse) ToMap

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

type Connector

type Connector struct {
	// The Connector entity ID.
	Id *string `json:"id,omitempty"`
	// The Connector name.
	Name *string `json:"name,omitempty"`
	// A reference to the Engine that this Connector belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// The type of Connector. One of Database, File, or Mainframe.
	Type *string `json:"type,omitempty"`
	// The network hostname or IP address of the database server.
	Hostname *string `json:"hostname,omitempty"`
	// The TCP port of the server.
	Port *int32 `json:"port,omitempty"`
	// The username this Connector will use to connect to the database.
	Username *string `json:"username,omitempty"`
	Tags     []Tag   `json:"tags,omitempty"`
}

Connector Connectors are the way users define the data sources to which the Masking Engine should connect.

func NewConnector

func NewConnector() *Connector

NewConnector instantiates a new Connector 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 NewConnectorWithDefaults

func NewConnectorWithDefaults() *Connector

NewConnectorWithDefaults instantiates a new Connector 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 (*Connector) GetEngineId

func (o *Connector) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Connector) GetEngineIdOk

func (o *Connector) GetEngineIdOk() (*string, bool)

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

func (*Connector) GetHostname

func (o *Connector) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*Connector) GetHostnameOk

func (o *Connector) GetHostnameOk() (*string, bool)

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

func (*Connector) GetId

func (o *Connector) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Connector) GetIdOk

func (o *Connector) 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.

func (*Connector) GetName

func (o *Connector) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Connector) GetNameOk

func (o *Connector) 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.

func (*Connector) GetPort

func (o *Connector) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*Connector) GetPortOk

func (o *Connector) GetPortOk() (*int32, bool)

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

func (*Connector) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*Connector) GetTagsOk

func (o *Connector) 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.

func (*Connector) GetType

func (o *Connector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Connector) GetTypeOk

func (o *Connector) 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.

func (*Connector) GetUsername

func (o *Connector) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*Connector) GetUsernameOk

func (o *Connector) 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.

func (*Connector) HasEngineId

func (o *Connector) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Connector) HasHostname

func (o *Connector) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*Connector) HasId

func (o *Connector) HasId() bool

HasId returns a boolean if a field has been set.

func (*Connector) HasName

func (o *Connector) HasName() bool

HasName returns a boolean if a field has been set.

func (*Connector) HasPort

func (o *Connector) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*Connector) HasTags

func (o *Connector) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Connector) HasType

func (o *Connector) HasType() bool

HasType returns a boolean if a field has been set.

func (*Connector) HasUsername

func (o *Connector) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (Connector) MarshalJSON

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

func (*Connector) SetEngineId

func (o *Connector) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Connector) SetHostname

func (o *Connector) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*Connector) SetId

func (o *Connector) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Connector) SetName

func (o *Connector) SetName(v string)

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

func (*Connector) SetPort

func (o *Connector) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*Connector) SetTags

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

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

func (*Connector) SetType

func (o *Connector) SetType(v string)

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

func (*Connector) SetUsername

func (o *Connector) SetUsername(v string)

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

func (Connector) ToMap

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

type ConnectorTestResponse

type ConnectorTestResponse struct {
	// Connection status, SUCCEEDED or FAILED
	Status string `json:"status"`
	// A message describing the result of the masking connector test.
	Message string `json:"message"`
}

ConnectorTestResponse The result of the masking connector test.

func NewConnectorTestResponse

func NewConnectorTestResponse(status string, message string) *ConnectorTestResponse

NewConnectorTestResponse instantiates a new ConnectorTestResponse 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 NewConnectorTestResponseWithDefaults

func NewConnectorTestResponseWithDefaults() *ConnectorTestResponse

NewConnectorTestResponseWithDefaults instantiates a new ConnectorTestResponse 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 (*ConnectorTestResponse) GetMessage

func (o *ConnectorTestResponse) GetMessage() string

GetMessage returns the Message field value

func (*ConnectorTestResponse) GetMessageOk

func (o *ConnectorTestResponse) GetMessageOk() (*string, bool)

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

func (*ConnectorTestResponse) GetStatus

func (o *ConnectorTestResponse) GetStatus() string

GetStatus returns the Status field value

func (*ConnectorTestResponse) GetStatusOk

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

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

func (ConnectorTestResponse) MarshalJSON

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

func (*ConnectorTestResponse) SetMessage

func (o *ConnectorTestResponse) SetMessage(v string)

SetMessage sets field value

func (*ConnectorTestResponse) SetStatus

func (o *ConnectorTestResponse) SetStatus(v string)

SetStatus sets field value

func (ConnectorTestResponse) ToMap

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

type ConnectorUpdateParameters

type ConnectorUpdateParameters struct {
	// The Connector name.
	Name *string `json:"name,omitempty"`
	// The network hostname or IP address of the database server.
	Hostname *string `json:"hostname,omitempty"`
	// The TCP port of the server.
	Port *int32 `json:"port,omitempty"`
	// The username this Connector will use to connect to the database.
	Username *string `json:"username,omitempty"`
	// The password this Connector will use to connect to the database.
	Password *string `json:"password,omitempty"`
}

ConnectorUpdateParameters Parameters used to update a Masking Connector.

func NewConnectorUpdateParameters

func NewConnectorUpdateParameters() *ConnectorUpdateParameters

NewConnectorUpdateParameters instantiates a new ConnectorUpdateParameters 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 NewConnectorUpdateParametersWithDefaults

func NewConnectorUpdateParametersWithDefaults() *ConnectorUpdateParameters

NewConnectorUpdateParametersWithDefaults instantiates a new ConnectorUpdateParameters 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 (*ConnectorUpdateParameters) GetHostname

func (o *ConnectorUpdateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetHostnameOk

func (o *ConnectorUpdateParameters) GetHostnameOk() (*string, bool)

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

func (*ConnectorUpdateParameters) GetName

func (o *ConnectorUpdateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetNameOk

func (o *ConnectorUpdateParameters) 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.

func (*ConnectorUpdateParameters) GetPassword

func (o *ConnectorUpdateParameters) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetPasswordOk

func (o *ConnectorUpdateParameters) GetPasswordOk() (*string, bool)

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

func (*ConnectorUpdateParameters) GetPort

func (o *ConnectorUpdateParameters) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetPortOk

func (o *ConnectorUpdateParameters) GetPortOk() (*int32, bool)

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

func (*ConnectorUpdateParameters) GetUsername

func (o *ConnectorUpdateParameters) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetUsernameOk

func (o *ConnectorUpdateParameters) 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.

func (*ConnectorUpdateParameters) HasHostname

func (o *ConnectorUpdateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasName

func (o *ConnectorUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasPassword

func (o *ConnectorUpdateParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasPort

func (o *ConnectorUpdateParameters) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasUsername

func (o *ConnectorUpdateParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ConnectorUpdateParameters) MarshalJSON

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

func (*ConnectorUpdateParameters) SetHostname

func (o *ConnectorUpdateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*ConnectorUpdateParameters) SetName

func (o *ConnectorUpdateParameters) SetName(v string)

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

func (*ConnectorUpdateParameters) SetPassword

func (o *ConnectorUpdateParameters) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ConnectorUpdateParameters) SetPort

func (o *ConnectorUpdateParameters) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ConnectorUpdateParameters) SetUsername

func (o *ConnectorUpdateParameters) SetUsername(v string)

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

func (ConnectorUpdateParameters) ToMap

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

type ConnectorsApiService

type ConnectorsApiService service

ConnectorsApiService ConnectorsApi service

func (*ConnectorsApiService) ConnectorsTest

func (a *ConnectorsApiService) ConnectorsTest(ctx context.Context, connectorId string) ApiConnectorsTestRequest

ConnectorsTest Checks connectivity between a masking engine and a remote data source.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiConnectorsTestRequest

func (*ConnectorsApiService) ConnectorsTestExecute

Execute executes the request

@return ConnectorTestResponse

func (*ConnectorsApiService) CreateConnectorTags

func (a *ConnectorsApiService) CreateConnectorTags(ctx context.Context, connectorId string) ApiCreateConnectorTagsRequest

CreateConnectorTags Create tags for a Connector.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiCreateConnectorTagsRequest

func (*ConnectorsApiService) CreateConnectorTagsExecute

func (a *ConnectorsApiService) CreateConnectorTagsExecute(r ApiCreateConnectorTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ConnectorsApiService) DeleteConnectorTag

func (a *ConnectorsApiService) DeleteConnectorTag(ctx context.Context, connectorId string) ApiDeleteConnectorTagRequest

DeleteConnectorTag Delete tags for a Connector.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiDeleteConnectorTagRequest

func (*ConnectorsApiService) DeleteConnectorTagExecute

func (a *ConnectorsApiService) DeleteConnectorTagExecute(r ApiDeleteConnectorTagRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) GetConnectorById

func (a *ConnectorsApiService) GetConnectorById(ctx context.Context, connectorId string) ApiGetConnectorByIdRequest

GetConnectorById Retrieve a masking Connector by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiGetConnectorByIdRequest

func (*ConnectorsApiService) GetConnectorByIdExecute

func (a *ConnectorsApiService) GetConnectorByIdExecute(r ApiGetConnectorByIdRequest) (*Connector, *http.Response, error)

Execute executes the request

@return Connector

func (*ConnectorsApiService) GetConnectorTags

func (a *ConnectorsApiService) GetConnectorTags(ctx context.Context, connectorId string) ApiGetConnectorTagsRequest

GetConnectorTags Get tags for a Connector.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiGetConnectorTagsRequest

func (*ConnectorsApiService) GetConnectorTagsExecute

func (a *ConnectorsApiService) GetConnectorTagsExecute(r ApiGetConnectorTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ConnectorsApiService) GetConnectors

GetConnectors Retrieve the list of masking connectors.

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

func (*ConnectorsApiService) GetConnectorsExecute

Execute executes the request

@return ListConnectorsResponse

func (*ConnectorsApiService) SearchConnectors

SearchConnectors Search for masking Connectors.

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

func (*ConnectorsApiService) SearchConnectorsExecute

Execute executes the request

@return SearchConnectorsResponse

func (*ConnectorsApiService) UpdateConnectorById

func (a *ConnectorsApiService) UpdateConnectorById(ctx context.Context, connectorId string) ApiUpdateConnectorByIdRequest

UpdateConnectorById Update a masking Connector by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectorId The ID of the Connector.
@return ApiUpdateConnectorByIdRequest

func (*ConnectorsApiService) UpdateConnectorByIdExecute

Execute executes the request

@return UpdateConnectorResponse

type CopyMaskingJobParameters

type CopyMaskingJobParameters struct {
	// The ID of the engine to copy the job to.
	TargetEngineId string `json:"target_engine_id"`
	// The ID or name of the source environment on the target engine. This only applies to On-The-Fly jobs.
	SourceEnvironmentId *string `json:"source_environment_id,omitempty"`
	// The ID or name of the target environment to copy the job into.
	TargetEnvironmentId *string `json:"target_environment_id,omitempty"`
}

CopyMaskingJobParameters Parameters to copy a masking job.

func NewCopyMaskingJobParameters

func NewCopyMaskingJobParameters(targetEngineId string) *CopyMaskingJobParameters

NewCopyMaskingJobParameters instantiates a new CopyMaskingJobParameters 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 NewCopyMaskingJobParametersWithDefaults

func NewCopyMaskingJobParametersWithDefaults() *CopyMaskingJobParameters

NewCopyMaskingJobParametersWithDefaults instantiates a new CopyMaskingJobParameters 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 (*CopyMaskingJobParameters) GetSourceEnvironmentId

func (o *CopyMaskingJobParameters) GetSourceEnvironmentId() string

GetSourceEnvironmentId returns the SourceEnvironmentId field value if set, zero value otherwise.

func (*CopyMaskingJobParameters) GetSourceEnvironmentIdOk

func (o *CopyMaskingJobParameters) GetSourceEnvironmentIdOk() (*string, bool)

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

func (*CopyMaskingJobParameters) GetTargetEngineId

func (o *CopyMaskingJobParameters) GetTargetEngineId() string

GetTargetEngineId returns the TargetEngineId field value

func (*CopyMaskingJobParameters) GetTargetEngineIdOk

func (o *CopyMaskingJobParameters) GetTargetEngineIdOk() (*string, bool)

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

func (*CopyMaskingJobParameters) GetTargetEnvironmentId

func (o *CopyMaskingJobParameters) GetTargetEnvironmentId() string

GetTargetEnvironmentId returns the TargetEnvironmentId field value if set, zero value otherwise.

func (*CopyMaskingJobParameters) GetTargetEnvironmentIdOk

func (o *CopyMaskingJobParameters) GetTargetEnvironmentIdOk() (*string, bool)

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

func (*CopyMaskingJobParameters) HasSourceEnvironmentId

func (o *CopyMaskingJobParameters) HasSourceEnvironmentId() bool

HasSourceEnvironmentId returns a boolean if a field has been set.

func (*CopyMaskingJobParameters) HasTargetEnvironmentId

func (o *CopyMaskingJobParameters) HasTargetEnvironmentId() bool

HasTargetEnvironmentId returns a boolean if a field has been set.

func (CopyMaskingJobParameters) MarshalJSON

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

func (*CopyMaskingJobParameters) SetSourceEnvironmentId

func (o *CopyMaskingJobParameters) SetSourceEnvironmentId(v string)

SetSourceEnvironmentId gets a reference to the given string and assigns it to the SourceEnvironmentId field.

func (*CopyMaskingJobParameters) SetTargetEngineId

func (o *CopyMaskingJobParameters) SetTargetEngineId(v string)

SetTargetEngineId sets field value

func (*CopyMaskingJobParameters) SetTargetEnvironmentId

func (o *CopyMaskingJobParameters) SetTargetEnvironmentId(v string)

SetTargetEnvironmentId gets a reference to the given string and assigns it to the TargetEnvironmentId field.

func (CopyMaskingJobParameters) ToMap

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

type CopyMaskingJobResponse

type CopyMaskingJobResponse struct {
	Job          *Job    `json:"job,omitempty"`
	MaskingJobId *string `json:"masking_job_id,omitempty"`
}

CopyMaskingJobResponse struct for CopyMaskingJobResponse

func NewCopyMaskingJobResponse

func NewCopyMaskingJobResponse() *CopyMaskingJobResponse

NewCopyMaskingJobResponse instantiates a new CopyMaskingJobResponse 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 NewCopyMaskingJobResponseWithDefaults

func NewCopyMaskingJobResponseWithDefaults() *CopyMaskingJobResponse

NewCopyMaskingJobResponseWithDefaults instantiates a new CopyMaskingJobResponse 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 (*CopyMaskingJobResponse) GetJob

func (o *CopyMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CopyMaskingJobResponse) GetJobOk

func (o *CopyMaskingJobResponse) GetJobOk() (*Job, bool)

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

func (*CopyMaskingJobResponse) GetMaskingJobId

func (o *CopyMaskingJobResponse) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*CopyMaskingJobResponse) GetMaskingJobIdOk

func (o *CopyMaskingJobResponse) GetMaskingJobIdOk() (*string, bool)

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

func (*CopyMaskingJobResponse) HasJob

func (o *CopyMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*CopyMaskingJobResponse) HasMaskingJobId

func (o *CopyMaskingJobResponse) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (CopyMaskingJobResponse) MarshalJSON

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

func (*CopyMaskingJobResponse) SetJob

func (o *CopyMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*CopyMaskingJobResponse) SetMaskingJobId

func (o *CopyMaskingJobResponse) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (CopyMaskingJobResponse) ToMap

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

type CreateAlgorithmResponse

type CreateAlgorithmResponse struct {
	Job *Job `json:"job,omitempty"`
}

CreateAlgorithmResponse struct for CreateAlgorithmResponse

func NewCreateAlgorithmResponse

func NewCreateAlgorithmResponse() *CreateAlgorithmResponse

NewCreateAlgorithmResponse instantiates a new CreateAlgorithmResponse 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 NewCreateAlgorithmResponseWithDefaults

func NewCreateAlgorithmResponseWithDefaults() *CreateAlgorithmResponse

NewCreateAlgorithmResponseWithDefaults instantiates a new CreateAlgorithmResponse 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 (*CreateAlgorithmResponse) GetJob

func (o *CreateAlgorithmResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateAlgorithmResponse) GetJobOk

func (o *CreateAlgorithmResponse) GetJobOk() (*Job, bool)

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

func (*CreateAlgorithmResponse) HasJob

func (o *CreateAlgorithmResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (CreateAlgorithmResponse) MarshalJSON

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

func (*CreateAlgorithmResponse) SetJob

func (o *CreateAlgorithmResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateAlgorithmResponse) ToMap

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

type CreateBookmarkResponse

type CreateBookmarkResponse struct {
	Bookmark *Bookmark `json:"bookmark,omitempty"`
	Job      *Job      `json:"job,omitempty"`
}

CreateBookmarkResponse struct for CreateBookmarkResponse

func NewCreateBookmarkResponse

func NewCreateBookmarkResponse() *CreateBookmarkResponse

NewCreateBookmarkResponse instantiates a new CreateBookmarkResponse 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 NewCreateBookmarkResponseWithDefaults

func NewCreateBookmarkResponseWithDefaults() *CreateBookmarkResponse

NewCreateBookmarkResponseWithDefaults instantiates a new CreateBookmarkResponse 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 (*CreateBookmarkResponse) GetBookmark

func (o *CreateBookmarkResponse) GetBookmark() Bookmark

GetBookmark returns the Bookmark field value if set, zero value otherwise.

func (*CreateBookmarkResponse) GetBookmarkOk

func (o *CreateBookmarkResponse) GetBookmarkOk() (*Bookmark, bool)

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

func (*CreateBookmarkResponse) GetJob

func (o *CreateBookmarkResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateBookmarkResponse) GetJobOk

func (o *CreateBookmarkResponse) GetJobOk() (*Job, bool)

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

func (*CreateBookmarkResponse) HasBookmark

func (o *CreateBookmarkResponse) HasBookmark() bool

HasBookmark returns a boolean if a field has been set.

func (*CreateBookmarkResponse) HasJob

func (o *CreateBookmarkResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (CreateBookmarkResponse) MarshalJSON

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

func (*CreateBookmarkResponse) SetBookmark

func (o *CreateBookmarkResponse) SetBookmark(v Bookmark)

SetBookmark gets a reference to the given Bookmark and assigns it to the Bookmark field.

func (*CreateBookmarkResponse) SetJob

func (o *CreateBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateBookmarkResponse) ToMap

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

type CreateDatabaseTemplateResponse

type CreateDatabaseTemplateResponse struct {
	DatabaseTemplate *DatabaseTemplate `json:"database_template,omitempty"`
	Job              *Job              `json:"job,omitempty"`
}

CreateDatabaseTemplateResponse struct for CreateDatabaseTemplateResponse

func NewCreateDatabaseTemplateResponse

func NewCreateDatabaseTemplateResponse() *CreateDatabaseTemplateResponse

NewCreateDatabaseTemplateResponse instantiates a new CreateDatabaseTemplateResponse 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 NewCreateDatabaseTemplateResponseWithDefaults

func NewCreateDatabaseTemplateResponseWithDefaults() *CreateDatabaseTemplateResponse

NewCreateDatabaseTemplateResponseWithDefaults instantiates a new CreateDatabaseTemplateResponse 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 (*CreateDatabaseTemplateResponse) GetDatabaseTemplate

func (o *CreateDatabaseTemplateResponse) GetDatabaseTemplate() DatabaseTemplate

GetDatabaseTemplate returns the DatabaseTemplate field value if set, zero value otherwise.

func (*CreateDatabaseTemplateResponse) GetDatabaseTemplateOk

func (o *CreateDatabaseTemplateResponse) GetDatabaseTemplateOk() (*DatabaseTemplate, bool)

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

func (*CreateDatabaseTemplateResponse) GetJob

func (o *CreateDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateDatabaseTemplateResponse) GetJobOk

func (o *CreateDatabaseTemplateResponse) GetJobOk() (*Job, bool)

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

func (*CreateDatabaseTemplateResponse) HasDatabaseTemplate

func (o *CreateDatabaseTemplateResponse) HasDatabaseTemplate() bool

HasDatabaseTemplate returns a boolean if a field has been set.

func (*CreateDatabaseTemplateResponse) HasJob

HasJob returns a boolean if a field has been set.

func (CreateDatabaseTemplateResponse) MarshalJSON

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

func (*CreateDatabaseTemplateResponse) SetDatabaseTemplate

func (o *CreateDatabaseTemplateResponse) SetDatabaseTemplate(v DatabaseTemplate)

SetDatabaseTemplate gets a reference to the given DatabaseTemplate and assigns it to the DatabaseTemplate field.

func (*CreateDatabaseTemplateResponse) SetJob

func (o *CreateDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateDatabaseTemplateResponse) ToMap

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

type CreateEnvironmentResponse

type CreateEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
	// The id of environment created.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

CreateEnvironmentResponse struct for CreateEnvironmentResponse

func NewCreateEnvironmentResponse

func NewCreateEnvironmentResponse() *CreateEnvironmentResponse

NewCreateEnvironmentResponse instantiates a new CreateEnvironmentResponse 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 NewCreateEnvironmentResponseWithDefaults

func NewCreateEnvironmentResponseWithDefaults() *CreateEnvironmentResponse

NewCreateEnvironmentResponseWithDefaults instantiates a new CreateEnvironmentResponse 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 (*CreateEnvironmentResponse) GetEnvironmentId

func (o *CreateEnvironmentResponse) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*CreateEnvironmentResponse) GetEnvironmentIdOk

func (o *CreateEnvironmentResponse) GetEnvironmentIdOk() (*string, bool)

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

func (*CreateEnvironmentResponse) GetJob

func (o *CreateEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateEnvironmentResponse) GetJobOk

func (o *CreateEnvironmentResponse) GetJobOk() (*Job, bool)

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

func (*CreateEnvironmentResponse) HasEnvironmentId

func (o *CreateEnvironmentResponse) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*CreateEnvironmentResponse) HasJob

func (o *CreateEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (CreateEnvironmentResponse) MarshalJSON

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

func (*CreateEnvironmentResponse) SetEnvironmentId

func (o *CreateEnvironmentResponse) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*CreateEnvironmentResponse) SetJob

func (o *CreateEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateEnvironmentResponse) ToMap

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

type CreateEnvironmentUserResponse

type CreateEnvironmentUserResponse struct {
	// The reference of the created environment user
	UserRef *string `json:"user_ref,omitempty"`
	Job     *Job    `json:"job,omitempty"`
}

CreateEnvironmentUserResponse struct for CreateEnvironmentUserResponse

func NewCreateEnvironmentUserResponse

func NewCreateEnvironmentUserResponse() *CreateEnvironmentUserResponse

NewCreateEnvironmentUserResponse instantiates a new CreateEnvironmentUserResponse 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 NewCreateEnvironmentUserResponseWithDefaults

func NewCreateEnvironmentUserResponseWithDefaults() *CreateEnvironmentUserResponse

NewCreateEnvironmentUserResponseWithDefaults instantiates a new CreateEnvironmentUserResponse 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 (*CreateEnvironmentUserResponse) GetJob

func (o *CreateEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateEnvironmentUserResponse) GetJobOk

func (o *CreateEnvironmentUserResponse) GetJobOk() (*Job, bool)

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

func (*CreateEnvironmentUserResponse) GetUserRef

func (o *CreateEnvironmentUserResponse) GetUserRef() string

GetUserRef returns the UserRef field value if set, zero value otherwise.

func (*CreateEnvironmentUserResponse) GetUserRefOk

func (o *CreateEnvironmentUserResponse) GetUserRefOk() (*string, bool)

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

func (*CreateEnvironmentUserResponse) HasJob

func (o *CreateEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*CreateEnvironmentUserResponse) HasUserRef

func (o *CreateEnvironmentUserResponse) HasUserRef() bool

HasUserRef returns a boolean if a field has been set.

func (CreateEnvironmentUserResponse) MarshalJSON

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

func (*CreateEnvironmentUserResponse) SetJob

func (o *CreateEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*CreateEnvironmentUserResponse) SetUserRef

func (o *CreateEnvironmentUserResponse) SetUserRef(v string)

SetUserRef gets a reference to the given string and assigns it to the UserRef field.

func (CreateEnvironmentUserResponse) ToMap

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

type CreateHostResponse

type CreateHostResponse struct {
	Job *Job `json:"job,omitempty"`
	// The id of the created cluster node.
	ClusterNodeId *string `json:"cluster_node_id,omitempty"`
}

CreateHostResponse struct for CreateHostResponse

func NewCreateHostResponse

func NewCreateHostResponse() *CreateHostResponse

NewCreateHostResponse instantiates a new CreateHostResponse 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 NewCreateHostResponseWithDefaults

func NewCreateHostResponseWithDefaults() *CreateHostResponse

NewCreateHostResponseWithDefaults instantiates a new CreateHostResponse 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 (*CreateHostResponse) GetClusterNodeId

func (o *CreateHostResponse) GetClusterNodeId() string

GetClusterNodeId returns the ClusterNodeId field value if set, zero value otherwise.

func (*CreateHostResponse) GetClusterNodeIdOk

func (o *CreateHostResponse) GetClusterNodeIdOk() (*string, bool)

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

func (*CreateHostResponse) GetJob

func (o *CreateHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateHostResponse) GetJobOk

func (o *CreateHostResponse) GetJobOk() (*Job, bool)

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

func (*CreateHostResponse) HasClusterNodeId

func (o *CreateHostResponse) HasClusterNodeId() bool

HasClusterNodeId returns a boolean if a field has been set.

func (*CreateHostResponse) HasJob

func (o *CreateHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (CreateHostResponse) MarshalJSON

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

func (*CreateHostResponse) SetClusterNodeId

func (o *CreateHostResponse) SetClusterNodeId(v string)

SetClusterNodeId gets a reference to the given string and assigns it to the ClusterNodeId field.

func (*CreateHostResponse) SetJob

func (o *CreateHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateHostResponse) ToMap

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

type CreateRole

type CreateRole struct {
	// The Role name.
	Name string `json:"name"`
	// Role description.
	Description *string `json:"description,omitempty"`
	// The list of permissions granted by this role.
	PermissionObjects []PermissionObject `json:"permission_objects"`
	Tags              []Tag              `json:"tags,omitempty"`
}

CreateRole A role Object to create a custom role.

func NewCreateRole

func NewCreateRole(name string, permissionObjects []PermissionObject) *CreateRole

NewCreateRole instantiates a new CreateRole 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 NewCreateRoleWithDefaults

func NewCreateRoleWithDefaults() *CreateRole

NewCreateRoleWithDefaults instantiates a new CreateRole 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 (*CreateRole) GetDescription

func (o *CreateRole) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateRole) GetDescriptionOk

func (o *CreateRole) 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.

func (*CreateRole) GetName

func (o *CreateRole) GetName() string

GetName returns the Name field value

func (*CreateRole) GetNameOk

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

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

func (*CreateRole) GetPermissionObjects

func (o *CreateRole) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*CreateRole) GetPermissionObjectsOk

func (o *CreateRole) GetPermissionObjectsOk() ([]PermissionObject, bool)

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

func (*CreateRole) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*CreateRole) GetTagsOk

func (o *CreateRole) 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.

func (*CreateRole) HasDescription

func (o *CreateRole) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateRole) HasTags

func (o *CreateRole) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CreateRole) MarshalJSON

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

func (*CreateRole) SetDescription

func (o *CreateRole) SetDescription(v string)

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

func (*CreateRole) SetName

func (o *CreateRole) SetName(v string)

SetName sets field value

func (*CreateRole) SetPermissionObjects

func (o *CreateRole) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (*CreateRole) SetTags

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

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

func (CreateRole) ToMap

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

type CreateVDBGroupRequest

type CreateVDBGroupRequest struct {
	Name   string   `json:"name"`
	VdbIds []string `json:"vdb_ids"`
	// The tags to be created for VDB Group.
	Tags []Tag `json:"tags,omitempty"`
	// Whether the account creating this VDB group must be configured as owner of the VDB group.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

CreateVDBGroupRequest struct for CreateVDBGroupRequest

func NewCreateVDBGroupRequest

func NewCreateVDBGroupRequest(name string, vdbIds []string) *CreateVDBGroupRequest

NewCreateVDBGroupRequest instantiates a new CreateVDBGroupRequest 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 NewCreateVDBGroupRequestWithDefaults

func NewCreateVDBGroupRequestWithDefaults() *CreateVDBGroupRequest

NewCreateVDBGroupRequestWithDefaults instantiates a new CreateVDBGroupRequest 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 (*CreateVDBGroupRequest) GetMakeCurrentAccountOwner

func (o *CreateVDBGroupRequest) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*CreateVDBGroupRequest) GetMakeCurrentAccountOwnerOk

func (o *CreateVDBGroupRequest) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*CreateVDBGroupRequest) GetName

func (o *CreateVDBGroupRequest) GetName() string

GetName returns the Name field value

func (*CreateVDBGroupRequest) GetNameOk

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

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

func (*CreateVDBGroupRequest) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*CreateVDBGroupRequest) GetTagsOk

func (o *CreateVDBGroupRequest) 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.

func (*CreateVDBGroupRequest) GetVdbIds

func (o *CreateVDBGroupRequest) GetVdbIds() []string

GetVdbIds returns the VdbIds field value

func (*CreateVDBGroupRequest) GetVdbIdsOk

func (o *CreateVDBGroupRequest) GetVdbIdsOk() ([]string, bool)

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

func (*CreateVDBGroupRequest) HasMakeCurrentAccountOwner

func (o *CreateVDBGroupRequest) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*CreateVDBGroupRequest) HasTags

func (o *CreateVDBGroupRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CreateVDBGroupRequest) MarshalJSON

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

func (*CreateVDBGroupRequest) SetMakeCurrentAccountOwner

func (o *CreateVDBGroupRequest) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*CreateVDBGroupRequest) SetName

func (o *CreateVDBGroupRequest) SetName(v string)

SetName sets field value

func (*CreateVDBGroupRequest) SetTags

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

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

func (*CreateVDBGroupRequest) SetVdbIds

func (o *CreateVDBGroupRequest) SetVdbIds(v []string)

SetVdbIds sets field value

func (CreateVDBGroupRequest) ToMap

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

type CreateVDBGroupResponse

type CreateVDBGroupResponse struct {
	VdbGroup *VDBGroup `json:"vdb_group,omitempty"`
}

CreateVDBGroupResponse struct for CreateVDBGroupResponse

func NewCreateVDBGroupResponse

func NewCreateVDBGroupResponse() *CreateVDBGroupResponse

NewCreateVDBGroupResponse instantiates a new CreateVDBGroupResponse 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 NewCreateVDBGroupResponseWithDefaults

func NewCreateVDBGroupResponseWithDefaults() *CreateVDBGroupResponse

NewCreateVDBGroupResponseWithDefaults instantiates a new CreateVDBGroupResponse 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 (*CreateVDBGroupResponse) GetVdbGroup

func (o *CreateVDBGroupResponse) GetVdbGroup() VDBGroup

GetVdbGroup returns the VdbGroup field value if set, zero value otherwise.

func (*CreateVDBGroupResponse) GetVdbGroupOk

func (o *CreateVDBGroupResponse) GetVdbGroupOk() (*VDBGroup, bool)

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

func (*CreateVDBGroupResponse) HasVdbGroup

func (o *CreateVDBGroupResponse) HasVdbGroup() bool

HasVdbGroup returns a boolean if a field has been set.

func (CreateVDBGroupResponse) MarshalJSON

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

func (*CreateVDBGroupResponse) SetVdbGroup

func (o *CreateVDBGroupResponse) SetVdbGroup(v VDBGroup)

SetVdbGroup gets a reference to the given VDBGroup and assigns it to the VdbGroup field.

func (CreateVDBGroupResponse) ToMap

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

type CredentialsEnvVariable

type CredentialsEnvVariable struct {
	// Base name of the environment variables. Variables are named by appending '_USER', '_PASSWORD', '_PUBKEY' and '_PRIVKEY' to this base name, respectively. Variables whose values are not entered or are not present in the type of credential or vault selected, will not be set.
	BaseVarName string `json:"base_var_name"`
	// Password to assign to the environment variables.
	Password *string `json:"password,omitempty"`
	// The name or reference of the vault to assign to the environment variables.
	Vault *string `json:"vault,omitempty"`
	// Vault engine name where the credential is stored.
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store.
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store.
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name.
	AzureVaultName *string `json:"azure_vault_name,omitempty"`
	// Azure vault key in the key-value store.
	AzureVaultUsernameKey *string `json:"azure_vault_username_key,omitempty"`
	// Azure vault key in the key-value store.
	AzureVaultSecretKey *string `json:"azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
}

CredentialsEnvVariable struct for CredentialsEnvVariable

func NewCredentialsEnvVariable

func NewCredentialsEnvVariable(baseVarName string) *CredentialsEnvVariable

NewCredentialsEnvVariable instantiates a new CredentialsEnvVariable 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 NewCredentialsEnvVariableWithDefaults

func NewCredentialsEnvVariableWithDefaults() *CredentialsEnvVariable

NewCredentialsEnvVariableWithDefaults instantiates a new CredentialsEnvVariable 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 (*CredentialsEnvVariable) GetAzureVaultName

func (o *CredentialsEnvVariable) GetAzureVaultName() string

GetAzureVaultName returns the AzureVaultName field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultNameOk

func (o *CredentialsEnvVariable) GetAzureVaultNameOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetAzureVaultSecretKey

func (o *CredentialsEnvVariable) GetAzureVaultSecretKey() string

GetAzureVaultSecretKey returns the AzureVaultSecretKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultSecretKeyOk

func (o *CredentialsEnvVariable) GetAzureVaultSecretKeyOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetAzureVaultUsernameKey

func (o *CredentialsEnvVariable) GetAzureVaultUsernameKey() string

GetAzureVaultUsernameKey returns the AzureVaultUsernameKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultUsernameKeyOk

func (o *CredentialsEnvVariable) GetAzureVaultUsernameKeyOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetBaseVarName

func (o *CredentialsEnvVariable) GetBaseVarName() string

GetBaseVarName returns the BaseVarName field value

func (*CredentialsEnvVariable) GetBaseVarNameOk

func (o *CredentialsEnvVariable) GetBaseVarNameOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetCyberarkVaultQueryString

func (o *CredentialsEnvVariable) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetCyberarkVaultQueryStringOk

func (o *CredentialsEnvVariable) GetCyberarkVaultQueryStringOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetHashicorpVaultEngine

func (o *CredentialsEnvVariable) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultEngineOk

func (o *CredentialsEnvVariable) GetHashicorpVaultEngineOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetHashicorpVaultSecretKey

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultSecretKeyOk

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetHashicorpVaultSecretPath

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultSecretPathOk

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretPathOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetHashicorpVaultUsernameKey

func (o *CredentialsEnvVariable) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultUsernameKeyOk

func (o *CredentialsEnvVariable) GetHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetPassword

func (o *CredentialsEnvVariable) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetPasswordOk

func (o *CredentialsEnvVariable) GetPasswordOk() (*string, bool)

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

func (*CredentialsEnvVariable) GetVault

func (o *CredentialsEnvVariable) GetVault() string

GetVault returns the Vault field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetVaultOk

func (o *CredentialsEnvVariable) GetVaultOk() (*string, bool)

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

func (*CredentialsEnvVariable) HasAzureVaultName

func (o *CredentialsEnvVariable) HasAzureVaultName() bool

HasAzureVaultName returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasAzureVaultSecretKey

func (o *CredentialsEnvVariable) HasAzureVaultSecretKey() bool

HasAzureVaultSecretKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasAzureVaultUsernameKey

func (o *CredentialsEnvVariable) HasAzureVaultUsernameKey() bool

HasAzureVaultUsernameKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasCyberarkVaultQueryString

func (o *CredentialsEnvVariable) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultEngine

func (o *CredentialsEnvVariable) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultSecretKey

func (o *CredentialsEnvVariable) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultSecretPath

func (o *CredentialsEnvVariable) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultUsernameKey

func (o *CredentialsEnvVariable) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasPassword

func (o *CredentialsEnvVariable) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasVault

func (o *CredentialsEnvVariable) HasVault() bool

HasVault returns a boolean if a field has been set.

func (CredentialsEnvVariable) MarshalJSON

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

func (*CredentialsEnvVariable) SetAzureVaultName

func (o *CredentialsEnvVariable) SetAzureVaultName(v string)

SetAzureVaultName gets a reference to the given string and assigns it to the AzureVaultName field.

func (*CredentialsEnvVariable) SetAzureVaultSecretKey

func (o *CredentialsEnvVariable) SetAzureVaultSecretKey(v string)

SetAzureVaultSecretKey gets a reference to the given string and assigns it to the AzureVaultSecretKey field.

func (*CredentialsEnvVariable) SetAzureVaultUsernameKey

func (o *CredentialsEnvVariable) SetAzureVaultUsernameKey(v string)

SetAzureVaultUsernameKey gets a reference to the given string and assigns it to the AzureVaultUsernameKey field.

func (*CredentialsEnvVariable) SetBaseVarName

func (o *CredentialsEnvVariable) SetBaseVarName(v string)

SetBaseVarName sets field value

func (*CredentialsEnvVariable) SetCyberarkVaultQueryString

func (o *CredentialsEnvVariable) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*CredentialsEnvVariable) SetHashicorpVaultEngine

func (o *CredentialsEnvVariable) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*CredentialsEnvVariable) SetHashicorpVaultSecretKey

func (o *CredentialsEnvVariable) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*CredentialsEnvVariable) SetHashicorpVaultSecretPath

func (o *CredentialsEnvVariable) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*CredentialsEnvVariable) SetHashicorpVaultUsernameKey

func (o *CredentialsEnvVariable) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*CredentialsEnvVariable) SetPassword

func (o *CredentialsEnvVariable) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CredentialsEnvVariable) SetVault

func (o *CredentialsEnvVariable) SetVault(v string)

SetVault gets a reference to the given string and assigns it to the Vault field.

func (CredentialsEnvVariable) ToMap

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

type DSource

type DSource struct {
	// The dSource object entity ID.
	Id *string `json:"id,omitempty"`
	// The database type of this dSource.
	DatabaseType NullableString `json:"database_type,omitempty"`
	// The container name of this dSource.
	Name NullableString `json:"name,omitempty"`
	// The namespace id of this dSource.
	NamespaceId NullableString `json:"namespace_id,omitempty"`
	// The namespace name of this dSource.
	NamespaceName NullableString `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica NullableBool `json:"is_replica,omitempty"`
	// The database version of this dSource.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// The content type of the dSource.
	ContentType NullableString `json:"content_type,omitempty"`
	// A universal ID that uniquely identifies the dSource database.
	DataUuid NullableString `json:"data_uuid,omitempty"`
	// The actual space used by this dSource, in bytes.
	StorageSize NullableInt64 `json:"storage_size,omitempty"`
	// The version of the plugin associated with this source database.
	PluginVersion NullableString `json:"plugin_version,omitempty"`
	// The date this dSource was created.
	CreationDate NullableTime `json:"creation_date,omitempty"`
	// The name of the group containing this dSource.
	GroupName NullableString `json:"group_name,omitempty"`
	// A value indicating whether this dSource is enabled.
	Enabled NullableBool `json:"enabled,omitempty"`
	// A reference to the Engine that this dSource belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// A reference to the Source associated with this dSource.
	SourceId NullableString `json:"source_id,omitempty"`
	// The runtime status of the dSource. 'Unknown' if all attempts to connect to the source failed.
	Status NullableString `json:"status,omitempty"`
	// Name of the Engine where this DSource is hosted
	EngineName NullableString `json:"engine_name,omitempty"`
	// A reference to the CDB associated with this dSource.
	CdbId NullableString `json:"cdb_id,omitempty"`
	// A reference to the currently active timeflow for this dSource.
	CurrentTimeflowId *string `json:"current_timeflow_id,omitempty"`
	// A reference to the previous timeflow for this dSource.
	PreviousTimeflowId *string `json:"previous_timeflow_id,omitempty"`
	// Indicates whether this dSource has an AppData database.
	IsAppdata *bool `json:"is_appdata,omitempty"`
	Tags      []Tag `json:"tags,omitempty"`
}

DSource The Delphix storage-based copy of the source database including its history.

func NewDSource

func NewDSource() *DSource

NewDSource instantiates a new DSource 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 NewDSourceWithDefaults

func NewDSourceWithDefaults() *DSource

NewDSourceWithDefaults instantiates a new DSource 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 (*DSource) GetCdbId

func (o *DSource) GetCdbId() string

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

func (*DSource) GetCdbIdOk

func (o *DSource) GetCdbIdOk() (*string, bool)

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

func (*DSource) GetContentType

func (o *DSource) GetContentType() string

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

func (*DSource) GetContentTypeOk

func (o *DSource) 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 (*DSource) GetCreationDate

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

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

func (*DSource) GetCreationDateOk

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

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

func (*DSource) GetCurrentTimeflowId

func (o *DSource) GetCurrentTimeflowId() string

GetCurrentTimeflowId returns the CurrentTimeflowId field value if set, zero value otherwise.

func (*DSource) GetCurrentTimeflowIdOk

func (o *DSource) GetCurrentTimeflowIdOk() (*string, bool)

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

func (*DSource) GetDataUuid

func (o *DSource) GetDataUuid() string

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

func (*DSource) GetDataUuidOk

func (o *DSource) GetDataUuidOk() (*string, bool)

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

func (*DSource) GetDatabaseType

func (o *DSource) GetDatabaseType() string

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

func (*DSource) GetDatabaseTypeOk

func (o *DSource) GetDatabaseTypeOk() (*string, bool)

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

func (*DSource) GetDatabaseVersion

func (o *DSource) GetDatabaseVersion() string

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

func (*DSource) GetDatabaseVersionOk

func (o *DSource) GetDatabaseVersionOk() (*string, bool)

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

func (*DSource) GetEnabled

func (o *DSource) GetEnabled() bool

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

func (*DSource) GetEnabledOk

func (o *DSource) GetEnabledOk() (*bool, bool)

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

func (*DSource) GetEngineId

func (o *DSource) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*DSource) GetEngineIdOk

func (o *DSource) GetEngineIdOk() (*string, bool)

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

func (*DSource) GetEngineName

func (o *DSource) GetEngineName() string

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

func (*DSource) GetEngineNameOk

func (o *DSource) GetEngineNameOk() (*string, bool)

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

func (*DSource) GetGroupName

func (o *DSource) GetGroupName() string

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

func (*DSource) GetGroupNameOk

func (o *DSource) 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 (*DSource) GetId

func (o *DSource) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DSource) GetIdOk

func (o *DSource) 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.

func (*DSource) GetIsAppdata

func (o *DSource) GetIsAppdata() bool

GetIsAppdata returns the IsAppdata field value if set, zero value otherwise.

func (*DSource) GetIsAppdataOk

func (o *DSource) GetIsAppdataOk() (*bool, bool)

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

func (*DSource) GetIsReplica

func (o *DSource) GetIsReplica() bool

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

func (*DSource) GetIsReplicaOk

func (o *DSource) GetIsReplicaOk() (*bool, bool)

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

func (*DSource) GetName

func (o *DSource) GetName() string

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

func (*DSource) GetNameOk

func (o *DSource) 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 (*DSource) GetNamespaceId

func (o *DSource) GetNamespaceId() string

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

func (*DSource) GetNamespaceIdOk

func (o *DSource) GetNamespaceIdOk() (*string, bool)

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

func (*DSource) GetNamespaceName

func (o *DSource) GetNamespaceName() string

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

func (*DSource) GetNamespaceNameOk

func (o *DSource) GetNamespaceNameOk() (*string, bool)

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

func (*DSource) GetPluginVersion

func (o *DSource) GetPluginVersion() string

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

func (*DSource) GetPluginVersionOk

func (o *DSource) GetPluginVersionOk() (*string, bool)

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

func (*DSource) GetPreviousTimeflowId

func (o *DSource) GetPreviousTimeflowId() string

GetPreviousTimeflowId returns the PreviousTimeflowId field value if set, zero value otherwise.

func (*DSource) GetPreviousTimeflowIdOk

func (o *DSource) GetPreviousTimeflowIdOk() (*string, bool)

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

func (*DSource) GetSourceId

func (o *DSource) GetSourceId() string

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

func (*DSource) GetSourceIdOk

func (o *DSource) GetSourceIdOk() (*string, bool)

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

func (*DSource) GetStatus

func (o *DSource) GetStatus() string

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

func (*DSource) GetStatusOk

func (o *DSource) 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 (*DSource) GetStorageSize

func (o *DSource) GetStorageSize() int64

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

func (*DSource) GetStorageSizeOk

func (o *DSource) GetStorageSizeOk() (*int64, bool)

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

func (*DSource) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*DSource) GetTagsOk

func (o *DSource) 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.

func (*DSource) HasCdbId

func (o *DSource) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*DSource) HasContentType

func (o *DSource) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*DSource) HasCreationDate

func (o *DSource) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*DSource) HasCurrentTimeflowId

func (o *DSource) HasCurrentTimeflowId() bool

HasCurrentTimeflowId returns a boolean if a field has been set.

func (*DSource) HasDataUuid

func (o *DSource) HasDataUuid() bool

HasDataUuid returns a boolean if a field has been set.

func (*DSource) HasDatabaseType

func (o *DSource) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*DSource) HasDatabaseVersion

func (o *DSource) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*DSource) HasEnabled

func (o *DSource) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*DSource) HasEngineId

func (o *DSource) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*DSource) HasEngineName

func (o *DSource) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DSource) HasGroupName

func (o *DSource) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*DSource) HasId

func (o *DSource) HasId() bool

HasId returns a boolean if a field has been set.

func (*DSource) HasIsAppdata

func (o *DSource) HasIsAppdata() bool

HasIsAppdata returns a boolean if a field has been set.

func (*DSource) HasIsReplica

func (o *DSource) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*DSource) HasName

func (o *DSource) HasName() bool

HasName returns a boolean if a field has been set.

func (*DSource) HasNamespaceId

func (o *DSource) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*DSource) HasNamespaceName

func (o *DSource) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*DSource) HasPluginVersion

func (o *DSource) HasPluginVersion() bool

HasPluginVersion returns a boolean if a field has been set.

func (*DSource) HasPreviousTimeflowId

func (o *DSource) HasPreviousTimeflowId() bool

HasPreviousTimeflowId returns a boolean if a field has been set.

func (*DSource) HasSourceId

func (o *DSource) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*DSource) HasStatus

func (o *DSource) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DSource) HasStorageSize

func (o *DSource) HasStorageSize() bool

HasStorageSize returns a boolean if a field has been set.

func (*DSource) HasTags

func (o *DSource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DSource) MarshalJSON

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

func (*DSource) SetCdbId

func (o *DSource) SetCdbId(v string)

SetCdbId gets a reference to the given NullableString and assigns it to the CdbId field.

func (*DSource) SetCdbIdNil

func (o *DSource) SetCdbIdNil()

SetCdbIdNil sets the value for CdbId to be an explicit nil

func (*DSource) SetContentType

func (o *DSource) SetContentType(v string)

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

func (*DSource) SetContentTypeNil

func (o *DSource) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*DSource) SetCreationDate

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

SetCreationDate gets a reference to the given NullableTime and assigns it to the CreationDate field.

func (*DSource) SetCreationDateNil

func (o *DSource) SetCreationDateNil()

SetCreationDateNil sets the value for CreationDate to be an explicit nil

func (*DSource) SetCurrentTimeflowId

func (o *DSource) SetCurrentTimeflowId(v string)

SetCurrentTimeflowId gets a reference to the given string and assigns it to the CurrentTimeflowId field.

func (*DSource) SetDataUuid

func (o *DSource) SetDataUuid(v string)

SetDataUuid gets a reference to the given NullableString and assigns it to the DataUuid field.

func (*DSource) SetDataUuidNil

func (o *DSource) SetDataUuidNil()

SetDataUuidNil sets the value for DataUuid to be an explicit nil

func (*DSource) SetDatabaseType

func (o *DSource) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given NullableString and assigns it to the DatabaseType field.

func (*DSource) SetDatabaseTypeNil

func (o *DSource) SetDatabaseTypeNil()

SetDatabaseTypeNil sets the value for DatabaseType to be an explicit nil

func (*DSource) SetDatabaseVersion

func (o *DSource) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*DSource) SetDatabaseVersionNil

func (o *DSource) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*DSource) SetEnabled

func (o *DSource) SetEnabled(v bool)

SetEnabled gets a reference to the given NullableBool and assigns it to the Enabled field.

func (*DSource) SetEnabledNil

func (o *DSource) SetEnabledNil()

SetEnabledNil sets the value for Enabled to be an explicit nil

func (*DSource) SetEngineId

func (o *DSource) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*DSource) SetEngineName

func (o *DSource) SetEngineName(v string)

SetEngineName gets a reference to the given NullableString and assigns it to the EngineName field.

func (*DSource) SetEngineNameNil

func (o *DSource) SetEngineNameNil()

SetEngineNameNil sets the value for EngineName to be an explicit nil

func (*DSource) SetGroupName

func (o *DSource) SetGroupName(v string)

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*DSource) SetGroupNameNil

func (o *DSource) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*DSource) SetId

func (o *DSource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*DSource) SetIsAppdata

func (o *DSource) SetIsAppdata(v bool)

SetIsAppdata gets a reference to the given bool and assigns it to the IsAppdata field.

func (*DSource) SetIsReplica

func (o *DSource) SetIsReplica(v bool)

SetIsReplica gets a reference to the given NullableBool and assigns it to the IsReplica field.

func (*DSource) SetIsReplicaNil

func (o *DSource) SetIsReplicaNil()

SetIsReplicaNil sets the value for IsReplica to be an explicit nil

func (*DSource) SetName

func (o *DSource) SetName(v string)

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

func (*DSource) SetNameNil

func (o *DSource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*DSource) SetNamespaceId

func (o *DSource) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given NullableString and assigns it to the NamespaceId field.

func (*DSource) SetNamespaceIdNil

func (o *DSource) SetNamespaceIdNil()

SetNamespaceIdNil sets the value for NamespaceId to be an explicit nil

func (*DSource) SetNamespaceName

func (o *DSource) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given NullableString and assigns it to the NamespaceName field.

func (*DSource) SetNamespaceNameNil

func (o *DSource) SetNamespaceNameNil()

SetNamespaceNameNil sets the value for NamespaceName to be an explicit nil

func (*DSource) SetPluginVersion

func (o *DSource) SetPluginVersion(v string)

SetPluginVersion gets a reference to the given NullableString and assigns it to the PluginVersion field.

func (*DSource) SetPluginVersionNil

func (o *DSource) SetPluginVersionNil()

SetPluginVersionNil sets the value for PluginVersion to be an explicit nil

func (*DSource) SetPreviousTimeflowId

func (o *DSource) SetPreviousTimeflowId(v string)

SetPreviousTimeflowId gets a reference to the given string and assigns it to the PreviousTimeflowId field.

func (*DSource) SetSourceId

func (o *DSource) SetSourceId(v string)

SetSourceId gets a reference to the given NullableString and assigns it to the SourceId field.

func (*DSource) SetSourceIdNil

func (o *DSource) SetSourceIdNil()

SetSourceIdNil sets the value for SourceId to be an explicit nil

func (*DSource) SetStatus

func (o *DSource) SetStatus(v string)

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

func (*DSource) SetStatusNil

func (o *DSource) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*DSource) SetStorageSize

func (o *DSource) SetStorageSize(v int64)

SetStorageSize gets a reference to the given NullableInt64 and assigns it to the StorageSize field.

func (*DSource) SetStorageSizeNil

func (o *DSource) SetStorageSizeNil()

SetStorageSizeNil sets the value for StorageSize to be an explicit nil

func (*DSource) SetTags

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

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

func (DSource) ToMap

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

func (*DSource) UnsetCdbId

func (o *DSource) UnsetCdbId()

UnsetCdbId ensures that no value is present for CdbId, not even an explicit nil

func (*DSource) UnsetContentType

func (o *DSource) UnsetContentType()

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

func (*DSource) UnsetCreationDate

func (o *DSource) UnsetCreationDate()

UnsetCreationDate ensures that no value is present for CreationDate, not even an explicit nil

func (*DSource) UnsetDataUuid

func (o *DSource) UnsetDataUuid()

UnsetDataUuid ensures that no value is present for DataUuid, not even an explicit nil

func (*DSource) UnsetDatabaseType

func (o *DSource) UnsetDatabaseType()

UnsetDatabaseType ensures that no value is present for DatabaseType, not even an explicit nil

func (*DSource) UnsetDatabaseVersion

func (o *DSource) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*DSource) UnsetEnabled

func (o *DSource) UnsetEnabled()

UnsetEnabled ensures that no value is present for Enabled, not even an explicit nil

func (*DSource) UnsetEngineName

func (o *DSource) UnsetEngineName()

UnsetEngineName ensures that no value is present for EngineName, not even an explicit nil

func (*DSource) UnsetGroupName

func (o *DSource) UnsetGroupName()

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*DSource) UnsetIsReplica

func (o *DSource) UnsetIsReplica()

UnsetIsReplica ensures that no value is present for IsReplica, not even an explicit nil

func (*DSource) UnsetName

func (o *DSource) UnsetName()

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

func (*DSource) UnsetNamespaceId

func (o *DSource) UnsetNamespaceId()

UnsetNamespaceId ensures that no value is present for NamespaceId, not even an explicit nil

func (*DSource) UnsetNamespaceName

func (o *DSource) UnsetNamespaceName()

UnsetNamespaceName ensures that no value is present for NamespaceName, not even an explicit nil

func (*DSource) UnsetPluginVersion

func (o *DSource) UnsetPluginVersion()

UnsetPluginVersion ensures that no value is present for PluginVersion, not even an explicit nil

func (*DSource) UnsetSourceId

func (o *DSource) UnsetSourceId()

UnsetSourceId ensures that no value is present for SourceId, not even an explicit nil

func (*DSource) UnsetStatus

func (o *DSource) UnsetStatus()

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

func (*DSource) UnsetStorageSize

func (o *DSource) UnsetStorageSize()

UnsetStorageSize ensures that no value is present for StorageSize, not even an explicit nil

type DSourceConsumptionData

type DSourceConsumptionData struct {
	// The name of the dSource
	Name *string `json:"name,omitempty"`
	// The status of the dSource
	Status *string `json:"status,omitempty"`
	// The type of the dSource
	DatabaseType *string `json:"database_type,omitempty"`
	// The id of the engine the dSource belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// The name of the engine the dSource belongs to
	EngineName *string `json:"engine_name,omitempty"`
	// The most recent date where consumption data was captured for this dSource.
	LastConsumptionDate *time.Time `json:"last_consumption_date,omitempty"`
	// The ingested size of the dSource
	IngestedSize *int64 `json:"ingested_size,omitempty"`
}

DSourceConsumptionData struct for DSourceConsumptionData

func NewDSourceConsumptionData

func NewDSourceConsumptionData() *DSourceConsumptionData

NewDSourceConsumptionData instantiates a new DSourceConsumptionData 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 NewDSourceConsumptionDataWithDefaults

func NewDSourceConsumptionDataWithDefaults() *DSourceConsumptionData

NewDSourceConsumptionDataWithDefaults instantiates a new DSourceConsumptionData 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 (*DSourceConsumptionData) GetDatabaseType

func (o *DSourceConsumptionData) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetDatabaseTypeOk

func (o *DSourceConsumptionData) GetDatabaseTypeOk() (*string, bool)

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

func (*DSourceConsumptionData) GetEngineId

func (o *DSourceConsumptionData) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetEngineIdOk

func (o *DSourceConsumptionData) GetEngineIdOk() (*string, bool)

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

func (*DSourceConsumptionData) GetEngineName

func (o *DSourceConsumptionData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetEngineNameOk

func (o *DSourceConsumptionData) GetEngineNameOk() (*string, bool)

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

func (*DSourceConsumptionData) GetIngestedSize

func (o *DSourceConsumptionData) GetIngestedSize() int64

GetIngestedSize returns the IngestedSize field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetIngestedSizeOk

func (o *DSourceConsumptionData) GetIngestedSizeOk() (*int64, bool)

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

func (*DSourceConsumptionData) GetLastConsumptionDate

func (o *DSourceConsumptionData) GetLastConsumptionDate() time.Time

GetLastConsumptionDate returns the LastConsumptionDate field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetLastConsumptionDateOk

func (o *DSourceConsumptionData) GetLastConsumptionDateOk() (*time.Time, bool)

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

func (*DSourceConsumptionData) GetName

func (o *DSourceConsumptionData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetNameOk

func (o *DSourceConsumptionData) 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.

func (*DSourceConsumptionData) GetStatus

func (o *DSourceConsumptionData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetStatusOk

func (o *DSourceConsumptionData) 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.

func (*DSourceConsumptionData) HasDatabaseType

func (o *DSourceConsumptionData) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasEngineId

func (o *DSourceConsumptionData) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasEngineName

func (o *DSourceConsumptionData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasIngestedSize

func (o *DSourceConsumptionData) HasIngestedSize() bool

HasIngestedSize returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasLastConsumptionDate

func (o *DSourceConsumptionData) HasLastConsumptionDate() bool

HasLastConsumptionDate returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasName

func (o *DSourceConsumptionData) HasName() bool

HasName returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasStatus

func (o *DSourceConsumptionData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DSourceConsumptionData) MarshalJSON

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

func (*DSourceConsumptionData) SetDatabaseType

func (o *DSourceConsumptionData) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*DSourceConsumptionData) SetEngineId

func (o *DSourceConsumptionData) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*DSourceConsumptionData) SetEngineName

func (o *DSourceConsumptionData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DSourceConsumptionData) SetIngestedSize

func (o *DSourceConsumptionData) SetIngestedSize(v int64)

SetIngestedSize gets a reference to the given int64 and assigns it to the IngestedSize field.

func (*DSourceConsumptionData) SetLastConsumptionDate

func (o *DSourceConsumptionData) SetLastConsumptionDate(v time.Time)

SetLastConsumptionDate gets a reference to the given time.Time and assigns it to the LastConsumptionDate field.

func (*DSourceConsumptionData) SetName

func (o *DSourceConsumptionData) SetName(v string)

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

func (*DSourceConsumptionData) SetStatus

func (o *DSourceConsumptionData) SetStatus(v string)

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

func (DSourceConsumptionData) ToMap

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

type DSourceConsumptionReportResponse

type DSourceConsumptionReportResponse struct {
	Items            []DSourceConsumptionData   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

DSourceConsumptionReportResponse struct for DSourceConsumptionReportResponse

func NewDSourceConsumptionReportResponse

func NewDSourceConsumptionReportResponse() *DSourceConsumptionReportResponse

NewDSourceConsumptionReportResponse instantiates a new DSourceConsumptionReportResponse 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 NewDSourceConsumptionReportResponseWithDefaults

func NewDSourceConsumptionReportResponseWithDefaults() *DSourceConsumptionReportResponse

NewDSourceConsumptionReportResponseWithDefaults instantiates a new DSourceConsumptionReportResponse 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 (*DSourceConsumptionReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*DSourceConsumptionReportResponse) GetItemsOk

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

func (*DSourceConsumptionReportResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*DSourceConsumptionReportResponse) GetResponseMetadataOk

func (o *DSourceConsumptionReportResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

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

func (*DSourceConsumptionReportResponse) HasItems

func (o *DSourceConsumptionReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*DSourceConsumptionReportResponse) HasResponseMetadata

func (o *DSourceConsumptionReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (DSourceConsumptionReportResponse) MarshalJSON

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

func (*DSourceConsumptionReportResponse) SetItems

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

func (*DSourceConsumptionReportResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (DSourceConsumptionReportResponse) ToMap

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

type DSourceSnapshotParameters

type DSourceSnapshotParameters struct {
	// If this parameter is set to true, older devices will be dropped and new devices created instead of trying to remap the devices. This might increase the space utilization on Delphix Engine. (ASE only)
	DropAndRecreateDevices *bool `json:"drop_and_recreate_devices,omitempty"`
	// Determines how the Delphix Engine will take a backup: * `latest_backup` - Use the most recent backup. * `new_backup` - Delphix will take a new backup of your source database. * `specific_backup` - Use a specific backup. Using this option requires setting   `ase_backup_files` for ASE dSources or `mssql_backup_uuid` for MSSql dSources. Default is `new_backup`. (ASE, MSSql only)
	SyncStrategy *string `json:"sync_strategy,omitempty"`
	// When using the `specific_backup` sync_strategy, determines the backup files. (ASE Only)
	AseBackupFiles []string `json:"ase_backup_files,omitempty"`
	// When using the `specific_backup` sync_strategy, determines the Backup Set UUID. (MSSql only)
	MssqlBackupUuid *string `json:"mssql_backup_uuid,omitempty"`
	// When using the `new_backup` sync_strategy, determines if compression must be enabled. Defaults to the configuration of the ingestion strategy configured on the Delphix Engine for this dSource. (MSSql only)
	CompressionEnabled *bool `json:"compression_enabled,omitempty"`
	// When using the `new_backup` sync_strategy for an MSSql Availability Group, determines the backup policy: * `primary` - Backups only go to the primary node. * `secondary_only` - Backups only go to secondary nodes. If secondary nodes are down, backups will fail. * `prefer_secondary` - Backups go to secondary nodes, but if secondary nodes are down, backups will go to the primary node. (MSSql only)
	AvailabilityGroupBackupPolicy *string `json:"availability_group_backup_policy,omitempty"`
	// Indicates whether a fresh SnapSync must be started regardless if it was possible to resume the current SnapSync. If true, we will not resume but instead ignore previous progress and backup all datafiles even if already completed from previous failed SnapSync. This does not force a full backup, if an incremental was in progress this will start a new incremental snapshot. (Oracle only)
	DoNotResume *bool `json:"do_not_resume,omitempty"`
	// Indicates whether two SnapSyncs should be performed in immediate succession to reduce the number of logs required to provision the snapshot. This may significantly reduce the time necessary to provision from a snapshot. (Oracle only).
	DoubleSync *bool `json:"double_sync,omitempty"`
	// Whether or not to take another full backup of the source database. (Oracle only)
	ForceFullBackup *bool `json:"force_full_backup,omitempty"`
	// Skip check that tests if there is enough space available to store the database in the Delphix Engine. The Delphix Engine estimates how much space a database will occupy after compression and prevents SnapSync if insufficient space is available. This safeguard can be overridden using this option. This may be useful when linking highly compressible databases. (Oracle only)
	SkipSpaceCheck *bool `json:"skip_space_check,omitempty"`
	// List of datafiles to take a full backup of. This would be useful in situations where certain datafiles could not be backed up during previous SnapSync due to corruption or because they went offline. (Oracle only)
	FilesForPartialFullBackup []int64 `json:"files_for_partial_full_backup,omitempty"`
}

DSourceSnapshotParameters Parameters to snapshot a DSource.

func NewDSourceSnapshotParameters

func NewDSourceSnapshotParameters() *DSourceSnapshotParameters

NewDSourceSnapshotParameters instantiates a new DSourceSnapshotParameters 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 NewDSourceSnapshotParametersWithDefaults

func NewDSourceSnapshotParametersWithDefaults() *DSourceSnapshotParameters

NewDSourceSnapshotParametersWithDefaults instantiates a new DSourceSnapshotParameters 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 (*DSourceSnapshotParameters) GetAseBackupFiles

func (o *DSourceSnapshotParameters) GetAseBackupFiles() []string

GetAseBackupFiles returns the AseBackupFiles field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetAseBackupFilesOk

func (o *DSourceSnapshotParameters) GetAseBackupFilesOk() ([]string, bool)

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

func (*DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicy

func (o *DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicy() string

GetAvailabilityGroupBackupPolicy returns the AvailabilityGroupBackupPolicy field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicyOk

func (o *DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicyOk() (*string, bool)

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

func (*DSourceSnapshotParameters) GetCompressionEnabled

func (o *DSourceSnapshotParameters) GetCompressionEnabled() bool

GetCompressionEnabled returns the CompressionEnabled field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetCompressionEnabledOk

func (o *DSourceSnapshotParameters) GetCompressionEnabledOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetDoNotResume

func (o *DSourceSnapshotParameters) GetDoNotResume() bool

GetDoNotResume returns the DoNotResume field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetDoNotResumeOk

func (o *DSourceSnapshotParameters) GetDoNotResumeOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetDoubleSync

func (o *DSourceSnapshotParameters) GetDoubleSync() bool

GetDoubleSync returns the DoubleSync field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetDoubleSyncOk

func (o *DSourceSnapshotParameters) GetDoubleSyncOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetDropAndRecreateDevices

func (o *DSourceSnapshotParameters) GetDropAndRecreateDevices() bool

GetDropAndRecreateDevices returns the DropAndRecreateDevices field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetDropAndRecreateDevicesOk

func (o *DSourceSnapshotParameters) GetDropAndRecreateDevicesOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetFilesForPartialFullBackup

func (o *DSourceSnapshotParameters) GetFilesForPartialFullBackup() []int64

GetFilesForPartialFullBackup returns the FilesForPartialFullBackup field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetFilesForPartialFullBackupOk

func (o *DSourceSnapshotParameters) GetFilesForPartialFullBackupOk() ([]int64, bool)

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

func (*DSourceSnapshotParameters) GetForceFullBackup

func (o *DSourceSnapshotParameters) GetForceFullBackup() bool

GetForceFullBackup returns the ForceFullBackup field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetForceFullBackupOk

func (o *DSourceSnapshotParameters) GetForceFullBackupOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetMssqlBackupUuid

func (o *DSourceSnapshotParameters) GetMssqlBackupUuid() string

GetMssqlBackupUuid returns the MssqlBackupUuid field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetMssqlBackupUuidOk

func (o *DSourceSnapshotParameters) GetMssqlBackupUuidOk() (*string, bool)

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

func (*DSourceSnapshotParameters) GetSkipSpaceCheck

func (o *DSourceSnapshotParameters) GetSkipSpaceCheck() bool

GetSkipSpaceCheck returns the SkipSpaceCheck field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetSkipSpaceCheckOk

func (o *DSourceSnapshotParameters) GetSkipSpaceCheckOk() (*bool, bool)

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

func (*DSourceSnapshotParameters) GetSyncStrategy

func (o *DSourceSnapshotParameters) GetSyncStrategy() string

GetSyncStrategy returns the SyncStrategy field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetSyncStrategyOk

func (o *DSourceSnapshotParameters) GetSyncStrategyOk() (*string, bool)

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

func (*DSourceSnapshotParameters) HasAseBackupFiles

func (o *DSourceSnapshotParameters) HasAseBackupFiles() bool

HasAseBackupFiles returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasAvailabilityGroupBackupPolicy

func (o *DSourceSnapshotParameters) HasAvailabilityGroupBackupPolicy() bool

HasAvailabilityGroupBackupPolicy returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasCompressionEnabled

func (o *DSourceSnapshotParameters) HasCompressionEnabled() bool

HasCompressionEnabled returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDoNotResume

func (o *DSourceSnapshotParameters) HasDoNotResume() bool

HasDoNotResume returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDoubleSync

func (o *DSourceSnapshotParameters) HasDoubleSync() bool

HasDoubleSync returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDropAndRecreateDevices

func (o *DSourceSnapshotParameters) HasDropAndRecreateDevices() bool

HasDropAndRecreateDevices returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasFilesForPartialFullBackup

func (o *DSourceSnapshotParameters) HasFilesForPartialFullBackup() bool

HasFilesForPartialFullBackup returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasForceFullBackup

func (o *DSourceSnapshotParameters) HasForceFullBackup() bool

HasForceFullBackup returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasMssqlBackupUuid

func (o *DSourceSnapshotParameters) HasMssqlBackupUuid() bool

HasMssqlBackupUuid returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasSkipSpaceCheck

func (o *DSourceSnapshotParameters) HasSkipSpaceCheck() bool

HasSkipSpaceCheck returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasSyncStrategy

func (o *DSourceSnapshotParameters) HasSyncStrategy() bool

HasSyncStrategy returns a boolean if a field has been set.

func (DSourceSnapshotParameters) MarshalJSON

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

func (*DSourceSnapshotParameters) SetAseBackupFiles

func (o *DSourceSnapshotParameters) SetAseBackupFiles(v []string)

SetAseBackupFiles gets a reference to the given []string and assigns it to the AseBackupFiles field.

func (*DSourceSnapshotParameters) SetAvailabilityGroupBackupPolicy

func (o *DSourceSnapshotParameters) SetAvailabilityGroupBackupPolicy(v string)

SetAvailabilityGroupBackupPolicy gets a reference to the given string and assigns it to the AvailabilityGroupBackupPolicy field.

func (*DSourceSnapshotParameters) SetCompressionEnabled

func (o *DSourceSnapshotParameters) SetCompressionEnabled(v bool)

SetCompressionEnabled gets a reference to the given bool and assigns it to the CompressionEnabled field.

func (*DSourceSnapshotParameters) SetDoNotResume

func (o *DSourceSnapshotParameters) SetDoNotResume(v bool)

SetDoNotResume gets a reference to the given bool and assigns it to the DoNotResume field.

func (*DSourceSnapshotParameters) SetDoubleSync

func (o *DSourceSnapshotParameters) SetDoubleSync(v bool)

SetDoubleSync gets a reference to the given bool and assigns it to the DoubleSync field.

func (*DSourceSnapshotParameters) SetDropAndRecreateDevices

func (o *DSourceSnapshotParameters) SetDropAndRecreateDevices(v bool)

SetDropAndRecreateDevices gets a reference to the given bool and assigns it to the DropAndRecreateDevices field.

func (*DSourceSnapshotParameters) SetFilesForPartialFullBackup

func (o *DSourceSnapshotParameters) SetFilesForPartialFullBackup(v []int64)

SetFilesForPartialFullBackup gets a reference to the given []int64 and assigns it to the FilesForPartialFullBackup field.

func (*DSourceSnapshotParameters) SetForceFullBackup

func (o *DSourceSnapshotParameters) SetForceFullBackup(v bool)

SetForceFullBackup gets a reference to the given bool and assigns it to the ForceFullBackup field.

func (*DSourceSnapshotParameters) SetMssqlBackupUuid

func (o *DSourceSnapshotParameters) SetMssqlBackupUuid(v string)

SetMssqlBackupUuid gets a reference to the given string and assigns it to the MssqlBackupUuid field.

func (*DSourceSnapshotParameters) SetSkipSpaceCheck

func (o *DSourceSnapshotParameters) SetSkipSpaceCheck(v bool)

SetSkipSpaceCheck gets a reference to the given bool and assigns it to the SkipSpaceCheck field.

func (*DSourceSnapshotParameters) SetSyncStrategy

func (o *DSourceSnapshotParameters) SetSyncStrategy(v string)

SetSyncStrategy gets a reference to the given string and assigns it to the SyncStrategy field.

func (DSourceSnapshotParameters) ToMap

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

type DSourceUsageData

type DSourceUsageData struct {
	// The name of the engine the dSource belongs to.
	EngineName *string `json:"engine_name,omitempty"`
	// The name of the dSource
	Name *string `json:"name,omitempty"`
	// The the disk space that would be required if not using Delphix virtualizion, in bytes.
	UnvirtualizedSpace *int64 `json:"unvirtualized_space,omitempty"`
	// The actual space used by this dSource, in bytes. This includes the disk space used by the current copy of the data as well as the snapshots and log files retained to enable provisioning from historical versions.
	ActualSpace *int64 `json:"actual_space,omitempty"`
	// The number of VDBs that are dependant on this dSource. This includes all VDB descendants that have this dSource as an ancestor.
	DependantVdbs *int32 `json:"dependant_vdbs,omitempty"`
}

DSourceUsageData struct for DSourceUsageData

func NewDSourceUsageData

func NewDSourceUsageData() *DSourceUsageData

NewDSourceUsageData instantiates a new DSourceUsageData 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 NewDSourceUsageDataWithDefaults

func NewDSourceUsageDataWithDefaults() *DSourceUsageData

NewDSourceUsageDataWithDefaults instantiates a new DSourceUsageData 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 (*DSourceUsageData) GetActualSpace

func (o *DSourceUsageData) GetActualSpace() int64

GetActualSpace returns the ActualSpace field value if set, zero value otherwise.

func (*DSourceUsageData) GetActualSpaceOk

func (o *DSourceUsageData) GetActualSpaceOk() (*int64, bool)

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

func (*DSourceUsageData) GetDependantVdbs

func (o *DSourceUsageData) GetDependantVdbs() int32

GetDependantVdbs returns the DependantVdbs field value if set, zero value otherwise.

func (*DSourceUsageData) GetDependantVdbsOk

func (o *DSourceUsageData) GetDependantVdbsOk() (*int32, bool)

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

func (*DSourceUsageData) GetEngineName

func (o *DSourceUsageData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DSourceUsageData) GetEngineNameOk

func (o *DSourceUsageData) GetEngineNameOk() (*string, bool)

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

func (*DSourceUsageData) GetName

func (o *DSourceUsageData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DSourceUsageData) GetNameOk

func (o *DSourceUsageData) 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.

func (*DSourceUsageData) GetUnvirtualizedSpace

func (o *DSourceUsageData) GetUnvirtualizedSpace() int64

GetUnvirtualizedSpace returns the UnvirtualizedSpace field value if set, zero value otherwise.

func (*DSourceUsageData) GetUnvirtualizedSpaceOk

func (o *DSourceUsageData) GetUnvirtualizedSpaceOk() (*int64, bool)

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

func (*DSourceUsageData) HasActualSpace

func (o *DSourceUsageData) HasActualSpace() bool

HasActualSpace returns a boolean if a field has been set.

func (*DSourceUsageData) HasDependantVdbs

func (o *DSourceUsageData) HasDependantVdbs() bool

HasDependantVdbs returns a boolean if a field has been set.

func (*DSourceUsageData) HasEngineName

func (o *DSourceUsageData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DSourceUsageData) HasName

func (o *DSourceUsageData) HasName() bool

HasName returns a boolean if a field has been set.

func (*DSourceUsageData) HasUnvirtualizedSpace

func (o *DSourceUsageData) HasUnvirtualizedSpace() bool

HasUnvirtualizedSpace returns a boolean if a field has been set.

func (DSourceUsageData) MarshalJSON

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

func (*DSourceUsageData) SetActualSpace

func (o *DSourceUsageData) SetActualSpace(v int64)

SetActualSpace gets a reference to the given int64 and assigns it to the ActualSpace field.

func (*DSourceUsageData) SetDependantVdbs

func (o *DSourceUsageData) SetDependantVdbs(v int32)

SetDependantVdbs gets a reference to the given int32 and assigns it to the DependantVdbs field.

func (*DSourceUsageData) SetEngineName

func (o *DSourceUsageData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DSourceUsageData) SetName

func (o *DSourceUsageData) SetName(v string)

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

func (*DSourceUsageData) SetUnvirtualizedSpace

func (o *DSourceUsageData) SetUnvirtualizedSpace(v int64)

SetUnvirtualizedSpace gets a reference to the given int64 and assigns it to the UnvirtualizedSpace field.

func (DSourceUsageData) ToMap

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

type DSourceUsageReportResponse

type DSourceUsageReportResponse struct {
	Items            []DSourceUsageData         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

DSourceUsageReportResponse struct for DSourceUsageReportResponse

func NewDSourceUsageReportResponse

func NewDSourceUsageReportResponse() *DSourceUsageReportResponse

NewDSourceUsageReportResponse instantiates a new DSourceUsageReportResponse 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 NewDSourceUsageReportResponseWithDefaults

func NewDSourceUsageReportResponseWithDefaults() *DSourceUsageReportResponse

NewDSourceUsageReportResponseWithDefaults instantiates a new DSourceUsageReportResponse 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 (*DSourceUsageReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*DSourceUsageReportResponse) GetItemsOk

func (o *DSourceUsageReportResponse) GetItemsOk() ([]DSourceUsageData, 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.

func (*DSourceUsageReportResponse) GetResponseMetadata

func (o *DSourceUsageReportResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*DSourceUsageReportResponse) GetResponseMetadataOk

func (o *DSourceUsageReportResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

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

func (*DSourceUsageReportResponse) HasItems

func (o *DSourceUsageReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*DSourceUsageReportResponse) HasResponseMetadata

func (o *DSourceUsageReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (DSourceUsageReportResponse) MarshalJSON

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

func (*DSourceUsageReportResponse) SetItems

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

func (*DSourceUsageReportResponse) SetResponseMetadata

func (o *DSourceUsageReportResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (DSourceUsageReportResponse) ToMap

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

type DSourcesApiService

type DSourcesApiService service

DSourcesApiService DSourcesApi service

func (*DSourcesApiService) CreateTagsDsource

func (a *DSourcesApiService) CreateTagsDsource(ctx context.Context, dsourceId string) ApiCreateTagsDsourceRequest

CreateTagsDsource Create tags for a dSource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiCreateTagsDsourceRequest

func (*DSourcesApiService) CreateTagsDsourceExecute

func (a *DSourcesApiService) CreateTagsDsourceExecute(r ApiCreateTagsDsourceRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*DSourcesApiService) DeleteDsource

DeleteDsource Delete the specified dSource.

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

func (*DSourcesApiService) DeleteDsourceExecute

func (a *DSourcesApiService) DeleteDsourceExecute(r ApiDeleteDsourceRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

func (*DSourcesApiService) DeleteTagsDsource

func (a *DSourcesApiService) DeleteTagsDsource(ctx context.Context, dsourceId string) ApiDeleteTagsDsourceRequest

DeleteTagsDsource Delete tags for a dSource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiDeleteTagsDsourceRequest

func (*DSourcesApiService) DeleteTagsDsourceExecute

func (a *DSourcesApiService) DeleteTagsDsourceExecute(r ApiDeleteTagsDsourceRequest) (*http.Response, error)

Execute executes the request

func (*DSourcesApiService) GetAppdataDsourceLinkingDefaults

func (a *DSourcesApiService) GetAppdataDsourceLinkingDefaults(ctx context.Context) ApiGetAppdataDsourceLinkingDefaultsRequest

GetAppdataDsourceLinkingDefaults Get defaults for an AppData dSource linking.

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

func (*DSourcesApiService) GetAppdataDsourceLinkingDefaultsExecute

Execute executes the request

@return AppDataDSourceLinkSourceParameters

func (*DSourcesApiService) GetAseDsourceLinkingDefaults

func (a *DSourcesApiService) GetAseDsourceLinkingDefaults(ctx context.Context) ApiGetAseDsourceLinkingDefaultsRequest

GetAseDsourceLinkingDefaults Get defaults for an ASE dSource linking.

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

func (*DSourcesApiService) GetAseDsourceLinkingDefaultsExecute

Execute executes the request

@return ASEDSourceLinkSourceParameters

func (*DSourcesApiService) GetDsourceById

func (a *DSourcesApiService) GetDsourceById(ctx context.Context, dsourceId string) ApiGetDsourceByIdRequest

GetDsourceById Get a dSource by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiGetDsourceByIdRequest

func (*DSourcesApiService) GetDsourceByIdExecute

func (a *DSourcesApiService) GetDsourceByIdExecute(r ApiGetDsourceByIdRequest) (*DSource, *http.Response, error)

Execute executes the request

@return DSource

func (*DSourcesApiService) GetDsourceSnapshots

func (a *DSourcesApiService) GetDsourceSnapshots(ctx context.Context, dsourceId string) ApiGetDsourceSnapshotsRequest

GetDsourceSnapshots List Snapshots for a dSource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiGetDsourceSnapshotsRequest

func (*DSourcesApiService) GetDsourceSnapshotsExecute

Execute executes the request

@return ListSnapshotsResponse

func (*DSourcesApiService) GetDsources

GetDsources List all dSources.

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

func (*DSourcesApiService) GetDsourcesExecute

Execute executes the request

@return ListDSourcesResponse

func (*DSourcesApiService) GetOracleDsourceLinkingDefaults

func (a *DSourcesApiService) GetOracleDsourceLinkingDefaults(ctx context.Context) ApiGetOracleDsourceLinkingDefaultsRequest

GetOracleDsourceLinkingDefaults Get defaults for dSource linking.

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

func (*DSourcesApiService) GetOracleDsourceLinkingDefaultsExecute

Execute executes the request

@return OracleDSourceLinkSourceParameters

func (*DSourcesApiService) GetTagsDsource

func (a *DSourcesApiService) GetTagsDsource(ctx context.Context, dsourceId string) ApiGetTagsDsourceRequest

GetTagsDsource Get tags for a dSource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiGetTagsDsourceRequest

func (*DSourcesApiService) GetTagsDsourceExecute

func (a *DSourcesApiService) GetTagsDsourceExecute(r ApiGetTagsDsourceRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*DSourcesApiService) LinkAppdataDatabase

LinkAppdataDatabase Link an AppData database as dSource.

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

func (*DSourcesApiService) LinkAppdataDatabaseExecute

Execute executes the request

@return LinkDSourceResponse

func (*DSourcesApiService) LinkAseDatabase

LinkAseDatabase Link an ASE database as dSource.

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

func (*DSourcesApiService) LinkAseDatabaseExecute

Execute executes the request

@return LinkDSourceResponse

func (*DSourcesApiService) LinkOracleDatabase

LinkOracleDatabase Link Oracle database as dSource.

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

func (*DSourcesApiService) LinkOracleDatabaseExecute

Execute executes the request

@return LinkDSourceResponse

func (*DSourcesApiService) SearchDsources

SearchDsources Search for dSources.

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

func (*DSourcesApiService) SearchDsourcesExecute

Execute executes the request

@return SearchDSourcesResponse

func (*DSourcesApiService) SnapshotDsource

func (a *DSourcesApiService) SnapshotDsource(ctx context.Context, dsourceId string) ApiSnapshotDsourceRequest

SnapshotDsource Snapshot a dSource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dsourceId The ID of the dSource.
@return ApiSnapshotDsourceRequest

func (*DSourcesApiService) SnapshotDsourceExecute

Execute executes the request

@return SnapshotDSourceResponse

type DataPointByLocationParameters

type DataPointByLocationParameters struct {
	// The location to provision from.
	Location *string `json:"location,omitempty"`
	// ID of the timeflow to provision from.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

DataPointByLocationParameters struct for DataPointByLocationParameters

func NewDataPointByLocationParameters

func NewDataPointByLocationParameters() *DataPointByLocationParameters

NewDataPointByLocationParameters instantiates a new DataPointByLocationParameters 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 NewDataPointByLocationParametersWithDefaults

func NewDataPointByLocationParametersWithDefaults() *DataPointByLocationParameters

NewDataPointByLocationParametersWithDefaults instantiates a new DataPointByLocationParameters 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 (*DataPointByLocationParameters) GetLocation

func (o *DataPointByLocationParameters) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*DataPointByLocationParameters) GetLocationOk

func (o *DataPointByLocationParameters) 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.

func (*DataPointByLocationParameters) GetTimeflowId

func (o *DataPointByLocationParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*DataPointByLocationParameters) GetTimeflowIdOk

func (o *DataPointByLocationParameters) GetTimeflowIdOk() (*string, bool)

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

func (*DataPointByLocationParameters) HasLocation

func (o *DataPointByLocationParameters) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*DataPointByLocationParameters) HasTimeflowId

func (o *DataPointByLocationParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (DataPointByLocationParameters) MarshalJSON

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

func (*DataPointByLocationParameters) SetLocation

func (o *DataPointByLocationParameters) SetLocation(v string)

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

func (*DataPointByLocationParameters) SetTimeflowId

func (o *DataPointByLocationParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (DataPointByLocationParameters) ToMap

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

type DataPointBySnapshotParameters

type DataPointBySnapshotParameters struct {
	// The ID of the snapshot from which to execute the operation. If the snapshot_id is not, selects the latest snapshot.
	SnapshotId *string `json:"snapshot_id,omitempty"`
}

DataPointBySnapshotParameters struct for DataPointBySnapshotParameters

func NewDataPointBySnapshotParameters

func NewDataPointBySnapshotParameters() *DataPointBySnapshotParameters

NewDataPointBySnapshotParameters instantiates a new DataPointBySnapshotParameters 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 NewDataPointBySnapshotParametersWithDefaults

func NewDataPointBySnapshotParametersWithDefaults() *DataPointBySnapshotParameters

NewDataPointBySnapshotParametersWithDefaults instantiates a new DataPointBySnapshotParameters 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 (*DataPointBySnapshotParameters) GetSnapshotId

func (o *DataPointBySnapshotParameters) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*DataPointBySnapshotParameters) GetSnapshotIdOk

func (o *DataPointBySnapshotParameters) GetSnapshotIdOk() (*string, bool)

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

func (*DataPointBySnapshotParameters) HasSnapshotId

func (o *DataPointBySnapshotParameters) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (DataPointBySnapshotParameters) MarshalJSON

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

func (*DataPointBySnapshotParameters) SetSnapshotId

func (o *DataPointBySnapshotParameters) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (DataPointBySnapshotParameters) ToMap

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

type DataPointByTimestampParameters

type DataPointByTimestampParameters struct {
	// The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// The Timeflow ID.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

DataPointByTimestampParameters struct for DataPointByTimestampParameters

func NewDataPointByTimestampParameters

func NewDataPointByTimestampParameters() *DataPointByTimestampParameters

NewDataPointByTimestampParameters instantiates a new DataPointByTimestampParameters 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 NewDataPointByTimestampParametersWithDefaults

func NewDataPointByTimestampParametersWithDefaults() *DataPointByTimestampParameters

NewDataPointByTimestampParametersWithDefaults instantiates a new DataPointByTimestampParameters 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 (*DataPointByTimestampParameters) GetTimeflowId

func (o *DataPointByTimestampParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*DataPointByTimestampParameters) GetTimeflowIdOk

func (o *DataPointByTimestampParameters) GetTimeflowIdOk() (*string, bool)

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

func (*DataPointByTimestampParameters) GetTimestamp

func (o *DataPointByTimestampParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*DataPointByTimestampParameters) GetTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*DataPointByTimestampParameters) GetTimestampInDatabaseTimezoneOk

func (o *DataPointByTimestampParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

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

func (*DataPointByTimestampParameters) GetTimestampOk

func (o *DataPointByTimestampParameters) GetTimestampOk() (*time.Time, bool)

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

func (*DataPointByTimestampParameters) HasTimeflowId

func (o *DataPointByTimestampParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*DataPointByTimestampParameters) HasTimestamp

func (o *DataPointByTimestampParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*DataPointByTimestampParameters) HasTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (DataPointByTimestampParameters) MarshalJSON

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

func (*DataPointByTimestampParameters) SetTimeflowId

func (o *DataPointByTimestampParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*DataPointByTimestampParameters) SetTimestamp

func (o *DataPointByTimestampParameters) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*DataPointByTimestampParameters) SetTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (DataPointByTimestampParameters) ToMap

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

type DataPointFromBookmarkParameters

type DataPointFromBookmarkParameters struct {
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
}

DataPointFromBookmarkParameters struct for DataPointFromBookmarkParameters

func NewDataPointFromBookmarkParameters

func NewDataPointFromBookmarkParameters(bookmarkId string) *DataPointFromBookmarkParameters

NewDataPointFromBookmarkParameters instantiates a new DataPointFromBookmarkParameters 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 NewDataPointFromBookmarkParametersWithDefaults

func NewDataPointFromBookmarkParametersWithDefaults() *DataPointFromBookmarkParameters

NewDataPointFromBookmarkParametersWithDefaults instantiates a new DataPointFromBookmarkParameters 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 (*DataPointFromBookmarkParameters) GetBookmarkId

func (o *DataPointFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*DataPointFromBookmarkParameters) GetBookmarkIdOk

func (o *DataPointFromBookmarkParameters) GetBookmarkIdOk() (*string, bool)

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

func (DataPointFromBookmarkParameters) MarshalJSON

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

func (*DataPointFromBookmarkParameters) SetBookmarkId

func (o *DataPointFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (DataPointFromBookmarkParameters) ToMap

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

type DatabaseConnectivityCheckParameters

type DatabaseConnectivityCheckParameters struct {
	// The type of credentials.
	CredentialsType string `json:"credentials_type"`
	// Source database config Id.
	SourceId string `json:"source_id"`
	// Database username (Not applicable for MSSQL_ENVIRONMENT_USER).
	Username *string `json:"username,omitempty"`
	// Database password (Not applicable for MSSQL_ENVIRONMENT_USER and mutually exclusive with vault attributes).
	Password *string `json:"password,omitempty"`
	// The name or reference of the vault from which to read the database credentials (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	Vault *string `json:"vault,omitempty"`
	// Vault engine name where the credential is stored (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultName *string `json:"azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultUsernameKey *string `json:"azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultSecretKey *string `json:"azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
	// Id of the environment to which environment user belongs (MSSQL_ENVIRONMENT_USER only).
	EnvironmentId *string `json:"environment_id,omitempty"`
	// Reference to the environment user (MSSQL_ENVIRONMENT_USER only).
	EnvironmentUser *string `json:"environment_user,omitempty"`
}

DatabaseConnectivityCheckParameters Parameters to test JDBC connectivity to source configs.

func NewDatabaseConnectivityCheckParameters

func NewDatabaseConnectivityCheckParameters(credentialsType string, sourceId string) *DatabaseConnectivityCheckParameters

NewDatabaseConnectivityCheckParameters instantiates a new DatabaseConnectivityCheckParameters 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 NewDatabaseConnectivityCheckParametersWithDefaults

func NewDatabaseConnectivityCheckParametersWithDefaults() *DatabaseConnectivityCheckParameters

NewDatabaseConnectivityCheckParametersWithDefaults instantiates a new DatabaseConnectivityCheckParameters 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 (*DatabaseConnectivityCheckParameters) GetAzureVaultName

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultName() string

GetAzureVaultName returns the AzureVaultName field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetAzureVaultNameOk

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultNameOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetAzureVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultSecretKey() string

GetAzureVaultSecretKey returns the AzureVaultSecretKey field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetAzureVaultSecretKeyOk

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultSecretKeyOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetAzureVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultUsernameKey() string

GetAzureVaultUsernameKey returns the AzureVaultUsernameKey field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetAzureVaultUsernameKeyOk

func (o *DatabaseConnectivityCheckParameters) GetAzureVaultUsernameKeyOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetCredentialsType

func (o *DatabaseConnectivityCheckParameters) GetCredentialsType() string

GetCredentialsType returns the CredentialsType field value

func (*DatabaseConnectivityCheckParameters) GetCredentialsTypeOk

func (o *DatabaseConnectivityCheckParameters) GetCredentialsTypeOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetCyberarkVaultQueryString

func (o *DatabaseConnectivityCheckParameters) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetCyberarkVaultQueryStringOk

func (o *DatabaseConnectivityCheckParameters) GetCyberarkVaultQueryStringOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetEnvironmentId

func (o *DatabaseConnectivityCheckParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetEnvironmentIdOk

func (o *DatabaseConnectivityCheckParameters) GetEnvironmentIdOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetEnvironmentUser

func (o *DatabaseConnectivityCheckParameters) GetEnvironmentUser() string

GetEnvironmentUser returns the EnvironmentUser field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetEnvironmentUserOk

func (o *DatabaseConnectivityCheckParameters) GetEnvironmentUserOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultEngine

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultEngineOk

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultEngineOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretKeyOk

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretPath

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretPathOk

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultSecretPathOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetHashicorpVaultUsernameKeyOk

func (o *DatabaseConnectivityCheckParameters) GetHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetPassword

GetPassword returns the Password field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetPasswordOk

func (o *DatabaseConnectivityCheckParameters) GetPasswordOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetSourceId

GetSourceId returns the SourceId field value

func (*DatabaseConnectivityCheckParameters) GetSourceIdOk

func (o *DatabaseConnectivityCheckParameters) GetSourceIdOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) GetUsername

GetUsername returns the Username field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetUsernameOk

func (o *DatabaseConnectivityCheckParameters) 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.

func (*DatabaseConnectivityCheckParameters) GetVault

GetVault returns the Vault field value if set, zero value otherwise.

func (*DatabaseConnectivityCheckParameters) GetVaultOk

func (o *DatabaseConnectivityCheckParameters) GetVaultOk() (*string, bool)

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

func (*DatabaseConnectivityCheckParameters) HasAzureVaultName

func (o *DatabaseConnectivityCheckParameters) HasAzureVaultName() bool

HasAzureVaultName returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasAzureVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) HasAzureVaultSecretKey() bool

HasAzureVaultSecretKey returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasAzureVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) HasAzureVaultUsernameKey() bool

HasAzureVaultUsernameKey returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasCyberarkVaultQueryString

func (o *DatabaseConnectivityCheckParameters) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasEnvironmentId

func (o *DatabaseConnectivityCheckParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasEnvironmentUser

func (o *DatabaseConnectivityCheckParameters) HasEnvironmentUser() bool

HasEnvironmentUser returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasHashicorpVaultEngine

func (o *DatabaseConnectivityCheckParameters) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasHashicorpVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasHashicorpVaultSecretPath

func (o *DatabaseConnectivityCheckParameters) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasHashicorpVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasPassword

func (o *DatabaseConnectivityCheckParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasUsername

func (o *DatabaseConnectivityCheckParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*DatabaseConnectivityCheckParameters) HasVault

HasVault returns a boolean if a field has been set.

func (DatabaseConnectivityCheckParameters) MarshalJSON

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

func (*DatabaseConnectivityCheckParameters) SetAzureVaultName

func (o *DatabaseConnectivityCheckParameters) SetAzureVaultName(v string)

SetAzureVaultName gets a reference to the given string and assigns it to the AzureVaultName field.

func (*DatabaseConnectivityCheckParameters) SetAzureVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) SetAzureVaultSecretKey(v string)

SetAzureVaultSecretKey gets a reference to the given string and assigns it to the AzureVaultSecretKey field.

func (*DatabaseConnectivityCheckParameters) SetAzureVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) SetAzureVaultUsernameKey(v string)

SetAzureVaultUsernameKey gets a reference to the given string and assigns it to the AzureVaultUsernameKey field.

func (*DatabaseConnectivityCheckParameters) SetCredentialsType

func (o *DatabaseConnectivityCheckParameters) SetCredentialsType(v string)

SetCredentialsType sets field value

func (*DatabaseConnectivityCheckParameters) SetCyberarkVaultQueryString

func (o *DatabaseConnectivityCheckParameters) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*DatabaseConnectivityCheckParameters) SetEnvironmentId

func (o *DatabaseConnectivityCheckParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*DatabaseConnectivityCheckParameters) SetEnvironmentUser

func (o *DatabaseConnectivityCheckParameters) SetEnvironmentUser(v string)

SetEnvironmentUser gets a reference to the given string and assigns it to the EnvironmentUser field.

func (*DatabaseConnectivityCheckParameters) SetHashicorpVaultEngine

func (o *DatabaseConnectivityCheckParameters) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*DatabaseConnectivityCheckParameters) SetHashicorpVaultSecretKey

func (o *DatabaseConnectivityCheckParameters) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*DatabaseConnectivityCheckParameters) SetHashicorpVaultSecretPath

func (o *DatabaseConnectivityCheckParameters) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*DatabaseConnectivityCheckParameters) SetHashicorpVaultUsernameKey

func (o *DatabaseConnectivityCheckParameters) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*DatabaseConnectivityCheckParameters) SetPassword

func (o *DatabaseConnectivityCheckParameters) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*DatabaseConnectivityCheckParameters) SetSourceId

func (o *DatabaseConnectivityCheckParameters) SetSourceId(v string)

SetSourceId sets field value

func (*DatabaseConnectivityCheckParameters) SetUsername

func (o *DatabaseConnectivityCheckParameters) SetUsername(v string)

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

func (*DatabaseConnectivityCheckParameters) SetVault

SetVault gets a reference to the given string and assigns it to the Vault field.

func (DatabaseConnectivityCheckParameters) ToMap

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

type DatabaseTemplate

type DatabaseTemplate struct {
	// The DatabaseTemplate entity ID.
	Id *string `json:"id,omitempty"`
	// The DatabaseTemplate name.
	Name string `json:"name"`
	// User provided description for this template.
	Description *string `json:"description,omitempty"`
	// The type of the source associated with the template.
	SourceType string `json:"source_type"`
	// A name/value map of string configuration parameters.
	Parameters *map[string]string `json:"parameters,omitempty"`
	Tags       []Tag              `json:"tags,omitempty"`
}

DatabaseTemplate A database template to use for provisioning and refresh. If set, configParams will be ignored on provision or refresh.

func NewDatabaseTemplate

func NewDatabaseTemplate(name string, sourceType string) *DatabaseTemplate

NewDatabaseTemplate instantiates a new DatabaseTemplate 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 NewDatabaseTemplateWithDefaults

func NewDatabaseTemplateWithDefaults() *DatabaseTemplate

NewDatabaseTemplateWithDefaults instantiates a new DatabaseTemplate 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 (*DatabaseTemplate) GetDescription

func (o *DatabaseTemplate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DatabaseTemplate) GetDescriptionOk

func (o *DatabaseTemplate) 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.

func (*DatabaseTemplate) GetId

func (o *DatabaseTemplate) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DatabaseTemplate) GetIdOk

func (o *DatabaseTemplate) 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.

func (*DatabaseTemplate) GetName

func (o *DatabaseTemplate) GetName() string

GetName returns the Name field value

func (*DatabaseTemplate) GetNameOk

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

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

func (*DatabaseTemplate) GetParameters

func (o *DatabaseTemplate) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*DatabaseTemplate) GetParametersOk

func (o *DatabaseTemplate) GetParametersOk() (*map[string]string, 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.

func (*DatabaseTemplate) GetSourceType

func (o *DatabaseTemplate) GetSourceType() string

GetSourceType returns the SourceType field value

func (*DatabaseTemplate) GetSourceTypeOk

func (o *DatabaseTemplate) GetSourceTypeOk() (*string, bool)

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

func (*DatabaseTemplate) GetTags

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

GetTags returns the Tags field value if set, zero value otherwise.

func (*DatabaseTemplate) GetTagsOk

func (o *DatabaseTemplate) 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.

func (*DatabaseTemplate) HasDescription

func (o *DatabaseTemplate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DatabaseTemplate) HasId

func (o *DatabaseTemplate) HasId() bool

HasId returns a boolean if a field has been set.

func (*DatabaseTemplate) HasParameters

func (o *DatabaseTemplate) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*DatabaseTemplate) HasTags

func (o *DatabaseTemplate) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DatabaseTemplate) MarshalJSON

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

func (*DatabaseTemplate) SetDescription

func (o *DatabaseTemplate) SetDescription(v string)

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

func (*DatabaseTemplate) SetId

func (o *DatabaseTemplate) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*DatabaseTemplate) SetName

func (o *DatabaseTemplate) SetName(v string)

SetName sets field value

func (*DatabaseTemplate) SetParameters

func (o *DatabaseTemplate) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*DatabaseTemplate) SetSourceType

func (o *DatabaseTemplate) SetSourceType(v string)

SetSourceType sets field value

func (*DatabaseTemplate) SetTags

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

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

func (DatabaseTemplate) ToMap

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

type DatabaseTemplateCreateParameters

type DatabaseTemplateCreateParameters struct {
	// The DatabaseTemplate name.
	Name string `json:"name"`
	// User provided description for this template.
	Description *string `json:"description,omitempty"`
	// The type of the source associated with the template.
	SourceType string `json:"source_type"`
	// A name/value map of string configuration parameters.
	Parameters *map[string]string `json:"parameters,omitempty"`
	// Whether the account creating this database template must be configured as owner of the database template.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	Tags                    []Tag `json:"tags,omitempty"`
}

DatabaseTemplateCreateParameters Parameters to create a database template.

func NewDatabaseTemplateCreateParameters

func NewDatabaseTemplateCreateParameters(name string, sourceType string) *DatabaseTemplateCreateParameters

NewDatabaseTemplateCreateParameters instantiates a new DatabaseTemplateCreateParameters 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 NewDatabaseTemplateCreateParametersWithDefaults

func NewDatabaseTemplateCreateParametersWithDefaults() *DatabaseTemplateCreateParameters

NewDatabaseTemplateCreateParametersWithDefaults instantiates a new DatabaseTemplateCreateParameters 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 (*DatabaseTemplateCreateParameters) GetDescription

func (o *DatabaseTemplateCreateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DatabaseTemplateCreateParameters) GetDescriptionOk

func (o *DatabaseTemplateCreateParameters) 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.

func (*DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwner

func (o *DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwnerOk

func (o *DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

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

func (*DatabaseTemplateCreateParameters) GetName

GetName returns the Name field value

func (*DatabaseTemplateCreateParameters) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*DatabaseTemplateCreateParameters) GetParameters

func (o *DatabaseTemplateCreateParameters) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*DatabaseTemplateCreateParameters) GetParametersOk

func (o *DatabaseTemplateCreateParameters) GetParametersOk() (*map[string]string, 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.

func (*DatabaseTemplateCreateParameters) GetSourceType

func (o *DatabaseTemplateCreateParameters) GetSourceType() string

GetSourceType returns the SourceType field value

func (*DatabaseTemplateCreateParameters) GetSourceTypeOk

func (o *DatabaseTemplateCreateParameters) GetSourceTypeOk() (*string, bool)

GetSourceTypeOk returns a tuple with the SourceType field value and a boolean to check if the value has been set.

func (*DatabaseTemplateCreateParameters) GetTags

func (o *DatabaseTemplateCreateParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*DatabaseTemplateCreateParameters) GetTagsOk

func (o *DatabaseTemplateCreateParameters) 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.

func (*DatabaseTemplateCreateParameters) HasDescription

func (o *DatabaseTemplateCreateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasMakeCurrentAccountOwner

func (o *DatabaseTemplateCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasParameters

func (o *DatabaseTemplateCreateParameters) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasTags

HasTags returns a boolean if a field has been set.

func (DatabaseTemplateCreateParameters) MarshalJSON

func (o DatabaseTemplateCreateParameters) MarshalJSON() ([]byte, error)

func (*DatabaseTemplateCreateParameters) SetDescription

func (o *DatabaseTemplateCreateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DatabaseTemplateCreateParameters) SetMakeCurrentAccountOwner

func (o *DatabaseTemplateCreateParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*DatabaseTemplateCreateParameters) SetName

SetName sets field value

func (*DatabaseTemplateCreateParameters) SetParameters

func (o *DatabaseTemplateCreateParameters) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*DatabaseTemplateCreateParameters) SetSourceType

func (o *DatabaseTemplateCreateParameters) SetSourceType(v string)

SetSourceType sets field value

func (*DatabaseTemplateCreateParameters) SetTags

func (o *DatabaseTemplateCreateParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (DatabaseTemplateCreateParameters) ToMap

func (o DatabaseTemplateCreateParameters) ToMap() (map[string]interface{}, error)

type DatabaseTemplatesApiService

type DatabaseTemplatesApiService service

DatabaseTemplatesApiService DatabaseTemplatesApi service

func (*DatabaseTemplatesApiService) CreateDatabaseTemplate

CreateDatabaseTemplate Create a database template.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDatabaseTemplateRequest

func (*DatabaseTemplatesApiService) CreateDatabaseTemplateExecute

Execute executes the request

@return CreateDatabaseTemplateResponse

func (*DatabaseTemplatesApiService) CreateDatabaseTemplateTags

func (a *DatabaseTemplatesApiService) CreateDatabaseTemplateTags(ctx context.Context, databaseTemplateId string) ApiCreateDatabaseTemplateTagsRequest

CreateDatabaseTemplateTags Create tags for a DatabaseTemplate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiCreateDatabaseTemplateTagsRequest

func (*DatabaseTemplatesApiService) CreateDatabaseTemplateTagsExecute

Execute executes the request

@return TagsResponse

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplate

func (a *DatabaseTemplatesApiService) DeleteDatabaseTemplate(ctx context.Context, databaseTemplateId string) ApiDeleteDatabaseTemplateRequest

DeleteDatabaseTemplate Delete a DatabaseTemplate by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiDeleteDatabaseTemplateRequest

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplateExecute

Execute executes the request

@return DeleteDatabaseTemplateResponse

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplateTag

func (a *DatabaseTemplatesApiService) DeleteDatabaseTemplateTag(ctx context.Context, databaseTemplateId string) ApiDeleteDatabaseTemplateTagRequest

DeleteDatabaseTemplateTag Delete tags for a DatabaseTemplate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiDeleteDatabaseTemplateTagRequest

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplateTagExecute

func (a *DatabaseTemplatesApiService) DeleteDatabaseTemplateTagExecute(r ApiDeleteDatabaseTemplateTagRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) GetDatabaseTemplateById

func (a *DatabaseTemplatesApiService) GetDatabaseTemplateById(ctx context.Context, databaseTemplateId string) ApiGetDatabaseTemplateByIdRequest

GetDatabaseTemplateById Retrieve a DatabaseTemplate by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiGetDatabaseTemplateByIdRequest

func (*DatabaseTemplatesApiService) GetDatabaseTemplateByIdExecute

Execute executes the request

@return DatabaseTemplate

func (*DatabaseTemplatesApiService) GetDatabaseTemplateTags

func (a *DatabaseTemplatesApiService) GetDatabaseTemplateTags(ctx context.Context, databaseTemplateId string) ApiGetDatabaseTemplateTagsRequest

GetDatabaseTemplateTags Get tags for a DatabaseTemplate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiGetDatabaseTemplateTagsRequest

func (*DatabaseTemplatesApiService) GetDatabaseTemplateTagsExecute

Execute executes the request

@return TagsResponse

func (*DatabaseTemplatesApiService) GetDatabaseTemplates

GetDatabaseTemplates Retrieve the list of database templates.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetDatabaseTemplatesRequest

func (*DatabaseTemplatesApiService) GetDatabaseTemplatesExecute

Execute executes the request

@return ListDatabaseTemplatesResponse

func (*DatabaseTemplatesApiService) ImportDatabaseTemplates

ImportDatabaseTemplates Imports the database templates from an an engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImportDatabaseTemplatesRequest

func (*DatabaseTemplatesApiService) ImportDatabaseTemplatesExecute

func (a *DatabaseTemplatesApiService) ImportDatabaseTemplatesExecute(r ApiImportDatabaseTemplatesRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) SearchDatabaseTemplates

SearchDatabaseTemplates Search DatabaseTemplates.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchDatabaseTemplatesRequest

func (*DatabaseTemplatesApiService) SearchDatabaseTemplatesExecute

Execute executes the request

@return SearchDatabaseTemplatesResponse

func (*DatabaseTemplatesApiService) UndoImportDatabaseTemplates

UndoImportDatabaseTemplates Undo an import of DatabaseTemplates on an Engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUndoImportDatabaseTemplatesRequest

func (*DatabaseTemplatesApiService) UndoImportDatabaseTemplatesExecute

func (a *DatabaseTemplatesApiService) UndoImportDatabaseTemplatesExecute(r ApiUndoImportDatabaseTemplatesRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) UpdateDatabaseTemplate

func (a *DatabaseTemplatesApiService) UpdateDatabaseTemplate(ctx context.Context, databaseTemplateId string) ApiUpdateDatabaseTemplateRequest

UpdateDatabaseTemplate Updates a DatabaseTemplate by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseTemplateId The ID of the Database Template.
@return ApiUpdateDatabaseTemplateRequest

func (*DatabaseTemplatesApiService) UpdateDatabaseTemplateExecute

Execute executes the request

@return UpdateDatabaseTemplateResponse

type DatasetGroup

type DatasetGroup struct {
	// The dataset group ID.
	Id *string `json:"id,omitempty"`
	// The name of this dataset group.
	Name *string `json:"name,omitempty"`
	// The namespace id of this dataset group.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this dataset group.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// Id of the Engine that this dataset group belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Name of the Engine that this dataset group belongs to.
	EngineName *string `json:"engine_name,omitempty"`
	// The namespace of this dataset group.
	Namespace *string `json:"namespace,omitempty"`
}

DatasetGroup A Delphix engine dataset group.

func NewDatasetGroup

func NewDatasetGroup() *DatasetGroup

NewDatasetGroup instantiates a new DatasetGroup 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 NewDatasetGroupWithDefaults

func NewDatasetGroupWithDefaults() *DatasetGroup

NewDatasetGroupWithDefaults instantiates a new DatasetGroup 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 (*DatasetGroup) GetEngineId

func (o *DatasetGroup) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*DatasetGroup) GetEngineIdOk

func (o *DatasetGroup) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) GetEngineName

func (o *DatasetGroup) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DatasetGroup) GetEngineNameOk

func (o *DatasetGroup) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) GetId

func (o *DatasetGroup) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DatasetGroup) GetIdOk

func (o *DatasetGroup) 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.

func (*DatasetGroup) GetIsReplica

func (o *DatasetGroup) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*DatasetGroup) GetIsReplicaOk

func (o *DatasetGroup) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) GetName

func (o *DatasetGroup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DatasetGroup) GetNameOk

func (o *DatasetGroup) 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.

func (*DatasetGroup) GetNamespace

func (o *DatasetGroup) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*DatasetGroup) GetNamespaceId

func (o *DatasetGroup) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*DatasetGroup) GetNamespaceIdOk

func (o *DatasetGroup) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) GetNamespaceName

func (o *DatasetGroup) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*DatasetGroup) GetNamespaceNameOk

func (o *DatasetGroup) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) GetNamespaceOk

func (o *DatasetGroup) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatasetGroup) HasEngineId

func (o *DatasetGroup) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*DatasetGroup) HasEngineName

func (o *DatasetGroup) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DatasetGroup) HasId

func (o *DatasetGroup) HasId() bool

HasId returns a boolean if a field has been set.

func (*DatasetGroup) HasIsReplica

func (o *DatasetGroup) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*DatasetGroup) HasName

func (o *DatasetGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (*DatasetGroup) HasNamespace

func (o *DatasetGroup) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*DatasetGroup) HasNamespaceId

func (o *DatasetGroup) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*DatasetGroup) HasNamespaceName

func (o *DatasetGroup) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (DatasetGroup) MarshalJSON

func (o DatasetGroup) MarshalJSON() ([]byte, error)

func (*DatasetGroup) SetEngineId

func (o *DatasetGroup) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*DatasetGroup) SetEngineName

func (o *DatasetGroup) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DatasetGroup) SetId

func (o *DatasetGroup) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*DatasetGroup) SetIsReplica

func (o *DatasetGroup) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*DatasetGroup) SetName

func (o *DatasetGroup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*DatasetGroup) SetNamespace

func (o *DatasetGroup) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*DatasetGroup) SetNamespaceId

func (o *DatasetGroup) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*DatasetGroup) SetNamespaceName

func (o *DatasetGroup) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (DatasetGroup) ToMap

func (o DatasetGroup) ToMap() (map[string]interface{}, error)

type DeleteDSourceRequest

type DeleteDSourceRequest struct {
	// Id of the dSource to delete.
	DsourceId string `json:"dsource_id"`
	// Flag indicating whether to continue the operation upon failures.
	Force *bool `json:"force,omitempty"`
	// The name of the privileged user to run the delete operation as (Oracle only).
	OracleUsername *string `json:"oracle_username,omitempty"`
	// Password for privileged user (Oracle only).
	OraclePassword *string `json:"oracle_password,omitempty"`
}

DeleteDSourceRequest struct for DeleteDSourceRequest

func NewDeleteDSourceRequest

func NewDeleteDSourceRequest(dsourceId string) *DeleteDSourceRequest

NewDeleteDSourceRequest instantiates a new DeleteDSourceRequest 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 NewDeleteDSourceRequestWithDefaults

func NewDeleteDSourceRequestWithDefaults() *DeleteDSourceRequest

NewDeleteDSourceRequestWithDefaults instantiates a new DeleteDSourceRequest 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 (*DeleteDSourceRequest) GetDsourceId

func (o *DeleteDSourceRequest) GetDsourceId() string

GetDsourceId returns the DsourceId field value

func (*DeleteDSourceRequest) GetDsourceIdOk

func (o *DeleteDSourceRequest) GetDsourceIdOk() (*string, bool)

GetDsourceIdOk returns a tuple with the DsourceId field value and a boolean to check if the value has been set.

func (*DeleteDSourceRequest) GetForce

func (o *DeleteDSourceRequest) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetForceOk

func (o *DeleteDSourceRequest) GetForceOk() (*bool, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteDSourceRequest) GetOraclePassword

func (o *DeleteDSourceRequest) GetOraclePassword() string

GetOraclePassword returns the OraclePassword field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetOraclePasswordOk

func (o *DeleteDSourceRequest) GetOraclePasswordOk() (*string, bool)

GetOraclePasswordOk returns a tuple with the OraclePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteDSourceRequest) GetOracleUsername

func (o *DeleteDSourceRequest) GetOracleUsername() string

GetOracleUsername returns the OracleUsername field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetOracleUsernameOk

func (o *DeleteDSourceRequest) GetOracleUsernameOk() (*string, bool)

GetOracleUsernameOk returns a tuple with the OracleUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteDSourceRequest) HasForce

func (o *DeleteDSourceRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*DeleteDSourceRequest) HasOraclePassword

func (o *DeleteDSourceRequest) HasOraclePassword() bool

HasOraclePassword returns a boolean if a field has been set.

func (*DeleteDSourceRequest) HasOracleUsername

func (o *DeleteDSourceRequest) HasOracleUsername() bool

HasOracleUsername returns a boolean if a field has been set.

func (DeleteDSourceRequest) MarshalJSON

func (o DeleteDSourceRequest) MarshalJSON() ([]byte, error)

func (*DeleteDSourceRequest) SetDsourceId

func (o *DeleteDSourceRequest) SetDsourceId(v string)

SetDsourceId sets field value

func (*DeleteDSourceRequest) SetForce

func (o *DeleteDSourceRequest) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (*DeleteDSourceRequest) SetOraclePassword

func (o *DeleteDSourceRequest) SetOraclePassword(v string)

SetOraclePassword gets a reference to the given string and assigns it to the OraclePassword field.

func (*DeleteDSourceRequest) SetOracleUsername

func (o *DeleteDSourceRequest) SetOracleUsername(v string)

SetOracleUsername gets a reference to the given string and assigns it to the OracleUsername field.

func (DeleteDSourceRequest) ToMap

func (o DeleteDSourceRequest) ToMap() (map[string]interface{}, error)

type DeleteDatabaseTemplateResponse

type DeleteDatabaseTemplateResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteDatabaseTemplateResponse struct for DeleteDatabaseTemplateResponse

func NewDeleteDatabaseTemplateResponse

func NewDeleteDatabaseTemplateResponse() *DeleteDatabaseTemplateResponse

NewDeleteDatabaseTemplateResponse instantiates a new DeleteDatabaseTemplateResponse 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 NewDeleteDatabaseTemplateResponseWithDefaults

func NewDeleteDatabaseTemplateResponseWithDefaults() *DeleteDatabaseTemplateResponse

NewDeleteDatabaseTemplateResponseWithDefaults instantiates a new DeleteDatabaseTemplateResponse 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 (*DeleteDatabaseTemplateResponse) GetJob

func (o *DeleteDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteDatabaseTemplateResponse) GetJobOk

func (o *DeleteDatabaseTemplateResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteDatabaseTemplateResponse) HasJob

HasJob returns a boolean if a field has been set.

func (DeleteDatabaseTemplateResponse) MarshalJSON

func (o DeleteDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*DeleteDatabaseTemplateResponse) SetJob

func (o *DeleteDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteDatabaseTemplateResponse) ToMap

func (o DeleteDatabaseTemplateResponse) ToMap() (map[string]interface{}, error)

type DeleteEngineResponse

type DeleteEngineResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteEngineResponse struct for DeleteEngineResponse

func NewDeleteEngineResponse

func NewDeleteEngineResponse() *DeleteEngineResponse

NewDeleteEngineResponse instantiates a new DeleteEngineResponse 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 NewDeleteEngineResponseWithDefaults

func NewDeleteEngineResponseWithDefaults() *DeleteEngineResponse

NewDeleteEngineResponseWithDefaults instantiates a new DeleteEngineResponse 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 (*DeleteEngineResponse) GetJob

func (o *DeleteEngineResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEngineResponse) GetJobOk

func (o *DeleteEngineResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEngineResponse) HasJob

func (o *DeleteEngineResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteEngineResponse) MarshalJSON

func (o DeleteEngineResponse) MarshalJSON() ([]byte, error)

func (*DeleteEngineResponse) SetJob

func (o *DeleteEngineResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEngineResponse) ToMap

func (o DeleteEngineResponse) ToMap() (map[string]interface{}, error)

type DeleteEnvironmentResponse

type DeleteEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteEnvironmentResponse struct for DeleteEnvironmentResponse

func NewDeleteEnvironmentResponse

func NewDeleteEnvironmentResponse() *DeleteEnvironmentResponse

NewDeleteEnvironmentResponse instantiates a new DeleteEnvironmentResponse 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 NewDeleteEnvironmentResponseWithDefaults

func NewDeleteEnvironmentResponseWithDefaults() *DeleteEnvironmentResponse

NewDeleteEnvironmentResponseWithDefaults instantiates a new DeleteEnvironmentResponse 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 (*DeleteEnvironmentResponse) GetJob

func (o *DeleteEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEnvironmentResponse) GetJobOk

func (o *DeleteEnvironmentResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironmentResponse) HasJob

func (o *DeleteEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteEnvironmentResponse) MarshalJSON

func (o DeleteEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*DeleteEnvironmentResponse) SetJob

func (o *DeleteEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEnvironmentResponse) ToMap

func (o DeleteEnvironmentResponse) ToMap() (map[string]interface{}, error)

type DeleteEnvironmentUserResponse

type DeleteEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteEnvironmentUserResponse struct for DeleteEnvironmentUserResponse

func NewDeleteEnvironmentUserResponse

func NewDeleteEnvironmentUserResponse() *DeleteEnvironmentUserResponse

NewDeleteEnvironmentUserResponse instantiates a new DeleteEnvironmentUserResponse 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 NewDeleteEnvironmentUserResponseWithDefaults

func NewDeleteEnvironmentUserResponseWithDefaults() *DeleteEnvironmentUserResponse

NewDeleteEnvironmentUserResponseWithDefaults instantiates a new DeleteEnvironmentUserResponse 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 (*DeleteEnvironmentUserResponse) GetJob

func (o *DeleteEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEnvironmentUserResponse) GetJobOk

func (o *DeleteEnvironmentUserResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironmentUserResponse) HasJob

func (o *DeleteEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteEnvironmentUserResponse) MarshalJSON

func (o DeleteEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*DeleteEnvironmentUserResponse) SetJob

func (o *DeleteEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEnvironmentUserResponse) ToMap

func (o DeleteEnvironmentUserResponse) ToMap() (map[string]interface{}, error)

type DeleteHostResponse

type DeleteHostResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteHostResponse struct for DeleteHostResponse

func NewDeleteHostResponse

func NewDeleteHostResponse() *DeleteHostResponse

NewDeleteHostResponse instantiates a new DeleteHostResponse 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 NewDeleteHostResponseWithDefaults

func NewDeleteHostResponseWithDefaults() *DeleteHostResponse

NewDeleteHostResponseWithDefaults instantiates a new DeleteHostResponse 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 (*DeleteHostResponse) GetJob

func (o *DeleteHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteHostResponse) GetJobOk

func (o *DeleteHostResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteHostResponse) HasJob

func (o *DeleteHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteHostResponse) MarshalJSON

func (o DeleteHostResponse) MarshalJSON() ([]byte, error)

func (*DeleteHostResponse) SetJob

func (o *DeleteHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteHostResponse) ToMap

func (o DeleteHostResponse) ToMap() (map[string]interface{}, error)

type DeleteMaskingJobResponse

type DeleteMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteMaskingJobResponse struct for DeleteMaskingJobResponse

func NewDeleteMaskingJobResponse

func NewDeleteMaskingJobResponse() *DeleteMaskingJobResponse

NewDeleteMaskingJobResponse instantiates a new DeleteMaskingJobResponse 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 NewDeleteMaskingJobResponseWithDefaults

func NewDeleteMaskingJobResponseWithDefaults() *DeleteMaskingJobResponse

NewDeleteMaskingJobResponseWithDefaults instantiates a new DeleteMaskingJobResponse 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 (*DeleteMaskingJobResponse) GetJob

func (o *DeleteMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteMaskingJobResponse) GetJobOk

func (o *DeleteMaskingJobResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteMaskingJobResponse) HasJob

func (o *DeleteMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteMaskingJobResponse) MarshalJSON

func (o DeleteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*DeleteMaskingJobResponse) SetJob

func (o *DeleteMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteMaskingJobResponse) ToMap

func (o DeleteMaskingJobResponse) ToMap() (map[string]interface{}, error)

type DeleteScopeObjectTags

type DeleteScopeObjectTags struct {
	// List of scope tags to be deleted
	Tags []ScopeTag `json:"tags,omitempty"`
}

DeleteScopeObjectTags struct for DeleteScopeObjectTags

func NewDeleteScopeObjectTags

func NewDeleteScopeObjectTags() *DeleteScopeObjectTags

NewDeleteScopeObjectTags instantiates a new DeleteScopeObjectTags 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 NewDeleteScopeObjectTagsWithDefaults

func NewDeleteScopeObjectTagsWithDefaults() *DeleteScopeObjectTags

NewDeleteScopeObjectTagsWithDefaults instantiates a new DeleteScopeObjectTags 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 (*DeleteScopeObjectTags) GetTags

func (o *DeleteScopeObjectTags) GetTags() []ScopeTag

GetTags returns the Tags field value if set, zero value otherwise.

func (*DeleteScopeObjectTags) GetTagsOk

func (o *DeleteScopeObjectTags) GetTagsOk() ([]ScopeTag, 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.

func (*DeleteScopeObjectTags) HasTags

func (o *DeleteScopeObjectTags) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DeleteScopeObjectTags) MarshalJSON

func (o DeleteScopeObjectTags) MarshalJSON() ([]byte, error)

func (*DeleteScopeObjectTags) SetTags

func (o *DeleteScopeObjectTags) SetTags(v []ScopeTag)

SetTags gets a reference to the given []ScopeTag and assigns it to the Tags field.

func (DeleteScopeObjectTags) ToMap

func (o DeleteScopeObjectTags) ToMap() (map[string]interface{}, error)

type DeleteScopedObjectItem

type DeleteScopedObjectItem struct {
	// List of scoped objects to be deleted
	Objects []ScopedObjectItem `json:"objects"`
}

DeleteScopedObjectItem struct for DeleteScopedObjectItem

func NewDeleteScopedObjectItem

func NewDeleteScopedObjectItem(objects []ScopedObjectItem) *DeleteScopedObjectItem

NewDeleteScopedObjectItem instantiates a new DeleteScopedObjectItem 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 NewDeleteScopedObjectItemWithDefaults

func NewDeleteScopedObjectItemWithDefaults() *DeleteScopedObjectItem

NewDeleteScopedObjectItemWithDefaults instantiates a new DeleteScopedObjectItem 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 (*DeleteScopedObjectItem) GetObjects

func (o *DeleteScopedObjectItem) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value

func (*DeleteScopedObjectItem) GetObjectsOk

func (o *DeleteScopedObjectItem) GetObjectsOk() ([]ScopedObjectItem, bool)

GetObjectsOk returns a tuple with the Objects field value and a boolean to check if the value has been set.

func (DeleteScopedObjectItem) MarshalJSON

func (o DeleteScopedObjectItem) MarshalJSON() ([]byte, error)

func (*DeleteScopedObjectItem) SetObjects

func (o *DeleteScopedObjectItem) SetObjects(v []ScopedObjectItem)

SetObjects sets field value

func (DeleteScopedObjectItem) ToMap

func (o DeleteScopedObjectItem) ToMap() (map[string]interface{}, error)

type DeleteSnapshotResponse

type DeleteSnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteSnapshotResponse struct for DeleteSnapshotResponse

func NewDeleteSnapshotResponse

func NewDeleteSnapshotResponse() *DeleteSnapshotResponse

NewDeleteSnapshotResponse instantiates a new DeleteSnapshotResponse 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 NewDeleteSnapshotResponseWithDefaults

func NewDeleteSnapshotResponseWithDefaults() *DeleteSnapshotResponse

NewDeleteSnapshotResponseWithDefaults instantiates a new DeleteSnapshotResponse 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 (*DeleteSnapshotResponse) GetJob

func (o *DeleteSnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteSnapshotResponse) GetJobOk

func (o *DeleteSnapshotResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteSnapshotResponse) HasJob

func (o *DeleteSnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteSnapshotResponse) MarshalJSON

func (o DeleteSnapshotResponse) MarshalJSON() ([]byte, error)

func (*DeleteSnapshotResponse) SetJob

func (o *DeleteSnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteSnapshotResponse) ToMap

func (o DeleteSnapshotResponse) ToMap() (map[string]interface{}, error)

type DeleteTag

type DeleteTag struct {
	// Key of the tag
	Key *string `json:"key,omitempty"`
	// Value of the tag
	Value *string `json:"value,omitempty"`
	// List of tags to be deleted
	Tags []Tag `json:"tags,omitempty"`
}

DeleteTag struct for DeleteTag

func NewDeleteTag

func NewDeleteTag() *DeleteTag

NewDeleteTag instantiates a new DeleteTag 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 NewDeleteTagWithDefaults

func NewDeleteTagWithDefaults() *DeleteTag

NewDeleteTagWithDefaults instantiates a new DeleteTag 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 (*DeleteTag) GetKey

func (o *DeleteTag) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*DeleteTag) GetKeyOk

func (o *DeleteTag) 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.

func (*DeleteTag) GetTags

func (o *DeleteTag) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*DeleteTag) GetTagsOk

func (o *DeleteTag) 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.

func (*DeleteTag) GetValue

func (o *DeleteTag) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*DeleteTag) GetValueOk

func (o *DeleteTag) 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.

func (*DeleteTag) HasKey

func (o *DeleteTag) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*DeleteTag) HasTags

func (o *DeleteTag) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*DeleteTag) HasValue

func (o *DeleteTag) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DeleteTag) MarshalJSON

func (o DeleteTag) MarshalJSON() ([]byte, error)

func (*DeleteTag) SetKey

func (o *DeleteTag) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*DeleteTag) SetTags

func (o *DeleteTag) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*DeleteTag) SetValue

func (o *DeleteTag) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (DeleteTag) ToMap

func (o DeleteTag) ToMap() (map[string]interface{}, error)

type DeleteTimeflowResponse

type DeleteTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteTimeflowResponse struct for DeleteTimeflowResponse

func NewDeleteTimeflowResponse

func NewDeleteTimeflowResponse() *DeleteTimeflowResponse

NewDeleteTimeflowResponse instantiates a new DeleteTimeflowResponse 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 NewDeleteTimeflowResponseWithDefaults

func NewDeleteTimeflowResponseWithDefaults() *DeleteTimeflowResponse

NewDeleteTimeflowResponseWithDefaults instantiates a new DeleteTimeflowResponse 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 (*DeleteTimeflowResponse) GetJob

func (o *DeleteTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteTimeflowResponse) GetJobOk

func (o *DeleteTimeflowResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteTimeflowResponse) HasJob

func (o *DeleteTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteTimeflowResponse) MarshalJSON

func (o DeleteTimeflowResponse) MarshalJSON() ([]byte, error)

func (*DeleteTimeflowResponse) SetJob

func (o *DeleteTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteTimeflowResponse) ToMap

func (o DeleteTimeflowResponse) ToMap() (map[string]interface{}, error)

type DeleteVDBParameters

type DeleteVDBParameters struct {
	// Whether to continue the operation upon failures.
	Force *bool `json:"force,omitempty"`
}

DeleteVDBParameters Parameters to delete a VDB.

func NewDeleteVDBParameters

func NewDeleteVDBParameters() *DeleteVDBParameters

NewDeleteVDBParameters instantiates a new DeleteVDBParameters 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 NewDeleteVDBParametersWithDefaults

func NewDeleteVDBParametersWithDefaults() *DeleteVDBParameters

NewDeleteVDBParametersWithDefaults instantiates a new DeleteVDBParameters 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 (*DeleteVDBParameters) GetForce

func (o *DeleteVDBParameters) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*DeleteVDBParameters) GetForceOk

func (o *DeleteVDBParameters) GetForceOk() (*bool, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteVDBParameters) HasForce

func (o *DeleteVDBParameters) HasForce() bool

HasForce returns a boolean if a field has been set.

func (DeleteVDBParameters) MarshalJSON

func (o DeleteVDBParameters) MarshalJSON() ([]byte, error)

func (*DeleteVDBParameters) SetForce

func (o *DeleteVDBParameters) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (DeleteVDBParameters) ToMap

func (o DeleteVDBParameters) ToMap() (map[string]interface{}, error)

type DeleteVDBResponse

type DeleteVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteVDBResponse struct for DeleteVDBResponse

func NewDeleteVDBResponse

func NewDeleteVDBResponse() *DeleteVDBResponse

NewDeleteVDBResponse instantiates a new DeleteVDBResponse 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 NewDeleteVDBResponseWithDefaults

func NewDeleteVDBResponseWithDefaults() *DeleteVDBResponse

NewDeleteVDBResponseWithDefaults instantiates a new DeleteVDBResponse 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 (*DeleteVDBResponse) GetJob

func (o *DeleteVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteVDBResponse) GetJobOk

func (o *DeleteVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteVDBResponse) HasJob

func (o *DeleteVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteVDBResponse) MarshalJSON

func (o DeleteVDBResponse) MarshalJSON() ([]byte, error)

func (*DeleteVDBResponse) SetJob

func (o *DeleteVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteVDBResponse) ToMap

func (o DeleteVDBResponse) ToMap() (map[string]interface{}, error)

type DisableEnvironmentResponse

type DisableEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

DisableEnvironmentResponse struct for DisableEnvironmentResponse

func NewDisableEnvironmentResponse

func NewDisableEnvironmentResponse() *DisableEnvironmentResponse

NewDisableEnvironmentResponse instantiates a new DisableEnvironmentResponse 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 NewDisableEnvironmentResponseWithDefaults

func NewDisableEnvironmentResponseWithDefaults() *DisableEnvironmentResponse

NewDisableEnvironmentResponseWithDefaults instantiates a new DisableEnvironmentResponse 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 (*DisableEnvironmentResponse) GetJob

func (o *DisableEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DisableEnvironmentResponse) GetJobOk

func (o *DisableEnvironmentResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DisableEnvironmentResponse) HasJob

func (o *DisableEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DisableEnvironmentResponse) MarshalJSON

func (o DisableEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*DisableEnvironmentResponse) SetJob

func (o *DisableEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DisableEnvironmentResponse) ToMap

func (o DisableEnvironmentResponse) ToMap() (map[string]interface{}, error)

type DisableVDBParameters

type DisableVDBParameters struct {
	// Whether to attempt a cleanup of the VDB before the disable.
	AttemptCleanup *bool `json:"attempt_cleanup,omitempty"`
}

DisableVDBParameters Parameters to disable a VDB.

func NewDisableVDBParameters

func NewDisableVDBParameters() *DisableVDBParameters

NewDisableVDBParameters instantiates a new DisableVDBParameters 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 NewDisableVDBParametersWithDefaults

func NewDisableVDBParametersWithDefaults() *DisableVDBParameters

NewDisableVDBParametersWithDefaults instantiates a new DisableVDBParameters 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 (*DisableVDBParameters) GetAttemptCleanup

func (o *DisableVDBParameters) GetAttemptCleanup() bool

GetAttemptCleanup returns the AttemptCleanup field value if set, zero value otherwise.

func (*DisableVDBParameters) GetAttemptCleanupOk

func (o *DisableVDBParameters) GetAttemptCleanupOk() (*bool, bool)

GetAttemptCleanupOk returns a tuple with the AttemptCleanup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DisableVDBParameters) HasAttemptCleanup

func (o *DisableVDBParameters) HasAttemptCleanup() bool

HasAttemptCleanup returns a boolean if a field has been set.

func (DisableVDBParameters) MarshalJSON

func (o DisableVDBParameters) MarshalJSON() ([]byte, error)

func (*DisableVDBParameters) SetAttemptCleanup

func (o *DisableVDBParameters) SetAttemptCleanup(v bool)

SetAttemptCleanup gets a reference to the given bool and assigns it to the AttemptCleanup field.

func (DisableVDBParameters) ToMap

func (o DisableVDBParameters) ToMap() (map[string]interface{}, error)

type DisableVDBResponse

type DisableVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

DisableVDBResponse struct for DisableVDBResponse

func NewDisableVDBResponse

func NewDisableVDBResponse() *DisableVDBResponse

NewDisableVDBResponse instantiates a new DisableVDBResponse 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 NewDisableVDBResponseWithDefaults

func NewDisableVDBResponseWithDefaults() *DisableVDBResponse

NewDisableVDBResponseWithDefaults instantiates a new DisableVDBResponse 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 (*DisableVDBResponse) GetJob

func (o *DisableVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DisableVDBResponse) GetJobOk

func (o *DisableVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DisableVDBResponse) HasJob

func (o *DisableVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DisableVDBResponse) MarshalJSON

func (o DisableVDBResponse) MarshalJSON() ([]byte, error)

func (*DisableVDBResponse) SetJob

func (o *DisableVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DisableVDBResponse) ToMap

func (o DisableVDBResponse) ToMap() (map[string]interface{}, error)

type Domain

type Domain struct {
	// This is used to get full DN for authentication and search. Provide this value only if server is microsoft AD.
	MsadDomainName *string `json:"msad_domain_name,omitempty"`
	// The username_patterns can be used to avoid providing full-dn during login. This will also be used for search of groups,email, first name and last name.
	UsernamePattern *string `json:"username_pattern,omitempty"`
	// Search base used to search for ldap user groups. Leave this field empty if a full username_pattern is provided and server is non microsoft AD.
	SearchBase *string `json:"search_base,omitempty"`
	// Group mapped attribute on ldap side used for user group search.
	GroupAttr *string `json:"group_attr,omitempty"`
	// Email mapped attribute on ldap side used for mapping on DCT side account.
	EmailAttr *string `json:"email_attr,omitempty"`
	// First name attribute mapped on ldap side used for mapping on DCT side account.
	FirstNameAttr *string `json:"first_name_attr,omitempty"`
	// Last name attribute mapped on ldap side used for mapping on DCT side account.
	LastNameAttr *string `json:"last_name_attr,omitempty"`
	// The name of the objectClass on ldap side under which the user is mapped.This is used to search for the user details.
	ObjectClassAttr *string `json:"object_class_attr,omitempty"`
	// Search attribute mapped on ldap side using which search on ldap side will be made.
	SearchAttr *string `json:"search_attr,omitempty"`
}

Domain struct for Domain

func NewDomain

func NewDomain() *Domain

NewDomain instantiates a new Domain 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 NewDomainWithDefaults

func NewDomainWithDefaults() *Domain

NewDomainWithDefaults instantiates a new Domain 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 (*Domain) GetEmailAttr

func (o *Domain) GetEmailAttr() string

GetEmailAttr returns the EmailAttr field value if set, zero value otherwise.

func (*Domain) GetEmailAttrOk

func (o *Domain) GetEmailAttrOk() (*string, bool)

GetEmailAttrOk returns a tuple with the EmailAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetFirstNameAttr

func (o *Domain) GetFirstNameAttr() string

GetFirstNameAttr returns the FirstNameAttr field value if set, zero value otherwise.

func (*Domain) GetFirstNameAttrOk

func (o *Domain) GetFirstNameAttrOk() (*string, bool)

GetFirstNameAttrOk returns a tuple with the FirstNameAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetGroupAttr

func (o *Domain) GetGroupAttr() string

GetGroupAttr returns the GroupAttr field value if set, zero value otherwise.

func (*Domain) GetGroupAttrOk

func (o *Domain) GetGroupAttrOk() (*string, bool)

GetGroupAttrOk returns a tuple with the GroupAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetLastNameAttr

func (o *Domain) GetLastNameAttr() string

GetLastNameAttr returns the LastNameAttr field value if set, zero value otherwise.

func (*Domain) GetLastNameAttrOk

func (o *Domain) GetLastNameAttrOk() (*string, bool)

GetLastNameAttrOk returns a tuple with the LastNameAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetMsadDomainName

func (o *Domain) GetMsadDomainName() string

GetMsadDomainName returns the MsadDomainName field value if set, zero value otherwise.

func (*Domain) GetMsadDomainNameOk

func (o *Domain) GetMsadDomainNameOk() (*string, bool)

GetMsadDomainNameOk returns a tuple with the MsadDomainName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetObjectClassAttr

func (o *Domain) GetObjectClassAttr() string

GetObjectClassAttr returns the ObjectClassAttr field value if set, zero value otherwise.

func (*Domain) GetObjectClassAttrOk

func (o *Domain) GetObjectClassAttrOk() (*string, bool)

GetObjectClassAttrOk returns a tuple with the ObjectClassAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetSearchAttr

func (o *Domain) GetSearchAttr() string

GetSearchAttr returns the SearchAttr field value if set, zero value otherwise.

func (*Domain) GetSearchAttrOk

func (o *Domain) GetSearchAttrOk() (*string, bool)

GetSearchAttrOk returns a tuple with the SearchAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetSearchBase

func (o *Domain) GetSearchBase() string

GetSearchBase returns the SearchBase field value if set, zero value otherwise.

func (*Domain) GetSearchBaseOk

func (o *Domain) GetSearchBaseOk() (*string, bool)

GetSearchBaseOk returns a tuple with the SearchBase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) GetUsernamePattern

func (o *Domain) GetUsernamePattern() string

GetUsernamePattern returns the UsernamePattern field value if set, zero value otherwise.

func (*Domain) GetUsernamePatternOk

func (o *Domain) GetUsernamePatternOk() (*string, bool)

GetUsernamePatternOk returns a tuple with the UsernamePattern field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Domain) HasEmailAttr

func (o *Domain) HasEmailAttr() bool

HasEmailAttr returns a boolean if a field has been set.

func (*Domain) HasFirstNameAttr

func (o *Domain) HasFirstNameAttr() bool

HasFirstNameAttr returns a boolean if a field has been set.

func (*Domain) HasGroupAttr

func (o *Domain) HasGroupAttr() bool

HasGroupAttr returns a boolean if a field has been set.

func (*Domain) HasLastNameAttr

func (o *Domain) HasLastNameAttr() bool

HasLastNameAttr returns a boolean if a field has been set.

func (*Domain) HasMsadDomainName

func (o *Domain) HasMsadDomainName() bool

HasMsadDomainName returns a boolean if a field has been set.

func (*Domain) HasObjectClassAttr

func (o *Domain) HasObjectClassAttr() bool

HasObjectClassAttr returns a boolean if a field has been set.

func (*Domain) HasSearchAttr

func (o *Domain) HasSearchAttr() bool

HasSearchAttr returns a boolean if a field has been set.

func (*Domain) HasSearchBase

func (o *Domain) HasSearchBase() bool

HasSearchBase returns a boolean if a field has been set.

func (*Domain) HasUsernamePattern

func (o *Domain) HasUsernamePattern() bool

HasUsernamePattern returns a boolean if a field has been set.

func (Domain) MarshalJSON

func (o Domain) MarshalJSON() ([]byte, error)

func (*Domain) SetEmailAttr

func (o *Domain) SetEmailAttr(v string)

SetEmailAttr gets a reference to the given string and assigns it to the EmailAttr field.

func (*Domain) SetFirstNameAttr

func (o *Domain) SetFirstNameAttr(v string)

SetFirstNameAttr gets a reference to the given string and assigns it to the FirstNameAttr field.

func (*Domain) SetGroupAttr

func (o *Domain) SetGroupAttr(v string)

SetGroupAttr gets a reference to the given string and assigns it to the GroupAttr field.

func (*Domain) SetLastNameAttr

func (o *Domain) SetLastNameAttr(v string)

SetLastNameAttr gets a reference to the given string and assigns it to the LastNameAttr field.

func (*Domain) SetMsadDomainName

func (o *Domain) SetMsadDomainName(v string)

SetMsadDomainName gets a reference to the given string and assigns it to the MsadDomainName field.

func (*Domain) SetObjectClassAttr

func (o *Domain) SetObjectClassAttr(v string)

SetObjectClassAttr gets a reference to the given string and assigns it to the ObjectClassAttr field.

func (*Domain) SetSearchAttr

func (o *Domain) SetSearchAttr(v string)

SetSearchAttr gets a reference to the given string and assigns it to the SearchAttr field.

func (*Domain) SetSearchBase

func (o *Domain) SetSearchBase(v string)

SetSearchBase gets a reference to the given string and assigns it to the SearchBase field.

func (*Domain) SetUsernamePattern

func (o *Domain) SetUsernamePattern(v string)

SetUsernamePattern gets a reference to the given string and assigns it to the UsernamePattern field.

func (Domain) ToMap

func (o Domain) ToMap() (map[string]interface{}, error)

type EffectiveScope

type EffectiveScope struct {
	// Id of the access group scope.
	Id *string `json:"id,omitempty"`
	// Name of the access group scope.
	Name *string `json:"name,omitempty"`
}

EffectiveScope struct for EffectiveScope

func NewEffectiveScope

func NewEffectiveScope() *EffectiveScope

NewEffectiveScope instantiates a new EffectiveScope 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 NewEffectiveScopeWithDefaults

func NewEffectiveScopeWithDefaults() *EffectiveScope

NewEffectiveScopeWithDefaults instantiates a new EffectiveScope 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 (*EffectiveScope) GetId

func (o *EffectiveScope) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*EffectiveScope) GetIdOk

func (o *EffectiveScope) 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.

func (*EffectiveScope) GetName

func (o *EffectiveScope) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EffectiveScope) GetNameOk

func (o *EffectiveScope) 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.

func (*EffectiveScope) HasId

func (o *EffectiveScope) HasId() bool

HasId returns a boolean if a field has been set.

func (*EffectiveScope) HasName

func (o *EffectiveScope) HasName() bool

HasName returns a boolean if a field has been set.

func (EffectiveScope) MarshalJSON

func (o EffectiveScope) MarshalJSON() ([]byte, error)

func (*EffectiveScope) SetId

func (o *EffectiveScope) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*EffectiveScope) SetName

func (o *EffectiveScope) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (EffectiveScope) ToMap

func (o EffectiveScope) ToMap() (map[string]interface{}, error)

type EnableEnvironmentResponse

type EnableEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

EnableEnvironmentResponse struct for EnableEnvironmentResponse

func NewEnableEnvironmentResponse

func NewEnableEnvironmentResponse() *EnableEnvironmentResponse

NewEnableEnvironmentResponse instantiates a new EnableEnvironmentResponse 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 NewEnableEnvironmentResponseWithDefaults

func NewEnableEnvironmentResponseWithDefaults() *EnableEnvironmentResponse

NewEnableEnvironmentResponseWithDefaults instantiates a new EnableEnvironmentResponse 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 (*EnableEnvironmentResponse) GetJob

func (o *EnableEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*EnableEnvironmentResponse) GetJobOk

func (o *EnableEnvironmentResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnableEnvironmentResponse) HasJob

func (o *EnableEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (EnableEnvironmentResponse) MarshalJSON

func (o EnableEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*EnableEnvironmentResponse) SetJob

func (o *EnableEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (EnableEnvironmentResponse) ToMap

func (o EnableEnvironmentResponse) ToMap() (map[string]interface{}, error)

type EnableScaleTestingRequest

type EnableScaleTestingRequest struct {
	// no. of times same engine needs to be registered
	EnginesCount int32 `json:"engines_count"`
	// list of engine hostnames to be registered engines_count times
	EnginesList []string `json:"engines_list"`
	// no. of times to duplicate sources, containers, and timeflows
	VirtObjectsCount int32 `json:"virt_objects_count"`
	// no. of times to duplicate snapshots
	SnapshotsCount int32 `json:"snapshots_count"`
}

EnableScaleTestingRequest struct for EnableScaleTestingRequest

func NewEnableScaleTestingRequest

func NewEnableScaleTestingRequest(enginesCount int32, enginesList []string, virtObjectsCount int32, snapshotsCount int32) *EnableScaleTestingRequest

NewEnableScaleTestingRequest instantiates a new EnableScaleTestingRequest 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 NewEnableScaleTestingRequestWithDefaults

func NewEnableScaleTestingRequestWithDefaults() *EnableScaleTestingRequest

NewEnableScaleTestingRequestWithDefaults instantiates a new EnableScaleTestingRequest 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 (*EnableScaleTestingRequest) GetEnginesCount

func (o *EnableScaleTestingRequest) GetEnginesCount() int32

GetEnginesCount returns the EnginesCount field value

func (*EnableScaleTestingRequest) GetEnginesCountOk

func (o *EnableScaleTestingRequest) GetEnginesCountOk() (*int32, bool)

GetEnginesCountOk returns a tuple with the EnginesCount field value and a boolean to check if the value has been set.

func (*EnableScaleTestingRequest) GetEnginesList

func (o *EnableScaleTestingRequest) GetEnginesList() []string

GetEnginesList returns the EnginesList field value

func (*EnableScaleTestingRequest) GetEnginesListOk

func (o *EnableScaleTestingRequest) GetEnginesListOk() ([]string, bool)

GetEnginesListOk returns a tuple with the EnginesList field value and a boolean to check if the value has been set.

func (*EnableScaleTestingRequest) GetSnapshotsCount

func (o *EnableScaleTestingRequest) GetSnapshotsCount() int32

GetSnapshotsCount returns the SnapshotsCount field value

func (*EnableScaleTestingRequest) GetSnapshotsCountOk

func (o *EnableScaleTestingRequest) GetSnapshotsCountOk() (*int32, bool)

GetSnapshotsCountOk returns a tuple with the SnapshotsCount field value and a boolean to check if the value has been set.

func (*EnableScaleTestingRequest) GetVirtObjectsCount

func (o *EnableScaleTestingRequest) GetVirtObjectsCount() int32

GetVirtObjectsCount returns the VirtObjectsCount field value

func (*EnableScaleTestingRequest) GetVirtObjectsCountOk

func (o *EnableScaleTestingRequest) GetVirtObjectsCountOk() (*int32, bool)

GetVirtObjectsCountOk returns a tuple with the VirtObjectsCount field value and a boolean to check if the value has been set.

func (EnableScaleTestingRequest) MarshalJSON

func (o EnableScaleTestingRequest) MarshalJSON() ([]byte, error)

func (*EnableScaleTestingRequest) SetEnginesCount

func (o *EnableScaleTestingRequest) SetEnginesCount(v int32)

SetEnginesCount sets field value

func (*EnableScaleTestingRequest) SetEnginesList

func (o *EnableScaleTestingRequest) SetEnginesList(v []string)

SetEnginesList sets field value

func (*EnableScaleTestingRequest) SetSnapshotsCount

func (o *EnableScaleTestingRequest) SetSnapshotsCount(v int32)

SetSnapshotsCount sets field value

func (*EnableScaleTestingRequest) SetVirtObjectsCount

func (o *EnableScaleTestingRequest) SetVirtObjectsCount(v int32)

SetVirtObjectsCount sets field value

func (EnableScaleTestingRequest) ToMap

func (o EnableScaleTestingRequest) ToMap() (map[string]interface{}, error)

type EnableVDBParameters

type EnableVDBParameters struct {
	// Whether to attempt a startup of the VDB after the enable.
	AttemptStart *bool `json:"attempt_start,omitempty"`
}

EnableVDBParameters Parameters to enable a VDB.

func NewEnableVDBParameters

func NewEnableVDBParameters() *EnableVDBParameters

NewEnableVDBParameters instantiates a new EnableVDBParameters 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 NewEnableVDBParametersWithDefaults

func NewEnableVDBParametersWithDefaults() *EnableVDBParameters

NewEnableVDBParametersWithDefaults instantiates a new EnableVDBParameters 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 (*EnableVDBParameters) GetAttemptStart

func (o *EnableVDBParameters) GetAttemptStart() bool

GetAttemptStart returns the AttemptStart field value if set, zero value otherwise.

func (*EnableVDBParameters) GetAttemptStartOk

func (o *EnableVDBParameters) GetAttemptStartOk() (*bool, bool)

GetAttemptStartOk returns a tuple with the AttemptStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnableVDBParameters) HasAttemptStart

func (o *EnableVDBParameters) HasAttemptStart() bool

HasAttemptStart returns a boolean if a field has been set.

func (EnableVDBParameters) MarshalJSON

func (o EnableVDBParameters) MarshalJSON() ([]byte, error)

func (*EnableVDBParameters) SetAttemptStart

func (o *EnableVDBParameters) SetAttemptStart(v bool)

SetAttemptStart gets a reference to the given bool and assigns it to the AttemptStart field.

func (EnableVDBParameters) ToMap

func (o EnableVDBParameters) ToMap() (map[string]interface{}, error)

type EnableVDBResponse

type EnableVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

EnableVDBResponse struct for EnableVDBResponse

func NewEnableVDBResponse

func NewEnableVDBResponse() *EnableVDBResponse

NewEnableVDBResponse instantiates a new EnableVDBResponse 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 NewEnableVDBResponseWithDefaults

func NewEnableVDBResponseWithDefaults() *EnableVDBResponse

NewEnableVDBResponseWithDefaults instantiates a new EnableVDBResponse 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 (*EnableVDBResponse) GetJob

func (o *EnableVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*EnableVDBResponse) GetJobOk

func (o *EnableVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnableVDBResponse) HasJob

func (o *EnableVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (EnableVDBResponse) MarshalJSON

func (o EnableVDBResponse) MarshalJSON() ([]byte, error)

func (*EnableVDBResponse) SetJob

func (o *EnableVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (EnableVDBResponse) ToMap

func (o EnableVDBResponse) ToMap() (map[string]interface{}, error)

type Engine

type Engine struct {
	EngineId   *string `json:"engine_id,omitempty"`
	EngineName *string `json:"engine_name,omitempty"`
}

Engine struct for Engine

func NewEngine

func NewEngine() *Engine

NewEngine instantiates a new Engine 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 NewEngineWithDefaults

func NewEngineWithDefaults() *Engine

NewEngineWithDefaults instantiates a new Engine 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 (*Engine) GetEngineId

func (o *Engine) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Engine) GetEngineIdOk

func (o *Engine) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Engine) GetEngineName

func (o *Engine) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*Engine) GetEngineNameOk

func (o *Engine) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Engine) HasEngineId

func (o *Engine) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Engine) HasEngineName

func (o *Engine) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (Engine) MarshalJSON

func (o Engine) MarshalJSON() ([]byte, error)

func (*Engine) SetEngineId

func (o *Engine) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Engine) SetEngineName

func (o *Engine) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (Engine) ToMap

func (o Engine) ToMap() (map[string]interface{}, error)

type EngineIdBody

type EngineIdBody struct {
	EngineId *string `json:"engine_id,omitempty"`
}

EngineIdBody The ID of the registered engine.

func NewEngineIdBody

func NewEngineIdBody() *EngineIdBody

NewEngineIdBody instantiates a new EngineIdBody 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 NewEngineIdBodyWithDefaults

func NewEngineIdBodyWithDefaults() *EngineIdBody

NewEngineIdBodyWithDefaults instantiates a new EngineIdBody 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 (*EngineIdBody) GetEngineId

func (o *EngineIdBody) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*EngineIdBody) GetEngineIdOk

func (o *EngineIdBody) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EngineIdBody) HasEngineId

func (o *EngineIdBody) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (EngineIdBody) MarshalJSON

func (o EngineIdBody) MarshalJSON() ([]byte, error)

func (*EngineIdBody) SetEngineId

func (o *EngineIdBody) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (EngineIdBody) ToMap

func (o EngineIdBody) ToMap() (map[string]interface{}, error)

type EngineRegistrationParameter

type EngineRegistrationParameter struct {
	Name     string `json:"name"`
	Hostname string `json:"hostname"`
	// The virtualization domain admin username.
	Username NullableString `json:"username,omitempty"`
	// The virtualization domain admin password.
	Password NullableString `json:"password,omitempty"`
	// The masking admin username.
	MaskingUsername NullableString `json:"masking_username,omitempty"`
	// The masking admin password.
	MaskingPassword NullableString `json:"masking_password,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the virtualzation username for the engine.
	HashicorpVaultUsernameCommandArgs []string `json:"hashicorp_vault_username_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the masking username for the engine.
	HashicorpVaultMaskingUsernameCommandArgs []string `json:"hashicorp_vault_masking_username_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the virtualization password for the engine.
	HashicorpVaultPasswordCommandArgs []string `json:"hashicorp_vault_password_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the masking password for the engine.
	HashicorpVaultMaskingPasswordCommandArgs []string `json:"hashicorp_vault_masking_password_command_args,omitempty"`
	// Reference to the Hashicorp vault to use to retrieve virtualization engine credentials.
	HashicorpVaultId NullableInt64 `json:"hashicorp_vault_id,omitempty"`
	// Reference to the Hashicorp vault to use to retrieve masking engine credentials.
	MaskingHashicorpVaultId NullableInt64 `json:"masking_hashicorp_vault_id,omitempty"`
	// Allow connections to the engine over HTTPs without validating the TLS certificate. Even though the connection to the engine might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the engine's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the engine over HTTPs. Setting this value must only be done if the TLS certificate of the engine does not match the hostname, and the TLS configuration of the engine cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this engine. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the engine. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename NullableString `json:"truststore_filename,omitempty"`
	// Password to read the truststore.
	TruststorePassword NullableString `json:"truststore_password,omitempty"`
	// The tags to be created for this engine.
	Tags []Tag `json:"tags,omitempty"`
}

EngineRegistrationParameter Parameters to register and authenticate an engine.

func NewEngineRegistrationParameter

func NewEngineRegistrationParameter(name string, hostname string) *EngineRegistrationParameter

NewEngineRegistrationParameter instantiates a new EngineRegistrationParameter 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 NewEngineRegistrationParameterWithDefaults

func NewEngineRegistrationParameterWithDefaults() *EngineRegistrationParameter

NewEngineRegistrationParameterWithDefaults instantiates a new EngineRegistrationParameter 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 (*EngineRegistrationParameter) GetHashicorpVaultId

func (o *EngineRegistrationParameter) GetHashicorpVaultId() int64

GetHashicorpVaultId returns the HashicorpVaultId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetHashicorpVaultIdOk

func (o *EngineRegistrationParameter) GetHashicorpVaultIdOk() (*int64, bool)

GetHashicorpVaultIdOk returns a tuple with the HashicorpVaultId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetHashicorpVaultMaskingPasswordCommandArgs

func (o *EngineRegistrationParameter) GetHashicorpVaultMaskingPasswordCommandArgs() []string

GetHashicorpVaultMaskingPasswordCommandArgs returns the HashicorpVaultMaskingPasswordCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetHashicorpVaultMaskingPasswordCommandArgsOk

func (o *EngineRegistrationParameter) GetHashicorpVaultMaskingPasswordCommandArgsOk() ([]string, bool)

GetHashicorpVaultMaskingPasswordCommandArgsOk returns a tuple with the HashicorpVaultMaskingPasswordCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetHashicorpVaultMaskingUsernameCommandArgs

func (o *EngineRegistrationParameter) GetHashicorpVaultMaskingUsernameCommandArgs() []string

GetHashicorpVaultMaskingUsernameCommandArgs returns the HashicorpVaultMaskingUsernameCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetHashicorpVaultMaskingUsernameCommandArgsOk

func (o *EngineRegistrationParameter) GetHashicorpVaultMaskingUsernameCommandArgsOk() ([]string, bool)

GetHashicorpVaultMaskingUsernameCommandArgsOk returns a tuple with the HashicorpVaultMaskingUsernameCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgs

func (o *EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgs() []string

GetHashicorpVaultPasswordCommandArgs returns the HashicorpVaultPasswordCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgsOk

func (o *EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgsOk() ([]string, bool)

GetHashicorpVaultPasswordCommandArgsOk returns a tuple with the HashicorpVaultPasswordCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgs

func (o *EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgs() []string

GetHashicorpVaultUsernameCommandArgs returns the HashicorpVaultUsernameCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgsOk

func (o *EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgsOk() ([]string, bool)

GetHashicorpVaultUsernameCommandArgsOk returns a tuple with the HashicorpVaultUsernameCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetHostname

func (o *EngineRegistrationParameter) GetHostname() string

GetHostname returns the Hostname field value

func (*EngineRegistrationParameter) GetHostnameOk

func (o *EngineRegistrationParameter) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*EngineRegistrationParameter) GetInsecureSsl

func (o *EngineRegistrationParameter) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*EngineRegistrationParameter) GetInsecureSslOk

func (o *EngineRegistrationParameter) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EngineRegistrationParameter) GetMaskingHashicorpVaultId

func (o *EngineRegistrationParameter) GetMaskingHashicorpVaultId() int64

GetMaskingHashicorpVaultId returns the MaskingHashicorpVaultId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetMaskingHashicorpVaultIdOk

func (o *EngineRegistrationParameter) GetMaskingHashicorpVaultIdOk() (*int64, bool)

GetMaskingHashicorpVaultIdOk returns a tuple with the MaskingHashicorpVaultId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetMaskingPassword

func (o *EngineRegistrationParameter) GetMaskingPassword() string

GetMaskingPassword returns the MaskingPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetMaskingPasswordOk

func (o *EngineRegistrationParameter) GetMaskingPasswordOk() (*string, bool)

GetMaskingPasswordOk returns a tuple with the MaskingPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetMaskingUsername

func (o *EngineRegistrationParameter) GetMaskingUsername() string

GetMaskingUsername returns the MaskingUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetMaskingUsernameOk

func (o *EngineRegistrationParameter) GetMaskingUsernameOk() (*string, bool)

GetMaskingUsernameOk returns a tuple with the MaskingUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetName

func (o *EngineRegistrationParameter) GetName() string

GetName returns the Name field value

func (*EngineRegistrationParameter) GetNameOk

func (o *EngineRegistrationParameter) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*EngineRegistrationParameter) GetPassword

func (o *EngineRegistrationParameter) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetPasswordOk

func (o *EngineRegistrationParameter) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetTags

func (o *EngineRegistrationParameter) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*EngineRegistrationParameter) GetTagsOk

func (o *EngineRegistrationParameter) 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.

func (*EngineRegistrationParameter) GetTruststoreFilename

func (o *EngineRegistrationParameter) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetTruststoreFilenameOk

func (o *EngineRegistrationParameter) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetTruststorePassword

func (o *EngineRegistrationParameter) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetTruststorePasswordOk

func (o *EngineRegistrationParameter) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EngineRegistrationParameter) GetUnsafeSslHostnameCheck

func (o *EngineRegistrationParameter) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*EngineRegistrationParameter) GetUnsafeSslHostnameCheckOk

func (o *EngineRegistrationParameter) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EngineRegistrationParameter) GetUsername

func (o *EngineRegistrationParameter) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EngineRegistrationParameter) GetUsernameOk

func (o *EngineRegistrationParameter) 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 (*EngineRegistrationParameter) HasHashicorpVaultId

func (o *EngineRegistrationParameter) HasHashicorpVaultId() bool

HasHashicorpVaultId returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasHashicorpVaultMaskingPasswordCommandArgs

func (o *EngineRegistrationParameter) HasHashicorpVaultMaskingPasswordCommandArgs() bool

HasHashicorpVaultMaskingPasswordCommandArgs returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasHashicorpVaultMaskingUsernameCommandArgs

func (o *EngineRegistrationParameter) HasHashicorpVaultMaskingUsernameCommandArgs() bool

HasHashicorpVaultMaskingUsernameCommandArgs returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasHashicorpVaultPasswordCommandArgs

func (o *EngineRegistrationParameter) HasHashicorpVaultPasswordCommandArgs() bool

HasHashicorpVaultPasswordCommandArgs returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasHashicorpVaultUsernameCommandArgs

func (o *EngineRegistrationParameter) HasHashicorpVaultUsernameCommandArgs() bool

HasHashicorpVaultUsernameCommandArgs returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasInsecureSsl

func (o *EngineRegistrationParameter) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasMaskingHashicorpVaultId

func (o *EngineRegistrationParameter) HasMaskingHashicorpVaultId() bool

HasMaskingHashicorpVaultId returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasMaskingPassword

func (o *EngineRegistrationParameter) HasMaskingPassword() bool

HasMaskingPassword returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasMaskingUsername

func (o *EngineRegistrationParameter) HasMaskingUsername() bool

HasMaskingUsername returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasPassword

func (o *EngineRegistrationParameter) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasTags

func (o *EngineRegistrationParameter) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasTruststoreFilename

func (o *EngineRegistrationParameter) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasTruststorePassword

func (o *EngineRegistrationParameter) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasUnsafeSslHostnameCheck

func (o *EngineRegistrationParameter) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasUsername

func (o *EngineRegistrationParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EngineRegistrationParameter) MarshalJSON

func (o EngineRegistrationParameter) MarshalJSON() ([]byte, error)

func (*EngineRegistrationParameter) SetHashicorpVaultId

func (o *EngineRegistrationParameter) SetHashicorpVaultId(v int64)

SetHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the HashicorpVaultId field.

func (*EngineRegistrationParameter) SetHashicorpVaultIdNil

func (o *EngineRegistrationParameter) SetHashicorpVaultIdNil()

SetHashicorpVaultIdNil sets the value for HashicorpVaultId to be an explicit nil

func (*EngineRegistrationParameter) SetHashicorpVaultMaskingPasswordCommandArgs

func (o *EngineRegistrationParameter) SetHashicorpVaultMaskingPasswordCommandArgs(v []string)

SetHashicorpVaultMaskingPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingPasswordCommandArgs field.

func (*EngineRegistrationParameter) SetHashicorpVaultMaskingUsernameCommandArgs

func (o *EngineRegistrationParameter) SetHashicorpVaultMaskingUsernameCommandArgs(v []string)

SetHashicorpVaultMaskingUsernameCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingUsernameCommandArgs field.

func (*EngineRegistrationParameter) SetHashicorpVaultPasswordCommandArgs

func (o *EngineRegistrationParameter) SetHashicorpVaultPasswordCommandArgs(v []string)

SetHashicorpVaultPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultPasswordCommandArgs field.

func (*EngineRegistrationParameter) SetHashicorpVaultUsernameCommandArgs

func (o *EngineRegistrationParameter) SetHashicorpVaultUsernameCommandArgs(v []string)

SetHashicorpVaultUsernameCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultUsernameCommandArgs field.

func (*EngineRegistrationParameter) SetHostname

func (o *EngineRegistrationParameter) SetHostname(v string)

SetHostname sets field value

func (*EngineRegistrationParameter) SetInsecureSsl

func (o *EngineRegistrationParameter) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*EngineRegistrationParameter) SetMaskingHashicorpVaultId

func (o *EngineRegistrationParameter) SetMaskingHashicorpVaultId(v int64)

SetMaskingHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the MaskingHashicorpVaultId field.

func (*EngineRegistrationParameter) SetMaskingHashicorpVaultIdNil

func (o *EngineRegistrationParameter) SetMaskingHashicorpVaultIdNil()

SetMaskingHashicorpVaultIdNil sets the value for MaskingHashicorpVaultId to be an explicit nil

func (*EngineRegistrationParameter) SetMaskingPassword

func (o *EngineRegistrationParameter) SetMaskingPassword(v string)

SetMaskingPassword gets a reference to the given NullableString and assigns it to the MaskingPassword field.

func (*EngineRegistrationParameter) SetMaskingPasswordNil

func (o *EngineRegistrationParameter) SetMaskingPasswordNil()

SetMaskingPasswordNil sets the value for MaskingPassword to be an explicit nil

func (*EngineRegistrationParameter) SetMaskingUsername

func (o *EngineRegistrationParameter) SetMaskingUsername(v string)

SetMaskingUsername gets a reference to the given NullableString and assigns it to the MaskingUsername field.

func (*EngineRegistrationParameter) SetMaskingUsernameNil

func (o *EngineRegistrationParameter) SetMaskingUsernameNil()

SetMaskingUsernameNil sets the value for MaskingUsername to be an explicit nil

func (*EngineRegistrationParameter) SetName

func (o *EngineRegistrationParameter) SetName(v string)

SetName sets field value

func (*EngineRegistrationParameter) SetPassword

func (o *EngineRegistrationParameter) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*EngineRegistrationParameter) SetPasswordNil

func (o *EngineRegistrationParameter) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*EngineRegistrationParameter) SetTags

func (o *EngineRegistrationParameter) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*EngineRegistrationParameter) SetTruststoreFilename

func (o *EngineRegistrationParameter) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given NullableString and assigns it to the TruststoreFilename field.

func (*EngineRegistrationParameter) SetTruststoreFilenameNil

func (o *EngineRegistrationParameter) SetTruststoreFilenameNil()

SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil

func (*EngineRegistrationParameter) SetTruststorePassword

func (o *EngineRegistrationParameter) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given NullableString and assigns it to the TruststorePassword field.

func (*EngineRegistrationParameter) SetTruststorePasswordNil

func (o *EngineRegistrationParameter) SetTruststorePasswordNil()

SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil

func (*EngineRegistrationParameter) SetUnsafeSslHostnameCheck

func (o *EngineRegistrationParameter) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (*EngineRegistrationParameter) SetUsername

func (o *EngineRegistrationParameter) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*EngineRegistrationParameter) SetUsernameNil

func (o *EngineRegistrationParameter) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (EngineRegistrationParameter) ToMap

func (o EngineRegistrationParameter) ToMap() (map[string]interface{}, error)

func (*EngineRegistrationParameter) UnsetHashicorpVaultId

func (o *EngineRegistrationParameter) UnsetHashicorpVaultId()

UnsetHashicorpVaultId ensures that no value is present for HashicorpVaultId, not even an explicit nil

func (*EngineRegistrationParameter) UnsetMaskingHashicorpVaultId

func (o *EngineRegistrationParameter) UnsetMaskingHashicorpVaultId()

UnsetMaskingHashicorpVaultId ensures that no value is present for MaskingHashicorpVaultId, not even an explicit nil

func (*EngineRegistrationParameter) UnsetMaskingPassword

func (o *EngineRegistrationParameter) UnsetMaskingPassword()

UnsetMaskingPassword ensures that no value is present for MaskingPassword, not even an explicit nil

func (*EngineRegistrationParameter) UnsetMaskingUsername

func (o *EngineRegistrationParameter) UnsetMaskingUsername()

UnsetMaskingUsername ensures that no value is present for MaskingUsername, not even an explicit nil

func (*EngineRegistrationParameter) UnsetPassword

func (o *EngineRegistrationParameter) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*EngineRegistrationParameter) UnsetTruststoreFilename

func (o *EngineRegistrationParameter) UnsetTruststoreFilename()

UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil

func (*EngineRegistrationParameter) UnsetTruststorePassword

func (o *EngineRegistrationParameter) UnsetTruststorePassword()

UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil

func (*EngineRegistrationParameter) UnsetUsername

func (o *EngineRegistrationParameter) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type Environment

type Environment struct {
	// The Environment object entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this environment.
	Name *string `json:"name,omitempty"`
	// The namespace id of this environment.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this environment.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// The namespace of this environment for replicated and restored objects.
	Namespace NullableString `json:"namespace,omitempty"`
	// A reference to the Engine that this Environment connection is associated with.
	EngineId *string `json:"engine_id,omitempty"`
	// True if this environment is enabled.
	Enabled *bool `json:"enabled,omitempty"`
	// True if this environment is a cluster of hosts.
	IsCluster *bool `json:"is_cluster,omitempty"`
	// Cluster home for RAC environment.
	ClusterHome *string `json:"cluster_home,omitempty"`
	// True if this windows environment is a target environment.
	IsWindowsTarget *bool `json:"is_windows_target,omitempty"`
	// ID of the staging environment.
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// The hosts that are part of this environment.
	Hosts []Host `json:"hosts,omitempty"`
	// The tags to be created for this environment.
	Tags []Tag `json:"tags,omitempty"`
	// Repositories associated with this environment. A Repository typically corresponds to a database installation.
	Repositories []Repository `json:"repositories,omitempty"`
	// Oracle listeners associated with this environment.
	Listeners []OracleListener `json:"listeners,omitempty"`
}

Environment A grouping of a single host or a cluster of hosts.

func NewEnvironment

func NewEnvironment() *Environment

NewEnvironment instantiates a new Environment 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 NewEnvironmentWithDefaults

func NewEnvironmentWithDefaults() *Environment

NewEnvironmentWithDefaults instantiates a new Environment 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 (*Environment) GetClusterHome

func (o *Environment) GetClusterHome() string

GetClusterHome returns the ClusterHome field value if set, zero value otherwise.

func (*Environment) GetClusterHomeOk

func (o *Environment) GetClusterHomeOk() (*string, bool)

GetClusterHomeOk returns a tuple with the ClusterHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetEnabled

func (o *Environment) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*Environment) GetEnabledOk

func (o *Environment) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetEngineId

func (o *Environment) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Environment) GetEngineIdOk

func (o *Environment) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetHosts

func (o *Environment) GetHosts() []Host

GetHosts returns the Hosts field value if set, zero value otherwise.

func (*Environment) GetHostsOk

func (o *Environment) GetHostsOk() ([]Host, bool)

GetHostsOk returns a tuple with the Hosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetId

func (o *Environment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Environment) GetIdOk

func (o *Environment) 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.

func (*Environment) GetIsCluster

func (o *Environment) GetIsCluster() bool

GetIsCluster returns the IsCluster field value if set, zero value otherwise.

func (*Environment) GetIsClusterOk

func (o *Environment) GetIsClusterOk() (*bool, bool)

GetIsClusterOk returns a tuple with the IsCluster field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetIsReplica

func (o *Environment) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*Environment) GetIsReplicaOk

func (o *Environment) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetIsWindowsTarget

func (o *Environment) GetIsWindowsTarget() bool

GetIsWindowsTarget returns the IsWindowsTarget field value if set, zero value otherwise.

func (*Environment) GetIsWindowsTargetOk

func (o *Environment) GetIsWindowsTargetOk() (*bool, bool)

GetIsWindowsTargetOk returns a tuple with the IsWindowsTarget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetListeners

func (o *Environment) GetListeners() []OracleListener

GetListeners returns the Listeners field value if set, zero value otherwise.

func (*Environment) GetListenersOk

func (o *Environment) GetListenersOk() ([]OracleListener, bool)

GetListenersOk returns a tuple with the Listeners field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetName

func (o *Environment) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Environment) GetNameOk

func (o *Environment) 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.

func (*Environment) GetNamespace

func (o *Environment) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Environment) GetNamespaceId

func (o *Environment) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*Environment) GetNamespaceIdOk

func (o *Environment) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetNamespaceName

func (o *Environment) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*Environment) GetNamespaceNameOk

func (o *Environment) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetNamespaceOk

func (o *Environment) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Environment) GetRepositories

func (o *Environment) GetRepositories() []Repository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*Environment) GetRepositoriesOk

func (o *Environment) GetRepositoriesOk() ([]Repository, bool)

GetRepositoriesOk returns a tuple with the Repositories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetStagingEnvironment

func (o *Environment) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*Environment) GetStagingEnvironmentOk

func (o *Environment) GetStagingEnvironmentOk() (*string, bool)

GetStagingEnvironmentOk returns a tuple with the StagingEnvironment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Environment) GetTags

func (o *Environment) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Environment) GetTagsOk

func (o *Environment) 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.

func (*Environment) HasClusterHome

func (o *Environment) HasClusterHome() bool

HasClusterHome returns a boolean if a field has been set.

func (*Environment) HasEnabled

func (o *Environment) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*Environment) HasEngineId

func (o *Environment) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Environment) HasHosts

func (o *Environment) HasHosts() bool

HasHosts returns a boolean if a field has been set.

func (*Environment) HasId

func (o *Environment) HasId() bool

HasId returns a boolean if a field has been set.

func (*Environment) HasIsCluster

func (o *Environment) HasIsCluster() bool

HasIsCluster returns a boolean if a field has been set.

func (*Environment) HasIsReplica

func (o *Environment) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*Environment) HasIsWindowsTarget

func (o *Environment) HasIsWindowsTarget() bool

HasIsWindowsTarget returns a boolean if a field has been set.

func (*Environment) HasListeners

func (o *Environment) HasListeners() bool

HasListeners returns a boolean if a field has been set.

func (*Environment) HasName

func (o *Environment) HasName() bool

HasName returns a boolean if a field has been set.

func (*Environment) HasNamespace

func (o *Environment) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Environment) HasNamespaceId

func (o *Environment) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*Environment) HasNamespaceName

func (o *Environment) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*Environment) HasRepositories

func (o *Environment) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (*Environment) HasStagingEnvironment

func (o *Environment) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (*Environment) HasTags

func (o *Environment) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Environment) MarshalJSON

func (o Environment) MarshalJSON() ([]byte, error)

func (*Environment) SetClusterHome

func (o *Environment) SetClusterHome(v string)

SetClusterHome gets a reference to the given string and assigns it to the ClusterHome field.

func (*Environment) SetEnabled

func (o *Environment) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*Environment) SetEngineId

func (o *Environment) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Environment) SetHosts

func (o *Environment) SetHosts(v []Host)

SetHosts gets a reference to the given []Host and assigns it to the Hosts field.

func (*Environment) SetId

func (o *Environment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Environment) SetIsCluster

func (o *Environment) SetIsCluster(v bool)

SetIsCluster gets a reference to the given bool and assigns it to the IsCluster field.

func (*Environment) SetIsReplica

func (o *Environment) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*Environment) SetIsWindowsTarget

func (o *Environment) SetIsWindowsTarget(v bool)

SetIsWindowsTarget gets a reference to the given bool and assigns it to the IsWindowsTarget field.

func (*Environment) SetListeners

func (o *Environment) SetListeners(v []OracleListener)

SetListeners gets a reference to the given []OracleListener and assigns it to the Listeners field.

func (*Environment) SetName

func (o *Environment) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Environment) SetNamespace

func (o *Environment) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*Environment) SetNamespaceId

func (o *Environment) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*Environment) SetNamespaceName

func (o *Environment) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*Environment) SetNamespaceNil

func (o *Environment) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Environment) SetRepositories

func (o *Environment) SetRepositories(v []Repository)

SetRepositories gets a reference to the given []Repository and assigns it to the Repositories field.

func (*Environment) SetStagingEnvironment

func (o *Environment) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (*Environment) SetTags

func (o *Environment) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Environment) ToMap

func (o Environment) ToMap() (map[string]interface{}, error)

func (*Environment) UnsetNamespace

func (o *Environment) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

type EnvironmentCreateParameters

type EnvironmentCreateParameters struct {
	// The name of the environment.
	Name *string `json:"name,omitempty"`
	// The ID of the Engine onto which to create the environment.
	EngineId string `json:"engine_id"`
	// Operating system type of the environment.
	OsName string `json:"os_name"`
	// Whether the environment to be created is a cluster.
	IsCluster *bool `json:"is_cluster,omitempty"`
	// Absolute path to cluster home drectory. This parameter is mandatory for UNIX cluster environments.
	ClusterHome *string `json:"cluster_home,omitempty"`
	// host address of the machine.
	Hostname string `json:"hostname"`
	// Id of the connector environment which is used to connect to this source environment. This is mandatory parameter when creating Windows source environments.
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// Specify port on which Delphix connector will run. This is mandatory parameter when creating Windows target environments.
	ConnectorPort *int32 `json:"connector_port,omitempty"`
	// Unique per Delphix key used to authenticate with the remote Delphix Connector.
	ConnectorAuthenticationKey *string `json:"connector_authentication_key,omitempty"`
	// Whether the environment to be created is a target cluster environment. This property is used only when creating Windows cluster environments.
	IsTarget *bool `json:"is_target,omitempty"`
	// ssh port of the host.
	SshPort *int64 `json:"ssh_port,omitempty"`
	// The path for the toolkit that resides on the host.
	ToolkitPath *string `json:"toolkit_path,omitempty"`
	// Username of the OS.
	Username *string `json:"username,omitempty"`
	// Password of the OS.
	Password *string `json:"password,omitempty"`
	// The name or reference of the vault from which to read the host credentials.
	Vault *string `json:"vault,omitempty"`
	// Delphix display name for the vault user
	VaultUsername *string `json:"vault_username,omitempty"`
	// Vault engine name where the credential is stored.
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication.
	UseKerberosAuthentication *bool `json:"use_kerberos_authentication,omitempty"`
	// Whether to use public key authentication.
	UseEnginePublicKey *bool `json:"use_engine_public_key,omitempty"`
	// array of ip address or hostnames
	NfsAddresses []string `json:"nfs_addresses,omitempty"`
	// Delphix display name for the vault user
	AseDbVaultUsername *string `json:"ase_db_vault_username,omitempty"`
	// username of the SAP ASE database.
	AseDbUsername *string `json:"ase_db_username,omitempty"`
	// password of the SAP ASE database.
	AseDbPassword *string `json:"ase_db_password,omitempty"`
	// The name or reference of the vault from which to read the ASE database credentials.
	AseDbVault *string `json:"ase_db_vault,omitempty"`
	// Vault engine name where the credential is stored.
	AseDbHashicorpVaultEngine *string `json:"ase_db_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	AseDbHashicorpVaultSecretPath *string `json:"ase_db_hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	AseDbHashicorpVaultUsernameKey *string `json:"ase_db_hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	AseDbHashicorpVaultSecretKey *string `json:"ase_db_hashicorp_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	AseDbCyberarkVaultQueryString *string `json:"ase_db_cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication for ASE DB discovery.
	AseDbUseKerberosAuthentication *bool `json:"ase_db_use_kerberos_authentication,omitempty"`
	// The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used.
	JavaHome *string `json:"java_home,omitempty"`
	// DSP keystore path.
	DspKeystorePath *string `json:"dsp_keystore_path,omitempty"`
	// DSP keystore password.
	DspKeystorePassword *string `json:"dsp_keystore_password,omitempty"`
	// DSP keystore alias.
	DspKeystoreAlias *string `json:"dsp_keystore_alias,omitempty"`
	// DSP truststore path.
	DspTruststorePath *string `json:"dsp_truststore_path,omitempty"`
	// DSP truststore password.
	DspTruststorePassword *string `json:"dsp_truststore_password,omitempty"`
	// The environment description.
	Description *string `json:"description,omitempty"`
	// The tags to be created for this environment.
	Tags []Tag `json:"tags,omitempty"`
	// Whether the account creating this environment must be configured as owner of the environment.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

EnvironmentCreateParameters struct for EnvironmentCreateParameters

func NewEnvironmentCreateParameters

func NewEnvironmentCreateParameters(engineId string, osName string, hostname string) *EnvironmentCreateParameters

NewEnvironmentCreateParameters instantiates a new EnvironmentCreateParameters 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 NewEnvironmentCreateParametersWithDefaults

func NewEnvironmentCreateParametersWithDefaults() *EnvironmentCreateParameters

NewEnvironmentCreateParametersWithDefaults instantiates a new EnvironmentCreateParameters 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 (*EnvironmentCreateParameters) GetAseDbCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) GetAseDbCyberarkVaultQueryString() string

GetAseDbCyberarkVaultQueryString returns the AseDbCyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbCyberarkVaultQueryStringOk

func (o *EnvironmentCreateParameters) GetAseDbCyberarkVaultQueryStringOk() (*string, bool)

GetAseDbCyberarkVaultQueryStringOk returns a tuple with the AseDbCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultEngine

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultEngine() string

GetAseDbHashicorpVaultEngine returns the AseDbHashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultEngineOk

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultEngineOk() (*string, bool)

GetAseDbHashicorpVaultEngineOk returns a tuple with the AseDbHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretKey() string

GetAseDbHashicorpVaultSecretKey returns the AseDbHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretKeyOk

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretKeyOk() (*string, bool)

GetAseDbHashicorpVaultSecretKeyOk returns a tuple with the AseDbHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretPath() string

GetAseDbHashicorpVaultSecretPath returns the AseDbHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretPathOk

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultSecretPathOk() (*string, bool)

GetAseDbHashicorpVaultSecretPathOk returns a tuple with the AseDbHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultUsernameKey() string

GetAseDbHashicorpVaultUsernameKey returns the AseDbHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbHashicorpVaultUsernameKeyOk

func (o *EnvironmentCreateParameters) GetAseDbHashicorpVaultUsernameKeyOk() (*string, bool)

GetAseDbHashicorpVaultUsernameKeyOk returns a tuple with the AseDbHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbPassword

func (o *EnvironmentCreateParameters) GetAseDbPassword() string

GetAseDbPassword returns the AseDbPassword field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbPasswordOk

func (o *EnvironmentCreateParameters) GetAseDbPasswordOk() (*string, bool)

GetAseDbPasswordOk returns a tuple with the AseDbPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbUseKerberosAuthentication

func (o *EnvironmentCreateParameters) GetAseDbUseKerberosAuthentication() bool

GetAseDbUseKerberosAuthentication returns the AseDbUseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbUseKerberosAuthenticationOk

func (o *EnvironmentCreateParameters) GetAseDbUseKerberosAuthenticationOk() (*bool, bool)

GetAseDbUseKerberosAuthenticationOk returns a tuple with the AseDbUseKerberosAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbUsername

func (o *EnvironmentCreateParameters) GetAseDbUsername() string

GetAseDbUsername returns the AseDbUsername field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbUsernameOk

func (o *EnvironmentCreateParameters) GetAseDbUsernameOk() (*string, bool)

GetAseDbUsernameOk returns a tuple with the AseDbUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbVault

func (o *EnvironmentCreateParameters) GetAseDbVault() string

GetAseDbVault returns the AseDbVault field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbVaultOk

func (o *EnvironmentCreateParameters) GetAseDbVaultOk() (*string, bool)

GetAseDbVaultOk returns a tuple with the AseDbVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetAseDbVaultUsername

func (o *EnvironmentCreateParameters) GetAseDbVaultUsername() string

GetAseDbVaultUsername returns the AseDbVaultUsername field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbVaultUsernameOk

func (o *EnvironmentCreateParameters) GetAseDbVaultUsernameOk() (*string, bool)

GetAseDbVaultUsernameOk returns a tuple with the AseDbVaultUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetClusterHome

func (o *EnvironmentCreateParameters) GetClusterHome() string

GetClusterHome returns the ClusterHome field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetClusterHomeOk

func (o *EnvironmentCreateParameters) GetClusterHomeOk() (*string, bool)

GetClusterHomeOk returns a tuple with the ClusterHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetConnectorAuthenticationKey

func (o *EnvironmentCreateParameters) GetConnectorAuthenticationKey() string

GetConnectorAuthenticationKey returns the ConnectorAuthenticationKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetConnectorAuthenticationKeyOk

func (o *EnvironmentCreateParameters) GetConnectorAuthenticationKeyOk() (*string, bool)

GetConnectorAuthenticationKeyOk returns a tuple with the ConnectorAuthenticationKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetConnectorPort

func (o *EnvironmentCreateParameters) GetConnectorPort() int32

GetConnectorPort returns the ConnectorPort field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetConnectorPortOk

func (o *EnvironmentCreateParameters) GetConnectorPortOk() (*int32, bool)

GetConnectorPortOk returns a tuple with the ConnectorPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetCyberarkVaultQueryStringOk

func (o *EnvironmentCreateParameters) GetCyberarkVaultQueryStringOk() (*string, bool)

GetCyberarkVaultQueryStringOk returns a tuple with the CyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetDescription

func (o *EnvironmentCreateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDescriptionOk

func (o *EnvironmentCreateParameters) 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.

func (*EnvironmentCreateParameters) GetDspKeystoreAlias

func (o *EnvironmentCreateParameters) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDspKeystoreAliasOk

func (o *EnvironmentCreateParameters) GetDspKeystoreAliasOk() (*string, bool)

GetDspKeystoreAliasOk returns a tuple with the DspKeystoreAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetDspKeystorePassword

func (o *EnvironmentCreateParameters) GetDspKeystorePassword() string

GetDspKeystorePassword returns the DspKeystorePassword field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDspKeystorePasswordOk

func (o *EnvironmentCreateParameters) GetDspKeystorePasswordOk() (*string, bool)

GetDspKeystorePasswordOk returns a tuple with the DspKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetDspKeystorePath

func (o *EnvironmentCreateParameters) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDspKeystorePathOk

func (o *EnvironmentCreateParameters) GetDspKeystorePathOk() (*string, bool)

GetDspKeystorePathOk returns a tuple with the DspKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetDspTruststorePassword

func (o *EnvironmentCreateParameters) GetDspTruststorePassword() string

GetDspTruststorePassword returns the DspTruststorePassword field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDspTruststorePasswordOk

func (o *EnvironmentCreateParameters) GetDspTruststorePasswordOk() (*string, bool)

GetDspTruststorePasswordOk returns a tuple with the DspTruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetDspTruststorePath

func (o *EnvironmentCreateParameters) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetDspTruststorePathOk

func (o *EnvironmentCreateParameters) GetDspTruststorePathOk() (*string, bool)

GetDspTruststorePathOk returns a tuple with the DspTruststorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetEngineId

func (o *EnvironmentCreateParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*EnvironmentCreateParameters) GetEngineIdOk

func (o *EnvironmentCreateParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetHashicorpVaultEngine

func (o *EnvironmentCreateParameters) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetHashicorpVaultEngineOk

func (o *EnvironmentCreateParameters) GetHashicorpVaultEngineOk() (*string, bool)

GetHashicorpVaultEngineOk returns a tuple with the HashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetHashicorpVaultSecretKeyOk

func (o *EnvironmentCreateParameters) GetHashicorpVaultSecretKeyOk() (*string, bool)

GetHashicorpVaultSecretKeyOk returns a tuple with the HashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetHashicorpVaultSecretPathOk

func (o *EnvironmentCreateParameters) GetHashicorpVaultSecretPathOk() (*string, bool)

GetHashicorpVaultSecretPathOk returns a tuple with the HashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetHashicorpVaultUsernameKeyOk

func (o *EnvironmentCreateParameters) GetHashicorpVaultUsernameKeyOk() (*string, bool)

GetHashicorpVaultUsernameKeyOk returns a tuple with the HashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetHostname

func (o *EnvironmentCreateParameters) GetHostname() string

GetHostname returns the Hostname field value

func (*EnvironmentCreateParameters) GetHostnameOk

func (o *EnvironmentCreateParameters) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetIsCluster

func (o *EnvironmentCreateParameters) GetIsCluster() bool

GetIsCluster returns the IsCluster field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetIsClusterOk

func (o *EnvironmentCreateParameters) GetIsClusterOk() (*bool, bool)

GetIsClusterOk returns a tuple with the IsCluster field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetIsTarget

func (o *EnvironmentCreateParameters) GetIsTarget() bool

GetIsTarget returns the IsTarget field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetIsTargetOk

func (o *EnvironmentCreateParameters) GetIsTargetOk() (*bool, bool)

GetIsTargetOk returns a tuple with the IsTarget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetJavaHome

func (o *EnvironmentCreateParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetJavaHomeOk

func (o *EnvironmentCreateParameters) GetJavaHomeOk() (*string, bool)

GetJavaHomeOk returns a tuple with the JavaHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetMakeCurrentAccountOwner

func (o *EnvironmentCreateParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetMakeCurrentAccountOwnerOk

func (o *EnvironmentCreateParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetName

func (o *EnvironmentCreateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetNameOk

func (o *EnvironmentCreateParameters) 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.

func (*EnvironmentCreateParameters) GetNfsAddresses

func (o *EnvironmentCreateParameters) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetNfsAddressesOk

func (o *EnvironmentCreateParameters) GetNfsAddressesOk() ([]string, bool)

GetNfsAddressesOk returns a tuple with the NfsAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetOsName

func (o *EnvironmentCreateParameters) GetOsName() string

GetOsName returns the OsName field value

func (*EnvironmentCreateParameters) GetOsNameOk

func (o *EnvironmentCreateParameters) GetOsNameOk() (*string, bool)

GetOsNameOk returns a tuple with the OsName field value and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetPassword

func (o *EnvironmentCreateParameters) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetPasswordOk

func (o *EnvironmentCreateParameters) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetSshPort

func (o *EnvironmentCreateParameters) GetSshPort() int64

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetSshPortOk

func (o *EnvironmentCreateParameters) GetSshPortOk() (*int64, bool)

GetSshPortOk returns a tuple with the SshPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetStagingEnvironment

func (o *EnvironmentCreateParameters) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetStagingEnvironmentOk

func (o *EnvironmentCreateParameters) GetStagingEnvironmentOk() (*string, bool)

GetStagingEnvironmentOk returns a tuple with the StagingEnvironment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetTags

func (o *EnvironmentCreateParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetTagsOk

func (o *EnvironmentCreateParameters) 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.

func (*EnvironmentCreateParameters) GetToolkitPath

func (o *EnvironmentCreateParameters) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetToolkitPathOk

func (o *EnvironmentCreateParameters) GetToolkitPathOk() (*string, bool)

GetToolkitPathOk returns a tuple with the ToolkitPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetUseEnginePublicKey

func (o *EnvironmentCreateParameters) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetUseEnginePublicKeyOk

func (o *EnvironmentCreateParameters) GetUseEnginePublicKeyOk() (*bool, bool)

GetUseEnginePublicKeyOk returns a tuple with the UseEnginePublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetUseKerberosAuthentication

func (o *EnvironmentCreateParameters) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetUseKerberosAuthenticationOk

func (o *EnvironmentCreateParameters) GetUseKerberosAuthenticationOk() (*bool, bool)

GetUseKerberosAuthenticationOk returns a tuple with the UseKerberosAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetUsername

func (o *EnvironmentCreateParameters) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetUsernameOk

func (o *EnvironmentCreateParameters) 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.

func (*EnvironmentCreateParameters) GetVault

func (o *EnvironmentCreateParameters) GetVault() string

GetVault returns the Vault field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetVaultOk

func (o *EnvironmentCreateParameters) GetVaultOk() (*string, bool)

GetVaultOk returns a tuple with the Vault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) GetVaultUsername

func (o *EnvironmentCreateParameters) GetVaultUsername() string

GetVaultUsername returns the VaultUsername field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetVaultUsernameOk

func (o *EnvironmentCreateParameters) GetVaultUsernameOk() (*string, bool)

GetVaultUsernameOk returns a tuple with the VaultUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentCreateParameters) HasAseDbCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) HasAseDbCyberarkVaultQueryString() bool

HasAseDbCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbHashicorpVaultEngine

func (o *EnvironmentCreateParameters) HasAseDbHashicorpVaultEngine() bool

HasAseDbHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) HasAseDbHashicorpVaultSecretKey() bool

HasAseDbHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) HasAseDbHashicorpVaultSecretPath() bool

HasAseDbHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) HasAseDbHashicorpVaultUsernameKey() bool

HasAseDbHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbPassword

func (o *EnvironmentCreateParameters) HasAseDbPassword() bool

HasAseDbPassword returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbUseKerberosAuthentication

func (o *EnvironmentCreateParameters) HasAseDbUseKerberosAuthentication() bool

HasAseDbUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbUsername

func (o *EnvironmentCreateParameters) HasAseDbUsername() bool

HasAseDbUsername returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbVault

func (o *EnvironmentCreateParameters) HasAseDbVault() bool

HasAseDbVault returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasAseDbVaultUsername

func (o *EnvironmentCreateParameters) HasAseDbVaultUsername() bool

HasAseDbVaultUsername returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasClusterHome

func (o *EnvironmentCreateParameters) HasClusterHome() bool

HasClusterHome returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasConnectorAuthenticationKey

func (o *EnvironmentCreateParameters) HasConnectorAuthenticationKey() bool

HasConnectorAuthenticationKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasConnectorPort

func (o *EnvironmentCreateParameters) HasConnectorPort() bool

HasConnectorPort returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDescription

func (o *EnvironmentCreateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDspKeystoreAlias

func (o *EnvironmentCreateParameters) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDspKeystorePassword

func (o *EnvironmentCreateParameters) HasDspKeystorePassword() bool

HasDspKeystorePassword returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDspKeystorePath

func (o *EnvironmentCreateParameters) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDspTruststorePassword

func (o *EnvironmentCreateParameters) HasDspTruststorePassword() bool

HasDspTruststorePassword returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasDspTruststorePath

func (o *EnvironmentCreateParameters) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasHashicorpVaultEngine

func (o *EnvironmentCreateParameters) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasIsCluster

func (o *EnvironmentCreateParameters) HasIsCluster() bool

HasIsCluster returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasIsTarget

func (o *EnvironmentCreateParameters) HasIsTarget() bool

HasIsTarget returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasJavaHome

func (o *EnvironmentCreateParameters) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasMakeCurrentAccountOwner

func (o *EnvironmentCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasName

func (o *EnvironmentCreateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasNfsAddresses

func (o *EnvironmentCreateParameters) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasPassword

func (o *EnvironmentCreateParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasSshPort

func (o *EnvironmentCreateParameters) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasStagingEnvironment

func (o *EnvironmentCreateParameters) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasTags

func (o *EnvironmentCreateParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasToolkitPath

func (o *EnvironmentCreateParameters) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasUseEnginePublicKey

func (o *EnvironmentCreateParameters) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasUseKerberosAuthentication

func (o *EnvironmentCreateParameters) HasUseKerberosAuthentication() bool

HasUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasUsername

func (o *EnvironmentCreateParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasVault

func (o *EnvironmentCreateParameters) HasVault() bool

HasVault returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasVaultUsername

func (o *EnvironmentCreateParameters) HasVaultUsername() bool

HasVaultUsername returns a boolean if a field has been set.

func (EnvironmentCreateParameters) MarshalJSON

func (o EnvironmentCreateParameters) MarshalJSON() ([]byte, error)

func (*EnvironmentCreateParameters) SetAseDbCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) SetAseDbCyberarkVaultQueryString(v string)

SetAseDbCyberarkVaultQueryString gets a reference to the given string and assigns it to the AseDbCyberarkVaultQueryString field.

func (*EnvironmentCreateParameters) SetAseDbHashicorpVaultEngine

func (o *EnvironmentCreateParameters) SetAseDbHashicorpVaultEngine(v string)

SetAseDbHashicorpVaultEngine gets a reference to the given string and assigns it to the AseDbHashicorpVaultEngine field.

func (*EnvironmentCreateParameters) SetAseDbHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) SetAseDbHashicorpVaultSecretKey(v string)

SetAseDbHashicorpVaultSecretKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretKey field.

func (*EnvironmentCreateParameters) SetAseDbHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) SetAseDbHashicorpVaultSecretPath(v string)

SetAseDbHashicorpVaultSecretPath gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretPath field.

func (*EnvironmentCreateParameters) SetAseDbHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) SetAseDbHashicorpVaultUsernameKey(v string)

SetAseDbHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultUsernameKey field.

func (*EnvironmentCreateParameters) SetAseDbPassword

func (o *EnvironmentCreateParameters) SetAseDbPassword(v string)

SetAseDbPassword gets a reference to the given string and assigns it to the AseDbPassword field.

func (*EnvironmentCreateParameters) SetAseDbUseKerberosAuthentication

func (o *EnvironmentCreateParameters) SetAseDbUseKerberosAuthentication(v bool)

SetAseDbUseKerberosAuthentication gets a reference to the given bool and assigns it to the AseDbUseKerberosAuthentication field.

func (*EnvironmentCreateParameters) SetAseDbUsername

func (o *EnvironmentCreateParameters) SetAseDbUsername(v string)

SetAseDbUsername gets a reference to the given string and assigns it to the AseDbUsername field.

func (*EnvironmentCreateParameters) SetAseDbVault

func (o *EnvironmentCreateParameters) SetAseDbVault(v string)

SetAseDbVault gets a reference to the given string and assigns it to the AseDbVault field.

func (*EnvironmentCreateParameters) SetAseDbVaultUsername

func (o *EnvironmentCreateParameters) SetAseDbVaultUsername(v string)

SetAseDbVaultUsername gets a reference to the given string and assigns it to the AseDbVaultUsername field.

func (*EnvironmentCreateParameters) SetClusterHome

func (o *EnvironmentCreateParameters) SetClusterHome(v string)

SetClusterHome gets a reference to the given string and assigns it to the ClusterHome field.

func (*EnvironmentCreateParameters) SetConnectorAuthenticationKey

func (o *EnvironmentCreateParameters) SetConnectorAuthenticationKey(v string)

SetConnectorAuthenticationKey gets a reference to the given string and assigns it to the ConnectorAuthenticationKey field.

func (*EnvironmentCreateParameters) SetConnectorPort

func (o *EnvironmentCreateParameters) SetConnectorPort(v int32)

SetConnectorPort gets a reference to the given int32 and assigns it to the ConnectorPort field.

func (*EnvironmentCreateParameters) SetCyberarkVaultQueryString

func (o *EnvironmentCreateParameters) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*EnvironmentCreateParameters) SetDescription

func (o *EnvironmentCreateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*EnvironmentCreateParameters) SetDspKeystoreAlias

func (o *EnvironmentCreateParameters) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*EnvironmentCreateParameters) SetDspKeystorePassword

func (o *EnvironmentCreateParameters) SetDspKeystorePassword(v string)

SetDspKeystorePassword gets a reference to the given string and assigns it to the DspKeystorePassword field.

func (*EnvironmentCreateParameters) SetDspKeystorePath

func (o *EnvironmentCreateParameters) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*EnvironmentCreateParameters) SetDspTruststorePassword

func (o *EnvironmentCreateParameters) SetDspTruststorePassword(v string)

SetDspTruststorePassword gets a reference to the given string and assigns it to the DspTruststorePassword field.

func (*EnvironmentCreateParameters) SetDspTruststorePath

func (o *EnvironmentCreateParameters) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*EnvironmentCreateParameters) SetEngineId

func (o *EnvironmentCreateParameters) SetEngineId(v string)

SetEngineId sets field value

func (*EnvironmentCreateParameters) SetHashicorpVaultEngine

func (o *EnvironmentCreateParameters) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*EnvironmentCreateParameters) SetHashicorpVaultSecretKey

func (o *EnvironmentCreateParameters) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*EnvironmentCreateParameters) SetHashicorpVaultSecretPath

func (o *EnvironmentCreateParameters) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*EnvironmentCreateParameters) SetHashicorpVaultUsernameKey

func (o *EnvironmentCreateParameters) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*EnvironmentCreateParameters) SetHostname

func (o *EnvironmentCreateParameters) SetHostname(v string)

SetHostname sets field value

func (*EnvironmentCreateParameters) SetIsCluster

func (o *EnvironmentCreateParameters) SetIsCluster(v bool)

SetIsCluster gets a reference to the given bool and assigns it to the IsCluster field.

func (*EnvironmentCreateParameters) SetIsTarget

func (o *EnvironmentCreateParameters) SetIsTarget(v bool)

SetIsTarget gets a reference to the given bool and assigns it to the IsTarget field.

func (*EnvironmentCreateParameters) SetJavaHome

func (o *EnvironmentCreateParameters) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*EnvironmentCreateParameters) SetMakeCurrentAccountOwner

func (o *EnvironmentCreateParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*EnvironmentCreateParameters) SetName

func (o *EnvironmentCreateParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*EnvironmentCreateParameters) SetNfsAddresses

func (o *EnvironmentCreateParameters) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*EnvironmentCreateParameters) SetOsName

func (o *EnvironmentCreateParameters) SetOsName(v string)

SetOsName sets field value

func (*EnvironmentCreateParameters) SetPassword

func (o *EnvironmentCreateParameters) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*EnvironmentCreateParameters) SetSshPort

func (o *EnvironmentCreateParameters) SetSshPort(v int64)

SetSshPort gets a reference to the given int64 and assigns it to the SshPort field.

func (*EnvironmentCreateParameters) SetStagingEnvironment

func (o *EnvironmentCreateParameters) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (*EnvironmentCreateParameters) SetTags

func (o *EnvironmentCreateParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*EnvironmentCreateParameters) SetToolkitPath

func (o *EnvironmentCreateParameters) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (*EnvironmentCreateParameters) SetUseEnginePublicKey

func (o *EnvironmentCreateParameters) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*EnvironmentCreateParameters) SetUseKerberosAuthentication

func (o *EnvironmentCreateParameters) SetUseKerberosAuthentication(v bool)

SetUseKerberosAuthentication gets a reference to the given bool and assigns it to the UseKerberosAuthentication field.

func (*EnvironmentCreateParameters) SetUsername

func (o *EnvironmentCreateParameters) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*EnvironmentCreateParameters) SetVault

func (o *EnvironmentCreateParameters) SetVault(v string)

SetVault gets a reference to the given string and assigns it to the Vault field.

func (*EnvironmentCreateParameters) SetVaultUsername

func (o *EnvironmentCreateParameters) SetVaultUsername(v string)

SetVaultUsername gets a reference to the given string and assigns it to the VaultUsername field.

func (EnvironmentCreateParameters) ToMap

func (o EnvironmentCreateParameters) ToMap() (map[string]interface{}, error)

type EnvironmentRepository

type EnvironmentRepository struct {
	// Entity id of the repository.
	Id *string `json:"id,omitempty"`
	// Name of the repository.
	Name *string `json:"name,omitempty"`
	// The database type of this repository.
	DatabaseType *string `json:"database_type,omitempty"`
	// Flag indicating whether the repository should be used for provisioning.
	AllowProvisioning *bool `json:"allow_provisioning,omitempty"`
	// Flag indicating whether this repository can be used by the Delphix Engine for internal processing.
	IsStaging *bool `json:"is_staging,omitempty"`
	// The Oracle base where database binaries are located.
	OracleBase *string `json:"oracle_base,omitempty"`
	// Version of the repository.
	Version *string `json:"version,omitempty"`
	// 32 or 64 bits.
	Bits *int32 `json:"bits,omitempty"`
	// Group name of the user that owns the install.
	InstallGroup *string `json:"install_group,omitempty"`
	// User name of the user that owns the install.
	InstallUser *string `json:"install_user,omitempty"`
	// Flag indicating whether the install supports Oracle RAC.
	Rac *bool `json:"rac,omitempty"`
	// The network ports for connecting to the database instance.
	Ports []int64 `json:"ports,omitempty"`
	// Fully qualified name of the dump history file.
	DumpHistoryFile *string `json:"dump_history_file,omitempty"`
	// Database page size for the SAP ASE instance.
	PageSize *int64 `json:"page_size,omitempty"`
	// Account the database server instance is running as.
	Owner *string `json:"owner,omitempty"`
	// Directory path where the installation is located.
	InstallationPath *string `json:"installation_path,omitempty"`
	// This property determines if the full-text search and semantic search is installed or not.
	FulltextInstalled *bool `json:"fulltext_installed,omitempty"`
	// The internal version is tied to the data format of a database and is used to detect compatibility.
	InternalVersion *int64 `json:"internal_version,omitempty"`
	// MSSQL cluster instances name.
	MssqlClusterInstancesName []string `json:"mssql_cluster_instances_name,omitempty"`
	// MSSQL cluster instances version.
	MssqlClusterInstancesVersion []string `json:"mssql_cluster_instances_version,omitempty"`
	// Directory where the installation home is located.
	InstallationHome *string `json:"installation_home,omitempty"`
	// MSSQL failover cluster drive letter.
	DriveLetter []string `json:"drive_letter,omitempty"`
	// The environment ID.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

EnvironmentRepository A repository corresponding to the environment.

func NewEnvironmentRepository

func NewEnvironmentRepository() *EnvironmentRepository

NewEnvironmentRepository instantiates a new EnvironmentRepository 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 NewEnvironmentRepositoryWithDefaults

func NewEnvironmentRepositoryWithDefaults() *EnvironmentRepository

NewEnvironmentRepositoryWithDefaults instantiates a new EnvironmentRepository 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 (*EnvironmentRepository) GetAllowProvisioning

func (o *EnvironmentRepository) GetAllowProvisioning() bool

GetAllowProvisioning returns the AllowProvisioning field value if set, zero value otherwise.

func (*EnvironmentRepository) GetAllowProvisioningOk

func (o *EnvironmentRepository) GetAllowProvisioningOk() (*bool, bool)

GetAllowProvisioningOk returns a tuple with the AllowProvisioning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetBits

func (o *EnvironmentRepository) GetBits() int32

GetBits returns the Bits field value if set, zero value otherwise.

func (*EnvironmentRepository) GetBitsOk

func (o *EnvironmentRepository) GetBitsOk() (*int32, bool)

GetBitsOk returns a tuple with the Bits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetDatabaseType

func (o *EnvironmentRepository) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*EnvironmentRepository) GetDatabaseTypeOk

func (o *EnvironmentRepository) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetDriveLetter

func (o *EnvironmentRepository) GetDriveLetter() []string

GetDriveLetter returns the DriveLetter field value if set, zero value otherwise.

func (*EnvironmentRepository) GetDriveLetterOk

func (o *EnvironmentRepository) GetDriveLetterOk() ([]string, bool)

GetDriveLetterOk returns a tuple with the DriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetDumpHistoryFile

func (o *EnvironmentRepository) GetDumpHistoryFile() string

GetDumpHistoryFile returns the DumpHistoryFile field value if set, zero value otherwise.

func (*EnvironmentRepository) GetDumpHistoryFileOk

func (o *EnvironmentRepository) GetDumpHistoryFileOk() (*string, bool)

GetDumpHistoryFileOk returns a tuple with the DumpHistoryFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetEnvironmentId

func (o *EnvironmentRepository) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*EnvironmentRepository) GetEnvironmentIdOk

func (o *EnvironmentRepository) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetFulltextInstalled

func (o *EnvironmentRepository) GetFulltextInstalled() bool

GetFulltextInstalled returns the FulltextInstalled field value if set, zero value otherwise.

func (*EnvironmentRepository) GetFulltextInstalledOk

func (o *EnvironmentRepository) GetFulltextInstalledOk() (*bool, bool)

GetFulltextInstalledOk returns a tuple with the FulltextInstalled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetId

func (o *EnvironmentRepository) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*EnvironmentRepository) GetIdOk

func (o *EnvironmentRepository) 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.

func (*EnvironmentRepository) GetInstallGroup

func (o *EnvironmentRepository) GetInstallGroup() string

GetInstallGroup returns the InstallGroup field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallGroupOk

func (o *EnvironmentRepository) GetInstallGroupOk() (*string, bool)

GetInstallGroupOk returns a tuple with the InstallGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetInstallUser

func (o *EnvironmentRepository) GetInstallUser() string

GetInstallUser returns the InstallUser field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallUserOk

func (o *EnvironmentRepository) GetInstallUserOk() (*string, bool)

GetInstallUserOk returns a tuple with the InstallUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetInstallationHome

func (o *EnvironmentRepository) GetInstallationHome() string

GetInstallationHome returns the InstallationHome field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallationHomeOk

func (o *EnvironmentRepository) GetInstallationHomeOk() (*string, bool)

GetInstallationHomeOk returns a tuple with the InstallationHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetInstallationPath

func (o *EnvironmentRepository) GetInstallationPath() string

GetInstallationPath returns the InstallationPath field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallationPathOk

func (o *EnvironmentRepository) GetInstallationPathOk() (*string, bool)

GetInstallationPathOk returns a tuple with the InstallationPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetInternalVersion

func (o *EnvironmentRepository) GetInternalVersion() int64

GetInternalVersion returns the InternalVersion field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInternalVersionOk

func (o *EnvironmentRepository) GetInternalVersionOk() (*int64, bool)

GetInternalVersionOk returns a tuple with the InternalVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetIsStaging

func (o *EnvironmentRepository) GetIsStaging() bool

GetIsStaging returns the IsStaging field value if set, zero value otherwise.

func (*EnvironmentRepository) GetIsStagingOk

func (o *EnvironmentRepository) GetIsStagingOk() (*bool, bool)

GetIsStagingOk returns a tuple with the IsStaging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetMssqlClusterInstancesName

func (o *EnvironmentRepository) GetMssqlClusterInstancesName() []string

GetMssqlClusterInstancesName returns the MssqlClusterInstancesName field value if set, zero value otherwise.

func (*EnvironmentRepository) GetMssqlClusterInstancesNameOk

func (o *EnvironmentRepository) GetMssqlClusterInstancesNameOk() ([]string, bool)

GetMssqlClusterInstancesNameOk returns a tuple with the MssqlClusterInstancesName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetMssqlClusterInstancesVersion

func (o *EnvironmentRepository) GetMssqlClusterInstancesVersion() []string

GetMssqlClusterInstancesVersion returns the MssqlClusterInstancesVersion field value if set, zero value otherwise.

func (*EnvironmentRepository) GetMssqlClusterInstancesVersionOk

func (o *EnvironmentRepository) GetMssqlClusterInstancesVersionOk() ([]string, bool)

GetMssqlClusterInstancesVersionOk returns a tuple with the MssqlClusterInstancesVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetName

func (o *EnvironmentRepository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EnvironmentRepository) GetNameOk

func (o *EnvironmentRepository) 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.

func (*EnvironmentRepository) GetOracleBase

func (o *EnvironmentRepository) GetOracleBase() string

GetOracleBase returns the OracleBase field value if set, zero value otherwise.

func (*EnvironmentRepository) GetOracleBaseOk

func (o *EnvironmentRepository) GetOracleBaseOk() (*string, bool)

GetOracleBaseOk returns a tuple with the OracleBase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetOwner

func (o *EnvironmentRepository) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*EnvironmentRepository) GetOwnerOk

func (o *EnvironmentRepository) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetPageSize

func (o *EnvironmentRepository) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*EnvironmentRepository) GetPageSizeOk

func (o *EnvironmentRepository) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetPorts

func (o *EnvironmentRepository) GetPorts() []int64

GetPorts returns the Ports field value if set, zero value otherwise.

func (*EnvironmentRepository) GetPortsOk

func (o *EnvironmentRepository) GetPortsOk() ([]int64, bool)

GetPortsOk returns a tuple with the Ports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetRac

func (o *EnvironmentRepository) GetRac() bool

GetRac returns the Rac field value if set, zero value otherwise.

func (*EnvironmentRepository) GetRacOk

func (o *EnvironmentRepository) GetRacOk() (*bool, bool)

GetRacOk returns a tuple with the Rac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) GetVersion

func (o *EnvironmentRepository) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*EnvironmentRepository) GetVersionOk

func (o *EnvironmentRepository) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepository) HasAllowProvisioning

func (o *EnvironmentRepository) HasAllowProvisioning() bool

HasAllowProvisioning returns a boolean if a field has been set.

func (*EnvironmentRepository) HasBits

func (o *EnvironmentRepository) HasBits() bool

HasBits returns a boolean if a field has been set.

func (*EnvironmentRepository) HasDatabaseType

func (o *EnvironmentRepository) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*EnvironmentRepository) HasDriveLetter

func (o *EnvironmentRepository) HasDriveLetter() bool

HasDriveLetter returns a boolean if a field has been set.

func (*EnvironmentRepository) HasDumpHistoryFile

func (o *EnvironmentRepository) HasDumpHistoryFile() bool

HasDumpHistoryFile returns a boolean if a field has been set.

func (*EnvironmentRepository) HasEnvironmentId

func (o *EnvironmentRepository) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*EnvironmentRepository) HasFulltextInstalled

func (o *EnvironmentRepository) HasFulltextInstalled() bool

HasFulltextInstalled returns a boolean if a field has been set.

func (*EnvironmentRepository) HasId

func (o *EnvironmentRepository) HasId() bool

HasId returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallGroup

func (o *EnvironmentRepository) HasInstallGroup() bool

HasInstallGroup returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallUser

func (o *EnvironmentRepository) HasInstallUser() bool

HasInstallUser returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallationHome

func (o *EnvironmentRepository) HasInstallationHome() bool

HasInstallationHome returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallationPath

func (o *EnvironmentRepository) HasInstallationPath() bool

HasInstallationPath returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInternalVersion

func (o *EnvironmentRepository) HasInternalVersion() bool

HasInternalVersion returns a boolean if a field has been set.

func (*EnvironmentRepository) HasIsStaging

func (o *EnvironmentRepository) HasIsStaging() bool

HasIsStaging returns a boolean if a field has been set.

func (*EnvironmentRepository) HasMssqlClusterInstancesName

func (o *EnvironmentRepository) HasMssqlClusterInstancesName() bool

HasMssqlClusterInstancesName returns a boolean if a field has been set.

func (*EnvironmentRepository) HasMssqlClusterInstancesVersion

func (o *EnvironmentRepository) HasMssqlClusterInstancesVersion() bool

HasMssqlClusterInstancesVersion returns a boolean if a field has been set.

func (*EnvironmentRepository) HasName

func (o *EnvironmentRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnvironmentRepository) HasOracleBase

func (o *EnvironmentRepository) HasOracleBase() bool

HasOracleBase returns a boolean if a field has been set.

func (*EnvironmentRepository) HasOwner

func (o *EnvironmentRepository) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*EnvironmentRepository) HasPageSize

func (o *EnvironmentRepository) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*EnvironmentRepository) HasPorts

func (o *EnvironmentRepository) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*EnvironmentRepository) HasRac

func (o *EnvironmentRepository) HasRac() bool

HasRac returns a boolean if a field has been set.

func (*EnvironmentRepository) HasVersion

func (o *EnvironmentRepository) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EnvironmentRepository) MarshalJSON

func (o EnvironmentRepository) MarshalJSON() ([]byte, error)

func (*EnvironmentRepository) SetAllowProvisioning

func (o *EnvironmentRepository) SetAllowProvisioning(v bool)

SetAllowProvisioning gets a reference to the given bool and assigns it to the AllowProvisioning field.

func (*EnvironmentRepository) SetBits

func (o *EnvironmentRepository) SetBits(v int32)

SetBits gets a reference to the given int32 and assigns it to the Bits field.

func (*EnvironmentRepository) SetDatabaseType

func (o *EnvironmentRepository) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*EnvironmentRepository) SetDriveLetter

func (o *EnvironmentRepository) SetDriveLetter(v []string)

SetDriveLetter gets a reference to the given []string and assigns it to the DriveLetter field.

func (*EnvironmentRepository) SetDumpHistoryFile

func (o *EnvironmentRepository) SetDumpHistoryFile(v string)

SetDumpHistoryFile gets a reference to the given string and assigns it to the DumpHistoryFile field.

func (*EnvironmentRepository) SetEnvironmentId

func (o *EnvironmentRepository) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*EnvironmentRepository) SetFulltextInstalled

func (o *EnvironmentRepository) SetFulltextInstalled(v bool)

SetFulltextInstalled gets a reference to the given bool and assigns it to the FulltextInstalled field.

func (*EnvironmentRepository) SetId

func (o *EnvironmentRepository) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*EnvironmentRepository) SetInstallGroup

func (o *EnvironmentRepository) SetInstallGroup(v string)

SetInstallGroup gets a reference to the given string and assigns it to the InstallGroup field.

func (*EnvironmentRepository) SetInstallUser

func (o *EnvironmentRepository) SetInstallUser(v string)

SetInstallUser gets a reference to the given string and assigns it to the InstallUser field.

func (*EnvironmentRepository) SetInstallationHome

func (o *EnvironmentRepository) SetInstallationHome(v string)

SetInstallationHome gets a reference to the given string and assigns it to the InstallationHome field.

func (*EnvironmentRepository) SetInstallationPath

func (o *EnvironmentRepository) SetInstallationPath(v string)

SetInstallationPath gets a reference to the given string and assigns it to the InstallationPath field.

func (*EnvironmentRepository) SetInternalVersion

func (o *EnvironmentRepository) SetInternalVersion(v int64)

SetInternalVersion gets a reference to the given int64 and assigns it to the InternalVersion field.

func (*EnvironmentRepository) SetIsStaging

func (o *EnvironmentRepository) SetIsStaging(v bool)

SetIsStaging gets a reference to the given bool and assigns it to the IsStaging field.

func (*EnvironmentRepository) SetMssqlClusterInstancesName

func (o *EnvironmentRepository) SetMssqlClusterInstancesName(v []string)

SetMssqlClusterInstancesName gets a reference to the given []string and assigns it to the MssqlClusterInstancesName field.

func (*EnvironmentRepository) SetMssqlClusterInstancesVersion

func (o *EnvironmentRepository) SetMssqlClusterInstancesVersion(v []string)

SetMssqlClusterInstancesVersion gets a reference to the given []string and assigns it to the MssqlClusterInstancesVersion field.

func (*EnvironmentRepository) SetName

func (o *EnvironmentRepository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*EnvironmentRepository) SetOracleBase

func (o *EnvironmentRepository) SetOracleBase(v string)

SetOracleBase gets a reference to the given string and assigns it to the OracleBase field.

func (*EnvironmentRepository) SetOwner

func (o *EnvironmentRepository) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*EnvironmentRepository) SetPageSize

func (o *EnvironmentRepository) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*EnvironmentRepository) SetPorts

func (o *EnvironmentRepository) SetPorts(v []int64)

SetPorts gets a reference to the given []int64 and assigns it to the Ports field.

func (*EnvironmentRepository) SetRac

func (o *EnvironmentRepository) SetRac(v bool)

SetRac gets a reference to the given bool and assigns it to the Rac field.

func (*EnvironmentRepository) SetVersion

func (o *EnvironmentRepository) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (EnvironmentRepository) ToMap

func (o EnvironmentRepository) ToMap() (map[string]interface{}, error)

type EnvironmentRepositoryAllOf

type EnvironmentRepositoryAllOf struct {
	// The environment ID.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

EnvironmentRepositoryAllOf struct for EnvironmentRepositoryAllOf

func NewEnvironmentRepositoryAllOf

func NewEnvironmentRepositoryAllOf() *EnvironmentRepositoryAllOf

NewEnvironmentRepositoryAllOf instantiates a new EnvironmentRepositoryAllOf 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 NewEnvironmentRepositoryAllOfWithDefaults

func NewEnvironmentRepositoryAllOfWithDefaults() *EnvironmentRepositoryAllOf

NewEnvironmentRepositoryAllOfWithDefaults instantiates a new EnvironmentRepositoryAllOf 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 (*EnvironmentRepositoryAllOf) GetEnvironmentId

func (o *EnvironmentRepositoryAllOf) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*EnvironmentRepositoryAllOf) GetEnvironmentIdOk

func (o *EnvironmentRepositoryAllOf) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentRepositoryAllOf) HasEnvironmentId

func (o *EnvironmentRepositoryAllOf) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (EnvironmentRepositoryAllOf) MarshalJSON

func (o EnvironmentRepositoryAllOf) MarshalJSON() ([]byte, error)

func (*EnvironmentRepositoryAllOf) SetEnvironmentId

func (o *EnvironmentRepositoryAllOf) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (EnvironmentRepositoryAllOf) ToMap

func (o EnvironmentRepositoryAllOf) ToMap() (map[string]interface{}, error)

type EnvironmentUpdateParameters

type EnvironmentUpdateParameters struct {
	// The name of the environment.
	Name *string `json:"name,omitempty"`
	// Id of the connector environment which is used to connect to this source environment.
	StagingEnvironment *string `json:"staging_environment,omitempty"`
	// Address of the cluster. This property can be modified for Windows cluster only.
	ClusterAddress *string `json:"cluster_address,omitempty"`
	// Absolute path to cluster home directory. This parameter is for UNIX cluster environments.
	ClusterHome *string `json:"cluster_home,omitempty"`
	// username of the SAP ASE database.
	AseDbUsername *string `json:"ase_db_username,omitempty"`
	// password of the SAP ASE database.
	AseDbPassword *string `json:"ase_db_password,omitempty"`
	// The name or reference of the vault from which to read the ASE database credentials.
	AseDbVault *string `json:"ase_db_vault,omitempty"`
	// Delphix display name for the vault user
	AseDbVaultUsername *string `json:"ase_db_vault_username,omitempty"`
	// Vault engine name where the credential is stored.
	AseDbHashicorpVaultEngine *string `json:"ase_db_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	AseDbHashicorpVaultSecretPath *string `json:"ase_db_hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	AseDbHashicorpVaultUsernameKey *string `json:"ase_db_hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	AseDbHashicorpVaultSecretKey *string `json:"ase_db_hashicorp_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	AseDbCyberarkVaultQueryString *string `json:"ase_db_cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication for ASE DB discovery.
	AseDbUseKerberosAuthentication *bool `json:"ase_db_use_kerberos_authentication,omitempty"`
	// The environment description.
	Description *string `json:"description,omitempty"`
}

EnvironmentUpdateParameters struct for EnvironmentUpdateParameters

func NewEnvironmentUpdateParameters

func NewEnvironmentUpdateParameters() *EnvironmentUpdateParameters

NewEnvironmentUpdateParameters instantiates a new EnvironmentUpdateParameters 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 NewEnvironmentUpdateParametersWithDefaults

func NewEnvironmentUpdateParametersWithDefaults() *EnvironmentUpdateParameters

NewEnvironmentUpdateParametersWithDefaults instantiates a new EnvironmentUpdateParameters 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 (*EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryString

func (o *EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryString() string

GetAseDbCyberarkVaultQueryString returns the AseDbCyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryStringOk

func (o *EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryStringOk() (*string, bool)

GetAseDbCyberarkVaultQueryStringOk returns a tuple with the AseDbCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngine

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngine() string

GetAseDbHashicorpVaultEngine returns the AseDbHashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngineOk

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngineOk() (*string, bool)

GetAseDbHashicorpVaultEngineOk returns a tuple with the AseDbHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKey

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKey() string

GetAseDbHashicorpVaultSecretKey returns the AseDbHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKeyOk

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKeyOk() (*string, bool)

GetAseDbHashicorpVaultSecretKeyOk returns a tuple with the AseDbHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPath

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPath() string

GetAseDbHashicorpVaultSecretPath returns the AseDbHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPathOk

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPathOk() (*string, bool)

GetAseDbHashicorpVaultSecretPathOk returns a tuple with the AseDbHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKey

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKey() string

GetAseDbHashicorpVaultUsernameKey returns the AseDbHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKeyOk

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKeyOk() (*string, bool)

GetAseDbHashicorpVaultUsernameKeyOk returns a tuple with the AseDbHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbPassword

func (o *EnvironmentUpdateParameters) GetAseDbPassword() string

GetAseDbPassword returns the AseDbPassword field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbPasswordOk

func (o *EnvironmentUpdateParameters) GetAseDbPasswordOk() (*string, bool)

GetAseDbPasswordOk returns a tuple with the AseDbPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbUseKerberosAuthentication

func (o *EnvironmentUpdateParameters) GetAseDbUseKerberosAuthentication() bool

GetAseDbUseKerberosAuthentication returns the AseDbUseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbUseKerberosAuthenticationOk

func (o *EnvironmentUpdateParameters) GetAseDbUseKerberosAuthenticationOk() (*bool, bool)

GetAseDbUseKerberosAuthenticationOk returns a tuple with the AseDbUseKerberosAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbUsername

func (o *EnvironmentUpdateParameters) GetAseDbUsername() string

GetAseDbUsername returns the AseDbUsername field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbUsernameOk

func (o *EnvironmentUpdateParameters) GetAseDbUsernameOk() (*string, bool)

GetAseDbUsernameOk returns a tuple with the AseDbUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbVault

func (o *EnvironmentUpdateParameters) GetAseDbVault() string

GetAseDbVault returns the AseDbVault field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbVaultOk

func (o *EnvironmentUpdateParameters) GetAseDbVaultOk() (*string, bool)

GetAseDbVaultOk returns a tuple with the AseDbVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetAseDbVaultUsername

func (o *EnvironmentUpdateParameters) GetAseDbVaultUsername() string

GetAseDbVaultUsername returns the AseDbVaultUsername field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbVaultUsernameOk

func (o *EnvironmentUpdateParameters) GetAseDbVaultUsernameOk() (*string, bool)

GetAseDbVaultUsernameOk returns a tuple with the AseDbVaultUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetClusterAddress

func (o *EnvironmentUpdateParameters) GetClusterAddress() string

GetClusterAddress returns the ClusterAddress field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetClusterAddressOk

func (o *EnvironmentUpdateParameters) GetClusterAddressOk() (*string, bool)

GetClusterAddressOk returns a tuple with the ClusterAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetClusterHome

func (o *EnvironmentUpdateParameters) GetClusterHome() string

GetClusterHome returns the ClusterHome field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetClusterHomeOk

func (o *EnvironmentUpdateParameters) GetClusterHomeOk() (*string, bool)

GetClusterHomeOk returns a tuple with the ClusterHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) GetDescription

func (o *EnvironmentUpdateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetDescriptionOk

func (o *EnvironmentUpdateParameters) 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.

func (*EnvironmentUpdateParameters) GetName

func (o *EnvironmentUpdateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetNameOk

func (o *EnvironmentUpdateParameters) 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.

func (*EnvironmentUpdateParameters) GetStagingEnvironment

func (o *EnvironmentUpdateParameters) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetStagingEnvironmentOk

func (o *EnvironmentUpdateParameters) GetStagingEnvironmentOk() (*string, bool)

GetStagingEnvironmentOk returns a tuple with the StagingEnvironment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUpdateParameters) HasAseDbCyberarkVaultQueryString

func (o *EnvironmentUpdateParameters) HasAseDbCyberarkVaultQueryString() bool

HasAseDbCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultEngine

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultEngine() bool

HasAseDbHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretKey

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretKey() bool

HasAseDbHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretPath

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretPath() bool

HasAseDbHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultUsernameKey

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultUsernameKey() bool

HasAseDbHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbPassword

func (o *EnvironmentUpdateParameters) HasAseDbPassword() bool

HasAseDbPassword returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbUseKerberosAuthentication

func (o *EnvironmentUpdateParameters) HasAseDbUseKerberosAuthentication() bool

HasAseDbUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbUsername

func (o *EnvironmentUpdateParameters) HasAseDbUsername() bool

HasAseDbUsername returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbVault

func (o *EnvironmentUpdateParameters) HasAseDbVault() bool

HasAseDbVault returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbVaultUsername

func (o *EnvironmentUpdateParameters) HasAseDbVaultUsername() bool

HasAseDbVaultUsername returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasClusterAddress

func (o *EnvironmentUpdateParameters) HasClusterAddress() bool

HasClusterAddress returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasClusterHome

func (o *EnvironmentUpdateParameters) HasClusterHome() bool

HasClusterHome returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasDescription

func (o *EnvironmentUpdateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasName

func (o *EnvironmentUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasStagingEnvironment

func (o *EnvironmentUpdateParameters) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (EnvironmentUpdateParameters) MarshalJSON

func (o EnvironmentUpdateParameters) MarshalJSON() ([]byte, error)

func (*EnvironmentUpdateParameters) SetAseDbCyberarkVaultQueryString

func (o *EnvironmentUpdateParameters) SetAseDbCyberarkVaultQueryString(v string)

SetAseDbCyberarkVaultQueryString gets a reference to the given string and assigns it to the AseDbCyberarkVaultQueryString field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultEngine

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultEngine(v string)

SetAseDbHashicorpVaultEngine gets a reference to the given string and assigns it to the AseDbHashicorpVaultEngine field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretKey

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretKey(v string)

SetAseDbHashicorpVaultSecretKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretKey field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretPath

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretPath(v string)

SetAseDbHashicorpVaultSecretPath gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretPath field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultUsernameKey

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultUsernameKey(v string)

SetAseDbHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultUsernameKey field.

func (*EnvironmentUpdateParameters) SetAseDbPassword

func (o *EnvironmentUpdateParameters) SetAseDbPassword(v string)

SetAseDbPassword gets a reference to the given string and assigns it to the AseDbPassword field.

func (*EnvironmentUpdateParameters) SetAseDbUseKerberosAuthentication

func (o *EnvironmentUpdateParameters) SetAseDbUseKerberosAuthentication(v bool)

SetAseDbUseKerberosAuthentication gets a reference to the given bool and assigns it to the AseDbUseKerberosAuthentication field.

func (*EnvironmentUpdateParameters) SetAseDbUsername

func (o *EnvironmentUpdateParameters) SetAseDbUsername(v string)

SetAseDbUsername gets a reference to the given string and assigns it to the AseDbUsername field.

func (*EnvironmentUpdateParameters) SetAseDbVault

func (o *EnvironmentUpdateParameters) SetAseDbVault(v string)

SetAseDbVault gets a reference to the given string and assigns it to the AseDbVault field.

func (*EnvironmentUpdateParameters) SetAseDbVaultUsername

func (o *EnvironmentUpdateParameters) SetAseDbVaultUsername(v string)

SetAseDbVaultUsername gets a reference to the given string and assigns it to the AseDbVaultUsername field.

func (*EnvironmentUpdateParameters) SetClusterAddress

func (o *EnvironmentUpdateParameters) SetClusterAddress(v string)

SetClusterAddress gets a reference to the given string and assigns it to the ClusterAddress field.

func (*EnvironmentUpdateParameters) SetClusterHome

func (o *EnvironmentUpdateParameters) SetClusterHome(v string)

SetClusterHome gets a reference to the given string and assigns it to the ClusterHome field.

func (*EnvironmentUpdateParameters) SetDescription

func (o *EnvironmentUpdateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*EnvironmentUpdateParameters) SetName

func (o *EnvironmentUpdateParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*EnvironmentUpdateParameters) SetStagingEnvironment

func (o *EnvironmentUpdateParameters) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (EnvironmentUpdateParameters) ToMap

func (o EnvironmentUpdateParameters) ToMap() (map[string]interface{}, error)

type EnvironmentUser

type EnvironmentUser struct {
	// Environment user reference
	UserRef *string `json:"user_ref,omitempty"`
	// Username of environment user
	Username *string `json:"username,omitempty"`
	// This indicates if this user is primary or not
	PrimaryUser *bool `json:"primary_user,omitempty"`
	// Authentication type of this user. PasswordCredential indicates username and password are used, SystemKeyCredential indicates public key based security credential, KeyPairCredential indicates public key based security credential consisting of a user specified key pair, KerberosCredential indicates Kerberos authentication, CyberArkVaultCredential indicates CyberArk Vault is used and HashiCorpVaultCredential indicates that Hashicorp vault is used for authentication
	AuthType *string `json:"auth_type,omitempty"`
}

EnvironmentUser struct for EnvironmentUser

func NewEnvironmentUser

func NewEnvironmentUser() *EnvironmentUser

NewEnvironmentUser instantiates a new EnvironmentUser 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 NewEnvironmentUserWithDefaults

func NewEnvironmentUserWithDefaults() *EnvironmentUser

NewEnvironmentUserWithDefaults instantiates a new EnvironmentUser 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 (*EnvironmentUser) GetAuthType

func (o *EnvironmentUser) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*EnvironmentUser) GetAuthTypeOk

func (o *EnvironmentUser) GetAuthTypeOk() (*string, bool)

GetAuthTypeOk returns a tuple with the AuthType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUser) GetPrimaryUser

func (o *EnvironmentUser) GetPrimaryUser() bool

GetPrimaryUser returns the PrimaryUser field value if set, zero value otherwise.

func (*EnvironmentUser) GetPrimaryUserOk

func (o *EnvironmentUser) GetPrimaryUserOk() (*bool, bool)

GetPrimaryUserOk returns a tuple with the PrimaryUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUser) GetUserRef

func (o *EnvironmentUser) GetUserRef() string

GetUserRef returns the UserRef field value if set, zero value otherwise.

func (*EnvironmentUser) GetUserRefOk

func (o *EnvironmentUser) GetUserRefOk() (*string, bool)

GetUserRefOk returns a tuple with the UserRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUser) GetUsername

func (o *EnvironmentUser) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*EnvironmentUser) GetUsernameOk

func (o *EnvironmentUser) 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.

func (*EnvironmentUser) HasAuthType

func (o *EnvironmentUser) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*EnvironmentUser) HasPrimaryUser

func (o *EnvironmentUser) HasPrimaryUser() bool

HasPrimaryUser returns a boolean if a field has been set.

func (*EnvironmentUser) HasUserRef

func (o *EnvironmentUser) HasUserRef() bool

HasUserRef returns a boolean if a field has been set.

func (*EnvironmentUser) HasUsername

func (o *EnvironmentUser) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EnvironmentUser) MarshalJSON

func (o EnvironmentUser) MarshalJSON() ([]byte, error)

func (*EnvironmentUser) SetAuthType

func (o *EnvironmentUser) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*EnvironmentUser) SetPrimaryUser

func (o *EnvironmentUser) SetPrimaryUser(v bool)

SetPrimaryUser gets a reference to the given bool and assigns it to the PrimaryUser field.

func (*EnvironmentUser) SetUserRef

func (o *EnvironmentUser) SetUserRef(v string)

SetUserRef gets a reference to the given string and assigns it to the UserRef field.

func (*EnvironmentUser) SetUsername

func (o *EnvironmentUser) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (EnvironmentUser) ToMap

func (o EnvironmentUser) ToMap() (map[string]interface{}, error)

type EnvironmentUserParams

type EnvironmentUserParams struct {
	// Username of the OS.
	Username *string `json:"username,omitempty"`
	// Password of the OS.
	Password *string `json:"password,omitempty"`
	// The name or reference of the vault from which to read the host credentials.
	Vault *string `json:"vault,omitempty"`
	// Delphix display name for the vault user
	VaultUsername *string `json:"vault_username,omitempty"`
	// Vault engine name where the credential is stored.
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication.
	UseKerberosAuthentication *bool `json:"use_kerberos_authentication,omitempty"`
	// Whether to use public key authentication.
	UseEnginePublicKey *bool `json:"use_engine_public_key,omitempty"`
}

EnvironmentUserParams struct for EnvironmentUserParams

func NewEnvironmentUserParams

func NewEnvironmentUserParams() *EnvironmentUserParams

NewEnvironmentUserParams instantiates a new EnvironmentUserParams 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 NewEnvironmentUserParamsWithDefaults

func NewEnvironmentUserParamsWithDefaults() *EnvironmentUserParams

NewEnvironmentUserParamsWithDefaults instantiates a new EnvironmentUserParams 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 (*EnvironmentUserParams) GetCyberarkVaultQueryString

func (o *EnvironmentUserParams) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetCyberarkVaultQueryStringOk

func (o *EnvironmentUserParams) GetCyberarkVaultQueryStringOk() (*string, bool)

GetCyberarkVaultQueryStringOk returns a tuple with the CyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetHashicorpVaultEngine

func (o *EnvironmentUserParams) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultEngineOk

func (o *EnvironmentUserParams) GetHashicorpVaultEngineOk() (*string, bool)

GetHashicorpVaultEngineOk returns a tuple with the HashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetHashicorpVaultSecretKey

func (o *EnvironmentUserParams) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultSecretKeyOk

func (o *EnvironmentUserParams) GetHashicorpVaultSecretKeyOk() (*string, bool)

GetHashicorpVaultSecretKeyOk returns a tuple with the HashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetHashicorpVaultSecretPath

func (o *EnvironmentUserParams) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultSecretPathOk

func (o *EnvironmentUserParams) GetHashicorpVaultSecretPathOk() (*string, bool)

GetHashicorpVaultSecretPathOk returns a tuple with the HashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetHashicorpVaultUsernameKey

func (o *EnvironmentUserParams) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultUsernameKeyOk

func (o *EnvironmentUserParams) GetHashicorpVaultUsernameKeyOk() (*string, bool)

GetHashicorpVaultUsernameKeyOk returns a tuple with the HashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetPassword

func (o *EnvironmentUserParams) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetPasswordOk

func (o *EnvironmentUserParams) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetUseEnginePublicKey

func (o *EnvironmentUserParams) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetUseEnginePublicKeyOk

func (o *EnvironmentUserParams) GetUseEnginePublicKeyOk() (*bool, bool)

GetUseEnginePublicKeyOk returns a tuple with the UseEnginePublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetUseKerberosAuthentication

func (o *EnvironmentUserParams) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetUseKerberosAuthenticationOk

func (o *EnvironmentUserParams) GetUseKerberosAuthenticationOk() (*bool, bool)

GetUseKerberosAuthenticationOk returns a tuple with the UseKerberosAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetUsername

func (o *EnvironmentUserParams) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetUsernameOk

func (o *EnvironmentUserParams) 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.

func (*EnvironmentUserParams) GetVault

func (o *EnvironmentUserParams) GetVault() string

GetVault returns the Vault field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetVaultOk

func (o *EnvironmentUserParams) GetVaultOk() (*string, bool)

GetVaultOk returns a tuple with the Vault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) GetVaultUsername

func (o *EnvironmentUserParams) GetVaultUsername() string

GetVaultUsername returns the VaultUsername field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetVaultUsernameOk

func (o *EnvironmentUserParams) GetVaultUsernameOk() (*string, bool)

GetVaultUsernameOk returns a tuple with the VaultUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnvironmentUserParams) HasCyberarkVaultQueryString

func (o *EnvironmentUserParams) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultEngine

func (o *EnvironmentUserParams) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultSecretKey

func (o *EnvironmentUserParams) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultSecretPath

func (o *EnvironmentUserParams) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultUsernameKey

func (o *EnvironmentUserParams) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasPassword

func (o *EnvironmentUserParams) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUseEnginePublicKey

func (o *EnvironmentUserParams) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUseKerberosAuthentication

func (o *EnvironmentUserParams) HasUseKerberosAuthentication() bool

HasUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUsername

func (o *EnvironmentUserParams) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasVault

func (o *EnvironmentUserParams) HasVault() bool

HasVault returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasVaultUsername

func (o *EnvironmentUserParams) HasVaultUsername() bool

HasVaultUsername returns a boolean if a field has been set.

func (EnvironmentUserParams) MarshalJSON

func (o EnvironmentUserParams) MarshalJSON() ([]byte, error)

func (*EnvironmentUserParams) SetCyberarkVaultQueryString

func (o *EnvironmentUserParams) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*EnvironmentUserParams) SetHashicorpVaultEngine

func (o *EnvironmentUserParams) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*EnvironmentUserParams) SetHashicorpVaultSecretKey

func (o *EnvironmentUserParams) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*EnvironmentUserParams) SetHashicorpVaultSecretPath

func (o *EnvironmentUserParams) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*EnvironmentUserParams) SetHashicorpVaultUsernameKey

func (o *EnvironmentUserParams) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*EnvironmentUserParams) SetPassword

func (o *EnvironmentUserParams) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*EnvironmentUserParams) SetUseEnginePublicKey

func (o *EnvironmentUserParams) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*EnvironmentUserParams) SetUseKerberosAuthentication

func (o *EnvironmentUserParams) SetUseKerberosAuthentication(v bool)

SetUseKerberosAuthentication gets a reference to the given bool and assigns it to the UseKerberosAuthentication field.

func (*EnvironmentUserParams) SetUsername

func (o *EnvironmentUserParams) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*EnvironmentUserParams) SetVault

func (o *EnvironmentUserParams) SetVault(v string)

SetVault gets a reference to the given string and assigns it to the Vault field.

func (*EnvironmentUserParams) SetVaultUsername

func (o *EnvironmentUserParams) SetVaultUsername(v string)

SetVaultUsername gets a reference to the given string and assigns it to the VaultUsername field.

func (EnvironmentUserParams) ToMap

func (o EnvironmentUserParams) ToMap() (map[string]interface{}, error)

type EnvironmentsApiService

type EnvironmentsApiService service

EnvironmentsApiService EnvironmentsApi service

func (*EnvironmentsApiService) CompatibleRepositoriesByLocation

func (a *EnvironmentsApiService) CompatibleRepositoriesByLocation(ctx context.Context) ApiCompatibleRepositoriesByLocationRequest

CompatibleRepositoriesByLocation Get compatible repositories corresponding to the location.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompatibleRepositoriesByLocationRequest

func (*EnvironmentsApiService) CompatibleRepositoriesByLocationExecute

Execute executes the request

@return LocationCompatibleEnvironmentsResponse

func (*EnvironmentsApiService) CompatibleRepositoriesBySnapshot

func (a *EnvironmentsApiService) CompatibleRepositoriesBySnapshot(ctx context.Context) ApiCompatibleRepositoriesBySnapshotRequest

CompatibleRepositoriesBySnapshot Get compatible repositories corresponding to the snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompatibleRepositoriesBySnapshotRequest

func (*EnvironmentsApiService) CompatibleRepositoriesBySnapshotExecute

Execute executes the request

@return SnapshotCompatibleEnvironmentsResponse

func (*EnvironmentsApiService) CompatibleRepositoriesByTimestamp

func (a *EnvironmentsApiService) CompatibleRepositoriesByTimestamp(ctx context.Context) ApiCompatibleRepositoriesByTimestampRequest

CompatibleRepositoriesByTimestamp Get compatible repositories corresponding to the timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompatibleRepositoriesByTimestampRequest

func (*EnvironmentsApiService) CompatibleRepositoriesByTimestampExecute

Execute executes the request

@return TimestampCompatibleEnvironmentsResponse

func (*EnvironmentsApiService) CompatibleRepositoriesFromBookmark

func (a *EnvironmentsApiService) CompatibleRepositoriesFromBookmark(ctx context.Context) ApiCompatibleRepositoriesFromBookmarkRequest

CompatibleRepositoriesFromBookmark Get compatible repositories corresponding to the bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompatibleRepositoriesFromBookmarkRequest

func (*EnvironmentsApiService) CompatibleRepositoriesFromBookmarkExecute

Execute executes the request

@return BookmarkCompatibleEnvironmentsResponse

func (*EnvironmentsApiService) CreateEnvironment

CreateEnvironment Create an environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEnvironmentRequest

func (*EnvironmentsApiService) CreateEnvironmentExecute

Execute executes the request

@return CreateEnvironmentResponse

func (*EnvironmentsApiService) CreateEnvironmentTags

func (a *EnvironmentsApiService) CreateEnvironmentTags(ctx context.Context, environmentId string) ApiCreateEnvironmentTagsRequest

CreateEnvironmentTags Create tags for an Environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiCreateEnvironmentTagsRequest

func (*EnvironmentsApiService) CreateEnvironmentTagsExecute

func (a *EnvironmentsApiService) CreateEnvironmentTagsExecute(r ApiCreateEnvironmentTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*EnvironmentsApiService) CreateEnvironmentUser

func (a *EnvironmentsApiService) CreateEnvironmentUser(ctx context.Context, environmentId string) ApiCreateEnvironmentUserRequest

CreateEnvironmentUser Create environment user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiCreateEnvironmentUserRequest

func (*EnvironmentsApiService) CreateEnvironmentUserExecute

Execute executes the request

@return CreateEnvironmentUserResponse

func (*EnvironmentsApiService) CreateHost

func (a *EnvironmentsApiService) CreateHost(ctx context.Context, environmentId string) ApiCreateHostRequest

CreateHost Create a new Host.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiCreateHostRequest

func (*EnvironmentsApiService) CreateHostExecute

Execute executes the request

@return CreateHostResponse

func (*EnvironmentsApiService) DeleteEnvironment

func (a *EnvironmentsApiService) DeleteEnvironment(ctx context.Context, environmentId string) ApiDeleteEnvironmentRequest

DeleteEnvironment Delete an environment by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiDeleteEnvironmentRequest

func (*EnvironmentsApiService) DeleteEnvironmentExecute

Execute executes the request

@return DeleteEnvironmentResponse

func (*EnvironmentsApiService) DeleteEnvironmentTags

func (a *EnvironmentsApiService) DeleteEnvironmentTags(ctx context.Context, environmentId string) ApiDeleteEnvironmentTagsRequest

DeleteEnvironmentTags Delete tags for an Environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiDeleteEnvironmentTagsRequest

func (*EnvironmentsApiService) DeleteEnvironmentTagsExecute

func (a *EnvironmentsApiService) DeleteEnvironmentTagsExecute(r ApiDeleteEnvironmentTagsRequest) (*http.Response, error)

Execute executes the request

func (*EnvironmentsApiService) DeleteEnvironmentUser

func (a *EnvironmentsApiService) DeleteEnvironmentUser(ctx context.Context, environmentId string, userRef string) ApiDeleteEnvironmentUserRequest

DeleteEnvironmentUser Delete environment user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param userRef Environment user reference.
@return ApiDeleteEnvironmentUserRequest

func (*EnvironmentsApiService) DeleteEnvironmentUserExecute

Execute executes the request

@return DeleteEnvironmentUserResponse

func (*EnvironmentsApiService) DeleteHost

func (a *EnvironmentsApiService) DeleteHost(ctx context.Context, environmentId string, hostId string) ApiDeleteHostRequest

DeleteHost Delete a Host.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param hostId The ID of the host.
@return ApiDeleteHostRequest

func (*EnvironmentsApiService) DeleteHostExecute

Execute executes the request

@return DeleteHostResponse

func (*EnvironmentsApiService) DisableEnvironment

func (a *EnvironmentsApiService) DisableEnvironment(ctx context.Context, environmentId string) ApiDisableEnvironmentRequest

DisableEnvironment Disable environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiDisableEnvironmentRequest

func (*EnvironmentsApiService) DisableEnvironmentExecute

Execute executes the request

@return DisableEnvironmentResponse

func (*EnvironmentsApiService) EnableEnvironment

func (a *EnvironmentsApiService) EnableEnvironment(ctx context.Context, environmentId string) ApiEnableEnvironmentRequest

EnableEnvironment Enable a disabled environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiEnableEnvironmentRequest

func (*EnvironmentsApiService) EnableEnvironmentExecute

Execute executes the request

@return EnableEnvironmentResponse

func (*EnvironmentsApiService) GetEnvironmentById

func (a *EnvironmentsApiService) GetEnvironmentById(ctx context.Context, environmentId string) ApiGetEnvironmentByIdRequest

GetEnvironmentById Returns an environment by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiGetEnvironmentByIdRequest

func (*EnvironmentsApiService) GetEnvironmentByIdExecute

func (a *EnvironmentsApiService) GetEnvironmentByIdExecute(r ApiGetEnvironmentByIdRequest) (*Environment, *http.Response, error)

Execute executes the request

@return Environment

func (*EnvironmentsApiService) GetEnvironments

GetEnvironments List all environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEnvironmentsRequest

func (*EnvironmentsApiService) GetEnvironmentsExecute

Execute executes the request

@return ListEnvironmentsResponse

func (*EnvironmentsApiService) GetTagsEnvironment

func (a *EnvironmentsApiService) GetTagsEnvironment(ctx context.Context, environmentId string) ApiGetTagsEnvironmentRequest

GetTagsEnvironment Get tags for an Environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiGetTagsEnvironmentRequest

func (*EnvironmentsApiService) GetTagsEnvironmentExecute

Execute executes the request

@return TagsResponse

func (*EnvironmentsApiService) ListEnvironmentUsers

func (a *EnvironmentsApiService) ListEnvironmentUsers(ctx context.Context, environmentId string) ApiListEnvironmentUsersRequest

ListEnvironmentUsers List environment users.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiListEnvironmentUsersRequest

func (*EnvironmentsApiService) ListEnvironmentUsersExecute

Execute executes the request

@return ListEnvironmentUsers

func (*EnvironmentsApiService) PrimaryEnvironmentUser

func (a *EnvironmentsApiService) PrimaryEnvironmentUser(ctx context.Context, environmentId string, userRef string) ApiPrimaryEnvironmentUserRequest

PrimaryEnvironmentUser Set primary environment user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param userRef Environment user reference.
@return ApiPrimaryEnvironmentUserRequest

func (*EnvironmentsApiService) PrimaryEnvironmentUserExecute

Execute executes the request

@return PrimaryEnvironmentUserResponse

func (*EnvironmentsApiService) RefreshEnvironment

func (a *EnvironmentsApiService) RefreshEnvironment(ctx context.Context, environmentId string) ApiRefreshEnvironmentRequest

RefreshEnvironment Refresh environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiRefreshEnvironmentRequest

func (*EnvironmentsApiService) RefreshEnvironmentExecute

Execute executes the request

@return RefreshEnvironmentResponse

func (*EnvironmentsApiService) SearchEnvironments

SearchEnvironments Search for environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchEnvironmentsRequest

func (*EnvironmentsApiService) SearchEnvironmentsExecute

Execute executes the request

@return SearchEnvironmentsResponse

func (*EnvironmentsApiService) UpdateEnvironment

func (a *EnvironmentsApiService) UpdateEnvironment(ctx context.Context, environmentId string) ApiUpdateEnvironmentRequest

UpdateEnvironment Update an environment by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@return ApiUpdateEnvironmentRequest

func (*EnvironmentsApiService) UpdateEnvironmentExecute

Execute executes the request

@return UpdateEnvironmentResponse

func (*EnvironmentsApiService) UpdateEnvironmentUser

func (a *EnvironmentsApiService) UpdateEnvironmentUser(ctx context.Context, environmentId string, userRef string) ApiUpdateEnvironmentUserRequest

UpdateEnvironmentUser Update environment user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param userRef Environment user reference.
@return ApiUpdateEnvironmentUserRequest

func (*EnvironmentsApiService) UpdateEnvironmentUserExecute

Execute executes the request

@return UpdateEnvironmentUserResponse

func (*EnvironmentsApiService) UpdateHost

func (a *EnvironmentsApiService) UpdateHost(ctx context.Context, environmentId string, hostId string) ApiUpdateHostRequest

UpdateHost Update a Host.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param hostId The ID of the host.
@return ApiUpdateHostRequest

func (*EnvironmentsApiService) UpdateHostExecute

Execute executes the request

@return UpdateHostResponse

func (*EnvironmentsApiService) UpdateRepository

func (a *EnvironmentsApiService) UpdateRepository(ctx context.Context, environmentId string, repositoryId string) ApiUpdateRepositoryRequest

UpdateRepository Update a Repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The ID of the environment.
@param repositoryId The ID of the repository.
@return ApiUpdateRepositoryRequest

func (*EnvironmentsApiService) UpdateRepositoryExecute

Execute executes the request

@return UpdateRepositoryResponse

type Error

type Error struct {
	// Message providing more detail about the error that occurred, if available.
	Message *string `json:"message,omitempty"`
	// Name of the object affected by the error.
	ObjectName *string `json:"object_name,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetMessage

func (o *Error) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Error) GetMessageOk

func (o *Error) 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.

func (*Error) GetObjectName

func (o *Error) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*Error) GetObjectNameOk

func (o *Error) GetObjectNameOk() (*string, bool)

GetObjectNameOk returns a tuple with the ObjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Error) HasObjectName

func (o *Error) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Error) SetObjectName

func (o *Error) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

type ErrorResponse

type ErrorResponse struct {
	// Error code for any failure
	Error *string `json:"error,omitempty"`
	// Error description for any failure
	ErrorDescription *string `json:"error_description,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) GetError

func (o *ErrorResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorDescription

func (o *ErrorResponse) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorDescriptionOk

func (o *ErrorResponse) 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.

func (*ErrorResponse) GetErrorOk

func (o *ErrorResponse) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorResponse) HasError

func (o *ErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorResponse) HasErrorDescription

func (o *ErrorResponse) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

func (o ErrorResponse) MarshalJSON() ([]byte, error)

func (*ErrorResponse) SetError

func (o *ErrorResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorResponse) SetErrorDescription

func (o *ErrorResponse) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (ErrorResponse) ToMap

func (o ErrorResponse) ToMap() (map[string]interface{}, error)

type ExecuteMaskingJobParameters

type ExecuteMaskingJobParameters struct {
	// The ID of the Engine to execute this MaskingJob on.
	EngineId string `json:"engine_id"`
}

ExecuteMaskingJobParameters Parameters to execute a MaskingJob.

func NewExecuteMaskingJobParameters

func NewExecuteMaskingJobParameters(engineId string) *ExecuteMaskingJobParameters

NewExecuteMaskingJobParameters instantiates a new ExecuteMaskingJobParameters 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 NewExecuteMaskingJobParametersWithDefaults

func NewExecuteMaskingJobParametersWithDefaults() *ExecuteMaskingJobParameters

NewExecuteMaskingJobParametersWithDefaults instantiates a new ExecuteMaskingJobParameters 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 (*ExecuteMaskingJobParameters) GetEngineId

func (o *ExecuteMaskingJobParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*ExecuteMaskingJobParameters) GetEngineIdOk

func (o *ExecuteMaskingJobParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (ExecuteMaskingJobParameters) MarshalJSON

func (o ExecuteMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*ExecuteMaskingJobParameters) SetEngineId

func (o *ExecuteMaskingJobParameters) SetEngineId(v string)

SetEngineId sets field value

func (ExecuteMaskingJobParameters) ToMap

func (o ExecuteMaskingJobParameters) ToMap() (map[string]interface{}, error)

type ExecuteMaskingJobResponse

type ExecuteMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

ExecuteMaskingJobResponse struct for ExecuteMaskingJobResponse

func NewExecuteMaskingJobResponse

func NewExecuteMaskingJobResponse() *ExecuteMaskingJobResponse

NewExecuteMaskingJobResponse instantiates a new ExecuteMaskingJobResponse 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 NewExecuteMaskingJobResponseWithDefaults

func NewExecuteMaskingJobResponseWithDefaults() *ExecuteMaskingJobResponse

NewExecuteMaskingJobResponseWithDefaults instantiates a new ExecuteMaskingJobResponse 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 (*ExecuteMaskingJobResponse) GetJob

func (o *ExecuteMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*ExecuteMaskingJobResponse) GetJobOk

func (o *ExecuteMaskingJobResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecuteMaskingJobResponse) HasJob

func (o *ExecuteMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (ExecuteMaskingJobResponse) MarshalJSON

func (o ExecuteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*ExecuteMaskingJobResponse) SetJob

func (o *ExecuteMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (ExecuteMaskingJobResponse) ToMap

func (o ExecuteMaskingJobResponse) ToMap() (map[string]interface{}, error)

type Execution

type Execution struct {
	// The Execution entity ID.
	Id *string `json:"id,omitempty"`
	// The ID of the engine where this execution ran.
	EngineId             *string `json:"engine_id,omitempty"`
	HyperscaleInstanceId *string `json:"hyperscale_instance_id,omitempty"`
	// The name of the engine where this execution ran.
	EngineName *string `json:"engine_name,omitempty"`
	// The ID of the masking job that is being executed.
	MaskingJobId *string `json:"masking_job_id,omitempty"`
	// The name of the masking job that is being executed.
	MaskingJobName *string `json:"masking_job_name,omitempty"`
	// The ID of the source connector. This field is only used for multi-tenant jobs that are also on-the-fly.
	SourceConnectorId *string `json:"source_connector_id,omitempty"`
	// The ID of the target connector. This field is only used for multi-tenant jobs.
	TargetConnectorId *string `json:"target_connector_id,omitempty"`
	// The status of the execution regarding its completion.
	Status *string `json:"status,omitempty"`
	// The number of rows masked or profiled so far by this execution. This is not applicable for JSON file type.
	RowsMasked *int64 `json:"rows_masked,omitempty"`
	// The total number of rows that this execution should mask. This value is set to -1 while the total row count is being calculated. This is not applicable for JSON file type.
	RowsTotal *int64 `json:"rows_total,omitempty"`
	// The number of bytes masked so far by this execution. This is only applicable for JSON file type.
	BytesProcessed *int64 `json:"bytes_processed,omitempty"`
	// The total number of bytes that this execution should mask. This value is set to -1 while the total byte count is being calculated. This is only applicable for JSON file type.
	BytesTotal *int64 `json:"bytes_total,omitempty"`
	// The date and time that this execution was started.
	StartTime *time.Time `json:"start_time,omitempty"`
	// The date and time that this execution was submitted.
	SubmitTime *time.Time `json:"submit_time,omitempty"`
	// The date and time that this execution completed.
	EndTime *time.Time `json:"end_time,omitempty"`
	// The progression of steps or events performed by this execution. Only available for executions on masking engines that are version 6.0.14.0 and higher.
	TaskEvents           []TaskEvent           `json:"task_events,omitempty"`
	HyperscaleTaskEvents []HyperscaleTaskEvent `json:"hyperscale_task_events,omitempty"`
	// Progress of the task (value between 0 and 1, Hyperscale executions only)
	Progress *float32 `json:"progress,omitempty"`
}

Execution The execution of a masking or profile job.

func NewExecution

func NewExecution() *Execution

NewExecution instantiates a new Execution 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 NewExecutionWithDefaults

func NewExecutionWithDefaults() *Execution

NewExecutionWithDefaults instantiates a new Execution 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 (*Execution) GetBytesProcessed

func (o *Execution) GetBytesProcessed() int64

GetBytesProcessed returns the BytesProcessed field value if set, zero value otherwise.

func (*Execution) GetBytesProcessedOk

func (o *Execution) GetBytesProcessedOk() (*int64, bool)

GetBytesProcessedOk returns a tuple with the BytesProcessed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetBytesTotal

func (o *Execution) GetBytesTotal() int64

GetBytesTotal returns the BytesTotal field value if set, zero value otherwise.

func (*Execution) GetBytesTotalOk

func (o *Execution) GetBytesTotalOk() (*int64, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetEndTime

func (o *Execution) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*Execution) GetEndTimeOk

func (o *Execution) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetEngineId

func (o *Execution) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Execution) GetEngineIdOk

func (o *Execution) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetEngineName

func (o *Execution) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*Execution) GetEngineNameOk

func (o *Execution) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetHyperscaleInstanceId

func (o *Execution) GetHyperscaleInstanceId() string

GetHyperscaleInstanceId returns the HyperscaleInstanceId field value if set, zero value otherwise.

func (*Execution) GetHyperscaleInstanceIdOk

func (o *Execution) GetHyperscaleInstanceIdOk() (*string, bool)

GetHyperscaleInstanceIdOk returns a tuple with the HyperscaleInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetHyperscaleTaskEvents

func (o *Execution) GetHyperscaleTaskEvents() []HyperscaleTaskEvent

GetHyperscaleTaskEvents returns the HyperscaleTaskEvents field value if set, zero value otherwise.

func (*Execution) GetHyperscaleTaskEventsOk

func (o *Execution) GetHyperscaleTaskEventsOk() ([]HyperscaleTaskEvent, bool)

GetHyperscaleTaskEventsOk returns a tuple with the HyperscaleTaskEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetId

func (o *Execution) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Execution) GetIdOk

func (o *Execution) 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.

func (*Execution) GetMaskingJobId

func (o *Execution) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*Execution) GetMaskingJobIdOk

func (o *Execution) GetMaskingJobIdOk() (*string, bool)

GetMaskingJobIdOk returns a tuple with the MaskingJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetMaskingJobName

func (o *Execution) GetMaskingJobName() string

GetMaskingJobName returns the MaskingJobName field value if set, zero value otherwise.

func (*Execution) GetMaskingJobNameOk

func (o *Execution) GetMaskingJobNameOk() (*string, bool)

GetMaskingJobNameOk returns a tuple with the MaskingJobName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetProgress

func (o *Execution) GetProgress() float32

GetProgress returns the Progress field value if set, zero value otherwise.

func (*Execution) GetProgressOk

func (o *Execution) GetProgressOk() (*float32, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetRowsMasked

func (o *Execution) GetRowsMasked() int64

GetRowsMasked returns the RowsMasked field value if set, zero value otherwise.

func (*Execution) GetRowsMaskedOk

func (o *Execution) GetRowsMaskedOk() (*int64, bool)

GetRowsMaskedOk returns a tuple with the RowsMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetRowsTotal

func (o *Execution) GetRowsTotal() int64

GetRowsTotal returns the RowsTotal field value if set, zero value otherwise.

func (*Execution) GetRowsTotalOk

func (o *Execution) GetRowsTotalOk() (*int64, bool)

GetRowsTotalOk returns a tuple with the RowsTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetSourceConnectorId

func (o *Execution) GetSourceConnectorId() string

GetSourceConnectorId returns the SourceConnectorId field value if set, zero value otherwise.

func (*Execution) GetSourceConnectorIdOk

func (o *Execution) GetSourceConnectorIdOk() (*string, bool)

GetSourceConnectorIdOk returns a tuple with the SourceConnectorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetStartTime

func (o *Execution) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*Execution) GetStartTimeOk

func (o *Execution) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetStatus

func (o *Execution) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Execution) GetStatusOk

func (o *Execution) 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.

func (*Execution) GetSubmitTime

func (o *Execution) GetSubmitTime() time.Time

GetSubmitTime returns the SubmitTime field value if set, zero value otherwise.

func (*Execution) GetSubmitTimeOk

func (o *Execution) GetSubmitTimeOk() (*time.Time, bool)

GetSubmitTimeOk returns a tuple with the SubmitTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetTargetConnectorId

func (o *Execution) GetTargetConnectorId() string

GetTargetConnectorId returns the TargetConnectorId field value if set, zero value otherwise.

func (*Execution) GetTargetConnectorIdOk

func (o *Execution) GetTargetConnectorIdOk() (*string, bool)

GetTargetConnectorIdOk returns a tuple with the TargetConnectorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) GetTaskEvents

func (o *Execution) GetTaskEvents() []TaskEvent

GetTaskEvents returns the TaskEvents field value if set, zero value otherwise.

func (*Execution) GetTaskEventsOk

func (o *Execution) GetTaskEventsOk() ([]TaskEvent, bool)

GetTaskEventsOk returns a tuple with the TaskEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Execution) HasBytesProcessed

func (o *Execution) HasBytesProcessed() bool

HasBytesProcessed returns a boolean if a field has been set.

func (*Execution) HasBytesTotal

func (o *Execution) HasBytesTotal() bool

HasBytesTotal returns a boolean if a field has been set.

func (*Execution) HasEndTime

func (o *Execution) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*Execution) HasEngineId

func (o *Execution) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Execution) HasEngineName

func (o *Execution) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*Execution) HasHyperscaleInstanceId

func (o *Execution) HasHyperscaleInstanceId() bool

HasHyperscaleInstanceId returns a boolean if a field has been set.

func (*Execution) HasHyperscaleTaskEvents

func (o *Execution) HasHyperscaleTaskEvents() bool

HasHyperscaleTaskEvents returns a boolean if a field has been set.

func (*Execution) HasId

func (o *Execution) HasId() bool

HasId returns a boolean if a field has been set.

func (*Execution) HasMaskingJobId

func (o *Execution) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (*Execution) HasMaskingJobName

func (o *Execution) HasMaskingJobName() bool

HasMaskingJobName returns a boolean if a field has been set.

func (*Execution) HasProgress

func (o *Execution) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (*Execution) HasRowsMasked

func (o *Execution) HasRowsMasked() bool

HasRowsMasked returns a boolean if a field has been set.

func (*Execution) HasRowsTotal

func (o *Execution) HasRowsTotal() bool

HasRowsTotal returns a boolean if a field has been set.

func (*Execution) HasSourceConnectorId

func (o *Execution) HasSourceConnectorId() bool

HasSourceConnectorId returns a boolean if a field has been set.

func (*Execution) HasStartTime

func (o *Execution) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*Execution) HasStatus

func (o *Execution) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Execution) HasSubmitTime

func (o *Execution) HasSubmitTime() bool

HasSubmitTime returns a boolean if a field has been set.

func (*Execution) HasTargetConnectorId

func (o *Execution) HasTargetConnectorId() bool

HasTargetConnectorId returns a boolean if a field has been set.

func (*Execution) HasTaskEvents

func (o *Execution) HasTaskEvents() bool

HasTaskEvents returns a boolean if a field has been set.

func (Execution) MarshalJSON

func (o Execution) MarshalJSON() ([]byte, error)

func (*Execution) SetBytesProcessed

func (o *Execution) SetBytesProcessed(v int64)

SetBytesProcessed gets a reference to the given int64 and assigns it to the BytesProcessed field.

func (*Execution) SetBytesTotal

func (o *Execution) SetBytesTotal(v int64)

SetBytesTotal gets a reference to the given int64 and assigns it to the BytesTotal field.

func (*Execution) SetEndTime

func (o *Execution) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*Execution) SetEngineId

func (o *Execution) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Execution) SetEngineName

func (o *Execution) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*Execution) SetHyperscaleInstanceId

func (o *Execution) SetHyperscaleInstanceId(v string)

SetHyperscaleInstanceId gets a reference to the given string and assigns it to the HyperscaleInstanceId field.

func (*Execution) SetHyperscaleTaskEvents

func (o *Execution) SetHyperscaleTaskEvents(v []HyperscaleTaskEvent)

SetHyperscaleTaskEvents gets a reference to the given []HyperscaleTaskEvent and assigns it to the HyperscaleTaskEvents field.

func (*Execution) SetId

func (o *Execution) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Execution) SetMaskingJobId

func (o *Execution) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (*Execution) SetMaskingJobName

func (o *Execution) SetMaskingJobName(v string)

SetMaskingJobName gets a reference to the given string and assigns it to the MaskingJobName field.

func (*Execution) SetProgress

func (o *Execution) SetProgress(v float32)

SetProgress gets a reference to the given float32 and assigns it to the Progress field.

func (*Execution) SetRowsMasked

func (o *Execution) SetRowsMasked(v int64)

SetRowsMasked gets a reference to the given int64 and assigns it to the RowsMasked field.

func (*Execution) SetRowsTotal

func (o *Execution) SetRowsTotal(v int64)

SetRowsTotal gets a reference to the given int64 and assigns it to the RowsTotal field.

func (*Execution) SetSourceConnectorId

func (o *Execution) SetSourceConnectorId(v string)

SetSourceConnectorId gets a reference to the given string and assigns it to the SourceConnectorId field.

func (*Execution) SetStartTime

func (o *Execution) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*Execution) SetStatus

func (o *Execution) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Execution) SetSubmitTime

func (o *Execution) SetSubmitTime(v time.Time)

SetSubmitTime gets a reference to the given time.Time and assigns it to the SubmitTime field.

func (*Execution) SetTargetConnectorId

func (o *Execution) SetTargetConnectorId(v string)

SetTargetConnectorId gets a reference to the given string and assigns it to the TargetConnectorId field.

func (*Execution) SetTaskEvents

func (o *Execution) SetTaskEvents(v []TaskEvent)

SetTaskEvents gets a reference to the given []TaskEvent and assigns it to the TaskEvents field.

func (Execution) ToMap

func (o Execution) ToMap() (map[string]interface{}, error)

type ExecutionCancelParameters

type ExecutionCancelParameters struct {
	// The expected status of the execution to cancel to prevent cancelling a queued job that has transitioned to a running state since the request was issued.
	ExpectedStatus *string `json:"expected_status,omitempty"`
}

ExecutionCancelParameters Parameters to cancel an execution.

func NewExecutionCancelParameters

func NewExecutionCancelParameters() *ExecutionCancelParameters

NewExecutionCancelParameters instantiates a new ExecutionCancelParameters 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 NewExecutionCancelParametersWithDefaults

func NewExecutionCancelParametersWithDefaults() *ExecutionCancelParameters

NewExecutionCancelParametersWithDefaults instantiates a new ExecutionCancelParameters 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 (*ExecutionCancelParameters) GetExpectedStatus

func (o *ExecutionCancelParameters) GetExpectedStatus() string

GetExpectedStatus returns the ExpectedStatus field value if set, zero value otherwise.

func (*ExecutionCancelParameters) GetExpectedStatusOk

func (o *ExecutionCancelParameters) GetExpectedStatusOk() (*string, bool)

GetExpectedStatusOk returns a tuple with the ExpectedStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionCancelParameters) HasExpectedStatus

func (o *ExecutionCancelParameters) HasExpectedStatus() bool

HasExpectedStatus returns a boolean if a field has been set.

func (ExecutionCancelParameters) MarshalJSON

func (o ExecutionCancelParameters) MarshalJSON() ([]byte, error)

func (*ExecutionCancelParameters) SetExpectedStatus

func (o *ExecutionCancelParameters) SetExpectedStatus(v string)

SetExpectedStatus gets a reference to the given string and assigns it to the ExpectedStatus field.

func (ExecutionCancelParameters) ToMap

func (o ExecutionCancelParameters) ToMap() (map[string]interface{}, error)

type ExecutionEvent

type ExecutionEvent struct {
	// The ExecutionEvent entity ID.
	Id *string `json:"id,omitempty"`
	// The ID of the execution.
	ExecutionId *string `json:"execution_id,omitempty"`
	// The type of execution event.
	EventType *string `json:"event_type,omitempty"`
	// The severity of the execution event.
	Severity *string `json:"severity,omitempty"`
	// The cause of the execution event.
	Cause *string `json:"cause,omitempty"`
	// The number of times the execution event occurred.
	Count *int64 `json:"count,omitempty"`
	// The date and time that this execution event first occurred.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The name of the column, field, or other object being masked when this event occurred, if applicable.
	MaskedObjectName *string `json:"masked_object_name,omitempty"`
	// The name of the masking algorithm running when this event occurred, if applicable.
	AlgorithmName *string `json:"algorithm_name,omitempty"`
	// The Java class of the exception that triggered this event, if applicable.
	ExceptionType *string `json:"exception_type,omitempty"`
	// The details associated with the Java exception that triggered this event, if applicable.
	ExceptionDetail *string `json:"exception_detail,omitempty"`
}

ExecutionEvent Events, such as warnings or errors, associated with job executions.

func NewExecutionEvent

func NewExecutionEvent() *ExecutionEvent

NewExecutionEvent instantiates a new ExecutionEvent 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 NewExecutionEventWithDefaults

func NewExecutionEventWithDefaults() *ExecutionEvent

NewExecutionEventWithDefaults instantiates a new ExecutionEvent 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 (*ExecutionEvent) GetAlgorithmName

func (o *ExecutionEvent) GetAlgorithmName() string

GetAlgorithmName returns the AlgorithmName field value if set, zero value otherwise.

func (*ExecutionEvent) GetAlgorithmNameOk

func (o *ExecutionEvent) GetAlgorithmNameOk() (*string, bool)

GetAlgorithmNameOk returns a tuple with the AlgorithmName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetCause

func (o *ExecutionEvent) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ExecutionEvent) GetCauseOk

func (o *ExecutionEvent) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetCount

func (o *ExecutionEvent) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ExecutionEvent) GetCountOk

func (o *ExecutionEvent) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetEventType

func (o *ExecutionEvent) GetEventType() string

GetEventType returns the EventType field value if set, zero value otherwise.

func (*ExecutionEvent) GetEventTypeOk

func (o *ExecutionEvent) GetEventTypeOk() (*string, bool)

GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetExceptionDetail

func (o *ExecutionEvent) GetExceptionDetail() string

GetExceptionDetail returns the ExceptionDetail field value if set, zero value otherwise.

func (*ExecutionEvent) GetExceptionDetailOk

func (o *ExecutionEvent) GetExceptionDetailOk() (*string, bool)

GetExceptionDetailOk returns a tuple with the ExceptionDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetExceptionType

func (o *ExecutionEvent) GetExceptionType() string

GetExceptionType returns the ExceptionType field value if set, zero value otherwise.

func (*ExecutionEvent) GetExceptionTypeOk

func (o *ExecutionEvent) GetExceptionTypeOk() (*string, bool)

GetExceptionTypeOk returns a tuple with the ExceptionType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetExecutionId

func (o *ExecutionEvent) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*ExecutionEvent) GetExecutionIdOk

func (o *ExecutionEvent) GetExecutionIdOk() (*string, bool)

GetExecutionIdOk returns a tuple with the ExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetId

func (o *ExecutionEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ExecutionEvent) GetIdOk

func (o *ExecutionEvent) 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.

func (*ExecutionEvent) GetMaskedObjectName

func (o *ExecutionEvent) GetMaskedObjectName() string

GetMaskedObjectName returns the MaskedObjectName field value if set, zero value otherwise.

func (*ExecutionEvent) GetMaskedObjectNameOk

func (o *ExecutionEvent) GetMaskedObjectNameOk() (*string, bool)

GetMaskedObjectNameOk returns a tuple with the MaskedObjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetSeverity

func (o *ExecutionEvent) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*ExecutionEvent) GetSeverityOk

func (o *ExecutionEvent) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) GetTimestamp

func (o *ExecutionEvent) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ExecutionEvent) GetTimestampOk

func (o *ExecutionEvent) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionEvent) HasAlgorithmName

func (o *ExecutionEvent) HasAlgorithmName() bool

HasAlgorithmName returns a boolean if a field has been set.

func (*ExecutionEvent) HasCause

func (o *ExecutionEvent) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ExecutionEvent) HasCount

func (o *ExecutionEvent) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ExecutionEvent) HasEventType

func (o *ExecutionEvent) HasEventType() bool

HasEventType returns a boolean if a field has been set.

func (*ExecutionEvent) HasExceptionDetail

func (o *ExecutionEvent) HasExceptionDetail() bool

HasExceptionDetail returns a boolean if a field has been set.

func (*ExecutionEvent) HasExceptionType

func (o *ExecutionEvent) HasExceptionType() bool

HasExceptionType returns a boolean if a field has been set.

func (*ExecutionEvent) HasExecutionId

func (o *ExecutionEvent) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*ExecutionEvent) HasId

func (o *ExecutionEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionEvent) HasMaskedObjectName

func (o *ExecutionEvent) HasMaskedObjectName() bool

HasMaskedObjectName returns a boolean if a field has been set.

func (*ExecutionEvent) HasSeverity

func (o *ExecutionEvent) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*ExecutionEvent) HasTimestamp

func (o *ExecutionEvent) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ExecutionEvent) MarshalJSON

func (o ExecutionEvent) MarshalJSON() ([]byte, error)

func (*ExecutionEvent) SetAlgorithmName

func (o *ExecutionEvent) SetAlgorithmName(v string)

SetAlgorithmName gets a reference to the given string and assigns it to the AlgorithmName field.

func (*ExecutionEvent) SetCause

func (o *ExecutionEvent) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ExecutionEvent) SetCount

func (o *ExecutionEvent) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ExecutionEvent) SetEventType

func (o *ExecutionEvent) SetEventType(v string)

SetEventType gets a reference to the given string and assigns it to the EventType field.

func (*ExecutionEvent) SetExceptionDetail

func (o *ExecutionEvent) SetExceptionDetail(v string)

SetExceptionDetail gets a reference to the given string and assigns it to the ExceptionDetail field.

func (*ExecutionEvent) SetExceptionType

func (o *ExecutionEvent) SetExceptionType(v string)

SetExceptionType gets a reference to the given string and assigns it to the ExceptionType field.

func (*ExecutionEvent) SetExecutionId

func (o *ExecutionEvent) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*ExecutionEvent) SetId

func (o *ExecutionEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ExecutionEvent) SetMaskedObjectName

func (o *ExecutionEvent) SetMaskedObjectName(v string)

SetMaskedObjectName gets a reference to the given string and assigns it to the MaskedObjectName field.

func (*ExecutionEvent) SetSeverity

func (o *ExecutionEvent) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*ExecutionEvent) SetTimestamp

func (o *ExecutionEvent) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ExecutionEvent) ToMap

func (o ExecutionEvent) ToMap() (map[string]interface{}, error)

type ExecutionLog

type ExecutionLog struct {
	// The ExecutionLog entity ID.
	Id *string `json:"id,omitempty"`
	// The ID of the execution.
	ExecutionId *string `json:"execution_id,omitempty"`
	// The ID of the masking job that is being executed.
	MaskingJobId *string `json:"masking_job_id,omitempty"`
	// The status of the execution regarding its completion.
	Status *string `json:"status,omitempty"`
	// The log file contents.
	Log *string `json:"log,omitempty"`
}

ExecutionLog A log containing warnings or errors associated with a job execution.

func NewExecutionLog

func NewExecutionLog() *ExecutionLog

NewExecutionLog instantiates a new ExecutionLog 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 NewExecutionLogWithDefaults

func NewExecutionLogWithDefaults() *ExecutionLog

NewExecutionLogWithDefaults instantiates a new ExecutionLog 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 (*ExecutionLog) GetExecutionId

func (o *ExecutionLog) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*ExecutionLog) GetExecutionIdOk

func (o *ExecutionLog) GetExecutionIdOk() (*string, bool)

GetExecutionIdOk returns a tuple with the ExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionLog) GetId

func (o *ExecutionLog) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ExecutionLog) GetIdOk

func (o *ExecutionLog) 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.

func (*ExecutionLog) GetLog

func (o *ExecutionLog) GetLog() string

GetLog returns the Log field value if set, zero value otherwise.

func (*ExecutionLog) GetLogOk

func (o *ExecutionLog) GetLogOk() (*string, bool)

GetLogOk returns a tuple with the Log field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionLog) GetMaskingJobId

func (o *ExecutionLog) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*ExecutionLog) GetMaskingJobIdOk

func (o *ExecutionLog) GetMaskingJobIdOk() (*string, bool)

GetMaskingJobIdOk returns a tuple with the MaskingJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExecutionLog) GetStatus

func (o *ExecutionLog) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExecutionLog) GetStatusOk

func (o *ExecutionLog) 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.

func (*ExecutionLog) HasExecutionId

func (o *ExecutionLog) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*ExecutionLog) HasId

func (o *ExecutionLog) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionLog) HasLog

func (o *ExecutionLog) HasLog() bool

HasLog returns a boolean if a field has been set.

func (*ExecutionLog) HasMaskingJobId

func (o *ExecutionLog) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (*ExecutionLog) HasStatus

func (o *ExecutionLog) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExecutionLog) MarshalJSON

func (o ExecutionLog) MarshalJSON() ([]byte, error)

func (*ExecutionLog) SetExecutionId

func (o *ExecutionLog) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*ExecutionLog) SetId

func (o *ExecutionLog) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ExecutionLog) SetLog

func (o *ExecutionLog) SetLog(v string)

SetLog gets a reference to the given string and assigns it to the Log field.

func (*ExecutionLog) SetMaskingJobId

func (o *ExecutionLog) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (*ExecutionLog) SetStatus

func (o *ExecutionLog) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (ExecutionLog) ToMap

func (o ExecutionLog) ToMap() (map[string]interface{}, error)

type ExecutionsApiService

type ExecutionsApiService service

ExecutionsApiService ExecutionsApi service

func (*ExecutionsApiService) CancelExecution

func (a *ExecutionsApiService) CancelExecution(ctx context.Context, executionId string) ApiCancelExecutionRequest

CancelExecution Cancel an Execution.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param executionId The ID of the Execution.
@return ApiCancelExecutionRequest

func (*ExecutionsApiService) CancelExecutionExecute

func (a *ExecutionsApiService) CancelExecutionExecute(r ApiCancelExecutionRequest) (*http.Response, error)

Execute executes the request

func (*ExecutionsApiService) GetExecutionById

func (a *ExecutionsApiService) GetExecutionById(ctx context.Context, executionId string) ApiGetExecutionByIdRequest

GetExecutionById Retrieve an Execution by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param executionId The ID of the Execution.
@return ApiGetExecutionByIdRequest

func (*ExecutionsApiService) GetExecutionByIdExecute

func (a *ExecutionsApiService) GetExecutionByIdExecute(r ApiGetExecutionByIdRequest) (*Execution, *http.Response, error)

Execute executes the request

@return Execution

func (*ExecutionsApiService) GetExecutionEvents

func (a *ExecutionsApiService) GetExecutionEvents(ctx context.Context, executionId string) ApiGetExecutionEventsRequest

GetExecutionEvents Retrieve the list of events for a masking execution.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param executionId The ID of the Execution.
@return ApiGetExecutionEventsRequest

func (*ExecutionsApiService) GetExecutionEventsExecute

Execute executes the request

@return ListExecutionEventsResponse

func (*ExecutionsApiService) GetExecutionLog

func (a *ExecutionsApiService) GetExecutionLog(ctx context.Context, executionId string) ApiGetExecutionLogRequest

GetExecutionLog Retrieve the masking execution log.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param executionId The ID of the Execution.
@return ApiGetExecutionLogRequest

func (*ExecutionsApiService) GetExecutionLogExecute

Execute executes the request

@return ExecutionLog

func (*ExecutionsApiService) GetExecutions

GetExecutions Retrieve the list of masking executions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetExecutionsRequest

func (*ExecutionsApiService) GetExecutionsExecute

Execute executes the request

@return ListExecutionsResponse

func (*ExecutionsApiService) SearchExecutionEvents

func (a *ExecutionsApiService) SearchExecutionEvents(ctx context.Context, executionId string) ApiSearchExecutionEventsRequest

SearchExecutionEvents Search masking executions events.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param executionId The ID of the Execution.
@return ApiSearchExecutionEventsRequest

func (*ExecutionsApiService) SearchExecutionEventsExecute

Execute executes the request

@return SearchExecutionEventsResponse

func (*ExecutionsApiService) SearchExecutions

SearchExecutions Search masking executions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchExecutionsRequest

func (*ExecutionsApiService) SearchExecutionsExecute

Execute executes the request

@return SearchExecutionsResponse

type FeatureFlagApiService

type FeatureFlagApiService service

FeatureFlagApiService FeatureFlagApi service

func (*FeatureFlagApiService) GetEnabledFeaturesFlag

GetEnabledFeaturesFlag Get enabled feature flags.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEnabledFeaturesFlagRequest

func (*FeatureFlagApiService) GetEnabledFeaturesFlagExecute

func (a *FeatureFlagApiService) GetEnabledFeaturesFlagExecute(r ApiGetEnabledFeaturesFlagRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

type FindByLocationResponse

type FindByLocationResponse struct {
	Items []Snapshot `json:"items,omitempty"`
}

FindByLocationResponse struct for FindByLocationResponse

func NewFindByLocationResponse

func NewFindByLocationResponse() *FindByLocationResponse

NewFindByLocationResponse instantiates a new FindByLocationResponse 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 NewFindByLocationResponseWithDefaults

func NewFindByLocationResponseWithDefaults() *FindByLocationResponse

NewFindByLocationResponseWithDefaults instantiates a new FindByLocationResponse 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 (*FindByLocationResponse) GetItems

func (o *FindByLocationResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*FindByLocationResponse) GetItemsOk

func (o *FindByLocationResponse) GetItemsOk() ([]Snapshot, 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.

func (*FindByLocationResponse) HasItems

func (o *FindByLocationResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (FindByLocationResponse) MarshalJSON

func (o FindByLocationResponse) MarshalJSON() ([]byte, error)

func (*FindByLocationResponse) SetItems

func (o *FindByLocationResponse) SetItems(v []Snapshot)

SetItems gets a reference to the given []Snapshot and assigns it to the Items field.

func (FindByLocationResponse) ToMap

func (o FindByLocationResponse) ToMap() (map[string]interface{}, error)

type FindByTimestampResponse

type FindByTimestampResponse struct {
	Items []Snapshot `json:"items,omitempty"`
}

FindByTimestampResponse struct for FindByTimestampResponse

func NewFindByTimestampResponse

func NewFindByTimestampResponse() *FindByTimestampResponse

NewFindByTimestampResponse instantiates a new FindByTimestampResponse 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 NewFindByTimestampResponseWithDefaults

func NewFindByTimestampResponseWithDefaults() *FindByTimestampResponse

NewFindByTimestampResponseWithDefaults instantiates a new FindByTimestampResponse 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 (*FindByTimestampResponse) GetItems

func (o *FindByTimestampResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*FindByTimestampResponse) GetItemsOk

func (o *FindByTimestampResponse) GetItemsOk() ([]Snapshot, 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.

func (*FindByTimestampResponse) HasItems

func (o *FindByTimestampResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (FindByTimestampResponse) MarshalJSON

func (o FindByTimestampResponse) MarshalJSON() ([]byte, error)

func (*FindByTimestampResponse) SetItems

func (o *FindByTimestampResponse) SetItems(v []Snapshot)

SetItems gets a reference to the given []Snapshot and assigns it to the Items field.

func (FindByTimestampResponse) ToMap

func (o FindByTimestampResponse) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GlobalProperties

type GlobalProperties struct {
	// Property to define either username & password based authentication disabled or not.
	DisableUsernamePassword *bool `json:"disable_username_password,omitempty"`
}

GlobalProperties Global properties response.

func NewGlobalProperties

func NewGlobalProperties() *GlobalProperties

NewGlobalProperties instantiates a new GlobalProperties 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 NewGlobalPropertiesWithDefaults

func NewGlobalPropertiesWithDefaults() *GlobalProperties

NewGlobalPropertiesWithDefaults instantiates a new GlobalProperties 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 (*GlobalProperties) GetDisableUsernamePassword

func (o *GlobalProperties) GetDisableUsernamePassword() bool

GetDisableUsernamePassword returns the DisableUsernamePassword field value if set, zero value otherwise.

func (*GlobalProperties) GetDisableUsernamePasswordOk

func (o *GlobalProperties) GetDisableUsernamePasswordOk() (*bool, bool)

GetDisableUsernamePasswordOk returns a tuple with the DisableUsernamePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GlobalProperties) HasDisableUsernamePassword

func (o *GlobalProperties) HasDisableUsernamePassword() bool

HasDisableUsernamePassword returns a boolean if a field has been set.

func (GlobalProperties) MarshalJSON

func (o GlobalProperties) MarshalJSON() ([]byte, error)

func (*GlobalProperties) SetDisableUsernamePassword

func (o *GlobalProperties) SetDisableUsernamePassword(v bool)

SetDisableUsernamePassword gets a reference to the given bool and assigns it to the DisableUsernamePassword field.

func (GlobalProperties) ToMap

func (o GlobalProperties) ToMap() (map[string]interface{}, error)

type GroupsApiService

type GroupsApiService service

GroupsApiService GroupsApi service

func (*GroupsApiService) GetDatasetGroupById

func (a *GroupsApiService) GetDatasetGroupById(ctx context.Context, groupId string) ApiGetDatasetGroupByIdRequest

GetDatasetGroupById Get a dataset group by ID or Name.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param groupId The ID of the dataset group.
@return ApiGetDatasetGroupByIdRequest

func (*GroupsApiService) GetDatasetGroupByIdExecute

func (a *GroupsApiService) GetDatasetGroupByIdExecute(r ApiGetDatasetGroupByIdRequest) (*DatasetGroup, *http.Response, error)

Execute executes the request

@return DatasetGroup

func (*GroupsApiService) GetDatasetGroups

GetDatasetGroups List all dataset groups.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetDatasetGroupsRequest

func (*GroupsApiService) GetDatasetGroupsExecute

Execute executes the request

@return ListGroupsResponse

func (*GroupsApiService) SearchDatasetGroups

func (a *GroupsApiService) SearchDatasetGroups(ctx context.Context) ApiSearchDatasetGroupsRequest

SearchDatasetGroups Search for dataset groups.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchDatasetGroupsRequest

func (*GroupsApiService) SearchDatasetGroupsExecute

Execute executes the request

@return SearchDatasetGroupResponse

type HashicorpVault

type HashicorpVault struct {
	Id *int64 `json:"id,omitempty"`
	// Environment variables to set when invoking the Vault CLI tool. The environment variables will be used both to login to the vault (if this step is required) and to retrieve engine username and passwords.
	EnvVariables *map[string]string `json:"env_variables,omitempty"`
	// Arguments to the \"vault\" CLI tool to be used to fetch a client token (or \"login\"). If supporting files, such as TLS certificates, must be used to authenticate, they can be mounted to the /etc/config directory. This property must not be set when using the TOKEN authentication method as login is not required.
	LoginCommandArgs []string `json:"login_command_args,omitempty"`
	Tags             []Tag    `json:"tags,omitempty"`
}

HashicorpVault Configuration required to connect and authenticate with an Hashicorp Vault which stores engines username and passwords.

func NewHashicorpVault

func NewHashicorpVault() *HashicorpVault

NewHashicorpVault instantiates a new HashicorpVault 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 NewHashicorpVaultWithDefaults

func NewHashicorpVaultWithDefaults() *HashicorpVault

NewHashicorpVaultWithDefaults instantiates a new HashicorpVault 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 (*HashicorpVault) GetEnvVariables

func (o *HashicorpVault) GetEnvVariables() map[string]string

GetEnvVariables returns the EnvVariables field value if set, zero value otherwise.

func (*HashicorpVault) GetEnvVariablesOk

func (o *HashicorpVault) GetEnvVariablesOk() (*map[string]string, bool)

GetEnvVariablesOk returns a tuple with the EnvVariables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HashicorpVault) GetId

func (o *HashicorpVault) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*HashicorpVault) GetIdOk

func (o *HashicorpVault) GetIdOk() (*int64, 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.

func (*HashicorpVault) GetLoginCommandArgs

func (o *HashicorpVault) GetLoginCommandArgs() []string

GetLoginCommandArgs returns the LoginCommandArgs field value if set, zero value otherwise.

func (*HashicorpVault) GetLoginCommandArgsOk

func (o *HashicorpVault) GetLoginCommandArgsOk() ([]string, bool)

GetLoginCommandArgsOk returns a tuple with the LoginCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HashicorpVault) GetTags

func (o *HashicorpVault) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*HashicorpVault) GetTagsOk

func (o *HashicorpVault) 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.

func (*HashicorpVault) HasEnvVariables

func (o *HashicorpVault) HasEnvVariables() bool

HasEnvVariables returns a boolean if a field has been set.

func (*HashicorpVault) HasId

func (o *HashicorpVault) HasId() bool

HasId returns a boolean if a field has been set.

func (*HashicorpVault) HasLoginCommandArgs

func (o *HashicorpVault) HasLoginCommandArgs() bool

HasLoginCommandArgs returns a boolean if a field has been set.

func (*HashicorpVault) HasTags

func (o *HashicorpVault) HasTags() bool

HasTags returns a boolean if a field has been set.

func (HashicorpVault) MarshalJSON

func (o HashicorpVault) MarshalJSON() ([]byte, error)

func (*HashicorpVault) SetEnvVariables

func (o *HashicorpVault) SetEnvVariables(v map[string]string)

SetEnvVariables gets a reference to the given map[string]string and assigns it to the EnvVariables field.

func (*HashicorpVault) SetId

func (o *HashicorpVault) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*HashicorpVault) SetLoginCommandArgs

func (o *HashicorpVault) SetLoginCommandArgs(v []string)

SetLoginCommandArgs gets a reference to the given []string and assigns it to the LoginCommandArgs field.

func (*HashicorpVault) SetTags

func (o *HashicorpVault) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (HashicorpVault) ToMap

func (o HashicorpVault) ToMap() (map[string]interface{}, error)

type Hook

type Hook struct {
	Name           *string `json:"name,omitempty"`
	Command        string  `json:"command"`
	Shell          *string `json:"shell,omitempty"`
	ElementId      *string `json:"element_id,omitempty"`
	HasCredentials *bool   `json:"has_credentials,omitempty"`
}

Hook struct for Hook

func NewHook

func NewHook(command string) *Hook

NewHook instantiates a new Hook 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 NewHookWithDefaults

func NewHookWithDefaults() *Hook

NewHookWithDefaults instantiates a new Hook 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 (*Hook) GetCommand

func (o *Hook) GetCommand() string

GetCommand returns the Command field value

func (*Hook) GetCommandOk

func (o *Hook) GetCommandOk() (*string, bool)

GetCommandOk returns a tuple with the Command field value and a boolean to check if the value has been set.

func (*Hook) GetElementId

func (o *Hook) GetElementId() string

GetElementId returns the ElementId field value if set, zero value otherwise.

func (*Hook) GetElementIdOk

func (o *Hook) GetElementIdOk() (*string, bool)

GetElementIdOk returns a tuple with the ElementId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hook) GetHasCredentials

func (o *Hook) GetHasCredentials() bool

GetHasCredentials returns the HasCredentials field value if set, zero value otherwise.

func (*Hook) GetHasCredentialsOk

func (o *Hook) GetHasCredentialsOk() (*bool, bool)

GetHasCredentialsOk returns a tuple with the HasCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hook) GetName

func (o *Hook) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Hook) GetNameOk

func (o *Hook) 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.

func (*Hook) GetShell

func (o *Hook) GetShell() string

GetShell returns the Shell field value if set, zero value otherwise.

func (*Hook) GetShellOk

func (o *Hook) GetShellOk() (*string, bool)

GetShellOk returns a tuple with the Shell field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hook) HasElementId

func (o *Hook) HasElementId() bool

HasElementId returns a boolean if a field has been set.

func (*Hook) HasHasCredentials

func (o *Hook) HasHasCredentials() bool

HasHasCredentials returns a boolean if a field has been set.

func (*Hook) HasName

func (o *Hook) HasName() bool

HasName returns a boolean if a field has been set.

func (*Hook) HasShell

func (o *Hook) HasShell() bool

HasShell returns a boolean if a field has been set.

func (Hook) MarshalJSON

func (o Hook) MarshalJSON() ([]byte, error)

func (*Hook) SetCommand

func (o *Hook) SetCommand(v string)

SetCommand sets field value

func (*Hook) SetElementId

func (o *Hook) SetElementId(v string)

SetElementId gets a reference to the given string and assigns it to the ElementId field.

func (*Hook) SetHasCredentials

func (o *Hook) SetHasCredentials(v bool)

SetHasCredentials gets a reference to the given bool and assigns it to the HasCredentials field.

func (*Hook) SetName

func (o *Hook) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Hook) SetShell

func (o *Hook) SetShell(v string)

SetShell gets a reference to the given string and assigns it to the Shell field.

func (Hook) ToMap

func (o Hook) ToMap() (map[string]interface{}, error)

type Host

type Host struct {
	// The entity ID of this Host.
	Id *string `json:"id,omitempty"`
	// The hostname or IP address of this host.
	Hostname *string `json:"hostname,omitempty"`
	// The name of the OS on this host.
	OsName *string `json:"os_name,omitempty"`
	// The version of the OS on this host.
	OsVersion *string `json:"os_version,omitempty"`
	// The total amount of memory on this host in bytes.
	MemorySize *int64 `json:"memory_size,omitempty"`
	// True if the host is up and a connection can be established from the engine.
	Available *bool `json:"available,omitempty"`
	// The last time the available property was updated.
	AvailableTimestamp *time.Time `json:"available_timestamp,omitempty"`
	// The reason why the host is not available.
	NotAvailableReason *string `json:"not_available_reason,omitempty"`
	// The reference to the associated OracleClusterNode.
	OracleClusterNodeReference *string `json:"oracle_cluster_node_reference,omitempty"`
	// The name of the associated OracleClusterNode.
	OracleClusterNodeName *string `json:"oracle_cluster_node_name,omitempty"`
	// Whether the associated OracleClusterNode is enabled.
	OracleClusterNodeEnabled *bool `json:"oracle_cluster_node_enabled,omitempty"`
	// Whether the associated OracleClusterNode was discovered.
	OracleClusterNodeDiscovered *bool `json:"oracle_cluster_node_discovered,omitempty"`
	// The Virtual IP addresses associated with the OracleClusterNode.
	OracleClusterNodeVirtualIps []OracleVirtualIP `json:"oracle_cluster_node_virtual_ips,omitempty"`
	// The instances associated with the OracleClusterNode.
	OracleClusterNodeInstances []OracleClusterNodeInstance `json:"oracle_cluster_node_instances,omitempty"`
	// The reference to the associated WindowsClusterNode.
	WindowsClusterNodeReference *string `json:"windows_cluster_node_reference,omitempty"`
	// The name of the associated WindowsClusterNode.
	WindowsClusterNodeName *string `json:"windows_cluster_node_name,omitempty"`
	// Whether the associated Windows cluster node was discovered.
	WindowsClusterNodeDiscovered *bool `json:"windows_cluster_node_discovered,omitempty"`
	// The list of host/IP addresses to use for NFS export.
	NfsAddresses []string `json:"nfs_addresses,omitempty"`
	// The lowercase alias to use inside the user managed DSP keystore.
	DspKeystoreAlias *string `json:"dsp_keystore_alias,omitempty"`
	// The path to the user managed DSP keystore.
	DspKeystorePath *string `json:"dsp_keystore_path,omitempty"`
	// The path to the user managed DSP truststore.
	DspTruststorePath *string `json:"dsp_truststore_path,omitempty"`
	// The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used.
	JavaHome *string `json:"java_home,omitempty"`
	// The port number used to connect to the host via SSH.
	SshPort *int32 `json:"ssh_port,omitempty"`
	// The path for the toolkit that resides on the host.
	ToolkitPath *string `json:"toolkit_path,omitempty"`
	// The path to the root of the Oracle TDE keystores artifact directories.
	OracleTdeKeystoresRootPath *string `json:"oracle_tde_keystores_root_path,omitempty"`
	// The platform for the host machine.
	ProcessorType *string `json:"processor_type,omitempty"`
	// The OS timezone.
	Timezone *string `json:"timezone,omitempty"`
}

Host A physical/virtual server.

func NewHost

func NewHost() *Host

NewHost instantiates a new Host 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 NewHostWithDefaults

func NewHostWithDefaults() *Host

NewHostWithDefaults instantiates a new Host 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 (*Host) GetAvailable

func (o *Host) GetAvailable() bool

GetAvailable returns the Available field value if set, zero value otherwise.

func (*Host) GetAvailableOk

func (o *Host) GetAvailableOk() (*bool, bool)

GetAvailableOk returns a tuple with the Available field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetAvailableTimestamp

func (o *Host) GetAvailableTimestamp() time.Time

GetAvailableTimestamp returns the AvailableTimestamp field value if set, zero value otherwise.

func (*Host) GetAvailableTimestampOk

func (o *Host) GetAvailableTimestampOk() (*time.Time, bool)

GetAvailableTimestampOk returns a tuple with the AvailableTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetDspKeystoreAlias

func (o *Host) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*Host) GetDspKeystoreAliasOk

func (o *Host) GetDspKeystoreAliasOk() (*string, bool)

GetDspKeystoreAliasOk returns a tuple with the DspKeystoreAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetDspKeystorePath

func (o *Host) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*Host) GetDspKeystorePathOk

func (o *Host) GetDspKeystorePathOk() (*string, bool)

GetDspKeystorePathOk returns a tuple with the DspKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetDspTruststorePath

func (o *Host) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*Host) GetDspTruststorePathOk

func (o *Host) GetDspTruststorePathOk() (*string, bool)

GetDspTruststorePathOk returns a tuple with the DspTruststorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetHostname

func (o *Host) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*Host) GetHostnameOk

func (o *Host) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetId

func (o *Host) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Host) GetIdOk

func (o *Host) 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.

func (*Host) GetJavaHome

func (o *Host) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*Host) GetJavaHomeOk

func (o *Host) GetJavaHomeOk() (*string, bool)

GetJavaHomeOk returns a tuple with the JavaHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetMemorySize

func (o *Host) GetMemorySize() int64

GetMemorySize returns the MemorySize field value if set, zero value otherwise.

func (*Host) GetMemorySizeOk

func (o *Host) GetMemorySizeOk() (*int64, bool)

GetMemorySizeOk returns a tuple with the MemorySize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetNfsAddresses

func (o *Host) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*Host) GetNfsAddressesOk

func (o *Host) GetNfsAddressesOk() ([]string, bool)

GetNfsAddressesOk returns a tuple with the NfsAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetNotAvailableReason

func (o *Host) GetNotAvailableReason() string

GetNotAvailableReason returns the NotAvailableReason field value if set, zero value otherwise.

func (*Host) GetNotAvailableReasonOk

func (o *Host) GetNotAvailableReasonOk() (*string, bool)

GetNotAvailableReasonOk returns a tuple with the NotAvailableReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeDiscovered

func (o *Host) GetOracleClusterNodeDiscovered() bool

GetOracleClusterNodeDiscovered returns the OracleClusterNodeDiscovered field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeDiscoveredOk

func (o *Host) GetOracleClusterNodeDiscoveredOk() (*bool, bool)

GetOracleClusterNodeDiscoveredOk returns a tuple with the OracleClusterNodeDiscovered field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeEnabled

func (o *Host) GetOracleClusterNodeEnabled() bool

GetOracleClusterNodeEnabled returns the OracleClusterNodeEnabled field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeEnabledOk

func (o *Host) GetOracleClusterNodeEnabledOk() (*bool, bool)

GetOracleClusterNodeEnabledOk returns a tuple with the OracleClusterNodeEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeInstances

func (o *Host) GetOracleClusterNodeInstances() []OracleClusterNodeInstance

GetOracleClusterNodeInstances returns the OracleClusterNodeInstances field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeInstancesOk

func (o *Host) GetOracleClusterNodeInstancesOk() ([]OracleClusterNodeInstance, bool)

GetOracleClusterNodeInstancesOk returns a tuple with the OracleClusterNodeInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeName

func (o *Host) GetOracleClusterNodeName() string

GetOracleClusterNodeName returns the OracleClusterNodeName field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeNameOk

func (o *Host) GetOracleClusterNodeNameOk() (*string, bool)

GetOracleClusterNodeNameOk returns a tuple with the OracleClusterNodeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeReference

func (o *Host) GetOracleClusterNodeReference() string

GetOracleClusterNodeReference returns the OracleClusterNodeReference field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeReferenceOk

func (o *Host) GetOracleClusterNodeReferenceOk() (*string, bool)

GetOracleClusterNodeReferenceOk returns a tuple with the OracleClusterNodeReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleClusterNodeVirtualIps

func (o *Host) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeVirtualIpsOk

func (o *Host) GetOracleClusterNodeVirtualIpsOk() ([]OracleVirtualIP, bool)

GetOracleClusterNodeVirtualIpsOk returns a tuple with the OracleClusterNodeVirtualIps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOracleTdeKeystoresRootPath

func (o *Host) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*Host) GetOracleTdeKeystoresRootPathOk

func (o *Host) GetOracleTdeKeystoresRootPathOk() (*string, bool)

GetOracleTdeKeystoresRootPathOk returns a tuple with the OracleTdeKeystoresRootPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOsName

func (o *Host) GetOsName() string

GetOsName returns the OsName field value if set, zero value otherwise.

func (*Host) GetOsNameOk

func (o *Host) GetOsNameOk() (*string, bool)

GetOsNameOk returns a tuple with the OsName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetOsVersion

func (o *Host) GetOsVersion() string

GetOsVersion returns the OsVersion field value if set, zero value otherwise.

func (*Host) GetOsVersionOk

func (o *Host) GetOsVersionOk() (*string, bool)

GetOsVersionOk returns a tuple with the OsVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetProcessorType

func (o *Host) GetProcessorType() string

GetProcessorType returns the ProcessorType field value if set, zero value otherwise.

func (*Host) GetProcessorTypeOk

func (o *Host) GetProcessorTypeOk() (*string, bool)

GetProcessorTypeOk returns a tuple with the ProcessorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetSshPort

func (o *Host) GetSshPort() int32

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*Host) GetSshPortOk

func (o *Host) GetSshPortOk() (*int32, bool)

GetSshPortOk returns a tuple with the SshPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetTimezone

func (o *Host) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*Host) GetTimezoneOk

func (o *Host) 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.

func (*Host) GetToolkitPath

func (o *Host) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*Host) GetToolkitPathOk

func (o *Host) GetToolkitPathOk() (*string, bool)

GetToolkitPathOk returns a tuple with the ToolkitPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetWindowsClusterNodeDiscovered

func (o *Host) GetWindowsClusterNodeDiscovered() bool

GetWindowsClusterNodeDiscovered returns the WindowsClusterNodeDiscovered field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeDiscoveredOk

func (o *Host) GetWindowsClusterNodeDiscoveredOk() (*bool, bool)

GetWindowsClusterNodeDiscoveredOk returns a tuple with the WindowsClusterNodeDiscovered field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetWindowsClusterNodeName

func (o *Host) GetWindowsClusterNodeName() string

GetWindowsClusterNodeName returns the WindowsClusterNodeName field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeNameOk

func (o *Host) GetWindowsClusterNodeNameOk() (*string, bool)

GetWindowsClusterNodeNameOk returns a tuple with the WindowsClusterNodeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) GetWindowsClusterNodeReference

func (o *Host) GetWindowsClusterNodeReference() string

GetWindowsClusterNodeReference returns the WindowsClusterNodeReference field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeReferenceOk

func (o *Host) GetWindowsClusterNodeReferenceOk() (*string, bool)

GetWindowsClusterNodeReferenceOk returns a tuple with the WindowsClusterNodeReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Host) HasAvailable

func (o *Host) HasAvailable() bool

HasAvailable returns a boolean if a field has been set.

func (*Host) HasAvailableTimestamp

func (o *Host) HasAvailableTimestamp() bool

HasAvailableTimestamp returns a boolean if a field has been set.

func (*Host) HasDspKeystoreAlias

func (o *Host) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*Host) HasDspKeystorePath

func (o *Host) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*Host) HasDspTruststorePath

func (o *Host) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*Host) HasHostname

func (o *Host) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*Host) HasId

func (o *Host) HasId() bool

HasId returns a boolean if a field has been set.

func (*Host) HasJavaHome

func (o *Host) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*Host) HasMemorySize

func (o *Host) HasMemorySize() bool

HasMemorySize returns a boolean if a field has been set.

func (*Host) HasNfsAddresses

func (o *Host) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*Host) HasNotAvailableReason

func (o *Host) HasNotAvailableReason() bool

HasNotAvailableReason returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeDiscovered

func (o *Host) HasOracleClusterNodeDiscovered() bool

HasOracleClusterNodeDiscovered returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeEnabled

func (o *Host) HasOracleClusterNodeEnabled() bool

HasOracleClusterNodeEnabled returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeInstances

func (o *Host) HasOracleClusterNodeInstances() bool

HasOracleClusterNodeInstances returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeName

func (o *Host) HasOracleClusterNodeName() bool

HasOracleClusterNodeName returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeReference

func (o *Host) HasOracleClusterNodeReference() bool

HasOracleClusterNodeReference returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeVirtualIps

func (o *Host) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*Host) HasOracleTdeKeystoresRootPath

func (o *Host) HasOracleTdeKeystoresRootPath() bool

HasOracleTdeKeystoresRootPath returns a boolean if a field has been set.

func (*Host) HasOsName

func (o *Host) HasOsName() bool

HasOsName returns a boolean if a field has been set.

func (*Host) HasOsVersion

func (o *Host) HasOsVersion() bool

HasOsVersion returns a boolean if a field has been set.

func (*Host) HasProcessorType

func (o *Host) HasProcessorType() bool

HasProcessorType returns a boolean if a field has been set.

func (*Host) HasSshPort

func (o *Host) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*Host) HasTimezone

func (o *Host) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*Host) HasToolkitPath

func (o *Host) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeDiscovered

func (o *Host) HasWindowsClusterNodeDiscovered() bool

HasWindowsClusterNodeDiscovered returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeName

func (o *Host) HasWindowsClusterNodeName() bool

HasWindowsClusterNodeName returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeReference

func (o *Host) HasWindowsClusterNodeReference() bool

HasWindowsClusterNodeReference returns a boolean if a field has been set.

func (Host) MarshalJSON

func (o Host) MarshalJSON() ([]byte, error)

func (*Host) SetAvailable

func (o *Host) SetAvailable(v bool)

SetAvailable gets a reference to the given bool and assigns it to the Available field.

func (*Host) SetAvailableTimestamp

func (o *Host) SetAvailableTimestamp(v time.Time)

SetAvailableTimestamp gets a reference to the given time.Time and assigns it to the AvailableTimestamp field.

func (*Host) SetDspKeystoreAlias

func (o *Host) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*Host) SetDspKeystorePath

func (o *Host) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*Host) SetDspTruststorePath

func (o *Host) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*Host) SetHostname

func (o *Host) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*Host) SetId

func (o *Host) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Host) SetJavaHome

func (o *Host) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*Host) SetMemorySize

func (o *Host) SetMemorySize(v int64)

SetMemorySize gets a reference to the given int64 and assigns it to the MemorySize field.

func (*Host) SetNfsAddresses

func (o *Host) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*Host) SetNotAvailableReason

func (o *Host) SetNotAvailableReason(v string)

SetNotAvailableReason gets a reference to the given string and assigns it to the NotAvailableReason field.

func (*Host) SetOracleClusterNodeDiscovered

func (o *Host) SetOracleClusterNodeDiscovered(v bool)

SetOracleClusterNodeDiscovered gets a reference to the given bool and assigns it to the OracleClusterNodeDiscovered field.

func (*Host) SetOracleClusterNodeEnabled

func (o *Host) SetOracleClusterNodeEnabled(v bool)

SetOracleClusterNodeEnabled gets a reference to the given bool and assigns it to the OracleClusterNodeEnabled field.

func (*Host) SetOracleClusterNodeInstances

func (o *Host) SetOracleClusterNodeInstances(v []OracleClusterNodeInstance)

SetOracleClusterNodeInstances gets a reference to the given []OracleClusterNodeInstance and assigns it to the OracleClusterNodeInstances field.

func (*Host) SetOracleClusterNodeName

func (o *Host) SetOracleClusterNodeName(v string)

SetOracleClusterNodeName gets a reference to the given string and assigns it to the OracleClusterNodeName field.

func (*Host) SetOracleClusterNodeReference

func (o *Host) SetOracleClusterNodeReference(v string)

SetOracleClusterNodeReference gets a reference to the given string and assigns it to the OracleClusterNodeReference field.

func (*Host) SetOracleClusterNodeVirtualIps

func (o *Host) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*Host) SetOracleTdeKeystoresRootPath

func (o *Host) SetOracleTdeKeystoresRootPath(v string)

SetOracleTdeKeystoresRootPath gets a reference to the given string and assigns it to the OracleTdeKeystoresRootPath field.

func (*Host) SetOsName

func (o *Host) SetOsName(v string)

SetOsName gets a reference to the given string and assigns it to the OsName field.

func (*Host) SetOsVersion

func (o *Host) SetOsVersion(v string)

SetOsVersion gets a reference to the given string and assigns it to the OsVersion field.

func (*Host) SetProcessorType

func (o *Host) SetProcessorType(v string)

SetProcessorType gets a reference to the given string and assigns it to the ProcessorType field.

func (*Host) SetSshPort

func (o *Host) SetSshPort(v int32)

SetSshPort gets a reference to the given int32 and assigns it to the SshPort field.

func (*Host) SetTimezone

func (o *Host) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*Host) SetToolkitPath

func (o *Host) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (*Host) SetWindowsClusterNodeDiscovered

func (o *Host) SetWindowsClusterNodeDiscovered(v bool)

SetWindowsClusterNodeDiscovered gets a reference to the given bool and assigns it to the WindowsClusterNodeDiscovered field.

func (*Host) SetWindowsClusterNodeName

func (o *Host) SetWindowsClusterNodeName(v string)

SetWindowsClusterNodeName gets a reference to the given string and assigns it to the WindowsClusterNodeName field.

func (*Host) SetWindowsClusterNodeReference

func (o *Host) SetWindowsClusterNodeReference(v string)

SetWindowsClusterNodeReference gets a reference to the given string and assigns it to the WindowsClusterNodeReference field.

func (Host) ToMap

func (o Host) ToMap() (map[string]interface{}, error)

type HostCreateParameters

type HostCreateParameters struct {
	// The name to associate with the host.
	Name *string `json:"name,omitempty"`
	// The hostname or IP address of this host.
	Hostname *string `json:"hostname,omitempty"`
	// The list of host/IP addresses to use for NFS export.
	NfsAddresses []string `json:"nfs_addresses,omitempty"`
	// The port number used to connect to the host via SSH.
	SshPort *int32 `json:"ssh_port,omitempty"`
	// Reference to a profile for escalating user privileges.
	PrivilegeElevationProfileReference *string `json:"privilege_elevation_profile_reference,omitempty"`
	// The lowercase alias to use inside the user managed DSP keystore.
	DspKeystoreAlias *string `json:"dsp_keystore_alias,omitempty"`
	// The password for the user managed DSP keystore.
	DspKeystorePassword *string `json:"dsp_keystore_password,omitempty"`
	// The path to the user managed DSP keystore.
	DspKeystorePath *string `json:"dsp_keystore_path,omitempty"`
	// The password for the user managed DSP truststore.
	DspTruststorePassword *string `json:"dsp_truststore_password,omitempty"`
	// The path to the user managed DSP truststore.
	DspTruststorePath *string `json:"dsp_truststore_path,omitempty"`
	// The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used.
	JavaHome *string `json:"java_home,omitempty"`
	// The path for the toolkit that resides on the host.
	ToolkitPath *string `json:"toolkit_path,omitempty"`
	// The password for the user managed Oracle JDBC keystore.
	OracleJdbcKeystorePassword *string `json:"oracle_jdbc_keystore_password,omitempty"`
	// The path to the root of the Oracle TDE keystores artifact directories.
	OracleTdeKeystoresRootPath *string                  `json:"oracle_tde_keystores_root_path,omitempty"`
	SshVerificationStrategy    *SSHVerificationStrategy `json:"ssh_verification_strategy,omitempty"`
	// The Virtual IP addresses associated with the OracleClusterNode.
	OracleClusterNodeVirtualIps []OracleVirtualIP `json:"oracle_cluster_node_virtual_ips,omitempty"`
}

HostCreateParameters struct for HostCreateParameters

func NewHostCreateParameters

func NewHostCreateParameters() *HostCreateParameters

NewHostCreateParameters instantiates a new HostCreateParameters 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 NewHostCreateParametersWithDefaults

func NewHostCreateParametersWithDefaults() *HostCreateParameters

NewHostCreateParametersWithDefaults instantiates a new HostCreateParameters 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 (*HostCreateParameters) GetDspKeystoreAlias

func (o *HostCreateParameters) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystoreAliasOk

func (o *HostCreateParameters) GetDspKeystoreAliasOk() (*string, bool)

GetDspKeystoreAliasOk returns a tuple with the DspKeystoreAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetDspKeystorePassword

func (o *HostCreateParameters) GetDspKeystorePassword() string

GetDspKeystorePassword returns the DspKeystorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystorePasswordOk

func (o *HostCreateParameters) GetDspKeystorePasswordOk() (*string, bool)

GetDspKeystorePasswordOk returns a tuple with the DspKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetDspKeystorePath

func (o *HostCreateParameters) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystorePathOk

func (o *HostCreateParameters) GetDspKeystorePathOk() (*string, bool)

GetDspKeystorePathOk returns a tuple with the DspKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetDspTruststorePassword

func (o *HostCreateParameters) GetDspTruststorePassword() string

GetDspTruststorePassword returns the DspTruststorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspTruststorePasswordOk

func (o *HostCreateParameters) GetDspTruststorePasswordOk() (*string, bool)

GetDspTruststorePasswordOk returns a tuple with the DspTruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetDspTruststorePath

func (o *HostCreateParameters) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspTruststorePathOk

func (o *HostCreateParameters) GetDspTruststorePathOk() (*string, bool)

GetDspTruststorePathOk returns a tuple with the DspTruststorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetHostname

func (o *HostCreateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HostCreateParameters) GetHostnameOk

func (o *HostCreateParameters) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetJavaHome

func (o *HostCreateParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*HostCreateParameters) GetJavaHomeOk

func (o *HostCreateParameters) GetJavaHomeOk() (*string, bool)

GetJavaHomeOk returns a tuple with the JavaHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetName

func (o *HostCreateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*HostCreateParameters) GetNameOk

func (o *HostCreateParameters) 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.

func (*HostCreateParameters) GetNfsAddresses

func (o *HostCreateParameters) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*HostCreateParameters) GetNfsAddressesOk

func (o *HostCreateParameters) GetNfsAddressesOk() ([]string, bool)

GetNfsAddressesOk returns a tuple with the NfsAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetOracleClusterNodeVirtualIps

func (o *HostCreateParameters) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleClusterNodeVirtualIpsOk

func (o *HostCreateParameters) GetOracleClusterNodeVirtualIpsOk() ([]OracleVirtualIP, bool)

GetOracleClusterNodeVirtualIpsOk returns a tuple with the OracleClusterNodeVirtualIps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetOracleJdbcKeystorePassword

func (o *HostCreateParameters) GetOracleJdbcKeystorePassword() string

GetOracleJdbcKeystorePassword returns the OracleJdbcKeystorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleJdbcKeystorePasswordOk

func (o *HostCreateParameters) GetOracleJdbcKeystorePasswordOk() (*string, bool)

GetOracleJdbcKeystorePasswordOk returns a tuple with the OracleJdbcKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetOracleTdeKeystoresRootPath

func (o *HostCreateParameters) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleTdeKeystoresRootPathOk

func (o *HostCreateParameters) GetOracleTdeKeystoresRootPathOk() (*string, bool)

GetOracleTdeKeystoresRootPathOk returns a tuple with the OracleTdeKeystoresRootPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetPrivilegeElevationProfileReference

func (o *HostCreateParameters) GetPrivilegeElevationProfileReference() string

GetPrivilegeElevationProfileReference returns the PrivilegeElevationProfileReference field value if set, zero value otherwise.

func (*HostCreateParameters) GetPrivilegeElevationProfileReferenceOk

func (o *HostCreateParameters) GetPrivilegeElevationProfileReferenceOk() (*string, bool)

GetPrivilegeElevationProfileReferenceOk returns a tuple with the PrivilegeElevationProfileReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetSshPort

func (o *HostCreateParameters) GetSshPort() int32

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*HostCreateParameters) GetSshPortOk

func (o *HostCreateParameters) GetSshPortOk() (*int32, bool)

GetSshPortOk returns a tuple with the SshPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetSshVerificationStrategy

func (o *HostCreateParameters) GetSshVerificationStrategy() SSHVerificationStrategy

GetSshVerificationStrategy returns the SshVerificationStrategy field value if set, zero value otherwise.

func (*HostCreateParameters) GetSshVerificationStrategyOk

func (o *HostCreateParameters) GetSshVerificationStrategyOk() (*SSHVerificationStrategy, bool)

GetSshVerificationStrategyOk returns a tuple with the SshVerificationStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) GetToolkitPath

func (o *HostCreateParameters) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*HostCreateParameters) GetToolkitPathOk

func (o *HostCreateParameters) GetToolkitPathOk() (*string, bool)

GetToolkitPathOk returns a tuple with the ToolkitPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostCreateParameters) HasDspKeystoreAlias

func (o *HostCreateParameters) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspKeystorePassword

func (o *HostCreateParameters) HasDspKeystorePassword() bool

HasDspKeystorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspKeystorePath

func (o *HostCreateParameters) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspTruststorePassword

func (o *HostCreateParameters) HasDspTruststorePassword() bool

HasDspTruststorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspTruststorePath

func (o *HostCreateParameters) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*HostCreateParameters) HasHostname

func (o *HostCreateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HostCreateParameters) HasJavaHome

func (o *HostCreateParameters) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*HostCreateParameters) HasName

func (o *HostCreateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*HostCreateParameters) HasNfsAddresses

func (o *HostCreateParameters) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleClusterNodeVirtualIps

func (o *HostCreateParameters) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleJdbcKeystorePassword

func (o *HostCreateParameters) HasOracleJdbcKeystorePassword() bool

HasOracleJdbcKeystorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleTdeKeystoresRootPath

func (o *HostCreateParameters) HasOracleTdeKeystoresRootPath() bool

HasOracleTdeKeystoresRootPath returns a boolean if a field has been set.

func (*HostCreateParameters) HasPrivilegeElevationProfileReference

func (o *HostCreateParameters) HasPrivilegeElevationProfileReference() bool

HasPrivilegeElevationProfileReference returns a boolean if a field has been set.

func (*HostCreateParameters) HasSshPort

func (o *HostCreateParameters) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*HostCreateParameters) HasSshVerificationStrategy

func (o *HostCreateParameters) HasSshVerificationStrategy() bool

HasSshVerificationStrategy returns a boolean if a field has been set.

func (*HostCreateParameters) HasToolkitPath

func (o *HostCreateParameters) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (HostCreateParameters) MarshalJSON

func (o HostCreateParameters) MarshalJSON() ([]byte, error)

func (*HostCreateParameters) SetDspKeystoreAlias

func (o *HostCreateParameters) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*HostCreateParameters) SetDspKeystorePassword

func (o *HostCreateParameters) SetDspKeystorePassword(v string)

SetDspKeystorePassword gets a reference to the given string and assigns it to the DspKeystorePassword field.

func (*HostCreateParameters) SetDspKeystorePath

func (o *HostCreateParameters) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*HostCreateParameters) SetDspTruststorePassword

func (o *HostCreateParameters) SetDspTruststorePassword(v string)

SetDspTruststorePassword gets a reference to the given string and assigns it to the DspTruststorePassword field.

func (*HostCreateParameters) SetDspTruststorePath

func (o *HostCreateParameters) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*HostCreateParameters) SetHostname

func (o *HostCreateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HostCreateParameters) SetJavaHome

func (o *HostCreateParameters) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*HostCreateParameters) SetName

func (o *HostCreateParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*HostCreateParameters) SetNfsAddresses

func (o *HostCreateParameters) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*HostCreateParameters) SetOracleClusterNodeVirtualIps

func (o *HostCreateParameters) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*HostCreateParameters) SetOracleJdbcKeystorePassword

func (o *HostCreateParameters) SetOracleJdbcKeystorePassword(v string)

SetOracleJdbcKeystorePassword gets a reference to the given string and assigns it to the OracleJdbcKeystorePassword field.

func (*HostCreateParameters) SetOracleTdeKeystoresRootPath

func (o *HostCreateParameters) SetOracleTdeKeystoresRootPath(v string)

SetOracleTdeKeystoresRootPath gets a reference to the given string and assigns it to the OracleTdeKeystoresRootPath field.

func (*HostCreateParameters) SetPrivilegeElevationProfileReference

func (o *HostCreateParameters) SetPrivilegeElevationProfileReference(v string)

SetPrivilegeElevationProfileReference gets a reference to the given string and assigns it to the PrivilegeElevationProfileReference field.

func (*HostCreateParameters) SetSshPort

func (o *HostCreateParameters) SetSshPort(v int32)

SetSshPort gets a reference to the given int32 and assigns it to the SshPort field.

func (*HostCreateParameters) SetSshVerificationStrategy

func (o *HostCreateParameters) SetSshVerificationStrategy(v SSHVerificationStrategy)

SetSshVerificationStrategy gets a reference to the given SSHVerificationStrategy and assigns it to the SshVerificationStrategy field.

func (*HostCreateParameters) SetToolkitPath

func (o *HostCreateParameters) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (HostCreateParameters) ToMap

func (o HostCreateParameters) ToMap() (map[string]interface{}, error)

type HostUpdateParameters

type HostUpdateParameters struct {
	// host address of the machine.
	Hostname *string `json:"hostname,omitempty"`
	// The name of the associated OracleClusterNode.
	OracleClusterNodeName *string `json:"oracle_cluster_node_name,omitempty"`
	// Whether the associated OracleClusterNode is enabled.
	OracleClusterNodeEnabled *bool `json:"oracle_cluster_node_enabled,omitempty"`
	// The Virtual IP addresses associated with the OracleClusterNode.
	OracleClusterNodeVirtualIps []OracleVirtualIP `json:"oracle_cluster_node_virtual_ips,omitempty"`
	// array of ip addresses or hostnames
	NfsAddresses []string `json:"nfs_addresses,omitempty"`
	// ssh port of the host.
	SshPort *int64 `json:"ssh_port,omitempty"`
	// The path for the toolkit that resides on the host.
	ToolkitPath *string `json:"toolkit_path,omitempty"`
	// The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used.
	JavaHome *string `json:"java_home,omitempty"`
	// DSP keystore path.
	DspKeystorePath *string `json:"dsp_keystore_path,omitempty"`
	// DSP keystore password.
	DspKeystorePassword *string `json:"dsp_keystore_password,omitempty"`
	// DSP keystore alias.
	DspKeystoreAlias *string `json:"dsp_keystore_alias,omitempty"`
	// DSP truststore path.
	DspTruststorePath *string `json:"dsp_truststore_path,omitempty"`
	// DSP truststore password.
	DspTruststorePassword *string `json:"dsp_truststore_password,omitempty"`
	// Specify port on which Delphix connector will run.
	ConnectorPort *int32 `json:"connector_port,omitempty"`
	// The password for the user managed Oracle JDBC keystore.
	OracleJdbcKeystorePassword *string `json:"oracle_jdbc_keystore_password,omitempty"`
	// The path to the root of the Oracle TDE keystores artifact directories.
	OracleTdeKeystoresRootPath *string                  `json:"oracle_tde_keystores_root_path,omitempty"`
	SshVerificationStrategy    *SSHVerificationStrategy `json:"ssh_verification_strategy,omitempty"`
	// Unique per Delphix key used to authenticate with the remote Delphix Connector.
	ConnectorAuthenticationKey *string `json:"connector_authentication_key,omitempty"`
}

HostUpdateParameters struct for HostUpdateParameters

func NewHostUpdateParameters

func NewHostUpdateParameters() *HostUpdateParameters

NewHostUpdateParameters instantiates a new HostUpdateParameters 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 NewHostUpdateParametersWithDefaults

func NewHostUpdateParametersWithDefaults() *HostUpdateParameters

NewHostUpdateParametersWithDefaults instantiates a new HostUpdateParameters 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 (*HostUpdateParameters) GetConnectorAuthenticationKey

func (o *HostUpdateParameters) GetConnectorAuthenticationKey() string

GetConnectorAuthenticationKey returns the ConnectorAuthenticationKey field value if set, zero value otherwise.

func (*HostUpdateParameters) GetConnectorAuthenticationKeyOk

func (o *HostUpdateParameters) GetConnectorAuthenticationKeyOk() (*string, bool)

GetConnectorAuthenticationKeyOk returns a tuple with the ConnectorAuthenticationKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetConnectorPort

func (o *HostUpdateParameters) GetConnectorPort() int32

GetConnectorPort returns the ConnectorPort field value if set, zero value otherwise.

func (*HostUpdateParameters) GetConnectorPortOk

func (o *HostUpdateParameters) GetConnectorPortOk() (*int32, bool)

GetConnectorPortOk returns a tuple with the ConnectorPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetDspKeystoreAlias

func (o *HostUpdateParameters) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystoreAliasOk

func (o *HostUpdateParameters) GetDspKeystoreAliasOk() (*string, bool)

GetDspKeystoreAliasOk returns a tuple with the DspKeystoreAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetDspKeystorePassword

func (o *HostUpdateParameters) GetDspKeystorePassword() string

GetDspKeystorePassword returns the DspKeystorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystorePasswordOk

func (o *HostUpdateParameters) GetDspKeystorePasswordOk() (*string, bool)

GetDspKeystorePasswordOk returns a tuple with the DspKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetDspKeystorePath

func (o *HostUpdateParameters) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystorePathOk

func (o *HostUpdateParameters) GetDspKeystorePathOk() (*string, bool)

GetDspKeystorePathOk returns a tuple with the DspKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetDspTruststorePassword

func (o *HostUpdateParameters) GetDspTruststorePassword() string

GetDspTruststorePassword returns the DspTruststorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspTruststorePasswordOk

func (o *HostUpdateParameters) GetDspTruststorePasswordOk() (*string, bool)

GetDspTruststorePasswordOk returns a tuple with the DspTruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetDspTruststorePath

func (o *HostUpdateParameters) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspTruststorePathOk

func (o *HostUpdateParameters) GetDspTruststorePathOk() (*string, bool)

GetDspTruststorePathOk returns a tuple with the DspTruststorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetHostname

func (o *HostUpdateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HostUpdateParameters) GetHostnameOk

func (o *HostUpdateParameters) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetJavaHome

func (o *HostUpdateParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*HostUpdateParameters) GetJavaHomeOk

func (o *HostUpdateParameters) GetJavaHomeOk() (*string, bool)

GetJavaHomeOk returns a tuple with the JavaHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetNfsAddresses

func (o *HostUpdateParameters) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*HostUpdateParameters) GetNfsAddressesOk

func (o *HostUpdateParameters) GetNfsAddressesOk() ([]string, bool)

GetNfsAddressesOk returns a tuple with the NfsAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetOracleClusterNodeEnabled

func (o *HostUpdateParameters) GetOracleClusterNodeEnabled() bool

GetOracleClusterNodeEnabled returns the OracleClusterNodeEnabled field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeEnabledOk

func (o *HostUpdateParameters) GetOracleClusterNodeEnabledOk() (*bool, bool)

GetOracleClusterNodeEnabledOk returns a tuple with the OracleClusterNodeEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetOracleClusterNodeName

func (o *HostUpdateParameters) GetOracleClusterNodeName() string

GetOracleClusterNodeName returns the OracleClusterNodeName field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeNameOk

func (o *HostUpdateParameters) GetOracleClusterNodeNameOk() (*string, bool)

GetOracleClusterNodeNameOk returns a tuple with the OracleClusterNodeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetOracleClusterNodeVirtualIps

func (o *HostUpdateParameters) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeVirtualIpsOk

func (o *HostUpdateParameters) GetOracleClusterNodeVirtualIpsOk() ([]OracleVirtualIP, bool)

GetOracleClusterNodeVirtualIpsOk returns a tuple with the OracleClusterNodeVirtualIps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetOracleJdbcKeystorePassword

func (o *HostUpdateParameters) GetOracleJdbcKeystorePassword() string

GetOracleJdbcKeystorePassword returns the OracleJdbcKeystorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleJdbcKeystorePasswordOk

func (o *HostUpdateParameters) GetOracleJdbcKeystorePasswordOk() (*string, bool)

GetOracleJdbcKeystorePasswordOk returns a tuple with the OracleJdbcKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetOracleTdeKeystoresRootPath

func (o *HostUpdateParameters) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleTdeKeystoresRootPathOk

func (o *HostUpdateParameters) GetOracleTdeKeystoresRootPathOk() (*string, bool)

GetOracleTdeKeystoresRootPathOk returns a tuple with the OracleTdeKeystoresRootPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetSshPort

func (o *HostUpdateParameters) GetSshPort() int64

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*HostUpdateParameters) GetSshPortOk

func (o *HostUpdateParameters) GetSshPortOk() (*int64, bool)

GetSshPortOk returns a tuple with the SshPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetSshVerificationStrategy

func (o *HostUpdateParameters) GetSshVerificationStrategy() SSHVerificationStrategy

GetSshVerificationStrategy returns the SshVerificationStrategy field value if set, zero value otherwise.

func (*HostUpdateParameters) GetSshVerificationStrategyOk

func (o *HostUpdateParameters) GetSshVerificationStrategyOk() (*SSHVerificationStrategy, bool)

GetSshVerificationStrategyOk returns a tuple with the SshVerificationStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) GetToolkitPath

func (o *HostUpdateParameters) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetToolkitPathOk

func (o *HostUpdateParameters) GetToolkitPathOk() (*string, bool)

GetToolkitPathOk returns a tuple with the ToolkitPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HostUpdateParameters) HasConnectorAuthenticationKey

func (o *HostUpdateParameters) HasConnectorAuthenticationKey() bool

HasConnectorAuthenticationKey returns a boolean if a field has been set.

func (*HostUpdateParameters) HasConnectorPort

func (o *HostUpdateParameters) HasConnectorPort() bool

HasConnectorPort returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystoreAlias

func (o *HostUpdateParameters) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystorePassword

func (o *HostUpdateParameters) HasDspKeystorePassword() bool

HasDspKeystorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystorePath

func (o *HostUpdateParameters) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspTruststorePassword

func (o *HostUpdateParameters) HasDspTruststorePassword() bool

HasDspTruststorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspTruststorePath

func (o *HostUpdateParameters) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasHostname

func (o *HostUpdateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HostUpdateParameters) HasJavaHome

func (o *HostUpdateParameters) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*HostUpdateParameters) HasNfsAddresses

func (o *HostUpdateParameters) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeEnabled

func (o *HostUpdateParameters) HasOracleClusterNodeEnabled() bool

HasOracleClusterNodeEnabled returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeName

func (o *HostUpdateParameters) HasOracleClusterNodeName() bool

HasOracleClusterNodeName returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeVirtualIps

func (o *HostUpdateParameters) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleJdbcKeystorePassword

func (o *HostUpdateParameters) HasOracleJdbcKeystorePassword() bool

HasOracleJdbcKeystorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleTdeKeystoresRootPath

func (o *HostUpdateParameters) HasOracleTdeKeystoresRootPath() bool

HasOracleTdeKeystoresRootPath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasSshPort

func (o *HostUpdateParameters) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*HostUpdateParameters) HasSshVerificationStrategy

func (o *HostUpdateParameters) HasSshVerificationStrategy() bool

HasSshVerificationStrategy returns a boolean if a field has been set.

func (*HostUpdateParameters) HasToolkitPath

func (o *HostUpdateParameters) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (HostUpdateParameters) MarshalJSON

func (o HostUpdateParameters) MarshalJSON() ([]byte, error)

func (*HostUpdateParameters) SetConnectorAuthenticationKey

func (o *HostUpdateParameters) SetConnectorAuthenticationKey(v string)

SetConnectorAuthenticationKey gets a reference to the given string and assigns it to the ConnectorAuthenticationKey field.

func (*HostUpdateParameters) SetConnectorPort

func (o *HostUpdateParameters) SetConnectorPort(v int32)

SetConnectorPort gets a reference to the given int32 and assigns it to the ConnectorPort field.

func (*HostUpdateParameters) SetDspKeystoreAlias

func (o *HostUpdateParameters) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*HostUpdateParameters) SetDspKeystorePassword

func (o *HostUpdateParameters) SetDspKeystorePassword(v string)

SetDspKeystorePassword gets a reference to the given string and assigns it to the DspKeystorePassword field.

func (*HostUpdateParameters) SetDspKeystorePath

func (o *HostUpdateParameters) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*HostUpdateParameters) SetDspTruststorePassword

func (o *HostUpdateParameters) SetDspTruststorePassword(v string)

SetDspTruststorePassword gets a reference to the given string and assigns it to the DspTruststorePassword field.

func (*HostUpdateParameters) SetDspTruststorePath

func (o *HostUpdateParameters) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*HostUpdateParameters) SetHostname

func (o *HostUpdateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HostUpdateParameters) SetJavaHome

func (o *HostUpdateParameters) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*HostUpdateParameters) SetNfsAddresses

func (o *HostUpdateParameters) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*HostUpdateParameters) SetOracleClusterNodeEnabled

func (o *HostUpdateParameters) SetOracleClusterNodeEnabled(v bool)

SetOracleClusterNodeEnabled gets a reference to the given bool and assigns it to the OracleClusterNodeEnabled field.

func (*HostUpdateParameters) SetOracleClusterNodeName

func (o *HostUpdateParameters) SetOracleClusterNodeName(v string)

SetOracleClusterNodeName gets a reference to the given string and assigns it to the OracleClusterNodeName field.

func (*HostUpdateParameters) SetOracleClusterNodeVirtualIps

func (o *HostUpdateParameters) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*HostUpdateParameters) SetOracleJdbcKeystorePassword

func (o *HostUpdateParameters) SetOracleJdbcKeystorePassword(v string)

SetOracleJdbcKeystorePassword gets a reference to the given string and assigns it to the OracleJdbcKeystorePassword field.

func (*HostUpdateParameters) SetOracleTdeKeystoresRootPath

func (o *HostUpdateParameters) SetOracleTdeKeystoresRootPath(v string)

SetOracleTdeKeystoresRootPath gets a reference to the given string and assigns it to the OracleTdeKeystoresRootPath field.

func (*HostUpdateParameters) SetSshPort

func (o *HostUpdateParameters) SetSshPort(v int64)

SetSshPort gets a reference to the given int64 and assigns it to the SshPort field.

func (*HostUpdateParameters) SetSshVerificationStrategy

func (o *HostUpdateParameters) SetSshVerificationStrategy(v SSHVerificationStrategy)

SetSshVerificationStrategy gets a reference to the given SSHVerificationStrategy and assigns it to the SshVerificationStrategy field.

func (*HostUpdateParameters) SetToolkitPath

func (o *HostUpdateParameters) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (HostUpdateParameters) ToMap

func (o HostUpdateParameters) ToMap() (map[string]interface{}, error)

type HyperscaleColumnOrField

type HyperscaleColumnOrField struct {
	// Name of the field.
	FieldName *string `json:"field_name,omitempty"`
	// The name of the domain assigned to this field.
	DomainName *string `json:"domain_name,omitempty"`
	// The name of the algorithm assigned to this field.
	AlgorithmName *string `json:"algorithm_name,omitempty"`
	// The format of the date assigned to this field.
	DateFormat *string `json:"date_format,omitempty"`
	// The name of the algorithm field that is associated with this algorithm.
	AlgorithmFieldName *string `json:"algorithm_field_name,omitempty"`
	// The group number of the algorithm to identify a set of columns associated with one instance of algorithm.
	AlgorithmGroupNo *int64 `json:"algorithm_group_no,omitempty"`
}

HyperscaleColumnOrField struct for HyperscaleColumnOrField

func NewHyperscaleColumnOrField

func NewHyperscaleColumnOrField() *HyperscaleColumnOrField

NewHyperscaleColumnOrField instantiates a new HyperscaleColumnOrField 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 NewHyperscaleColumnOrFieldWithDefaults

func NewHyperscaleColumnOrFieldWithDefaults() *HyperscaleColumnOrField

NewHyperscaleColumnOrFieldWithDefaults instantiates a new HyperscaleColumnOrField 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 (*HyperscaleColumnOrField) GetAlgorithmFieldName

func (o *HyperscaleColumnOrField) GetAlgorithmFieldName() string

GetAlgorithmFieldName returns the AlgorithmFieldName field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetAlgorithmFieldNameOk

func (o *HyperscaleColumnOrField) GetAlgorithmFieldNameOk() (*string, bool)

GetAlgorithmFieldNameOk returns a tuple with the AlgorithmFieldName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) GetAlgorithmGroupNo

func (o *HyperscaleColumnOrField) GetAlgorithmGroupNo() int64

GetAlgorithmGroupNo returns the AlgorithmGroupNo field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetAlgorithmGroupNoOk

func (o *HyperscaleColumnOrField) GetAlgorithmGroupNoOk() (*int64, bool)

GetAlgorithmGroupNoOk returns a tuple with the AlgorithmGroupNo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) GetAlgorithmName

func (o *HyperscaleColumnOrField) GetAlgorithmName() string

GetAlgorithmName returns the AlgorithmName field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetAlgorithmNameOk

func (o *HyperscaleColumnOrField) GetAlgorithmNameOk() (*string, bool)

GetAlgorithmNameOk returns a tuple with the AlgorithmName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) GetDateFormat

func (o *HyperscaleColumnOrField) GetDateFormat() string

GetDateFormat returns the DateFormat field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetDateFormatOk

func (o *HyperscaleColumnOrField) GetDateFormatOk() (*string, bool)

GetDateFormatOk returns a tuple with the DateFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) GetDomainName

func (o *HyperscaleColumnOrField) GetDomainName() string

GetDomainName returns the DomainName field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetDomainNameOk

func (o *HyperscaleColumnOrField) GetDomainNameOk() (*string, bool)

GetDomainNameOk returns a tuple with the DomainName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) GetFieldName

func (o *HyperscaleColumnOrField) GetFieldName() string

GetFieldName returns the FieldName field value if set, zero value otherwise.

func (*HyperscaleColumnOrField) GetFieldNameOk

func (o *HyperscaleColumnOrField) GetFieldNameOk() (*string, bool)

GetFieldNameOk returns a tuple with the FieldName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleColumnOrField) HasAlgorithmFieldName

func (o *HyperscaleColumnOrField) HasAlgorithmFieldName() bool

HasAlgorithmFieldName returns a boolean if a field has been set.

func (*HyperscaleColumnOrField) HasAlgorithmGroupNo

func (o *HyperscaleColumnOrField) HasAlgorithmGroupNo() bool

HasAlgorithmGroupNo returns a boolean if a field has been set.

func (*HyperscaleColumnOrField) HasAlgorithmName

func (o *HyperscaleColumnOrField) HasAlgorithmName() bool

HasAlgorithmName returns a boolean if a field has been set.

func (*HyperscaleColumnOrField) HasDateFormat

func (o *HyperscaleColumnOrField) HasDateFormat() bool

HasDateFormat returns a boolean if a field has been set.

func (*HyperscaleColumnOrField) HasDomainName

func (o *HyperscaleColumnOrField) HasDomainName() bool

HasDomainName returns a boolean if a field has been set.

func (*HyperscaleColumnOrField) HasFieldName

func (o *HyperscaleColumnOrField) HasFieldName() bool

HasFieldName returns a boolean if a field has been set.

func (HyperscaleColumnOrField) MarshalJSON

func (o HyperscaleColumnOrField) MarshalJSON() ([]byte, error)

func (*HyperscaleColumnOrField) SetAlgorithmFieldName

func (o *HyperscaleColumnOrField) SetAlgorithmFieldName(v string)

SetAlgorithmFieldName gets a reference to the given string and assigns it to the AlgorithmFieldName field.

func (*HyperscaleColumnOrField) SetAlgorithmGroupNo

func (o *HyperscaleColumnOrField) SetAlgorithmGroupNo(v int64)

SetAlgorithmGroupNo gets a reference to the given int64 and assigns it to the AlgorithmGroupNo field.

func (*HyperscaleColumnOrField) SetAlgorithmName

func (o *HyperscaleColumnOrField) SetAlgorithmName(v string)

SetAlgorithmName gets a reference to the given string and assigns it to the AlgorithmName field.

func (*HyperscaleColumnOrField) SetDateFormat

func (o *HyperscaleColumnOrField) SetDateFormat(v string)

SetDateFormat gets a reference to the given string and assigns it to the DateFormat field.

func (*HyperscaleColumnOrField) SetDomainName

func (o *HyperscaleColumnOrField) SetDomainName(v string)

SetDomainName gets a reference to the given string and assigns it to the DomainName field.

func (*HyperscaleColumnOrField) SetFieldName

func (o *HyperscaleColumnOrField) SetFieldName(v string)

SetFieldName gets a reference to the given string and assigns it to the FieldName field.

func (HyperscaleColumnOrField) ToMap

func (o HyperscaleColumnOrField) ToMap() (map[string]interface{}, error)

type HyperscaleConnector

type HyperscaleConnector struct {
	// The ID of the Hyperscale Connector.
	Id *string `json:"id,omitempty"`
	// The ID of the Hyperscale instance of this Dataset.
	HyperscaleInstanceId *string `json:"hyperscale_instance_id,omitempty"`
	// The username this Connector will use to connect to the source database.
	SourceUsername *string `json:"source_username,omitempty"`
	// The password this Connector will use to connect to the source database.
	SourcePassword *string `json:"source_password,omitempty"`
	// The JDBC URL used to connect to the source database.
	SourceJdbcUrl              *string            `json:"source_jdbc_url,omitempty"`
	SourceConnectionProperties *map[string]string `json:"source_connection_properties,omitempty"`
	// The username this Connector will use to connect to the target database.
	TargetUsername *string `json:"target_username,omitempty"`
	// The username this Connector will use to connect to the target database.
	TargetPassword *string `json:"target_password,omitempty"`
	// The JDBC URL used to connect to the target database.
	TargetJdbcUrl              *string            `json:"target_jdbc_url,omitempty"`
	TargetConnectionProperties *map[string]string `json:"target_connection_properties,omitempty"`
}

HyperscaleConnector A Hyperscale connector to read/write data from/to a datasource.

func NewHyperscaleConnector

func NewHyperscaleConnector() *HyperscaleConnector

NewHyperscaleConnector instantiates a new HyperscaleConnector 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 NewHyperscaleConnectorWithDefaults

func NewHyperscaleConnectorWithDefaults() *HyperscaleConnector

NewHyperscaleConnectorWithDefaults instantiates a new HyperscaleConnector 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 (*HyperscaleConnector) GetHyperscaleInstanceId

func (o *HyperscaleConnector) GetHyperscaleInstanceId() string

GetHyperscaleInstanceId returns the HyperscaleInstanceId field value if set, zero value otherwise.

func (*HyperscaleConnector) GetHyperscaleInstanceIdOk

func (o *HyperscaleConnector) GetHyperscaleInstanceIdOk() (*string, bool)

GetHyperscaleInstanceIdOk returns a tuple with the HyperscaleInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetId

func (o *HyperscaleConnector) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*HyperscaleConnector) GetIdOk

func (o *HyperscaleConnector) 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.

func (*HyperscaleConnector) GetSourceConnectionProperties

func (o *HyperscaleConnector) GetSourceConnectionProperties() map[string]string

GetSourceConnectionProperties returns the SourceConnectionProperties field value if set, zero value otherwise.

func (*HyperscaleConnector) GetSourceConnectionPropertiesOk

func (o *HyperscaleConnector) GetSourceConnectionPropertiesOk() (*map[string]string, bool)

GetSourceConnectionPropertiesOk returns a tuple with the SourceConnectionProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetSourceJdbcUrl

func (o *HyperscaleConnector) GetSourceJdbcUrl() string

GetSourceJdbcUrl returns the SourceJdbcUrl field value if set, zero value otherwise.

func (*HyperscaleConnector) GetSourceJdbcUrlOk

func (o *HyperscaleConnector) GetSourceJdbcUrlOk() (*string, bool)

GetSourceJdbcUrlOk returns a tuple with the SourceJdbcUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetSourcePassword

func (o *HyperscaleConnector) GetSourcePassword() string

GetSourcePassword returns the SourcePassword field value if set, zero value otherwise.

func (*HyperscaleConnector) GetSourcePasswordOk

func (o *HyperscaleConnector) GetSourcePasswordOk() (*string, bool)

GetSourcePasswordOk returns a tuple with the SourcePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetSourceUsername

func (o *HyperscaleConnector) GetSourceUsername() string

GetSourceUsername returns the SourceUsername field value if set, zero value otherwise.

func (*HyperscaleConnector) GetSourceUsernameOk

func (o *HyperscaleConnector) GetSourceUsernameOk() (*string, bool)

GetSourceUsernameOk returns a tuple with the SourceUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetTargetConnectionProperties

func (o *HyperscaleConnector) GetTargetConnectionProperties() map[string]string

GetTargetConnectionProperties returns the TargetConnectionProperties field value if set, zero value otherwise.

func (*HyperscaleConnector) GetTargetConnectionPropertiesOk

func (o *HyperscaleConnector) GetTargetConnectionPropertiesOk() (*map[string]string, bool)

GetTargetConnectionPropertiesOk returns a tuple with the TargetConnectionProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetTargetJdbcUrl

func (o *HyperscaleConnector) GetTargetJdbcUrl() string

GetTargetJdbcUrl returns the TargetJdbcUrl field value if set, zero value otherwise.

func (*HyperscaleConnector) GetTargetJdbcUrlOk

func (o *HyperscaleConnector) GetTargetJdbcUrlOk() (*string, bool)

GetTargetJdbcUrlOk returns a tuple with the TargetJdbcUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetTargetPassword

func (o *HyperscaleConnector) GetTargetPassword() string

GetTargetPassword returns the TargetPassword field value if set, zero value otherwise.

func (*HyperscaleConnector) GetTargetPasswordOk

func (o *HyperscaleConnector) GetTargetPasswordOk() (*string, bool)

GetTargetPasswordOk returns a tuple with the TargetPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) GetTargetUsername

func (o *HyperscaleConnector) GetTargetUsername() string

GetTargetUsername returns the TargetUsername field value if set, zero value otherwise.

func (*HyperscaleConnector) GetTargetUsernameOk

func (o *HyperscaleConnector) GetTargetUsernameOk() (*string, bool)

GetTargetUsernameOk returns a tuple with the TargetUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleConnector) HasHyperscaleInstanceId

func (o *HyperscaleConnector) HasHyperscaleInstanceId() bool

HasHyperscaleInstanceId returns a boolean if a field has been set.

func (*HyperscaleConnector) HasId

func (o *HyperscaleConnector) HasId() bool

HasId returns a boolean if a field has been set.

func (*HyperscaleConnector) HasSourceConnectionProperties

func (o *HyperscaleConnector) HasSourceConnectionProperties() bool

HasSourceConnectionProperties returns a boolean if a field has been set.

func (*HyperscaleConnector) HasSourceJdbcUrl

func (o *HyperscaleConnector) HasSourceJdbcUrl() bool

HasSourceJdbcUrl returns a boolean if a field has been set.

func (*HyperscaleConnector) HasSourcePassword

func (o *HyperscaleConnector) HasSourcePassword() bool

HasSourcePassword returns a boolean if a field has been set.

func (*HyperscaleConnector) HasSourceUsername

func (o *HyperscaleConnector) HasSourceUsername() bool

HasSourceUsername returns a boolean if a field has been set.

func (*HyperscaleConnector) HasTargetConnectionProperties

func (o *HyperscaleConnector) HasTargetConnectionProperties() bool

HasTargetConnectionProperties returns a boolean if a field has been set.

func (*HyperscaleConnector) HasTargetJdbcUrl

func (o *HyperscaleConnector) HasTargetJdbcUrl() bool

HasTargetJdbcUrl returns a boolean if a field has been set.

func (*HyperscaleConnector) HasTargetPassword

func (o *HyperscaleConnector) HasTargetPassword() bool

HasTargetPassword returns a boolean if a field has been set.

func (*HyperscaleConnector) HasTargetUsername

func (o *HyperscaleConnector) HasTargetUsername() bool

HasTargetUsername returns a boolean if a field has been set.

func (HyperscaleConnector) MarshalJSON

func (o HyperscaleConnector) MarshalJSON() ([]byte, error)

func (*HyperscaleConnector) SetHyperscaleInstanceId

func (o *HyperscaleConnector) SetHyperscaleInstanceId(v string)

SetHyperscaleInstanceId gets a reference to the given string and assigns it to the HyperscaleInstanceId field.

func (*HyperscaleConnector) SetId

func (o *HyperscaleConnector) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*HyperscaleConnector) SetSourceConnectionProperties

func (o *HyperscaleConnector) SetSourceConnectionProperties(v map[string]string)

SetSourceConnectionProperties gets a reference to the given map[string]string and assigns it to the SourceConnectionProperties field.

func (*HyperscaleConnector) SetSourceJdbcUrl

func (o *HyperscaleConnector) SetSourceJdbcUrl(v string)

SetSourceJdbcUrl gets a reference to the given string and assigns it to the SourceJdbcUrl field.

func (*HyperscaleConnector) SetSourcePassword

func (o *HyperscaleConnector) SetSourcePassword(v string)

SetSourcePassword gets a reference to the given string and assigns it to the SourcePassword field.

func (*HyperscaleConnector) SetSourceUsername

func (o *HyperscaleConnector) SetSourceUsername(v string)

SetSourceUsername gets a reference to the given string and assigns it to the SourceUsername field.

func (*HyperscaleConnector) SetTargetConnectionProperties

func (o *HyperscaleConnector) SetTargetConnectionProperties(v map[string]string)

SetTargetConnectionProperties gets a reference to the given map[string]string and assigns it to the TargetConnectionProperties field.

func (*HyperscaleConnector) SetTargetJdbcUrl

func (o *HyperscaleConnector) SetTargetJdbcUrl(v string)

SetTargetJdbcUrl gets a reference to the given string and assigns it to the TargetJdbcUrl field.

func (*HyperscaleConnector) SetTargetPassword

func (o *HyperscaleConnector) SetTargetPassword(v string)

SetTargetPassword gets a reference to the given string and assigns it to the TargetPassword field.

func (*HyperscaleConnector) SetTargetUsername

func (o *HyperscaleConnector) SetTargetUsername(v string)

SetTargetUsername gets a reference to the given string and assigns it to the TargetUsername field.

func (HyperscaleConnector) ToMap

func (o HyperscaleConnector) ToMap() (map[string]interface{}, error)

type HyperscaleDataset

type HyperscaleDataset struct {
	// The ID of the Hyperscale Dataset.
	Id *string `json:"id,omitempty"`
	// The ID of the Hyperscale instance of this Dataset.
	HyperscaleInstanceId *string `json:"hyperscale_instance_id,omitempty"`
	// The Id of the Hyperscale Mount Point used for this Dataset.
	MountPointId *string `json:"mount_point_id,omitempty"`
	// Id the Hyperscale Connector used to read sensitive data and write masked data.
	ConnectorId *string `json:"connector_id,omitempty"`
}

HyperscaleDataset A Hyperscale dataset.

func NewHyperscaleDataset

func NewHyperscaleDataset() *HyperscaleDataset

NewHyperscaleDataset instantiates a new HyperscaleDataset 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 NewHyperscaleDatasetWithDefaults

func NewHyperscaleDatasetWithDefaults() *HyperscaleDataset

NewHyperscaleDatasetWithDefaults instantiates a new HyperscaleDataset 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 (*HyperscaleDataset) GetConnectorId

func (o *HyperscaleDataset) GetConnectorId() string

GetConnectorId returns the ConnectorId field value if set, zero value otherwise.

func (*HyperscaleDataset) GetConnectorIdOk

func (o *HyperscaleDataset) GetConnectorIdOk() (*string, bool)

GetConnectorIdOk returns a tuple with the ConnectorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDataset) GetHyperscaleInstanceId

func (o *HyperscaleDataset) GetHyperscaleInstanceId() string

GetHyperscaleInstanceId returns the HyperscaleInstanceId field value if set, zero value otherwise.

func (*HyperscaleDataset) GetHyperscaleInstanceIdOk

func (o *HyperscaleDataset) GetHyperscaleInstanceIdOk() (*string, bool)

GetHyperscaleInstanceIdOk returns a tuple with the HyperscaleInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDataset) GetId

func (o *HyperscaleDataset) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*HyperscaleDataset) GetIdOk

func (o *HyperscaleDataset) 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.

func (*HyperscaleDataset) GetMountPointId

func (o *HyperscaleDataset) GetMountPointId() string

GetMountPointId returns the MountPointId field value if set, zero value otherwise.

func (*HyperscaleDataset) GetMountPointIdOk

func (o *HyperscaleDataset) GetMountPointIdOk() (*string, bool)

GetMountPointIdOk returns a tuple with the MountPointId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDataset) HasConnectorId

func (o *HyperscaleDataset) HasConnectorId() bool

HasConnectorId returns a boolean if a field has been set.

func (*HyperscaleDataset) HasHyperscaleInstanceId

func (o *HyperscaleDataset) HasHyperscaleInstanceId() bool

HasHyperscaleInstanceId returns a boolean if a field has been set.

func (*HyperscaleDataset) HasId

func (o *HyperscaleDataset) HasId() bool

HasId returns a boolean if a field has been set.

func (*HyperscaleDataset) HasMountPointId

func (o *HyperscaleDataset) HasMountPointId() bool

HasMountPointId returns a boolean if a field has been set.

func (HyperscaleDataset) MarshalJSON

func (o HyperscaleDataset) MarshalJSON() ([]byte, error)

func (*HyperscaleDataset) SetConnectorId

func (o *HyperscaleDataset) SetConnectorId(v string)

SetConnectorId gets a reference to the given string and assigns it to the ConnectorId field.

func (*HyperscaleDataset) SetHyperscaleInstanceId

func (o *HyperscaleDataset) SetHyperscaleInstanceId(v string)

SetHyperscaleInstanceId gets a reference to the given string and assigns it to the HyperscaleInstanceId field.

func (*HyperscaleDataset) SetId

func (o *HyperscaleDataset) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*HyperscaleDataset) SetMountPointId

func (o *HyperscaleDataset) SetMountPointId(v string)

SetMountPointId gets a reference to the given string and assigns it to the MountPointId field.

func (HyperscaleDataset) ToMap

func (o HyperscaleDataset) ToMap() (map[string]interface{}, error)

type HyperscaleDatasetTableOrFile

type HyperscaleDatasetTableOrFile struct {
	// Name of the table schema.
	SchemaName *string `json:"schema_name,omitempty"`
	// Name of the table.
	TableName *string `json:"table_name,omitempty"`
	// The unique database column field to filter the source data.
	FilterKey *string `json:"filter_key,omitempty"`
	// The number of column array rows to be used by the sqlldr oracle utility which determines the number of rows loaded before the stream buffer is built.
	ColumnArrayRows *int64 `json:"column_array_rows,omitempty"`
	// The number of unloaded files to be generated from the source database.
	UnloadSplit *int64 `json:"unload_split,omitempty"`
	// Long The stream size to be used by the sqlldr oracle utility which specifies the size (in bytes) of the data stream sent from the client to the server.
	StreamSize *int64 `json:"stream_size,omitempty"`
	// DataSet information for masking inventory.
	MaskingInventory []HyperscaleColumnOrField `json:"masking_inventory,omitempty"`
}

HyperscaleDatasetTableOrFile A table or file which is part of a hyperscale dataset.

func NewHyperscaleDatasetTableOrFile

func NewHyperscaleDatasetTableOrFile() *HyperscaleDatasetTableOrFile

NewHyperscaleDatasetTableOrFile instantiates a new HyperscaleDatasetTableOrFile 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 NewHyperscaleDatasetTableOrFileWithDefaults

func NewHyperscaleDatasetTableOrFileWithDefaults() *HyperscaleDatasetTableOrFile

NewHyperscaleDatasetTableOrFileWithDefaults instantiates a new HyperscaleDatasetTableOrFile 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 (*HyperscaleDatasetTableOrFile) GetColumnArrayRows

func (o *HyperscaleDatasetTableOrFile) GetColumnArrayRows() int64

GetColumnArrayRows returns the ColumnArrayRows field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetColumnArrayRowsOk

func (o *HyperscaleDatasetTableOrFile) GetColumnArrayRowsOk() (*int64, bool)

GetColumnArrayRowsOk returns a tuple with the ColumnArrayRows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetFilterKey

func (o *HyperscaleDatasetTableOrFile) GetFilterKey() string

GetFilterKey returns the FilterKey field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetFilterKeyOk

func (o *HyperscaleDatasetTableOrFile) GetFilterKeyOk() (*string, bool)

GetFilterKeyOk returns a tuple with the FilterKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetMaskingInventory

func (o *HyperscaleDatasetTableOrFile) GetMaskingInventory() []HyperscaleColumnOrField

GetMaskingInventory returns the MaskingInventory field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetMaskingInventoryOk

func (o *HyperscaleDatasetTableOrFile) GetMaskingInventoryOk() ([]HyperscaleColumnOrField, bool)

GetMaskingInventoryOk returns a tuple with the MaskingInventory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetSchemaName

func (o *HyperscaleDatasetTableOrFile) GetSchemaName() string

GetSchemaName returns the SchemaName field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetSchemaNameOk

func (o *HyperscaleDatasetTableOrFile) GetSchemaNameOk() (*string, bool)

GetSchemaNameOk returns a tuple with the SchemaName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetStreamSize

func (o *HyperscaleDatasetTableOrFile) GetStreamSize() int64

GetStreamSize returns the StreamSize field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetStreamSizeOk

func (o *HyperscaleDatasetTableOrFile) GetStreamSizeOk() (*int64, bool)

GetStreamSizeOk returns a tuple with the StreamSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetTableName

func (o *HyperscaleDatasetTableOrFile) GetTableName() string

GetTableName returns the TableName field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetTableNameOk

func (o *HyperscaleDatasetTableOrFile) GetTableNameOk() (*string, bool)

GetTableNameOk returns a tuple with the TableName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) GetUnloadSplit

func (o *HyperscaleDatasetTableOrFile) GetUnloadSplit() int64

GetUnloadSplit returns the UnloadSplit field value if set, zero value otherwise.

func (*HyperscaleDatasetTableOrFile) GetUnloadSplitOk

func (o *HyperscaleDatasetTableOrFile) GetUnloadSplitOk() (*int64, bool)

GetUnloadSplitOk returns a tuple with the UnloadSplit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleDatasetTableOrFile) HasColumnArrayRows

func (o *HyperscaleDatasetTableOrFile) HasColumnArrayRows() bool

HasColumnArrayRows returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasFilterKey

func (o *HyperscaleDatasetTableOrFile) HasFilterKey() bool

HasFilterKey returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasMaskingInventory

func (o *HyperscaleDatasetTableOrFile) HasMaskingInventory() bool

HasMaskingInventory returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasSchemaName

func (o *HyperscaleDatasetTableOrFile) HasSchemaName() bool

HasSchemaName returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasStreamSize

func (o *HyperscaleDatasetTableOrFile) HasStreamSize() bool

HasStreamSize returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasTableName

func (o *HyperscaleDatasetTableOrFile) HasTableName() bool

HasTableName returns a boolean if a field has been set.

func (*HyperscaleDatasetTableOrFile) HasUnloadSplit

func (o *HyperscaleDatasetTableOrFile) HasUnloadSplit() bool

HasUnloadSplit returns a boolean if a field has been set.

func (HyperscaleDatasetTableOrFile) MarshalJSON

func (o HyperscaleDatasetTableOrFile) MarshalJSON() ([]byte, error)

func (*HyperscaleDatasetTableOrFile) SetColumnArrayRows

func (o *HyperscaleDatasetTableOrFile) SetColumnArrayRows(v int64)

SetColumnArrayRows gets a reference to the given int64 and assigns it to the ColumnArrayRows field.

func (*HyperscaleDatasetTableOrFile) SetFilterKey

func (o *HyperscaleDatasetTableOrFile) SetFilterKey(v string)

SetFilterKey gets a reference to the given string and assigns it to the FilterKey field.

func (*HyperscaleDatasetTableOrFile) SetMaskingInventory

func (o *HyperscaleDatasetTableOrFile) SetMaskingInventory(v []HyperscaleColumnOrField)

SetMaskingInventory gets a reference to the given []HyperscaleColumnOrField and assigns it to the MaskingInventory field.

func (*HyperscaleDatasetTableOrFile) SetSchemaName

func (o *HyperscaleDatasetTableOrFile) SetSchemaName(v string)

SetSchemaName gets a reference to the given string and assigns it to the SchemaName field.

func (*HyperscaleDatasetTableOrFile) SetStreamSize

func (o *HyperscaleDatasetTableOrFile) SetStreamSize(v int64)

SetStreamSize gets a reference to the given int64 and assigns it to the StreamSize field.

func (*HyperscaleDatasetTableOrFile) SetTableName

func (o *HyperscaleDatasetTableOrFile) SetTableName(v string)

SetTableName gets a reference to the given string and assigns it to the TableName field.

func (*HyperscaleDatasetTableOrFile) SetUnloadSplit

func (o *HyperscaleDatasetTableOrFile) SetUnloadSplit(v int64)

SetUnloadSplit gets a reference to the given int64 and assigns it to the UnloadSplit field.

func (HyperscaleDatasetTableOrFile) ToMap

func (o HyperscaleDatasetTableOrFile) ToMap() (map[string]interface{}, error)

type HyperscaleInstance

type HyperscaleInstance struct {
	// The Hyperscale instance entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this hyperscale instance.
	Name string `json:"name"`
	// The hostname of this hyperscale instance.
	Hostname string `json:"hostname"`
	// The date this hyperscale instance was registered.
	CreationDate *time.Time `json:"creation_date,omitempty"`
	// The tags to be created for this hyperscale instance.
	Tags []Tag `json:"tags,omitempty"`
	// API key to connect to the hyperscale instance.
	ApiKey string `json:"api_key"`
	// Allow connections to the hyperscale instance over HTTPs without validating the TLS certificate. Even though the connection to the hyperscale instance might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the hyperscale instance's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the hyperscale instance over HTTPs. Setting this value must only be done if the TLS certificate of the hyperscale instance does not match the hostname, and the TLS configuration of the hyperscale instance cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this hyperscale instance. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the hyperscale instance. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename NullableString `json:"truststore_filename,omitempty"`
	// Password to read the truststore.
	TruststorePassword NullableString `json:"truststore_password,omitempty"`
	// The status of this hyperscale instance.
	Status NullableString `json:"status,omitempty"`
}

HyperscaleInstance A registered Hyperscale instance's connection and authentication settings.

func NewHyperscaleInstance

func NewHyperscaleInstance(name string, hostname string, apiKey string) *HyperscaleInstance

NewHyperscaleInstance instantiates a new HyperscaleInstance 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 NewHyperscaleInstanceWithDefaults

func NewHyperscaleInstanceWithDefaults() *HyperscaleInstance

NewHyperscaleInstanceWithDefaults instantiates a new HyperscaleInstance 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 (*HyperscaleInstance) GetApiKey

func (o *HyperscaleInstance) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*HyperscaleInstance) GetApiKeyOk

func (o *HyperscaleInstance) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value and a boolean to check if the value has been set.

func (*HyperscaleInstance) GetCreationDate

func (o *HyperscaleInstance) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*HyperscaleInstance) GetCreationDateOk

func (o *HyperscaleInstance) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstance) GetHostname

func (o *HyperscaleInstance) GetHostname() string

GetHostname returns the Hostname field value

func (*HyperscaleInstance) GetHostnameOk

func (o *HyperscaleInstance) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*HyperscaleInstance) GetId

func (o *HyperscaleInstance) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*HyperscaleInstance) GetIdOk

func (o *HyperscaleInstance) 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.

func (*HyperscaleInstance) GetInsecureSsl

func (o *HyperscaleInstance) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*HyperscaleInstance) GetInsecureSslOk

func (o *HyperscaleInstance) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstance) GetName

func (o *HyperscaleInstance) GetName() string

GetName returns the Name field value

func (*HyperscaleInstance) GetNameOk

func (o *HyperscaleInstance) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*HyperscaleInstance) GetStatus

func (o *HyperscaleInstance) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstance) GetStatusOk

func (o *HyperscaleInstance) 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 (*HyperscaleInstance) GetTags

func (o *HyperscaleInstance) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*HyperscaleInstance) GetTagsOk

func (o *HyperscaleInstance) 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.

func (*HyperscaleInstance) GetTruststoreFilename

func (o *HyperscaleInstance) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstance) GetTruststoreFilenameOk

func (o *HyperscaleInstance) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstance) GetTruststorePassword

func (o *HyperscaleInstance) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstance) GetTruststorePasswordOk

func (o *HyperscaleInstance) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstance) GetUnsafeSslHostnameCheck

func (o *HyperscaleInstance) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*HyperscaleInstance) GetUnsafeSslHostnameCheckOk

func (o *HyperscaleInstance) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstance) HasCreationDate

func (o *HyperscaleInstance) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*HyperscaleInstance) HasId

func (o *HyperscaleInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*HyperscaleInstance) HasInsecureSsl

func (o *HyperscaleInstance) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*HyperscaleInstance) HasStatus

func (o *HyperscaleInstance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*HyperscaleInstance) HasTags

func (o *HyperscaleInstance) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*HyperscaleInstance) HasTruststoreFilename

func (o *HyperscaleInstance) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*HyperscaleInstance) HasTruststorePassword

func (o *HyperscaleInstance) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*HyperscaleInstance) HasUnsafeSslHostnameCheck

func (o *HyperscaleInstance) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (HyperscaleInstance) MarshalJSON

func (o HyperscaleInstance) MarshalJSON() ([]byte, error)

func (*HyperscaleInstance) SetApiKey

func (o *HyperscaleInstance) SetApiKey(v string)

SetApiKey sets field value

func (*HyperscaleInstance) SetCreationDate

func (o *HyperscaleInstance) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.

func (*HyperscaleInstance) SetHostname

func (o *HyperscaleInstance) SetHostname(v string)

SetHostname sets field value

func (*HyperscaleInstance) SetId

func (o *HyperscaleInstance) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*HyperscaleInstance) SetInsecureSsl

func (o *HyperscaleInstance) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*HyperscaleInstance) SetName

func (o *HyperscaleInstance) SetName(v string)

SetName sets field value

func (*HyperscaleInstance) SetStatus

func (o *HyperscaleInstance) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*HyperscaleInstance) SetStatusNil

func (o *HyperscaleInstance) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*HyperscaleInstance) SetTags

func (o *HyperscaleInstance) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*HyperscaleInstance) SetTruststoreFilename

func (o *HyperscaleInstance) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given NullableString and assigns it to the TruststoreFilename field.

func (*HyperscaleInstance) SetTruststoreFilenameNil

func (o *HyperscaleInstance) SetTruststoreFilenameNil()

SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil

func (*HyperscaleInstance) SetTruststorePassword

func (o *HyperscaleInstance) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given NullableString and assigns it to the TruststorePassword field.

func (*HyperscaleInstance) SetTruststorePasswordNil

func (o *HyperscaleInstance) SetTruststorePasswordNil()

SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil

func (*HyperscaleInstance) SetUnsafeSslHostnameCheck

func (o *HyperscaleInstance) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (HyperscaleInstance) ToMap

func (o HyperscaleInstance) ToMap() (map[string]interface{}, error)

func (*HyperscaleInstance) UnsetStatus

func (o *HyperscaleInstance) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*HyperscaleInstance) UnsetTruststoreFilename

func (o *HyperscaleInstance) UnsetTruststoreFilename()

UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil

func (*HyperscaleInstance) UnsetTruststorePassword

func (o *HyperscaleInstance) UnsetTruststorePassword()

UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil

type HyperscaleInstanceApiService

type HyperscaleInstanceApiService service

HyperscaleInstanceApiService HyperscaleInstanceApi service

func (*HyperscaleInstanceApiService) CreateHyperscaleInstanceTags

func (a *HyperscaleInstanceApiService) CreateHyperscaleInstanceTags(ctx context.Context, hyperscaleInstanceId string) ApiCreateHyperscaleInstanceTagsRequest

CreateHyperscaleInstanceTags Create tags for a Hyperscale Instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiCreateHyperscaleInstanceTagsRequest

func (*HyperscaleInstanceApiService) CreateHyperscaleInstanceTagsExecute

Execute executes the request

@return TagsResponse

func (*HyperscaleInstanceApiService) DeleteHyperscaleInstanceTags

func (a *HyperscaleInstanceApiService) DeleteHyperscaleInstanceTags(ctx context.Context, hyperscaleInstanceId string) ApiDeleteHyperscaleInstanceTagsRequest

DeleteHyperscaleInstanceTags Delete tags for a Hyperscale Instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiDeleteHyperscaleInstanceTagsRequest

func (*HyperscaleInstanceApiService) DeleteHyperscaleInstanceTagsExecute

func (a *HyperscaleInstanceApiService) DeleteHyperscaleInstanceTagsExecute(r ApiDeleteHyperscaleInstanceTagsRequest) (*http.Response, error)

Execute executes the request

func (*HyperscaleInstanceApiService) GetHyperscaleInstanceById

func (a *HyperscaleInstanceApiService) GetHyperscaleInstanceById(ctx context.Context, hyperscaleInstanceId string) ApiGetHyperscaleInstanceByIdRequest

GetHyperscaleInstanceById Returns a Hyperscale Instance by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiGetHyperscaleInstanceByIdRequest

func (*HyperscaleInstanceApiService) GetHyperscaleInstanceByIdExecute

Execute executes the request

@return HyperscaleInstance

func (*HyperscaleInstanceApiService) GetHyperscaleInstanceTags

func (a *HyperscaleInstanceApiService) GetHyperscaleInstanceTags(ctx context.Context, hyperscaleInstanceId string) ApiGetHyperscaleInstanceTagsRequest

GetHyperscaleInstanceTags Get tags for a Hyperscale Instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiGetHyperscaleInstanceTagsRequest

func (*HyperscaleInstanceApiService) GetHyperscaleInstanceTagsExecute

Execute executes the request

@return TagsResponse

func (*HyperscaleInstanceApiService) GetHyperscaleInstances

GetHyperscaleInstances Returns a list of Hyperscale instances.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetHyperscaleInstancesRequest

func (*HyperscaleInstanceApiService) GetHyperscaleInstancesExecute

Execute executes the request

@return ListHyperscaleInstancesResponse

func (*HyperscaleInstanceApiService) RegisterHyperscaleInstance

RegisterHyperscaleInstance Register a Hyperscale instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRegisterHyperscaleInstanceRequest

func (*HyperscaleInstanceApiService) RegisterHyperscaleInstanceExecute

Execute executes the request

@return HyperscaleInstance

func (*HyperscaleInstanceApiService) SearchHyperscaleInstances

SearchHyperscaleInstances Search for Hyperscale instances.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchHyperscaleInstancesRequest

func (*HyperscaleInstanceApiService) SearchHyperscaleInstancesExecute

Execute executes the request

@return SearchHyperscaleInstancesResponse

func (*HyperscaleInstanceApiService) UnregisterHyperscaleInstance

func (a *HyperscaleInstanceApiService) UnregisterHyperscaleInstance(ctx context.Context, hyperscaleInstanceId string) ApiUnregisterHyperscaleInstanceRequest

UnregisterHyperscaleInstance Unregister a Hyperscale Instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiUnregisterHyperscaleInstanceRequest

func (*HyperscaleInstanceApiService) UnregisterHyperscaleInstanceExecute

Execute executes the request

@return UnregisterHyperscaleInstanceResponse

func (*HyperscaleInstanceApiService) UpdateHyperscaleInstance

func (a *HyperscaleInstanceApiService) UpdateHyperscaleInstance(ctx context.Context, hyperscaleInstanceId string) ApiUpdateHyperscaleInstanceRequest

UpdateHyperscaleInstance Update an Hyperscale Instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleInstanceId The ID of hyperscale instance.
@return ApiUpdateHyperscaleInstanceRequest

func (*HyperscaleInstanceApiService) UpdateHyperscaleInstanceExecute

Execute executes the request

@return HyperscaleInstance

type HyperscaleInstanceRegistrationParameter

type HyperscaleInstanceRegistrationParameter struct {
	// Name in DCT of the Hyperscale instance.
	Name string `json:"name"`
	// Hostname of the Hyperscale instance.
	Hostname string `json:"hostname"`
	// API key to connect to the Hyperscale instance.
	ApiKey NullableString `json:"api_key"`
	// Allow connections to the hyperscale instance over HTTPs without validating the TLS certificate. Even though the connection to the hyperscale instance might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the hyperscale instance's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the hyperscale instance over HTTPs. Setting this value must only be done if the TLS certificate of the hyperscale instance does not match the hostname, and the TLS configuration of the hyperscale instance cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this engine. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the hyperscale instance. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename NullableString `json:"truststore_filename,omitempty"`
	// Password to read the truststore.
	TruststorePassword NullableString `json:"truststore_password,omitempty"`
	// The tags to be created for this engine.
	Tags []Tag `json:"tags,omitempty"`
}

HyperscaleInstanceRegistrationParameter Parameters to register and authenticate a Hyperscale instance

func NewHyperscaleInstanceRegistrationParameter

func NewHyperscaleInstanceRegistrationParameter(name string, hostname string, apiKey NullableString) *HyperscaleInstanceRegistrationParameter

NewHyperscaleInstanceRegistrationParameter instantiates a new HyperscaleInstanceRegistrationParameter 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 NewHyperscaleInstanceRegistrationParameterWithDefaults

func NewHyperscaleInstanceRegistrationParameterWithDefaults() *HyperscaleInstanceRegistrationParameter

NewHyperscaleInstanceRegistrationParameterWithDefaults instantiates a new HyperscaleInstanceRegistrationParameter 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 (*HyperscaleInstanceRegistrationParameter) GetApiKey

GetApiKey returns the ApiKey field value If the value is explicit nil, the zero value for string will be returned

func (*HyperscaleInstanceRegistrationParameter) GetApiKeyOk

GetApiKeyOk returns a tuple with the ApiKey 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 (*HyperscaleInstanceRegistrationParameter) GetHostname

GetHostname returns the Hostname field value

func (*HyperscaleInstanceRegistrationParameter) GetHostnameOk

func (o *HyperscaleInstanceRegistrationParameter) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*HyperscaleInstanceRegistrationParameter) GetInsecureSsl

func (o *HyperscaleInstanceRegistrationParameter) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*HyperscaleInstanceRegistrationParameter) GetInsecureSslOk

func (o *HyperscaleInstanceRegistrationParameter) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstanceRegistrationParameter) GetName

GetName returns the Name field value

func (*HyperscaleInstanceRegistrationParameter) GetNameOk

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*HyperscaleInstanceRegistrationParameter) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*HyperscaleInstanceRegistrationParameter) GetTagsOk

func (o *HyperscaleInstanceRegistrationParameter) 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.

func (*HyperscaleInstanceRegistrationParameter) GetTruststoreFilename

func (o *HyperscaleInstanceRegistrationParameter) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstanceRegistrationParameter) GetTruststoreFilenameOk

func (o *HyperscaleInstanceRegistrationParameter) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstanceRegistrationParameter) GetTruststorePassword

func (o *HyperscaleInstanceRegistrationParameter) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstanceRegistrationParameter) GetTruststorePasswordOk

func (o *HyperscaleInstanceRegistrationParameter) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstanceRegistrationParameter) GetUnsafeSslHostnameCheck

func (o *HyperscaleInstanceRegistrationParameter) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*HyperscaleInstanceRegistrationParameter) GetUnsafeSslHostnameCheckOk

func (o *HyperscaleInstanceRegistrationParameter) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstanceRegistrationParameter) HasInsecureSsl

func (o *HyperscaleInstanceRegistrationParameter) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*HyperscaleInstanceRegistrationParameter) HasTags

HasTags returns a boolean if a field has been set.

func (*HyperscaleInstanceRegistrationParameter) HasTruststoreFilename

func (o *HyperscaleInstanceRegistrationParameter) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*HyperscaleInstanceRegistrationParameter) HasTruststorePassword

func (o *HyperscaleInstanceRegistrationParameter) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*HyperscaleInstanceRegistrationParameter) HasUnsafeSslHostnameCheck

func (o *HyperscaleInstanceRegistrationParameter) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (HyperscaleInstanceRegistrationParameter) MarshalJSON

func (o HyperscaleInstanceRegistrationParameter) MarshalJSON() ([]byte, error)

func (*HyperscaleInstanceRegistrationParameter) SetApiKey

SetApiKey sets field value

func (*HyperscaleInstanceRegistrationParameter) SetHostname

SetHostname sets field value

func (*HyperscaleInstanceRegistrationParameter) SetInsecureSsl

func (o *HyperscaleInstanceRegistrationParameter) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*HyperscaleInstanceRegistrationParameter) SetName

SetName sets field value

func (*HyperscaleInstanceRegistrationParameter) SetTags

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*HyperscaleInstanceRegistrationParameter) SetTruststoreFilename

func (o *HyperscaleInstanceRegistrationParameter) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given NullableString and assigns it to the TruststoreFilename field.

func (*HyperscaleInstanceRegistrationParameter) SetTruststoreFilenameNil

func (o *HyperscaleInstanceRegistrationParameter) SetTruststoreFilenameNil()

SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil

func (*HyperscaleInstanceRegistrationParameter) SetTruststorePassword

func (o *HyperscaleInstanceRegistrationParameter) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given NullableString and assigns it to the TruststorePassword field.

func (*HyperscaleInstanceRegistrationParameter) SetTruststorePasswordNil

func (o *HyperscaleInstanceRegistrationParameter) SetTruststorePasswordNil()

SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil

func (*HyperscaleInstanceRegistrationParameter) SetUnsafeSslHostnameCheck

func (o *HyperscaleInstanceRegistrationParameter) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (HyperscaleInstanceRegistrationParameter) ToMap

func (o HyperscaleInstanceRegistrationParameter) ToMap() (map[string]interface{}, error)

func (*HyperscaleInstanceRegistrationParameter) UnsetTruststoreFilename

func (o *HyperscaleInstanceRegistrationParameter) UnsetTruststoreFilename()

UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil

func (*HyperscaleInstanceRegistrationParameter) UnsetTruststorePassword

func (o *HyperscaleInstanceRegistrationParameter) UnsetTruststorePassword()

UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil

type HyperscaleInstanceUpdateParams

type HyperscaleInstanceUpdateParams struct {
	// Name in DCT of the Hyperscale instance.
	Name *string `json:"name,omitempty"`
	// Hostname of the Hyperscale instance.
	Hostname *string `json:"hostname,omitempty"`
	// API key to connect to the Hyperscale instance.
	ApiKey NullableString `json:"api_key,omitempty"`
	// Allow connections to the hyperscale instance over HTTPs without validating the TLS certificate. Even though the connection to the hyperscale instance might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the hyperscale instance's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the hyperscale instance over HTTPs. Setting this value must only be done if the TLS certificate of the hyperscale instance does not match the hostname, and the TLS configuration of the hyperscale instance cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this engine. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the hyperscale instance. The truststore must be available at /etc/config/certs/<truststore_filename>. Set this property to an empty string to clear the value.
	TruststoreFilename NullableString `json:"truststore_filename,omitempty"`
	// Password to read the truststore. Set this property to an empty string to clear the value.
	TruststorePassword NullableString `json:"truststore_password,omitempty"`
}

HyperscaleInstanceUpdateParams Parameters to update a Hyperscale instances.

func NewHyperscaleInstanceUpdateParams

func NewHyperscaleInstanceUpdateParams() *HyperscaleInstanceUpdateParams

NewHyperscaleInstanceUpdateParams instantiates a new HyperscaleInstanceUpdateParams 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 NewHyperscaleInstanceUpdateParamsWithDefaults

func NewHyperscaleInstanceUpdateParamsWithDefaults() *HyperscaleInstanceUpdateParams

NewHyperscaleInstanceUpdateParamsWithDefaults instantiates a new HyperscaleInstanceUpdateParams 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 (*HyperscaleInstanceUpdateParams) GetApiKey

func (o *HyperscaleInstanceUpdateParams) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstanceUpdateParams) GetApiKeyOk

func (o *HyperscaleInstanceUpdateParams) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstanceUpdateParams) GetHostname

func (o *HyperscaleInstanceUpdateParams) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HyperscaleInstanceUpdateParams) GetHostnameOk

func (o *HyperscaleInstanceUpdateParams) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstanceUpdateParams) GetInsecureSsl

func (o *HyperscaleInstanceUpdateParams) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*HyperscaleInstanceUpdateParams) GetInsecureSslOk

func (o *HyperscaleInstanceUpdateParams) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstanceUpdateParams) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*HyperscaleInstanceUpdateParams) GetNameOk

func (o *HyperscaleInstanceUpdateParams) 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.

func (*HyperscaleInstanceUpdateParams) GetTruststoreFilename

func (o *HyperscaleInstanceUpdateParams) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstanceUpdateParams) GetTruststoreFilenameOk

func (o *HyperscaleInstanceUpdateParams) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstanceUpdateParams) GetTruststorePassword

func (o *HyperscaleInstanceUpdateParams) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HyperscaleInstanceUpdateParams) GetTruststorePasswordOk

func (o *HyperscaleInstanceUpdateParams) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HyperscaleInstanceUpdateParams) GetUnsafeSslHostnameCheck

func (o *HyperscaleInstanceUpdateParams) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*HyperscaleInstanceUpdateParams) GetUnsafeSslHostnameCheckOk

func (o *HyperscaleInstanceUpdateParams) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleInstanceUpdateParams) HasApiKey

func (o *HyperscaleInstanceUpdateParams) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasHostname

func (o *HyperscaleInstanceUpdateParams) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasInsecureSsl

func (o *HyperscaleInstanceUpdateParams) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasName

func (o *HyperscaleInstanceUpdateParams) HasName() bool

HasName returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasTruststoreFilename

func (o *HyperscaleInstanceUpdateParams) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasTruststorePassword

func (o *HyperscaleInstanceUpdateParams) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*HyperscaleInstanceUpdateParams) HasUnsafeSslHostnameCheck

func (o *HyperscaleInstanceUpdateParams) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (HyperscaleInstanceUpdateParams) MarshalJSON

func (o HyperscaleInstanceUpdateParams) MarshalJSON() ([]byte, error)

func (*HyperscaleInstanceUpdateParams) SetApiKey

func (o *HyperscaleInstanceUpdateParams) SetApiKey(v string)

SetApiKey gets a reference to the given NullableString and assigns it to the ApiKey field.

func (*HyperscaleInstanceUpdateParams) SetApiKeyNil

func (o *HyperscaleInstanceUpdateParams) SetApiKeyNil()

SetApiKeyNil sets the value for ApiKey to be an explicit nil

func (*HyperscaleInstanceUpdateParams) SetHostname

func (o *HyperscaleInstanceUpdateParams) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HyperscaleInstanceUpdateParams) SetInsecureSsl

func (o *HyperscaleInstanceUpdateParams) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*HyperscaleInstanceUpdateParams) SetName

func (o *HyperscaleInstanceUpdateParams) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*HyperscaleInstanceUpdateParams) SetTruststoreFilename

func (o *HyperscaleInstanceUpdateParams) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given NullableString and assigns it to the TruststoreFilename field.

func (*HyperscaleInstanceUpdateParams) SetTruststoreFilenameNil

func (o *HyperscaleInstanceUpdateParams) SetTruststoreFilenameNil()

SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil

func (*HyperscaleInstanceUpdateParams) SetTruststorePassword

func (o *HyperscaleInstanceUpdateParams) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given NullableString and assigns it to the TruststorePassword field.

func (*HyperscaleInstanceUpdateParams) SetTruststorePasswordNil

func (o *HyperscaleInstanceUpdateParams) SetTruststorePasswordNil()

SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil

func (*HyperscaleInstanceUpdateParams) SetUnsafeSslHostnameCheck

func (o *HyperscaleInstanceUpdateParams) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (HyperscaleInstanceUpdateParams) ToMap

func (o HyperscaleInstanceUpdateParams) ToMap() (map[string]interface{}, error)

func (*HyperscaleInstanceUpdateParams) UnsetApiKey

func (o *HyperscaleInstanceUpdateParams) UnsetApiKey()

UnsetApiKey ensures that no value is present for ApiKey, not even an explicit nil

func (*HyperscaleInstanceUpdateParams) UnsetTruststoreFilename

func (o *HyperscaleInstanceUpdateParams) UnsetTruststoreFilename()

UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil

func (*HyperscaleInstanceUpdateParams) UnsetTruststorePassword

func (o *HyperscaleInstanceUpdateParams) UnsetTruststorePassword()

UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil

type HyperscaleMountPoint

type HyperscaleMountPoint struct {
	// The ID of the Hyperscale Mount Point.
	Id *string `json:"id,omitempty"`
	// The ID of the Hyperscale instance of this Mount Point.
	HyperscaleInstanceId *string `json:"hyperscale_instance_id,omitempty"`
	// Name of the mount, unique for a hyperscale instance. This name will be used as a directory name by the Hyperscale instance.
	Name *string `json:"name,omitempty"`
	// The host name of the server.
	Hostname *string `json:"hostname,omitempty"`
	// The path to the directory on the filesystem to mount.
	MountPath *string `json:"mount_path,omitempty"`
	// The type of filesystem. Enum having values- CIFS, NFS3, NFS4.
	MountType *string `json:"mount_type,omitempty"`
	// The options for mount. The endpoint will return all default options and user specified options.
	Options *string `json:"options,omitempty"`
}

HyperscaleMountPoint A Mount Point for the Hyperscale instance to write to a staging area and engines to read from.

func NewHyperscaleMountPoint

func NewHyperscaleMountPoint() *HyperscaleMountPoint

NewHyperscaleMountPoint instantiates a new HyperscaleMountPoint 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 NewHyperscaleMountPointWithDefaults

func NewHyperscaleMountPointWithDefaults() *HyperscaleMountPoint

NewHyperscaleMountPointWithDefaults instantiates a new HyperscaleMountPoint 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 (*HyperscaleMountPoint) GetHostname

func (o *HyperscaleMountPoint) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetHostnameOk

func (o *HyperscaleMountPoint) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleMountPoint) GetHyperscaleInstanceId

func (o *HyperscaleMountPoint) GetHyperscaleInstanceId() string

GetHyperscaleInstanceId returns the HyperscaleInstanceId field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetHyperscaleInstanceIdOk

func (o *HyperscaleMountPoint) GetHyperscaleInstanceIdOk() (*string, bool)

GetHyperscaleInstanceIdOk returns a tuple with the HyperscaleInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleMountPoint) GetId

func (o *HyperscaleMountPoint) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetIdOk

func (o *HyperscaleMountPoint) 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.

func (*HyperscaleMountPoint) GetMountPath

func (o *HyperscaleMountPoint) GetMountPath() string

GetMountPath returns the MountPath field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetMountPathOk

func (o *HyperscaleMountPoint) GetMountPathOk() (*string, bool)

GetMountPathOk returns a tuple with the MountPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleMountPoint) GetMountType

func (o *HyperscaleMountPoint) GetMountType() string

GetMountType returns the MountType field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetMountTypeOk

func (o *HyperscaleMountPoint) GetMountTypeOk() (*string, bool)

GetMountTypeOk returns a tuple with the MountType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleMountPoint) GetName

func (o *HyperscaleMountPoint) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetNameOk

func (o *HyperscaleMountPoint) 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.

func (*HyperscaleMountPoint) GetOptions

func (o *HyperscaleMountPoint) GetOptions() string

GetOptions returns the Options field value if set, zero value otherwise.

func (*HyperscaleMountPoint) GetOptionsOk

func (o *HyperscaleMountPoint) GetOptionsOk() (*string, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleMountPoint) HasHostname

func (o *HyperscaleMountPoint) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasHyperscaleInstanceId

func (o *HyperscaleMountPoint) HasHyperscaleInstanceId() bool

HasHyperscaleInstanceId returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasId

func (o *HyperscaleMountPoint) HasId() bool

HasId returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasMountPath

func (o *HyperscaleMountPoint) HasMountPath() bool

HasMountPath returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasMountType

func (o *HyperscaleMountPoint) HasMountType() bool

HasMountType returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasName

func (o *HyperscaleMountPoint) HasName() bool

HasName returns a boolean if a field has been set.

func (*HyperscaleMountPoint) HasOptions

func (o *HyperscaleMountPoint) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (HyperscaleMountPoint) MarshalJSON

func (o HyperscaleMountPoint) MarshalJSON() ([]byte, error)

func (*HyperscaleMountPoint) SetHostname

func (o *HyperscaleMountPoint) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HyperscaleMountPoint) SetHyperscaleInstanceId

func (o *HyperscaleMountPoint) SetHyperscaleInstanceId(v string)

SetHyperscaleInstanceId gets a reference to the given string and assigns it to the HyperscaleInstanceId field.

func (*HyperscaleMountPoint) SetId

func (o *HyperscaleMountPoint) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*HyperscaleMountPoint) SetMountPath

func (o *HyperscaleMountPoint) SetMountPath(v string)

SetMountPath gets a reference to the given string and assigns it to the MountPath field.

func (*HyperscaleMountPoint) SetMountType

func (o *HyperscaleMountPoint) SetMountType(v string)

SetMountType gets a reference to the given string and assigns it to the MountType field.

func (*HyperscaleMountPoint) SetName

func (o *HyperscaleMountPoint) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*HyperscaleMountPoint) SetOptions

func (o *HyperscaleMountPoint) SetOptions(v string)

SetOptions gets a reference to the given string and assigns it to the Options field.

func (HyperscaleMountPoint) ToMap

func (o HyperscaleMountPoint) ToMap() (map[string]interface{}, error)

type HyperscaleObjectsApiService

type HyperscaleObjectsApiService service

HyperscaleObjectsApiService HyperscaleObjectsApi service

func (*HyperscaleObjectsApiService) GetHyperscaleConnectorById

func (a *HyperscaleObjectsApiService) GetHyperscaleConnectorById(ctx context.Context, hyperscaleConnectorId string) ApiGetHyperscaleConnectorByIdRequest

GetHyperscaleConnectorById Get a Hyperscale Connector.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleConnectorId The ID of the Hyperscale Connector.
@return ApiGetHyperscaleConnectorByIdRequest

func (*HyperscaleObjectsApiService) GetHyperscaleConnectorByIdExecute

Execute executes the request

@return HyperscaleConnector

func (*HyperscaleObjectsApiService) GetHyperscaleConnectors

GetHyperscaleConnectors Returns a list of Hyperscale Connectors.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetHyperscaleConnectorsRequest

func (*HyperscaleObjectsApiService) GetHyperscaleConnectorsExecute

Execute executes the request

@return ListHyperscaleConnectorsResponse

func (*HyperscaleObjectsApiService) GetHyperscaleDatasetById

func (a *HyperscaleObjectsApiService) GetHyperscaleDatasetById(ctx context.Context, hyperscaleDatasetId string) ApiGetHyperscaleDatasetByIdRequest

GetHyperscaleDatasetById Get a Hyperscale Connector.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleDatasetId The ID of the Hyperscale Dataset.
@return ApiGetHyperscaleDatasetByIdRequest

func (*HyperscaleObjectsApiService) GetHyperscaleDatasetByIdExecute

Execute executes the request

@return HyperscaleDataset

func (*HyperscaleObjectsApiService) GetHyperscaleDatasetTablesOrFiles

func (a *HyperscaleObjectsApiService) GetHyperscaleDatasetTablesOrFiles(ctx context.Context, hyperscaleDatasetId string) ApiGetHyperscaleDatasetTablesOrFilesRequest

GetHyperscaleDatasetTablesOrFiles Get the tables or files of a hyperscale dataset

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleDatasetId The ID of the Hyperscale Dataset.
@return ApiGetHyperscaleDatasetTablesOrFilesRequest

func (*HyperscaleObjectsApiService) GetHyperscaleDatasetTablesOrFilesExecute

Execute executes the request

@return ListHyperscaleDatasetTablesOrFilesResponse

func (*HyperscaleObjectsApiService) GetHyperscaleDatasets

GetHyperscaleDatasets Returns a list of Hyperscale Datasets.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetHyperscaleDatasetsRequest

func (*HyperscaleObjectsApiService) GetHyperscaleDatasetsExecute

Execute executes the request

@return ListHyperscaleDatasetsResponse

func (*HyperscaleObjectsApiService) GetHyperscaleMountPointById

func (a *HyperscaleObjectsApiService) GetHyperscaleMountPointById(ctx context.Context, hyperscaleMountPointId string) ApiGetHyperscaleMountPointByIdRequest

GetHyperscaleMountPointById Get a Hyperscale Mount Points.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleMountPointId The ID of the Hyperscale Mount Point.
@return ApiGetHyperscaleMountPointByIdRequest

func (*HyperscaleObjectsApiService) GetHyperscaleMountPointByIdExecute

Execute executes the request

@return HyperscaleMountPoint

func (*HyperscaleObjectsApiService) GetHyperscaleMountPoints

GetHyperscaleMountPoints Returns a list of Hyperscale Mount Points.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetHyperscaleMountPointsRequest

func (*HyperscaleObjectsApiService) GetHyperscaleMountPointsExecute

Execute executes the request

@return ListHyperscaleMountPointsResponse

func (*HyperscaleObjectsApiService) SearchHyperscaleConnectors

SearchHyperscaleConnectors Search for Hyperscale Connectors.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchHyperscaleConnectorsRequest

func (*HyperscaleObjectsApiService) SearchHyperscaleConnectorsExecute

Execute executes the request

@return SearchHyperscaleConnectorsResponse

func (*HyperscaleObjectsApiService) SearchHyperscaleDatasetTablesOrFiles

func (a *HyperscaleObjectsApiService) SearchHyperscaleDatasetTablesOrFiles(ctx context.Context, hyperscaleDatasetId string) ApiSearchHyperscaleDatasetTablesOrFilesRequest

SearchHyperscaleDatasetTablesOrFiles Search the tables or files of a hyperscale dataset

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hyperscaleDatasetId The ID of the Hyperscale Dataset.
@return ApiSearchHyperscaleDatasetTablesOrFilesRequest

func (*HyperscaleObjectsApiService) SearchHyperscaleDatasetTablesOrFilesExecute

Execute executes the request

@return SearchHyperscaleDatasetTablesOrFilesResponse

func (*HyperscaleObjectsApiService) SearchHyperscaleDatasets

SearchHyperscaleDatasets Search for Hyperscale Datasets.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchHyperscaleDatasetsRequest

func (*HyperscaleObjectsApiService) SearchHyperscaleDatasetsExecute

Execute executes the request

@return SearchHyperscaleDatasetsResponse

func (*HyperscaleObjectsApiService) SearchHyperscaleMountPoints

SearchHyperscaleMountPoints Search for Hyperscale Mount Points.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchHyperscaleMountPointsRequest

func (*HyperscaleObjectsApiService) SearchHyperscaleMountPointsExecute

Execute executes the request

@return SearchHyperscaleMountPointsResponse

type HyperscaleTaskError

type HyperscaleTaskError struct {
	// the name of the table for which the error occurred, including the schema.
	TableName *string `json:"table_name,omitempty"`
	// A textual description of the error.
	Error *string `json:"error,omitempty"`
}

HyperscaleTaskError struct for HyperscaleTaskError

func NewHyperscaleTaskError

func NewHyperscaleTaskError() *HyperscaleTaskError

NewHyperscaleTaskError instantiates a new HyperscaleTaskError 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 NewHyperscaleTaskErrorWithDefaults

func NewHyperscaleTaskErrorWithDefaults() *HyperscaleTaskError

NewHyperscaleTaskErrorWithDefaults instantiates a new HyperscaleTaskError 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 (*HyperscaleTaskError) GetError

func (o *HyperscaleTaskError) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*HyperscaleTaskError) GetErrorOk

func (o *HyperscaleTaskError) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskError) GetTableName

func (o *HyperscaleTaskError) GetTableName() string

GetTableName returns the TableName field value if set, zero value otherwise.

func (*HyperscaleTaskError) GetTableNameOk

func (o *HyperscaleTaskError) GetTableNameOk() (*string, bool)

GetTableNameOk returns a tuple with the TableName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskError) HasError

func (o *HyperscaleTaskError) HasError() bool

HasError returns a boolean if a field has been set.

func (*HyperscaleTaskError) HasTableName

func (o *HyperscaleTaskError) HasTableName() bool

HasTableName returns a boolean if a field has been set.

func (HyperscaleTaskError) MarshalJSON

func (o HyperscaleTaskError) MarshalJSON() ([]byte, error)

func (*HyperscaleTaskError) SetError

func (o *HyperscaleTaskError) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*HyperscaleTaskError) SetTableName

func (o *HyperscaleTaskError) SetTableName(v string)

SetTableName gets a reference to the given string and assigns it to the TableName field.

func (HyperscaleTaskError) ToMap

func (o HyperscaleTaskError) ToMap() (map[string]interface{}, error)

type HyperscaleTaskEvent

type HyperscaleTaskEvent struct {
	// Name of the task (Unload, Masking, Load, Post-Load)
	Name *string `json:"name,omitempty"`
	// progress of the task (between 0 and 1)
	Progress *float32 `json:"progress,omitempty"`
	Status   *string  `json:"status,omitempty"`
	// The number of objects (tables) already processed by this task.
	ProcessedObjects *int64 `json:"processed_objects,omitempty"`
	// The number of rows already processed by this task.
	ProcessedRows *int64 `json:"processed_rows,omitempty"`
	// The number of constraints processed by this task (Post-load task only)
	ProcessedConstraints *int64 `json:"processed_constraints,omitempty"`
	// The total number of constraints to be processed by this task (Post-load task only)
	TotalConstraints *int64 `json:"total_constraints,omitempty"`
	// The number of indexes processed by this task (Post-load task only)
	ProcessedIndexes *int64 `json:"processed_indexes,omitempty"`
	// The total number of indexes to be processed by this task (Post-load task only)
	TotalIndexes *int64 `json:"total_indexes,omitempty"`
	// The number of triggered processed by this task (Post-load task only)
	ProcessedTriggers *int64 `json:"processed_triggers,omitempty"`
	// The total number of triggers to be processed by this task (Post-load task only)
	TotalTriggers *int64 `json:"total_triggers,omitempty"`
	// The date and time that this task was started.
	StartTime *time.Time `json:"start_time,omitempty"`
	// The date and time that this task completed.
	EndTime *time.Time            `json:"end_time,omitempty"`
	Errors  []HyperscaleTaskError `json:"errors,omitempty"`
}

HyperscaleTaskEvent struct for HyperscaleTaskEvent

func NewHyperscaleTaskEvent

func NewHyperscaleTaskEvent() *HyperscaleTaskEvent

NewHyperscaleTaskEvent instantiates a new HyperscaleTaskEvent 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 NewHyperscaleTaskEventWithDefaults

func NewHyperscaleTaskEventWithDefaults() *HyperscaleTaskEvent

NewHyperscaleTaskEventWithDefaults instantiates a new HyperscaleTaskEvent 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 (*HyperscaleTaskEvent) GetEndTime

func (o *HyperscaleTaskEvent) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetEndTimeOk

func (o *HyperscaleTaskEvent) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetErrors

func (o *HyperscaleTaskEvent) GetErrors() []HyperscaleTaskError

GetErrors returns the Errors field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetErrorsOk

func (o *HyperscaleTaskEvent) GetErrorsOk() ([]HyperscaleTaskError, 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.

func (*HyperscaleTaskEvent) GetName

func (o *HyperscaleTaskEvent) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetNameOk

func (o *HyperscaleTaskEvent) 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.

func (*HyperscaleTaskEvent) GetProcessedConstraints

func (o *HyperscaleTaskEvent) GetProcessedConstraints() int64

GetProcessedConstraints returns the ProcessedConstraints field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProcessedConstraintsOk

func (o *HyperscaleTaskEvent) GetProcessedConstraintsOk() (*int64, bool)

GetProcessedConstraintsOk returns a tuple with the ProcessedConstraints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetProcessedIndexes

func (o *HyperscaleTaskEvent) GetProcessedIndexes() int64

GetProcessedIndexes returns the ProcessedIndexes field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProcessedIndexesOk

func (o *HyperscaleTaskEvent) GetProcessedIndexesOk() (*int64, bool)

GetProcessedIndexesOk returns a tuple with the ProcessedIndexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetProcessedObjects

func (o *HyperscaleTaskEvent) GetProcessedObjects() int64

GetProcessedObjects returns the ProcessedObjects field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProcessedObjectsOk

func (o *HyperscaleTaskEvent) GetProcessedObjectsOk() (*int64, bool)

GetProcessedObjectsOk returns a tuple with the ProcessedObjects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetProcessedRows

func (o *HyperscaleTaskEvent) GetProcessedRows() int64

GetProcessedRows returns the ProcessedRows field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProcessedRowsOk

func (o *HyperscaleTaskEvent) GetProcessedRowsOk() (*int64, bool)

GetProcessedRowsOk returns a tuple with the ProcessedRows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetProcessedTriggers

func (o *HyperscaleTaskEvent) GetProcessedTriggers() int64

GetProcessedTriggers returns the ProcessedTriggers field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProcessedTriggersOk

func (o *HyperscaleTaskEvent) GetProcessedTriggersOk() (*int64, bool)

GetProcessedTriggersOk returns a tuple with the ProcessedTriggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetProgress

func (o *HyperscaleTaskEvent) GetProgress() float32

GetProgress returns the Progress field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetProgressOk

func (o *HyperscaleTaskEvent) GetProgressOk() (*float32, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetStartTime

func (o *HyperscaleTaskEvent) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetStartTimeOk

func (o *HyperscaleTaskEvent) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetStatus

func (o *HyperscaleTaskEvent) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetStatusOk

func (o *HyperscaleTaskEvent) 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.

func (*HyperscaleTaskEvent) GetTotalConstraints

func (o *HyperscaleTaskEvent) GetTotalConstraints() int64

GetTotalConstraints returns the TotalConstraints field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetTotalConstraintsOk

func (o *HyperscaleTaskEvent) GetTotalConstraintsOk() (*int64, bool)

GetTotalConstraintsOk returns a tuple with the TotalConstraints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetTotalIndexes

func (o *HyperscaleTaskEvent) GetTotalIndexes() int64

GetTotalIndexes returns the TotalIndexes field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetTotalIndexesOk

func (o *HyperscaleTaskEvent) GetTotalIndexesOk() (*int64, bool)

GetTotalIndexesOk returns a tuple with the TotalIndexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) GetTotalTriggers

func (o *HyperscaleTaskEvent) GetTotalTriggers() int64

GetTotalTriggers returns the TotalTriggers field value if set, zero value otherwise.

func (*HyperscaleTaskEvent) GetTotalTriggersOk

func (o *HyperscaleTaskEvent) GetTotalTriggersOk() (*int64, bool)

GetTotalTriggersOk returns a tuple with the TotalTriggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HyperscaleTaskEvent) HasEndTime

func (o *HyperscaleTaskEvent) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasErrors

func (o *HyperscaleTaskEvent) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasName

func (o *HyperscaleTaskEvent) HasName() bool

HasName returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProcessedConstraints

func (o *HyperscaleTaskEvent) HasProcessedConstraints() bool

HasProcessedConstraints returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProcessedIndexes

func (o *HyperscaleTaskEvent) HasProcessedIndexes() bool

HasProcessedIndexes returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProcessedObjects

func (o *HyperscaleTaskEvent) HasProcessedObjects() bool

HasProcessedObjects returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProcessedRows

func (o *HyperscaleTaskEvent) HasProcessedRows() bool

HasProcessedRows returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProcessedTriggers

func (o *HyperscaleTaskEvent) HasProcessedTriggers() bool

HasProcessedTriggers returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasProgress

func (o *HyperscaleTaskEvent) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasStartTime

func (o *HyperscaleTaskEvent) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasStatus

func (o *HyperscaleTaskEvent) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasTotalConstraints

func (o *HyperscaleTaskEvent) HasTotalConstraints() bool

HasTotalConstraints returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasTotalIndexes

func (o *HyperscaleTaskEvent) HasTotalIndexes() bool

HasTotalIndexes returns a boolean if a field has been set.

func (*HyperscaleTaskEvent) HasTotalTriggers

func (o *HyperscaleTaskEvent) HasTotalTriggers() bool

HasTotalTriggers returns a boolean if a field has been set.

func (HyperscaleTaskEvent) MarshalJSON

func (o HyperscaleTaskEvent) MarshalJSON() ([]byte, error)

func (*HyperscaleTaskEvent) SetEndTime

func (o *HyperscaleTaskEvent) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*HyperscaleTaskEvent) SetErrors

func (o *HyperscaleTaskEvent) SetErrors(v []HyperscaleTaskError)

SetErrors gets a reference to the given []HyperscaleTaskError and assigns it to the Errors field.

func (*HyperscaleTaskEvent) SetName

func (o *HyperscaleTaskEvent) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*HyperscaleTaskEvent) SetProcessedConstraints

func (o *HyperscaleTaskEvent) SetProcessedConstraints(v int64)

SetProcessedConstraints gets a reference to the given int64 and assigns it to the ProcessedConstraints field.

func (*HyperscaleTaskEvent) SetProcessedIndexes

func (o *HyperscaleTaskEvent) SetProcessedIndexes(v int64)

SetProcessedIndexes gets a reference to the given int64 and assigns it to the ProcessedIndexes field.

func (*HyperscaleTaskEvent) SetProcessedObjects

func (o *HyperscaleTaskEvent) SetProcessedObjects(v int64)

SetProcessedObjects gets a reference to the given int64 and assigns it to the ProcessedObjects field.

func (*HyperscaleTaskEvent) SetProcessedRows

func (o *HyperscaleTaskEvent) SetProcessedRows(v int64)

SetProcessedRows gets a reference to the given int64 and assigns it to the ProcessedRows field.

func (*HyperscaleTaskEvent) SetProcessedTriggers

func (o *HyperscaleTaskEvent) SetProcessedTriggers(v int64)

SetProcessedTriggers gets a reference to the given int64 and assigns it to the ProcessedTriggers field.

func (*HyperscaleTaskEvent) SetProgress

func (o *HyperscaleTaskEvent) SetProgress(v float32)

SetProgress gets a reference to the given float32 and assigns it to the Progress field.

func (*HyperscaleTaskEvent) SetStartTime

func (o *HyperscaleTaskEvent) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*HyperscaleTaskEvent) SetStatus

func (o *HyperscaleTaskEvent) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*HyperscaleTaskEvent) SetTotalConstraints

func (o *HyperscaleTaskEvent) SetTotalConstraints(v int64)

SetTotalConstraints gets a reference to the given int64 and assigns it to the TotalConstraints field.

func (*HyperscaleTaskEvent) SetTotalIndexes

func (o *HyperscaleTaskEvent) SetTotalIndexes(v int64)

SetTotalIndexes gets a reference to the given int64 and assigns it to the TotalIndexes field.

func (*HyperscaleTaskEvent) SetTotalTriggers

func (o *HyperscaleTaskEvent) SetTotalTriggers(v int64)

SetTotalTriggers gets a reference to the given int64 and assigns it to the TotalTriggers field.

func (HyperscaleTaskEvent) ToMap

func (o HyperscaleTaskEvent) ToMap() (map[string]interface{}, error)

type Job

type Job struct {
	// The Job entity ID.
	Id *string `json:"id,omitempty"`
	// The status of the job.
	Status *string `json:"status,omitempty"`
	// Indicates that the operations performed by this Job have completed successfully, but the object changes are not yet reflected. This is only set when when the JOB is in STARTED status, with the guarantee that the job will not transition to the FAILED status. Note that this flag will likely be replaced with a new status in future API versions and be deprecated.
	IsWaitingForTelemetry *bool `json:"is_waiting_for_telemetry,omitempty"`
	// The type of job being done.
	// Deprecated
	Type *string `json:"type,omitempty"`
	// The i18n translated type of job being done.
	LocalizedType *string `json:"localized_type,omitempty"`
	// Details about the failure for FAILED jobs.
	ErrorDetails *string `json:"error_details,omitempty"`
	// Warnings for the job.
	WarningMessage *string `json:"warning_message,omitempty"`
	// A reference to the job's target.
	TargetId *string `json:"target_id,omitempty"`
	// The time the job started executing.
	StartTime *time.Time `json:"start_time,omitempty"`
	// The time the job was last updated.
	UpdateTime *time.Time `json:"update_time,omitempty"`
	// traceId of the request which created this Job
	TraceId *string `json:"trace_id,omitempty"`
	// IDs of the engines this Job is executing on.
	// Deprecated
	EngineIds []string `json:"engine_ids,omitempty"`
	Tags      []Tag    `json:"tags,omitempty"`
	Engines   []Engine `json:"engines,omitempty"`
	// The ID of the account who initiated this job.
	AccountId *int32 `json:"account_id,omitempty"`
	// The account name which initiated this job. It can be either firstname and lastname combination or firstname or lastname or username or email address or Account-<id>.
	AccountName *string `json:"account_name,omitempty"`
}

Job An asynchronous task.

func NewJob

func NewJob() *Job

NewJob instantiates a new Job 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 NewJobWithDefaults

func NewJobWithDefaults() *Job

NewJobWithDefaults instantiates a new Job 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 (*Job) GetAccountId

func (o *Job) GetAccountId() int32

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*Job) GetAccountIdOk

func (o *Job) GetAccountIdOk() (*int32, 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.

func (*Job) GetAccountName

func (o *Job) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*Job) GetAccountNameOk

func (o *Job) 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.

func (*Job) GetEngineIds

func (o *Job) GetEngineIds() []string

GetEngineIds returns the EngineIds field value if set, zero value otherwise. Deprecated

func (*Job) GetEngineIdsOk

func (o *Job) GetEngineIdsOk() ([]string, bool)

GetEngineIdsOk returns a tuple with the EngineIds field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Job) GetEngines

func (o *Job) GetEngines() []Engine

GetEngines returns the Engines field value if set, zero value otherwise.

func (*Job) GetEnginesOk

func (o *Job) GetEnginesOk() ([]Engine, bool)

GetEnginesOk returns a tuple with the Engines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetErrorDetails

func (o *Job) GetErrorDetails() string

GetErrorDetails returns the ErrorDetails field value if set, zero value otherwise.

func (*Job) GetErrorDetailsOk

func (o *Job) GetErrorDetailsOk() (*string, bool)

GetErrorDetailsOk returns a tuple with the ErrorDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetId

func (o *Job) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Job) GetIdOk

func (o *Job) 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.

func (*Job) GetIsWaitingForTelemetry

func (o *Job) GetIsWaitingForTelemetry() bool

GetIsWaitingForTelemetry returns the IsWaitingForTelemetry field value if set, zero value otherwise.

func (*Job) GetIsWaitingForTelemetryOk

func (o *Job) GetIsWaitingForTelemetryOk() (*bool, bool)

GetIsWaitingForTelemetryOk returns a tuple with the IsWaitingForTelemetry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetLocalizedType

func (o *Job) GetLocalizedType() string

GetLocalizedType returns the LocalizedType field value if set, zero value otherwise.

func (*Job) GetLocalizedTypeOk

func (o *Job) GetLocalizedTypeOk() (*string, bool)

GetLocalizedTypeOk returns a tuple with the LocalizedType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetStartTime

func (o *Job) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*Job) GetStartTimeOk

func (o *Job) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetStatus

func (o *Job) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Job) GetStatusOk

func (o *Job) 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.

func (*Job) GetTags

func (o *Job) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Job) GetTagsOk

func (o *Job) 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.

func (*Job) GetTargetId

func (o *Job) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*Job) GetTargetIdOk

func (o *Job) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetTraceId

func (o *Job) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*Job) GetTraceIdOk

func (o *Job) GetTraceIdOk() (*string, bool)

GetTraceIdOk returns a tuple with the TraceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetType

func (o *Job) GetType() string

GetType returns the Type field value if set, zero value otherwise. Deprecated

func (*Job) GetTypeOk

func (o *Job) 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. Deprecated

func (*Job) GetUpdateTime

func (o *Job) GetUpdateTime() time.Time

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*Job) GetUpdateTimeOk

func (o *Job) GetUpdateTimeOk() (*time.Time, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetWarningMessage

func (o *Job) GetWarningMessage() string

GetWarningMessage returns the WarningMessage field value if set, zero value otherwise.

func (*Job) GetWarningMessageOk

func (o *Job) GetWarningMessageOk() (*string, bool)

GetWarningMessageOk returns a tuple with the WarningMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) HasAccountId

func (o *Job) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*Job) HasAccountName

func (o *Job) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*Job) HasEngineIds

func (o *Job) HasEngineIds() bool

HasEngineIds returns a boolean if a field has been set.

func (*Job) HasEngines

func (o *Job) HasEngines() bool

HasEngines returns a boolean if a field has been set.

func (*Job) HasErrorDetails

func (o *Job) HasErrorDetails() bool

HasErrorDetails returns a boolean if a field has been set.

func (*Job) HasId

func (o *Job) HasId() bool

HasId returns a boolean if a field has been set.

func (*Job) HasIsWaitingForTelemetry

func (o *Job) HasIsWaitingForTelemetry() bool

HasIsWaitingForTelemetry returns a boolean if a field has been set.

func (*Job) HasLocalizedType

func (o *Job) HasLocalizedType() bool

HasLocalizedType returns a boolean if a field has been set.

func (*Job) HasStartTime

func (o *Job) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*Job) HasStatus

func (o *Job) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Job) HasTags

func (o *Job) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Job) HasTargetId

func (o *Job) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (*Job) HasTraceId

func (o *Job) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (*Job) HasType

func (o *Job) HasType() bool

HasType returns a boolean if a field has been set.

func (*Job) HasUpdateTime

func (o *Job) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*Job) HasWarningMessage

func (o *Job) HasWarningMessage() bool

HasWarningMessage returns a boolean if a field has been set.

func (Job) MarshalJSON

func (o Job) MarshalJSON() ([]byte, error)

func (*Job) SetAccountId

func (o *Job) SetAccountId(v int32)

SetAccountId gets a reference to the given int32 and assigns it to the AccountId field.

func (*Job) SetAccountName

func (o *Job) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*Job) SetEngineIds

func (o *Job) SetEngineIds(v []string)

SetEngineIds gets a reference to the given []string and assigns it to the EngineIds field. Deprecated

func (*Job) SetEngines

func (o *Job) SetEngines(v []Engine)

SetEngines gets a reference to the given []Engine and assigns it to the Engines field.

func (*Job) SetErrorDetails

func (o *Job) SetErrorDetails(v string)

SetErrorDetails gets a reference to the given string and assigns it to the ErrorDetails field.

func (*Job) SetId

func (o *Job) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Job) SetIsWaitingForTelemetry

func (o *Job) SetIsWaitingForTelemetry(v bool)

SetIsWaitingForTelemetry gets a reference to the given bool and assigns it to the IsWaitingForTelemetry field.

func (*Job) SetLocalizedType

func (o *Job) SetLocalizedType(v string)

SetLocalizedType gets a reference to the given string and assigns it to the LocalizedType field.

func (*Job) SetStartTime

func (o *Job) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*Job) SetStatus

func (o *Job) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Job) SetTags

func (o *Job) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*Job) SetTargetId

func (o *Job) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

func (*Job) SetTraceId

func (o *Job) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

func (*Job) SetType

func (o *Job) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field. Deprecated

func (*Job) SetUpdateTime

func (o *Job) SetUpdateTime(v time.Time)

SetUpdateTime gets a reference to the given time.Time and assigns it to the UpdateTime field.

func (*Job) SetWarningMessage

func (o *Job) SetWarningMessage(v string)

SetWarningMessage gets a reference to the given string and assigns it to the WarningMessage field.

func (Job) ToMap

func (o Job) ToMap() (map[string]interface{}, error)

type JobsApiService

type JobsApiService service

JobsApiService JobsApi service

func (*JobsApiService) AbandonJob

func (a *JobsApiService) AbandonJob(ctx context.Context, jobId string) ApiAbandonJobRequest

AbandonJob Abandons a job.

Abandoning a job means that the system will no longer track ongoing progress. The system will not attempt to stop the process in any way. The job will be moved to the ABANDONED terminal state.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job.
@return ApiAbandonJobRequest

func (*JobsApiService) AbandonJobExecute

func (a *JobsApiService) AbandonJobExecute(r ApiAbandonJobRequest) (*http.Response, error)

Execute executes the request

func (*JobsApiService) CreateJobTags

func (a *JobsApiService) CreateJobTags(ctx context.Context, jobId string) ApiCreateJobTagsRequest

CreateJobTags Create tags for a Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job.
@return ApiCreateJobTagsRequest

func (*JobsApiService) CreateJobTagsExecute

func (a *JobsApiService) CreateJobTagsExecute(r ApiCreateJobTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*JobsApiService) DeleteJobTag

func (a *JobsApiService) DeleteJobTag(ctx context.Context, jobId string) ApiDeleteJobTagRequest

DeleteJobTag Delete tags for a Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job.
@return ApiDeleteJobTagRequest

func (*JobsApiService) DeleteJobTagExecute

func (a *JobsApiService) DeleteJobTagExecute(r ApiDeleteJobTagRequest) (*http.Response, error)

Execute executes the request

func (*JobsApiService) GetJobById

func (a *JobsApiService) GetJobById(ctx context.Context, jobId string) ApiGetJobByIdRequest

GetJobById Returns a job by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job.
@return ApiGetJobByIdRequest

func (*JobsApiService) GetJobByIdExecute

func (a *JobsApiService) GetJobByIdExecute(r ApiGetJobByIdRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

func (*JobsApiService) GetJobTags

func (a *JobsApiService) GetJobTags(ctx context.Context, jobId string) ApiGetJobTagsRequest

GetJobTags Get tags for a Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job.
@return ApiGetJobTagsRequest

func (*JobsApiService) GetJobTagsExecute

func (a *JobsApiService) GetJobTagsExecute(r ApiGetJobTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*JobsApiService) GetJobs

GetJobs List all jobs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetJobsRequest

func (*JobsApiService) GetJobsExecute

Execute executes the request

@return ListJobsResponse

func (*JobsApiService) SearchJobs

SearchJobs Search for jobs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchJobsRequest

func (*JobsApiService) SearchJobsExecute

Execute executes the request

@return SearchJobsResponse

type KDCServers

type KDCServers struct {
	// One of more KDC servers.
	Hostname *string `json:"hostname,omitempty"`
	// One of more KDC servers.
	Port *int32 `json:"port,omitempty"`
}

KDCServers struct for KDCServers

func NewKDCServers

func NewKDCServers() *KDCServers

NewKDCServers instantiates a new KDCServers 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 NewKDCServersWithDefaults

func NewKDCServersWithDefaults() *KDCServers

NewKDCServersWithDefaults instantiates a new KDCServers 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 (*KDCServers) GetHostname

func (o *KDCServers) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*KDCServers) GetHostnameOk

func (o *KDCServers) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KDCServers) GetPort

func (o *KDCServers) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*KDCServers) GetPortOk

func (o *KDCServers) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KDCServers) HasHostname

func (o *KDCServers) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*KDCServers) HasPort

func (o *KDCServers) HasPort() bool

HasPort returns a boolean if a field has been set.

func (KDCServers) MarshalJSON

func (o KDCServers) MarshalJSON() ([]byte, error)

func (*KDCServers) SetHostname

func (o *KDCServers) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*KDCServers) SetPort

func (o *KDCServers) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (KDCServers) ToMap

func (o KDCServers) ToMap() (map[string]interface{}, error)

type KerberosConfig

type KerberosConfig struct {
	// The kerberos config ID.
	Id *string `json:"id,omitempty"`
	// The name of the kerberos config object.
	Name *string `json:"name,omitempty"`
	// The namespace id of this kerberos config object.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this kerberos config object.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// Id of the Engine that this kerberos config object belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Name of the Engine that this kerberos config object belongs to.
	EngineName *string `json:"engine_name,omitempty"`
	// Kerberos Realm name.
	Realm *string `json:"realm,omitempty"`
	// Kerberos principal name.
	Principal *string `json:"principal,omitempty"`
	// The kerberos is enabled or not.
	Enabled NullableBool `json:"enabled,omitempty"`
	// Kerberos keytab.
	Keytab *string `json:"keytab,omitempty"`
	// One of more KDC servers.
	KdcServers []KDCServers `json:"kdc_servers,omitempty"`
}

KerberosConfig A Kerberos config object.

func NewKerberosConfig

func NewKerberosConfig() *KerberosConfig

NewKerberosConfig instantiates a new KerberosConfig 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 NewKerberosConfigWithDefaults

func NewKerberosConfigWithDefaults() *KerberosConfig

NewKerberosConfigWithDefaults instantiates a new KerberosConfig 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 (*KerberosConfig) GetEnabled

func (o *KerberosConfig) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*KerberosConfig) GetEnabledOk

func (o *KerberosConfig) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*KerberosConfig) GetEngineId

func (o *KerberosConfig) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*KerberosConfig) GetEngineIdOk

func (o *KerberosConfig) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetEngineName

func (o *KerberosConfig) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*KerberosConfig) GetEngineNameOk

func (o *KerberosConfig) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetId

func (o *KerberosConfig) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*KerberosConfig) GetIdOk

func (o *KerberosConfig) 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.

func (*KerberosConfig) GetIsReplica

func (o *KerberosConfig) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*KerberosConfig) GetIsReplicaOk

func (o *KerberosConfig) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetKdcServers

func (o *KerberosConfig) GetKdcServers() []KDCServers

GetKdcServers returns the KdcServers field value if set, zero value otherwise.

func (*KerberosConfig) GetKdcServersOk

func (o *KerberosConfig) GetKdcServersOk() ([]KDCServers, bool)

GetKdcServersOk returns a tuple with the KdcServers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetKeytab

func (o *KerberosConfig) GetKeytab() string

GetKeytab returns the Keytab field value if set, zero value otherwise.

func (*KerberosConfig) GetKeytabOk

func (o *KerberosConfig) GetKeytabOk() (*string, bool)

GetKeytabOk returns a tuple with the Keytab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetName

func (o *KerberosConfig) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*KerberosConfig) GetNameOk

func (o *KerberosConfig) 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.

func (*KerberosConfig) GetNamespaceId

func (o *KerberosConfig) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*KerberosConfig) GetNamespaceIdOk

func (o *KerberosConfig) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetNamespaceName

func (o *KerberosConfig) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*KerberosConfig) GetNamespaceNameOk

func (o *KerberosConfig) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetPrincipal

func (o *KerberosConfig) GetPrincipal() string

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*KerberosConfig) GetPrincipalOk

func (o *KerberosConfig) GetPrincipalOk() (*string, bool)

GetPrincipalOk returns a tuple with the Principal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) GetRealm

func (o *KerberosConfig) GetRealm() string

GetRealm returns the Realm field value if set, zero value otherwise.

func (*KerberosConfig) GetRealmOk

func (o *KerberosConfig) GetRealmOk() (*string, bool)

GetRealmOk returns a tuple with the Realm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KerberosConfig) HasEnabled

func (o *KerberosConfig) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*KerberosConfig) HasEngineId

func (o *KerberosConfig) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*KerberosConfig) HasEngineName

func (o *KerberosConfig) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*KerberosConfig) HasId

func (o *KerberosConfig) HasId() bool

HasId returns a boolean if a field has been set.

func (*KerberosConfig) HasIsReplica

func (o *KerberosConfig) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*KerberosConfig) HasKdcServers

func (o *KerberosConfig) HasKdcServers() bool

HasKdcServers returns a boolean if a field has been set.

func (*KerberosConfig) HasKeytab

func (o *KerberosConfig) HasKeytab() bool

HasKeytab returns a boolean if a field has been set.

func (*KerberosConfig) HasName

func (o *KerberosConfig) HasName() bool

HasName returns a boolean if a field has been set.

func (*KerberosConfig) HasNamespaceId

func (o *KerberosConfig) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*KerberosConfig) HasNamespaceName

func (o *KerberosConfig) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*KerberosConfig) HasPrincipal

func (o *KerberosConfig) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (*KerberosConfig) HasRealm

func (o *KerberosConfig) HasRealm() bool

HasRealm returns a boolean if a field has been set.

func (KerberosConfig) MarshalJSON

func (o KerberosConfig) MarshalJSON() ([]byte, error)

func (*KerberosConfig) SetEnabled

func (o *KerberosConfig) SetEnabled(v bool)

SetEnabled gets a reference to the given NullableBool and assigns it to the Enabled field.

func (*KerberosConfig) SetEnabledNil

func (o *KerberosConfig) SetEnabledNil()

SetEnabledNil sets the value for Enabled to be an explicit nil

func (*KerberosConfig) SetEngineId

func (o *KerberosConfig) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*KerberosConfig) SetEngineName

func (o *KerberosConfig) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*KerberosConfig) SetId

func (o *KerberosConfig) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*KerberosConfig) SetIsReplica

func (o *KerberosConfig) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*KerberosConfig) SetKdcServers

func (o *KerberosConfig) SetKdcServers(v []KDCServers)

SetKdcServers gets a reference to the given []KDCServers and assigns it to the KdcServers field.

func (*KerberosConfig) SetKeytab

func (o *KerberosConfig) SetKeytab(v string)

SetKeytab gets a reference to the given string and assigns it to the Keytab field.

func (*KerberosConfig) SetName

func (o *KerberosConfig) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*KerberosConfig) SetNamespaceId

func (o *KerberosConfig) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*KerberosConfig) SetNamespaceName

func (o *KerberosConfig) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*KerberosConfig) SetPrincipal

func (o *KerberosConfig) SetPrincipal(v string)

SetPrincipal gets a reference to the given string and assigns it to the Principal field.

func (*KerberosConfig) SetRealm

func (o *KerberosConfig) SetRealm(v string)

SetRealm gets a reference to the given string and assigns it to the Realm field.

func (KerberosConfig) ToMap

func (o KerberosConfig) ToMap() (map[string]interface{}, error)

func (*KerberosConfig) UnsetEnabled

func (o *KerberosConfig) UnsetEnabled()

UnsetEnabled ensures that no value is present for Enabled, not even an explicit nil

type KerberosConfigApiService

type KerberosConfigApiService service

KerberosConfigApiService KerberosConfigApi service

func (*KerberosConfigApiService) GetKerberosConfigById

func (a *KerberosConfigApiService) GetKerberosConfigById(ctx context.Context, kerberosConfigId string) ApiGetKerberosConfigByIdRequest

GetKerberosConfigById Get a kerberos config by ID or Name.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param kerberosConfigId The ID of the kerberos config.
@return ApiGetKerberosConfigByIdRequest

func (*KerberosConfigApiService) GetKerberosConfigByIdExecute

Execute executes the request

@return KerberosConfig

func (*KerberosConfigApiService) ListKerberosConfigs

ListKerberosConfigs List all kerberos configs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListKerberosConfigsRequest

func (*KerberosConfigApiService) ListKerberosConfigsExecute

Execute executes the request

@return ListKerberosConfigsResponse

func (*KerberosConfigApiService) SearchKerberosConfigs

SearchKerberosConfigs Search for Kerberos Configs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchKerberosConfigsRequest

func (*KerberosConfigApiService) SearchKerberosConfigsExecute

Execute executes the request

@return SearchKerberosConfigsResponse

type LDAPConfigParams

type LDAPConfigParams struct {
	// When set, these settings are enabled. True by default.
	Enabled *bool `json:"enabled,omitempty"`
	// When set, the system will automatically create new Accounts for those who have logged in using LDAP. This must be true if LDAP user is not already registered in system. True by default.
	AutoCreateUsers *bool `json:"auto_create_users,omitempty"`
	// The hostname of the LDAP server.
	Hostname *string `json:"hostname,omitempty"`
	// The port of the LDAP server. Default port is 389 for non-SSL and 636 for SSL.
	Port *int32 `json:"port,omitempty"`
	// DCT will try to authenticate using each Domain given in this list.
	Domains []Domain `json:"domains,omitempty"`
	// True if LDAP should be used over SSL.
	EnableSsl *bool `json:"enable_ssl,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the LDAP server. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename *string `json:"truststore_filename,omitempty"`
	// Password for reading trustStore file provided in 'truststore_filename' property
	TruststorePassword *string `json:"truststore_password,omitempty"`
	// Allow connections to the LDAP server over LDAPS without validating the TLS certificate. Even though the connection to the server might be performed over LDAPS, setting this property eliminates the protection against a man-in-the-middle attach for connections to this server. Instead, consider creating a truststore with a Certificate Authority to validate the server's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the LDAP server over LDAPS. Setting this value must only be done if the TLS certificate of the server does not match the hostname, and the TLS configuration of the server cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this server. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
}

LDAPConfigParams Parameters to read or update LDAP Config

func NewLDAPConfigParams

func NewLDAPConfigParams() *LDAPConfigParams

NewLDAPConfigParams instantiates a new LDAPConfigParams 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 NewLDAPConfigParamsWithDefaults

func NewLDAPConfigParamsWithDefaults() *LDAPConfigParams

NewLDAPConfigParamsWithDefaults instantiates a new LDAPConfigParams 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 (*LDAPConfigParams) GetAutoCreateUsers

func (o *LDAPConfigParams) GetAutoCreateUsers() bool

GetAutoCreateUsers returns the AutoCreateUsers field value if set, zero value otherwise.

func (*LDAPConfigParams) GetAutoCreateUsersOk

func (o *LDAPConfigParams) GetAutoCreateUsersOk() (*bool, bool)

GetAutoCreateUsersOk returns a tuple with the AutoCreateUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetDomains

func (o *LDAPConfigParams) GetDomains() []Domain

GetDomains returns the Domains field value if set, zero value otherwise.

func (*LDAPConfigParams) GetDomainsOk

func (o *LDAPConfigParams) GetDomainsOk() ([]Domain, bool)

GetDomainsOk returns a tuple with the Domains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetEnableSsl

func (o *LDAPConfigParams) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*LDAPConfigParams) GetEnableSslOk

func (o *LDAPConfigParams) GetEnableSslOk() (*bool, bool)

GetEnableSslOk returns a tuple with the EnableSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetEnabled

func (o *LDAPConfigParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*LDAPConfigParams) GetEnabledOk

func (o *LDAPConfigParams) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetHostname

func (o *LDAPConfigParams) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*LDAPConfigParams) GetHostnameOk

func (o *LDAPConfigParams) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetInsecureSsl

func (o *LDAPConfigParams) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*LDAPConfigParams) GetInsecureSslOk

func (o *LDAPConfigParams) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetPort

func (o *LDAPConfigParams) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*LDAPConfigParams) GetPortOk

func (o *LDAPConfigParams) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetTruststoreFilename

func (o *LDAPConfigParams) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise.

func (*LDAPConfigParams) GetTruststoreFilenameOk

func (o *LDAPConfigParams) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetTruststorePassword

func (o *LDAPConfigParams) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise.

func (*LDAPConfigParams) GetTruststorePasswordOk

func (o *LDAPConfigParams) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) GetUnsafeSslHostnameCheck

func (o *LDAPConfigParams) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*LDAPConfigParams) GetUnsafeSslHostnameCheckOk

func (o *LDAPConfigParams) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LDAPConfigParams) HasAutoCreateUsers

func (o *LDAPConfigParams) HasAutoCreateUsers() bool

HasAutoCreateUsers returns a boolean if a field has been set.

func (*LDAPConfigParams) HasDomains

func (o *LDAPConfigParams) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*LDAPConfigParams) HasEnableSsl

func (o *LDAPConfigParams) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*LDAPConfigParams) HasEnabled

func (o *LDAPConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LDAPConfigParams) HasHostname

func (o *LDAPConfigParams) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*LDAPConfigParams) HasInsecureSsl

func (o *LDAPConfigParams) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*LDAPConfigParams) HasPort

func (o *LDAPConfigParams) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*LDAPConfigParams) HasTruststoreFilename

func (o *LDAPConfigParams) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*LDAPConfigParams) HasTruststorePassword

func (o *LDAPConfigParams) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*LDAPConfigParams) HasUnsafeSslHostnameCheck

func (o *LDAPConfigParams) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (LDAPConfigParams) MarshalJSON

func (o LDAPConfigParams) MarshalJSON() ([]byte, error)

func (*LDAPConfigParams) SetAutoCreateUsers

func (o *LDAPConfigParams) SetAutoCreateUsers(v bool)

SetAutoCreateUsers gets a reference to the given bool and assigns it to the AutoCreateUsers field.

func (*LDAPConfigParams) SetDomains

func (o *LDAPConfigParams) SetDomains(v []Domain)

SetDomains gets a reference to the given []Domain and assigns it to the Domains field.

func (*LDAPConfigParams) SetEnableSsl

func (o *LDAPConfigParams) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*LDAPConfigParams) SetEnabled

func (o *LDAPConfigParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*LDAPConfigParams) SetHostname

func (o *LDAPConfigParams) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*LDAPConfigParams) SetInsecureSsl

func (o *LDAPConfigParams) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*LDAPConfigParams) SetPort

func (o *LDAPConfigParams) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*LDAPConfigParams) SetTruststoreFilename

func (o *LDAPConfigParams) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given string and assigns it to the TruststoreFilename field.

func (*LDAPConfigParams) SetTruststorePassword

func (o *LDAPConfigParams) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given string and assigns it to the TruststorePassword field.

func (*LDAPConfigParams) SetUnsafeSslHostnameCheck

func (o *LDAPConfigParams) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (LDAPConfigParams) ToMap

func (o LDAPConfigParams) ToMap() (map[string]interface{}, error)

type LdapConfigValidateParameter

type LdapConfigValidateParameter struct {
	// Username of the account to validate the ldap optional attributes.
	Username *string `json:"username,omitempty"`
	// Password of the account to validate the ldap optional attributes.
	Password *string `json:"password,omitempty"`
}

LdapConfigValidateParameter struct for LdapConfigValidateParameter

func NewLdapConfigValidateParameter

func NewLdapConfigValidateParameter() *LdapConfigValidateParameter

NewLdapConfigValidateParameter instantiates a new LdapConfigValidateParameter 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 NewLdapConfigValidateParameterWithDefaults

func NewLdapConfigValidateParameterWithDefaults() *LdapConfigValidateParameter

NewLdapConfigValidateParameterWithDefaults instantiates a new LdapConfigValidateParameter 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 (*LdapConfigValidateParameter) GetPassword

func (o *LdapConfigValidateParameter) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*LdapConfigValidateParameter) GetPasswordOk

func (o *LdapConfigValidateParameter) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LdapConfigValidateParameter) GetUsername

func (o *LdapConfigValidateParameter) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*LdapConfigValidateParameter) GetUsernameOk

func (o *LdapConfigValidateParameter) 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.

func (*LdapConfigValidateParameter) HasPassword

func (o *LdapConfigValidateParameter) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*LdapConfigValidateParameter) HasUsername

func (o *LdapConfigValidateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (LdapConfigValidateParameter) MarshalJSON

func (o LdapConfigValidateParameter) MarshalJSON() ([]byte, error)

func (*LdapConfigValidateParameter) SetPassword

func (o *LdapConfigValidateParameter) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*LdapConfigValidateParameter) SetUsername

func (o *LdapConfigValidateParameter) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (LdapConfigValidateParameter) ToMap

func (o LdapConfigValidateParameter) ToMap() (map[string]interface{}, error)

type LdapValidateResponse

type LdapValidateResponse struct {
	// Validation message for LDAP config.
	Message *string `json:"message,omitempty"`
}

LdapValidateResponse struct for LdapValidateResponse

func NewLdapValidateResponse

func NewLdapValidateResponse() *LdapValidateResponse

NewLdapValidateResponse instantiates a new LdapValidateResponse 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 NewLdapValidateResponseWithDefaults

func NewLdapValidateResponseWithDefaults() *LdapValidateResponse

NewLdapValidateResponseWithDefaults instantiates a new LdapValidateResponse 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 (*LdapValidateResponse) GetMessage

func (o *LdapValidateResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*LdapValidateResponse) GetMessageOk

func (o *LdapValidateResponse) 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.

func (*LdapValidateResponse) HasMessage

func (o *LdapValidateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (LdapValidateResponse) MarshalJSON

func (o LdapValidateResponse) MarshalJSON() ([]byte, error)

func (*LdapValidateResponse) SetMessage

func (o *LdapValidateResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (LdapValidateResponse) ToMap

func (o LdapValidateResponse) ToMap() (map[string]interface{}, error)

type LinkDSourceDefaultRequest

type LinkDSourceDefaultRequest struct {
	// The ID of the source to be linked.
	SourceId string `json:"source_id"`
}

LinkDSourceDefaultRequest struct for LinkDSourceDefaultRequest

func NewLinkDSourceDefaultRequest

func NewLinkDSourceDefaultRequest(sourceId string) *LinkDSourceDefaultRequest

NewLinkDSourceDefaultRequest instantiates a new LinkDSourceDefaultRequest 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 NewLinkDSourceDefaultRequestWithDefaults

func NewLinkDSourceDefaultRequestWithDefaults() *LinkDSourceDefaultRequest

NewLinkDSourceDefaultRequestWithDefaults instantiates a new LinkDSourceDefaultRequest 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 (*LinkDSourceDefaultRequest) GetSourceId

func (o *LinkDSourceDefaultRequest) GetSourceId() string

GetSourceId returns the SourceId field value

func (*LinkDSourceDefaultRequest) GetSourceIdOk

func (o *LinkDSourceDefaultRequest) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (LinkDSourceDefaultRequest) MarshalJSON

func (o LinkDSourceDefaultRequest) MarshalJSON() ([]byte, error)

func (*LinkDSourceDefaultRequest) SetSourceId

func (o *LinkDSourceDefaultRequest) SetSourceId(v string)

SetSourceId sets field value

func (LinkDSourceDefaultRequest) ToMap

func (o LinkDSourceDefaultRequest) ToMap() (map[string]interface{}, error)

type LinkDSourceResponse

type LinkDSourceResponse struct {
	Job *Job `json:"job,omitempty"`
	// The ID of the dSource.
	DsourceId *string `json:"dsource_id,omitempty"`
}

LinkDSourceResponse struct for LinkDSourceResponse

func NewLinkDSourceResponse

func NewLinkDSourceResponse() *LinkDSourceResponse

NewLinkDSourceResponse instantiates a new LinkDSourceResponse 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 NewLinkDSourceResponseWithDefaults

func NewLinkDSourceResponseWithDefaults() *LinkDSourceResponse

NewLinkDSourceResponseWithDefaults instantiates a new LinkDSourceResponse 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 (*LinkDSourceResponse) GetDsourceId

func (o *LinkDSourceResponse) GetDsourceId() string

GetDsourceId returns the DsourceId field value if set, zero value otherwise.

func (*LinkDSourceResponse) GetDsourceIdOk

func (o *LinkDSourceResponse) GetDsourceIdOk() (*string, bool)

GetDsourceIdOk returns a tuple with the DsourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LinkDSourceResponse) GetJob

func (o *LinkDSourceResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*LinkDSourceResponse) GetJobOk

func (o *LinkDSourceResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LinkDSourceResponse) HasDsourceId

func (o *LinkDSourceResponse) HasDsourceId() bool

HasDsourceId returns a boolean if a field has been set.

func (*LinkDSourceResponse) HasJob

func (o *LinkDSourceResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (LinkDSourceResponse) MarshalJSON

func (o LinkDSourceResponse) MarshalJSON() ([]byte, error)

func (*LinkDSourceResponse) SetDsourceId

func (o *LinkDSourceResponse) SetDsourceId(v string)

SetDsourceId gets a reference to the given string and assigns it to the DsourceId field.

func (*LinkDSourceResponse) SetJob

func (o *LinkDSourceResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (LinkDSourceResponse) ToMap

func (o LinkDSourceResponse) ToMap() (map[string]interface{}, error)

type ListAccessGroupsResponse

type ListAccessGroupsResponse struct {
	Items            []AccessGroup              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListAccessGroupsResponse struct for ListAccessGroupsResponse

func NewListAccessGroupsResponse

func NewListAccessGroupsResponse() *ListAccessGroupsResponse

NewListAccessGroupsResponse instantiates a new ListAccessGroupsResponse 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 NewListAccessGroupsResponseWithDefaults

func NewListAccessGroupsResponseWithDefaults() *ListAccessGroupsResponse

NewListAccessGroupsResponseWithDefaults instantiates a new ListAccessGroupsResponse 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 (*ListAccessGroupsResponse) GetItems

func (o *ListAccessGroupsResponse) GetItems() []AccessGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListAccessGroupsResponse) GetItemsOk

func (o *ListAccessGroupsResponse) GetItemsOk() ([]AccessGroup, 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.

func (*ListAccessGroupsResponse) GetResponseMetadata

func (o *ListAccessGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListAccessGroupsResponse) GetResponseMetadataOk

func (o *ListAccessGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListAccessGroupsResponse) HasItems

func (o *ListAccessGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAccessGroupsResponse) HasResponseMetadata

func (o *ListAccessGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListAccessGroupsResponse) MarshalJSON

func (o ListAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*ListAccessGroupsResponse) SetItems

func (o *ListAccessGroupsResponse) SetItems(v []AccessGroup)

SetItems gets a reference to the given []AccessGroup and assigns it to the Items field.

func (*ListAccessGroupsResponse) SetResponseMetadata

func (o *ListAccessGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListAccessGroupsResponse) ToMap

func (o ListAccessGroupsResponse) ToMap() (map[string]interface{}, error)

type ListAccountsResponse

type ListAccountsResponse struct {
	Items            []Account                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListAccountsResponse struct for ListAccountsResponse

func NewListAccountsResponse

func NewListAccountsResponse() *ListAccountsResponse

NewListAccountsResponse instantiates a new ListAccountsResponse 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 NewListAccountsResponseWithDefaults

func NewListAccountsResponseWithDefaults() *ListAccountsResponse

NewListAccountsResponseWithDefaults instantiates a new ListAccountsResponse 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 (*ListAccountsResponse) GetItems

func (o *ListAccountsResponse) GetItems() []Account

GetItems returns the Items field value if set, zero value otherwise.

func (*ListAccountsResponse) GetItemsOk

func (o *ListAccountsResponse) GetItemsOk() ([]Account, 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.

func (*ListAccountsResponse) GetResponseMetadata

func (o *ListAccountsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListAccountsResponse) GetResponseMetadataOk

func (o *ListAccountsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListAccountsResponse) HasItems

func (o *ListAccountsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAccountsResponse) HasResponseMetadata

func (o *ListAccountsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListAccountsResponse) MarshalJSON

func (o ListAccountsResponse) MarshalJSON() ([]byte, error)

func (*ListAccountsResponse) SetItems

func (o *ListAccountsResponse) SetItems(v []Account)

SetItems gets a reference to the given []Account and assigns it to the Items field.

func (*ListAccountsResponse) SetResponseMetadata

func (o *ListAccountsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListAccountsResponse) ToMap

func (o ListAccountsResponse) ToMap() (map[string]interface{}, error)

type ListAlgorithmsResponse

type ListAlgorithmsResponse struct {
	Items            []Algorithm                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListAlgorithmsResponse struct for ListAlgorithmsResponse

func NewListAlgorithmsResponse

func NewListAlgorithmsResponse() *ListAlgorithmsResponse

NewListAlgorithmsResponse instantiates a new ListAlgorithmsResponse 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 NewListAlgorithmsResponseWithDefaults

func NewListAlgorithmsResponseWithDefaults() *ListAlgorithmsResponse

NewListAlgorithmsResponseWithDefaults instantiates a new ListAlgorithmsResponse 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 (*ListAlgorithmsResponse) GetItems

func (o *ListAlgorithmsResponse) GetItems() []Algorithm

GetItems returns the Items field value if set, zero value otherwise.

func (*ListAlgorithmsResponse) GetItemsOk

func (o *ListAlgorithmsResponse) GetItemsOk() ([]Algorithm, 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.

func (*ListAlgorithmsResponse) GetResponseMetadata

func (o *ListAlgorithmsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListAlgorithmsResponse) GetResponseMetadataOk

func (o *ListAlgorithmsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListAlgorithmsResponse) HasItems

func (o *ListAlgorithmsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAlgorithmsResponse) HasResponseMetadata

func (o *ListAlgorithmsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListAlgorithmsResponse) MarshalJSON

func (o ListAlgorithmsResponse) MarshalJSON() ([]byte, error)

func (*ListAlgorithmsResponse) SetItems

func (o *ListAlgorithmsResponse) SetItems(v []Algorithm)

SetItems gets a reference to the given []Algorithm and assigns it to the Items field.

func (*ListAlgorithmsResponse) SetResponseMetadata

func (o *ListAlgorithmsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListAlgorithmsResponse) ToMap

func (o ListAlgorithmsResponse) ToMap() (map[string]interface{}, error)

type ListBookmarksByVDBGroupsResponse

type ListBookmarksByVDBGroupsResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListBookmarksByVDBGroupsResponse struct for ListBookmarksByVDBGroupsResponse

func NewListBookmarksByVDBGroupsResponse

func NewListBookmarksByVDBGroupsResponse() *ListBookmarksByVDBGroupsResponse

NewListBookmarksByVDBGroupsResponse instantiates a new ListBookmarksByVDBGroupsResponse 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 NewListBookmarksByVDBGroupsResponseWithDefaults

func NewListBookmarksByVDBGroupsResponseWithDefaults() *ListBookmarksByVDBGroupsResponse

NewListBookmarksByVDBGroupsResponseWithDefaults instantiates a new ListBookmarksByVDBGroupsResponse 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 (*ListBookmarksByVDBGroupsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListBookmarksByVDBGroupsResponse) GetItemsOk

func (o *ListBookmarksByVDBGroupsResponse) GetItemsOk() ([]Bookmark, 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.

func (*ListBookmarksByVDBGroupsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListBookmarksByVDBGroupsResponse) GetResponseMetadataOk

func (o *ListBookmarksByVDBGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListBookmarksByVDBGroupsResponse) HasItems

func (o *ListBookmarksByVDBGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListBookmarksByVDBGroupsResponse) HasResponseMetadata

func (o *ListBookmarksByVDBGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListBookmarksByVDBGroupsResponse) MarshalJSON

func (o ListBookmarksByVDBGroupsResponse) MarshalJSON() ([]byte, error)

func (*ListBookmarksByVDBGroupsResponse) SetItems

func (o *ListBookmarksByVDBGroupsResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*ListBookmarksByVDBGroupsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListBookmarksByVDBGroupsResponse) ToMap

func (o ListBookmarksByVDBGroupsResponse) ToMap() (map[string]interface{}, error)

type ListBookmarksByVDBResponse

type ListBookmarksByVDBResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListBookmarksByVDBResponse struct for ListBookmarksByVDBResponse

func NewListBookmarksByVDBResponse

func NewListBookmarksByVDBResponse() *ListBookmarksByVDBResponse

NewListBookmarksByVDBResponse instantiates a new ListBookmarksByVDBResponse 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 NewListBookmarksByVDBResponseWithDefaults

func NewListBookmarksByVDBResponseWithDefaults() *ListBookmarksByVDBResponse

NewListBookmarksByVDBResponseWithDefaults instantiates a new ListBookmarksByVDBResponse 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 (*ListBookmarksByVDBResponse) GetItems

func (o *ListBookmarksByVDBResponse) GetItems() []Bookmark

GetItems returns the Items field value if set, zero value otherwise.

func (*ListBookmarksByVDBResponse) GetItemsOk

func (o *ListBookmarksByVDBResponse) GetItemsOk() ([]Bookmark, 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.

func (*ListBookmarksByVDBResponse) GetResponseMetadata

func (o *ListBookmarksByVDBResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListBookmarksByVDBResponse) GetResponseMetadataOk

func (o *ListBookmarksByVDBResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListBookmarksByVDBResponse) HasItems

func (o *ListBookmarksByVDBResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListBookmarksByVDBResponse) HasResponseMetadata

func (o *ListBookmarksByVDBResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListBookmarksByVDBResponse) MarshalJSON

func (o ListBookmarksByVDBResponse) MarshalJSON() ([]byte, error)

func (*ListBookmarksByVDBResponse) SetItems

func (o *ListBookmarksByVDBResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*ListBookmarksByVDBResponse) SetResponseMetadata

func (o *ListBookmarksByVDBResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListBookmarksByVDBResponse) ToMap

func (o ListBookmarksByVDBResponse) ToMap() (map[string]interface{}, error)

type ListBookmarksResponse

type ListBookmarksResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListBookmarksResponse struct for ListBookmarksResponse

func NewListBookmarksResponse

func NewListBookmarksResponse() *ListBookmarksResponse

NewListBookmarksResponse instantiates a new ListBookmarksResponse 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 NewListBookmarksResponseWithDefaults

func NewListBookmarksResponseWithDefaults() *ListBookmarksResponse

NewListBookmarksResponseWithDefaults instantiates a new ListBookmarksResponse 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 (*ListBookmarksResponse) GetItems

func (o *ListBookmarksResponse) GetItems() []Bookmark

GetItems returns the Items field value if set, zero value otherwise.

func (*ListBookmarksResponse) GetItemsOk

func (o *ListBookmarksResponse) GetItemsOk() ([]Bookmark, 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.

func (*ListBookmarksResponse) GetResponseMetadata

func (o *ListBookmarksResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListBookmarksResponse) GetResponseMetadataOk

func (o *ListBookmarksResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListBookmarksResponse) HasItems

func (o *ListBookmarksResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListBookmarksResponse) HasResponseMetadata

func (o *ListBookmarksResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListBookmarksResponse) MarshalJSON

func (o ListBookmarksResponse) MarshalJSON() ([]byte, error)

func (*ListBookmarksResponse) SetItems

func (o *ListBookmarksResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*ListBookmarksResponse) SetResponseMetadata

func (o *ListBookmarksResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListBookmarksResponse) ToMap

func (o ListBookmarksResponse) ToMap() (map[string]interface{}, error)

type ListCDBsResponse

type ListCDBsResponse struct {
	Items            []CDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListCDBsResponse struct for ListCDBsResponse

func NewListCDBsResponse

func NewListCDBsResponse() *ListCDBsResponse

NewListCDBsResponse instantiates a new ListCDBsResponse 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 NewListCDBsResponseWithDefaults

func NewListCDBsResponseWithDefaults() *ListCDBsResponse

NewListCDBsResponseWithDefaults instantiates a new ListCDBsResponse 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 (*ListCDBsResponse) GetItems

func (o *ListCDBsResponse) GetItems() []CDB

GetItems returns the Items field value if set, zero value otherwise.

func (*ListCDBsResponse) GetItemsOk

func (o *ListCDBsResponse) GetItemsOk() ([]CDB, 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.

func (*ListCDBsResponse) GetResponseMetadata

func (o *ListCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListCDBsResponse) GetResponseMetadataOk

func (o *ListCDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListCDBsResponse) HasItems

func (o *ListCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListCDBsResponse) HasResponseMetadata

func (o *ListCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListCDBsResponse) MarshalJSON

func (o ListCDBsResponse) MarshalJSON() ([]byte, error)

func (*ListCDBsResponse) SetItems

func (o *ListCDBsResponse) SetItems(v []CDB)

SetItems gets a reference to the given []CDB and assigns it to the Items field.

func (*ListCDBsResponse) SetResponseMetadata

func (o *ListCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListCDBsResponse) ToMap

func (o ListCDBsResponse) ToMap() (map[string]interface{}, error)

type ListConnectorsResponse

type ListConnectorsResponse struct {
	Items            []Connector                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListConnectorsResponse struct for ListConnectorsResponse

func NewListConnectorsResponse

func NewListConnectorsResponse() *ListConnectorsResponse

NewListConnectorsResponse instantiates a new ListConnectorsResponse 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 NewListConnectorsResponseWithDefaults

func NewListConnectorsResponseWithDefaults() *ListConnectorsResponse

NewListConnectorsResponseWithDefaults instantiates a new ListConnectorsResponse 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 (*ListConnectorsResponse) GetItems

func (o *ListConnectorsResponse) GetItems() []Connector

GetItems returns the Items field value if set, zero value otherwise.

func (*ListConnectorsResponse) GetItemsOk

func (o *ListConnectorsResponse) GetItemsOk() ([]Connector, 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.

func (*ListConnectorsResponse) GetResponseMetadata

func (o *ListConnectorsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListConnectorsResponse) GetResponseMetadataOk

func (o *ListConnectorsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListConnectorsResponse) HasItems

func (o *ListConnectorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListConnectorsResponse) HasResponseMetadata

func (o *ListConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListConnectorsResponse) MarshalJSON

func (o ListConnectorsResponse) MarshalJSON() ([]byte, error)

func (*ListConnectorsResponse) SetItems

func (o *ListConnectorsResponse) SetItems(v []Connector)

SetItems gets a reference to the given []Connector and assigns it to the Items field.

func (*ListConnectorsResponse) SetResponseMetadata

func (o *ListConnectorsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListConnectorsResponse) ToMap

func (o ListConnectorsResponse) ToMap() (map[string]interface{}, error)

type ListDSourcesResponse

type ListDSourcesResponse struct {
	Items []DSource `json:"items,omitempty"`
	// Sadly, sometimes requests to the API are not successful. Failures can occur for a wide range of reasons. The Errors object contains information about full or partial failures which might have occurred during the request.
	Errors           []Error                    `json:"errors,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListDSourcesResponse struct for ListDSourcesResponse

func NewListDSourcesResponse

func NewListDSourcesResponse() *ListDSourcesResponse

NewListDSourcesResponse instantiates a new ListDSourcesResponse 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 NewListDSourcesResponseWithDefaults

func NewListDSourcesResponseWithDefaults() *ListDSourcesResponse

NewListDSourcesResponseWithDefaults instantiates a new ListDSourcesResponse 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 (*ListDSourcesResponse) GetErrors

func (o *ListDSourcesResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListDSourcesResponse) GetErrorsOk

func (o *ListDSourcesResponse) GetErrorsOk() ([]Error, 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.

func (*ListDSourcesResponse) GetItems

func (o *ListDSourcesResponse) GetItems() []DSource

GetItems returns the Items field value if set, zero value otherwise.

func (*ListDSourcesResponse) GetItemsOk

func (o *ListDSourcesResponse) GetItemsOk() ([]DSource, 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.

func (*ListDSourcesResponse) GetResponseMetadata

func (o *ListDSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListDSourcesResponse) GetResponseMetadataOk

func (o *ListDSourcesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDSourcesResponse) HasErrors

func (o *ListDSourcesResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListDSourcesResponse) HasItems

func (o *ListDSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListDSourcesResponse) HasResponseMetadata

func (o *ListDSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListDSourcesResponse) MarshalJSON

func (o ListDSourcesResponse) MarshalJSON() ([]byte, error)

func (*ListDSourcesResponse) SetErrors

func (o *ListDSourcesResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListDSourcesResponse) SetItems

func (o *ListDSourcesResponse) SetItems(v []DSource)

SetItems gets a reference to the given []DSource and assigns it to the Items field.

func (*ListDSourcesResponse) SetResponseMetadata

func (o *ListDSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListDSourcesResponse) ToMap

func (o ListDSourcesResponse) ToMap() (map[string]interface{}, error)

type ListDatabaseTemplatesResponse

type ListDatabaseTemplatesResponse struct {
	Items            []DatabaseTemplate         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListDatabaseTemplatesResponse struct for ListDatabaseTemplatesResponse

func NewListDatabaseTemplatesResponse

func NewListDatabaseTemplatesResponse() *ListDatabaseTemplatesResponse

NewListDatabaseTemplatesResponse instantiates a new ListDatabaseTemplatesResponse 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 NewListDatabaseTemplatesResponseWithDefaults

func NewListDatabaseTemplatesResponseWithDefaults() *ListDatabaseTemplatesResponse

NewListDatabaseTemplatesResponseWithDefaults instantiates a new ListDatabaseTemplatesResponse 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 (*ListDatabaseTemplatesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListDatabaseTemplatesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabaseTemplatesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListDatabaseTemplatesResponse) GetResponseMetadataOk

func (o *ListDatabaseTemplatesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListDatabaseTemplatesResponse) HasItems

func (o *ListDatabaseTemplatesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListDatabaseTemplatesResponse) HasResponseMetadata

func (o *ListDatabaseTemplatesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListDatabaseTemplatesResponse) MarshalJSON

func (o ListDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*ListDatabaseTemplatesResponse) SetItems

SetItems gets a reference to the given []DatabaseTemplate and assigns it to the Items field.

func (*ListDatabaseTemplatesResponse) SetResponseMetadata

func (o *ListDatabaseTemplatesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListDatabaseTemplatesResponse) ToMap

func (o ListDatabaseTemplatesResponse) ToMap() (map[string]interface{}, error)

type ListEnvironmentUsers

type ListEnvironmentUsers struct {
	// List of users
	Users []EnvironmentUser `json:"users,omitempty"`
}

ListEnvironmentUsers struct for ListEnvironmentUsers

func NewListEnvironmentUsers

func NewListEnvironmentUsers() *ListEnvironmentUsers

NewListEnvironmentUsers instantiates a new ListEnvironmentUsers 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 NewListEnvironmentUsersWithDefaults

func NewListEnvironmentUsersWithDefaults() *ListEnvironmentUsers

NewListEnvironmentUsersWithDefaults instantiates a new ListEnvironmentUsers 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 (*ListEnvironmentUsers) GetUsers

func (o *ListEnvironmentUsers) GetUsers() []EnvironmentUser

GetUsers returns the Users field value if set, zero value otherwise.

func (*ListEnvironmentUsers) GetUsersOk

func (o *ListEnvironmentUsers) GetUsersOk() ([]EnvironmentUser, 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.

func (*ListEnvironmentUsers) HasUsers

func (o *ListEnvironmentUsers) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (ListEnvironmentUsers) MarshalJSON

func (o ListEnvironmentUsers) MarshalJSON() ([]byte, error)

func (*ListEnvironmentUsers) SetUsers

func (o *ListEnvironmentUsers) SetUsers(v []EnvironmentUser)

SetUsers gets a reference to the given []EnvironmentUser and assigns it to the Users field.

func (ListEnvironmentUsers) ToMap

func (o ListEnvironmentUsers) ToMap() (map[string]interface{}, error)

type ListEnvironmentsResponse

type ListEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
	// Sadly, sometimes requests to the API are not successful. Failures can occur for a wide range of reasons. The Errors object contains information about full or partial failures which might have occurred during the request.
	Errors           []Error                    `json:"errors,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListEnvironmentsResponse struct for ListEnvironmentsResponse

func NewListEnvironmentsResponse

func NewListEnvironmentsResponse() *ListEnvironmentsResponse

NewListEnvironmentsResponse instantiates a new ListEnvironmentsResponse 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 NewListEnvironmentsResponseWithDefaults

func NewListEnvironmentsResponseWithDefaults() *ListEnvironmentsResponse

NewListEnvironmentsResponseWithDefaults instantiates a new ListEnvironmentsResponse 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 (*ListEnvironmentsResponse) GetErrors

func (o *ListEnvironmentsResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListEnvironmentsResponse) GetErrorsOk

func (o *ListEnvironmentsResponse) GetErrorsOk() ([]Error, 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.

func (*ListEnvironmentsResponse) GetItems

func (o *ListEnvironmentsResponse) GetItems() []Environment

GetItems returns the Items field value if set, zero value otherwise.

func (*ListEnvironmentsResponse) GetItemsOk

func (o *ListEnvironmentsResponse) GetItemsOk() ([]Environment, 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.

func (*ListEnvironmentsResponse) GetResponseMetadata

func (o *ListEnvironmentsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListEnvironmentsResponse) GetResponseMetadataOk

func (o *ListEnvironmentsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListEnvironmentsResponse) HasErrors

func (o *ListEnvironmentsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListEnvironmentsResponse) HasItems

func (o *ListEnvironmentsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListEnvironmentsResponse) HasResponseMetadata

func (o *ListEnvironmentsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListEnvironmentsResponse) MarshalJSON

func (o ListEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*ListEnvironmentsResponse) SetErrors

func (o *ListEnvironmentsResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListEnvironmentsResponse) SetItems

func (o *ListEnvironmentsResponse) SetItems(v []Environment)

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (*ListEnvironmentsResponse) SetResponseMetadata

func (o *ListEnvironmentsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListEnvironmentsResponse) ToMap

func (o ListEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type ListExecutionEventsResponse

type ListExecutionEventsResponse struct {
	Items            []ExecutionEvent           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListExecutionEventsResponse struct for ListExecutionEventsResponse

func NewListExecutionEventsResponse

func NewListExecutionEventsResponse() *ListExecutionEventsResponse

NewListExecutionEventsResponse instantiates a new ListExecutionEventsResponse 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 NewListExecutionEventsResponseWithDefaults

func NewListExecutionEventsResponseWithDefaults() *ListExecutionEventsResponse

NewListExecutionEventsResponseWithDefaults instantiates a new ListExecutionEventsResponse 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 (*ListExecutionEventsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListExecutionEventsResponse) GetItemsOk

func (o *ListExecutionEventsResponse) GetItemsOk() ([]ExecutionEvent, 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.

func (*ListExecutionEventsResponse) GetResponseMetadata

func (o *ListExecutionEventsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListExecutionEventsResponse) GetResponseMetadataOk

func (o *ListExecutionEventsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListExecutionEventsResponse) HasItems

func (o *ListExecutionEventsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListExecutionEventsResponse) HasResponseMetadata

func (o *ListExecutionEventsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListExecutionEventsResponse) MarshalJSON

func (o ListExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*ListExecutionEventsResponse) SetItems

SetItems gets a reference to the given []ExecutionEvent and assigns it to the Items field.

func (*ListExecutionEventsResponse) SetResponseMetadata

func (o *ListExecutionEventsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListExecutionEventsResponse) ToMap

func (o ListExecutionEventsResponse) ToMap() (map[string]interface{}, error)

type ListExecutionsResponse

type ListExecutionsResponse struct {
	Items            []Execution                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListExecutionsResponse struct for ListExecutionsResponse

func NewListExecutionsResponse

func NewListExecutionsResponse() *ListExecutionsResponse

NewListExecutionsResponse instantiates a new ListExecutionsResponse 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 NewListExecutionsResponseWithDefaults

func NewListExecutionsResponseWithDefaults() *ListExecutionsResponse

NewListExecutionsResponseWithDefaults instantiates a new ListExecutionsResponse 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 (*ListExecutionsResponse) GetItems

func (o *ListExecutionsResponse) GetItems() []Execution

GetItems returns the Items field value if set, zero value otherwise.

func (*ListExecutionsResponse) GetItemsOk

func (o *ListExecutionsResponse) GetItemsOk() ([]Execution, 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.

func (*ListExecutionsResponse) GetResponseMetadata

func (o *ListExecutionsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListExecutionsResponse) GetResponseMetadataOk

func (o *ListExecutionsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListExecutionsResponse) HasItems

func (o *ListExecutionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListExecutionsResponse) HasResponseMetadata

func (o *ListExecutionsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListExecutionsResponse) MarshalJSON

func (o ListExecutionsResponse) MarshalJSON() ([]byte, error)

func (*ListExecutionsResponse) SetItems

func (o *ListExecutionsResponse) SetItems(v []Execution)

SetItems gets a reference to the given []Execution and assigns it to the Items field.

func (*ListExecutionsResponse) SetResponseMetadata

func (o *ListExecutionsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListExecutionsResponse) ToMap

func (o ListExecutionsResponse) ToMap() (map[string]interface{}, error)

type ListGroupsResponse

type ListGroupsResponse struct {
	Items            []DatasetGroup             `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListGroupsResponse struct for ListGroupsResponse

func NewListGroupsResponse

func NewListGroupsResponse() *ListGroupsResponse

NewListGroupsResponse instantiates a new ListGroupsResponse 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 NewListGroupsResponseWithDefaults

func NewListGroupsResponseWithDefaults() *ListGroupsResponse

NewListGroupsResponseWithDefaults instantiates a new ListGroupsResponse 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 (*ListGroupsResponse) GetItems

func (o *ListGroupsResponse) GetItems() []DatasetGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListGroupsResponse) GetItemsOk

func (o *ListGroupsResponse) GetItemsOk() ([]DatasetGroup, 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.

func (*ListGroupsResponse) GetResponseMetadata

func (o *ListGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListGroupsResponse) GetResponseMetadataOk

func (o *ListGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListGroupsResponse) HasItems

func (o *ListGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListGroupsResponse) HasResponseMetadata

func (o *ListGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListGroupsResponse) MarshalJSON

func (o ListGroupsResponse) MarshalJSON() ([]byte, error)

func (*ListGroupsResponse) SetItems

func (o *ListGroupsResponse) SetItems(v []DatasetGroup)

SetItems gets a reference to the given []DatasetGroup and assigns it to the Items field.

func (*ListGroupsResponse) SetResponseMetadata

func (o *ListGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListGroupsResponse) ToMap

func (o ListGroupsResponse) ToMap() (map[string]interface{}, error)

type ListHashicorpVaultsResponse

type ListHashicorpVaultsResponse struct {
	Items            []HashicorpVault           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHashicorpVaultsResponse struct for ListHashicorpVaultsResponse

func NewListHashicorpVaultsResponse

func NewListHashicorpVaultsResponse() *ListHashicorpVaultsResponse

NewListHashicorpVaultsResponse instantiates a new ListHashicorpVaultsResponse 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 NewListHashicorpVaultsResponseWithDefaults

func NewListHashicorpVaultsResponseWithDefaults() *ListHashicorpVaultsResponse

NewListHashicorpVaultsResponseWithDefaults instantiates a new ListHashicorpVaultsResponse 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 (*ListHashicorpVaultsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHashicorpVaultsResponse) GetItemsOk

func (o *ListHashicorpVaultsResponse) GetItemsOk() ([]HashicorpVault, 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.

func (*ListHashicorpVaultsResponse) GetResponseMetadata

func (o *ListHashicorpVaultsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHashicorpVaultsResponse) GetResponseMetadataOk

func (o *ListHashicorpVaultsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHashicorpVaultsResponse) HasItems

func (o *ListHashicorpVaultsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListHashicorpVaultsResponse) HasResponseMetadata

func (o *ListHashicorpVaultsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHashicorpVaultsResponse) MarshalJSON

func (o ListHashicorpVaultsResponse) MarshalJSON() ([]byte, error)

func (*ListHashicorpVaultsResponse) SetItems

SetItems gets a reference to the given []HashicorpVault and assigns it to the Items field.

func (*ListHashicorpVaultsResponse) SetResponseMetadata

func (o *ListHashicorpVaultsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHashicorpVaultsResponse) ToMap

func (o ListHashicorpVaultsResponse) ToMap() (map[string]interface{}, error)

type ListHyperscaleConnectorsResponse

type ListHyperscaleConnectorsResponse struct {
	Items            []HyperscaleConnector      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHyperscaleConnectorsResponse struct for ListHyperscaleConnectorsResponse

func NewListHyperscaleConnectorsResponse

func NewListHyperscaleConnectorsResponse() *ListHyperscaleConnectorsResponse

NewListHyperscaleConnectorsResponse instantiates a new ListHyperscaleConnectorsResponse 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 NewListHyperscaleConnectorsResponseWithDefaults

func NewListHyperscaleConnectorsResponseWithDefaults() *ListHyperscaleConnectorsResponse

NewListHyperscaleConnectorsResponseWithDefaults instantiates a new ListHyperscaleConnectorsResponse 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 (*ListHyperscaleConnectorsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHyperscaleConnectorsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleConnectorsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHyperscaleConnectorsResponse) GetResponseMetadataOk

func (o *ListHyperscaleConnectorsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleConnectorsResponse) HasItems

func (o *ListHyperscaleConnectorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListHyperscaleConnectorsResponse) HasResponseMetadata

func (o *ListHyperscaleConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHyperscaleConnectorsResponse) MarshalJSON

func (o ListHyperscaleConnectorsResponse) MarshalJSON() ([]byte, error)

func (*ListHyperscaleConnectorsResponse) SetItems

SetItems gets a reference to the given []HyperscaleConnector and assigns it to the Items field.

func (*ListHyperscaleConnectorsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHyperscaleConnectorsResponse) ToMap

func (o ListHyperscaleConnectorsResponse) ToMap() (map[string]interface{}, error)

type ListHyperscaleDatasetTablesOrFilesResponse

type ListHyperscaleDatasetTablesOrFilesResponse struct {
	Items            []HyperscaleDatasetTableOrFile `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata     `json:"response_metadata,omitempty"`
}

ListHyperscaleDatasetTablesOrFilesResponse struct for ListHyperscaleDatasetTablesOrFilesResponse

func NewListHyperscaleDatasetTablesOrFilesResponse

func NewListHyperscaleDatasetTablesOrFilesResponse() *ListHyperscaleDatasetTablesOrFilesResponse

NewListHyperscaleDatasetTablesOrFilesResponse instantiates a new ListHyperscaleDatasetTablesOrFilesResponse 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 NewListHyperscaleDatasetTablesOrFilesResponseWithDefaults

func NewListHyperscaleDatasetTablesOrFilesResponseWithDefaults() *ListHyperscaleDatasetTablesOrFilesResponse

NewListHyperscaleDatasetTablesOrFilesResponseWithDefaults instantiates a new ListHyperscaleDatasetTablesOrFilesResponse 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 (*ListHyperscaleDatasetTablesOrFilesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHyperscaleDatasetTablesOrFilesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleDatasetTablesOrFilesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHyperscaleDatasetTablesOrFilesResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleDatasetTablesOrFilesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*ListHyperscaleDatasetTablesOrFilesResponse) HasResponseMetadata

func (o *ListHyperscaleDatasetTablesOrFilesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHyperscaleDatasetTablesOrFilesResponse) MarshalJSON

func (*ListHyperscaleDatasetTablesOrFilesResponse) SetItems

SetItems gets a reference to the given []HyperscaleDatasetTableOrFile and assigns it to the Items field.

func (*ListHyperscaleDatasetTablesOrFilesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHyperscaleDatasetTablesOrFilesResponse) ToMap

func (o ListHyperscaleDatasetTablesOrFilesResponse) ToMap() (map[string]interface{}, error)

type ListHyperscaleDatasetsResponse

type ListHyperscaleDatasetsResponse struct {
	Items            []HyperscaleDataset        `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHyperscaleDatasetsResponse struct for ListHyperscaleDatasetsResponse

func NewListHyperscaleDatasetsResponse

func NewListHyperscaleDatasetsResponse() *ListHyperscaleDatasetsResponse

NewListHyperscaleDatasetsResponse instantiates a new ListHyperscaleDatasetsResponse 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 NewListHyperscaleDatasetsResponseWithDefaults

func NewListHyperscaleDatasetsResponseWithDefaults() *ListHyperscaleDatasetsResponse

NewListHyperscaleDatasetsResponseWithDefaults instantiates a new ListHyperscaleDatasetsResponse 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 (*ListHyperscaleDatasetsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHyperscaleDatasetsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleDatasetsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHyperscaleDatasetsResponse) GetResponseMetadataOk

func (o *ListHyperscaleDatasetsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleDatasetsResponse) HasItems

func (o *ListHyperscaleDatasetsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListHyperscaleDatasetsResponse) HasResponseMetadata

func (o *ListHyperscaleDatasetsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHyperscaleDatasetsResponse) MarshalJSON

func (o ListHyperscaleDatasetsResponse) MarshalJSON() ([]byte, error)

func (*ListHyperscaleDatasetsResponse) SetItems

SetItems gets a reference to the given []HyperscaleDataset and assigns it to the Items field.

func (*ListHyperscaleDatasetsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHyperscaleDatasetsResponse) ToMap

func (o ListHyperscaleDatasetsResponse) ToMap() (map[string]interface{}, error)

type ListHyperscaleInstancesResponse

type ListHyperscaleInstancesResponse struct {
	Items            []HyperscaleInstance       `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHyperscaleInstancesResponse struct for ListHyperscaleInstancesResponse

func NewListHyperscaleInstancesResponse

func NewListHyperscaleInstancesResponse() *ListHyperscaleInstancesResponse

NewListHyperscaleInstancesResponse instantiates a new ListHyperscaleInstancesResponse 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 NewListHyperscaleInstancesResponseWithDefaults

func NewListHyperscaleInstancesResponseWithDefaults() *ListHyperscaleInstancesResponse

NewListHyperscaleInstancesResponseWithDefaults instantiates a new ListHyperscaleInstancesResponse 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 (*ListHyperscaleInstancesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHyperscaleInstancesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleInstancesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHyperscaleInstancesResponse) GetResponseMetadataOk

func (o *ListHyperscaleInstancesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleInstancesResponse) HasItems

func (o *ListHyperscaleInstancesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListHyperscaleInstancesResponse) HasResponseMetadata

func (o *ListHyperscaleInstancesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHyperscaleInstancesResponse) MarshalJSON

func (o ListHyperscaleInstancesResponse) MarshalJSON() ([]byte, error)

func (*ListHyperscaleInstancesResponse) SetItems

SetItems gets a reference to the given []HyperscaleInstance and assigns it to the Items field.

func (*ListHyperscaleInstancesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHyperscaleInstancesResponse) ToMap

func (o ListHyperscaleInstancesResponse) ToMap() (map[string]interface{}, error)

type ListHyperscaleMountPointsResponse

type ListHyperscaleMountPointsResponse struct {
	Items            []HyperscaleMountPoint     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHyperscaleMountPointsResponse struct for ListHyperscaleMountPointsResponse

func NewListHyperscaleMountPointsResponse

func NewListHyperscaleMountPointsResponse() *ListHyperscaleMountPointsResponse

NewListHyperscaleMountPointsResponse instantiates a new ListHyperscaleMountPointsResponse 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 NewListHyperscaleMountPointsResponseWithDefaults

func NewListHyperscaleMountPointsResponseWithDefaults() *ListHyperscaleMountPointsResponse

NewListHyperscaleMountPointsResponseWithDefaults instantiates a new ListHyperscaleMountPointsResponse 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 (*ListHyperscaleMountPointsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHyperscaleMountPointsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleMountPointsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHyperscaleMountPointsResponse) GetResponseMetadataOk

func (o *ListHyperscaleMountPointsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListHyperscaleMountPointsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*ListHyperscaleMountPointsResponse) HasResponseMetadata

func (o *ListHyperscaleMountPointsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHyperscaleMountPointsResponse) MarshalJSON

func (o ListHyperscaleMountPointsResponse) MarshalJSON() ([]byte, error)

func (*ListHyperscaleMountPointsResponse) SetItems

SetItems gets a reference to the given []HyperscaleMountPoint and assigns it to the Items field.

func (*ListHyperscaleMountPointsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHyperscaleMountPointsResponse) ToMap

func (o ListHyperscaleMountPointsResponse) ToMap() (map[string]interface{}, error)

type ListJobsResponse

type ListJobsResponse struct {
	Items []Job `json:"items,omitempty"`
	// Sadly, sometimes requests to the API are not successful. Failures can occur for a wide range of reasons. The Errors object contains information about full or partial failures which might have occurred during the request.
	Errors           []Error                    `json:"errors,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListJobsResponse struct for ListJobsResponse

func NewListJobsResponse

func NewListJobsResponse() *ListJobsResponse

NewListJobsResponse instantiates a new ListJobsResponse 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 NewListJobsResponseWithDefaults

func NewListJobsResponseWithDefaults() *ListJobsResponse

NewListJobsResponseWithDefaults instantiates a new ListJobsResponse 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 (*ListJobsResponse) GetErrors

func (o *ListJobsResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListJobsResponse) GetErrorsOk

func (o *ListJobsResponse) GetErrorsOk() ([]Error, 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.

func (*ListJobsResponse) GetItems

func (o *ListJobsResponse) GetItems() []Job

GetItems returns the Items field value if set, zero value otherwise.

func (*ListJobsResponse) GetItemsOk

func (o *ListJobsResponse) GetItemsOk() ([]Job, 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.

func (*ListJobsResponse) GetResponseMetadata

func (o *ListJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListJobsResponse) GetResponseMetadataOk

func (o *ListJobsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListJobsResponse) HasErrors

func (o *ListJobsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListJobsResponse) HasItems

func (o *ListJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListJobsResponse) HasResponseMetadata

func (o *ListJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListJobsResponse) MarshalJSON

func (o ListJobsResponse) MarshalJSON() ([]byte, error)

func (*ListJobsResponse) SetErrors

func (o *ListJobsResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListJobsResponse) SetItems

func (o *ListJobsResponse) SetItems(v []Job)

SetItems gets a reference to the given []Job and assigns it to the Items field.

func (*ListJobsResponse) SetResponseMetadata

func (o *ListJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListJobsResponse) ToMap

func (o ListJobsResponse) ToMap() (map[string]interface{}, error)

type ListKerberosConfigsResponse

type ListKerberosConfigsResponse struct {
	Items            []KerberosConfig           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListKerberosConfigsResponse struct for ListKerberosConfigsResponse

func NewListKerberosConfigsResponse

func NewListKerberosConfigsResponse() *ListKerberosConfigsResponse

NewListKerberosConfigsResponse instantiates a new ListKerberosConfigsResponse 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 NewListKerberosConfigsResponseWithDefaults

func NewListKerberosConfigsResponseWithDefaults() *ListKerberosConfigsResponse

NewListKerberosConfigsResponseWithDefaults instantiates a new ListKerberosConfigsResponse 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 (*ListKerberosConfigsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListKerberosConfigsResponse) GetItemsOk

func (o *ListKerberosConfigsResponse) GetItemsOk() ([]KerberosConfig, 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.

func (*ListKerberosConfigsResponse) GetResponseMetadata

func (o *ListKerberosConfigsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListKerberosConfigsResponse) GetResponseMetadataOk

func (o *ListKerberosConfigsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListKerberosConfigsResponse) HasItems

func (o *ListKerberosConfigsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListKerberosConfigsResponse) HasResponseMetadata

func (o *ListKerberosConfigsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListKerberosConfigsResponse) MarshalJSON

func (o ListKerberosConfigsResponse) MarshalJSON() ([]byte, error)

func (*ListKerberosConfigsResponse) SetItems

SetItems gets a reference to the given []KerberosConfig and assigns it to the Items field.

func (*ListKerberosConfigsResponse) SetResponseMetadata

func (o *ListKerberosConfigsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListKerberosConfigsResponse) ToMap

func (o ListKerberosConfigsResponse) ToMap() (map[string]interface{}, error)

type ListMaskingEnvironmentsResponse

type ListMaskingEnvironmentsResponse struct {
	Items            []MaskingEnvironment       `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListMaskingEnvironmentsResponse struct for ListMaskingEnvironmentsResponse

func NewListMaskingEnvironmentsResponse

func NewListMaskingEnvironmentsResponse() *ListMaskingEnvironmentsResponse

NewListMaskingEnvironmentsResponse instantiates a new ListMaskingEnvironmentsResponse 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 NewListMaskingEnvironmentsResponseWithDefaults

func NewListMaskingEnvironmentsResponseWithDefaults() *ListMaskingEnvironmentsResponse

NewListMaskingEnvironmentsResponseWithDefaults instantiates a new ListMaskingEnvironmentsResponse 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 (*ListMaskingEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListMaskingEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMaskingEnvironmentsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListMaskingEnvironmentsResponse) GetResponseMetadataOk

func (o *ListMaskingEnvironmentsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMaskingEnvironmentsResponse) HasItems

func (o *ListMaskingEnvironmentsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListMaskingEnvironmentsResponse) HasResponseMetadata

func (o *ListMaskingEnvironmentsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListMaskingEnvironmentsResponse) MarshalJSON

func (o ListMaskingEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*ListMaskingEnvironmentsResponse) SetItems

SetItems gets a reference to the given []MaskingEnvironment and assigns it to the Items field.

func (*ListMaskingEnvironmentsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListMaskingEnvironmentsResponse) ToMap

func (o ListMaskingEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type ListMaskingJobSourceEnginesResponse

type ListMaskingJobSourceEnginesResponse struct {
	Items            []MaskingJobSourceEngine   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListMaskingJobSourceEnginesResponse struct for ListMaskingJobSourceEnginesResponse

func NewListMaskingJobSourceEnginesResponse

func NewListMaskingJobSourceEnginesResponse() *ListMaskingJobSourceEnginesResponse

NewListMaskingJobSourceEnginesResponse instantiates a new ListMaskingJobSourceEnginesResponse 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 NewListMaskingJobSourceEnginesResponseWithDefaults

func NewListMaskingJobSourceEnginesResponseWithDefaults() *ListMaskingJobSourceEnginesResponse

NewListMaskingJobSourceEnginesResponseWithDefaults instantiates a new ListMaskingJobSourceEnginesResponse 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 (*ListMaskingJobSourceEnginesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListMaskingJobSourceEnginesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMaskingJobSourceEnginesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListMaskingJobSourceEnginesResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMaskingJobSourceEnginesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*ListMaskingJobSourceEnginesResponse) HasResponseMetadata

func (o *ListMaskingJobSourceEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListMaskingJobSourceEnginesResponse) MarshalJSON

func (o ListMaskingJobSourceEnginesResponse) MarshalJSON() ([]byte, error)

func (*ListMaskingJobSourceEnginesResponse) SetItems

SetItems gets a reference to the given []MaskingJobSourceEngine and assigns it to the Items field.

func (*ListMaskingJobSourceEnginesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListMaskingJobSourceEnginesResponse) ToMap

func (o ListMaskingJobSourceEnginesResponse) ToMap() (map[string]interface{}, error)

type ListMaskingJobsResponse

type ListMaskingJobsResponse struct {
	Items            []MaskingJob               `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListMaskingJobsResponse struct for ListMaskingJobsResponse

func NewListMaskingJobsResponse

func NewListMaskingJobsResponse() *ListMaskingJobsResponse

NewListMaskingJobsResponse instantiates a new ListMaskingJobsResponse 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 NewListMaskingJobsResponseWithDefaults

func NewListMaskingJobsResponseWithDefaults() *ListMaskingJobsResponse

NewListMaskingJobsResponseWithDefaults instantiates a new ListMaskingJobsResponse 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 (*ListMaskingJobsResponse) GetItems

func (o *ListMaskingJobsResponse) GetItems() []MaskingJob

GetItems returns the Items field value if set, zero value otherwise.

func (*ListMaskingJobsResponse) GetItemsOk

func (o *ListMaskingJobsResponse) GetItemsOk() ([]MaskingJob, 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.

func (*ListMaskingJobsResponse) GetResponseMetadata

func (o *ListMaskingJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListMaskingJobsResponse) GetResponseMetadataOk

func (o *ListMaskingJobsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMaskingJobsResponse) HasItems

func (o *ListMaskingJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListMaskingJobsResponse) HasResponseMetadata

func (o *ListMaskingJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListMaskingJobsResponse) MarshalJSON

func (o ListMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*ListMaskingJobsResponse) SetItems

func (o *ListMaskingJobsResponse) SetItems(v []MaskingJob)

SetItems gets a reference to the given []MaskingJob and assigns it to the Items field.

func (*ListMaskingJobsResponse) SetResponseMetadata

func (o *ListMaskingJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListMaskingJobsResponse) ToMap

func (o ListMaskingJobsResponse) ToMap() (map[string]interface{}, error)

type ListPasswordVaultsResponse

type ListPasswordVaultsResponse struct {
	Items            []PasswordVault            `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListPasswordVaultsResponse struct for ListPasswordVaultsResponse

func NewListPasswordVaultsResponse

func NewListPasswordVaultsResponse() *ListPasswordVaultsResponse

NewListPasswordVaultsResponse instantiates a new ListPasswordVaultsResponse 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 NewListPasswordVaultsResponseWithDefaults

func NewListPasswordVaultsResponseWithDefaults() *ListPasswordVaultsResponse

NewListPasswordVaultsResponseWithDefaults instantiates a new ListPasswordVaultsResponse 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 (*ListPasswordVaultsResponse) GetItems

func (o *ListPasswordVaultsResponse) GetItems() []PasswordVault

GetItems returns the Items field value if set, zero value otherwise.

func (*ListPasswordVaultsResponse) GetItemsOk

func (o *ListPasswordVaultsResponse) GetItemsOk() ([]PasswordVault, 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.

func (*ListPasswordVaultsResponse) GetResponseMetadata

func (o *ListPasswordVaultsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListPasswordVaultsResponse) GetResponseMetadataOk

func (o *ListPasswordVaultsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListPasswordVaultsResponse) HasItems

func (o *ListPasswordVaultsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListPasswordVaultsResponse) HasResponseMetadata

func (o *ListPasswordVaultsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListPasswordVaultsResponse) MarshalJSON

func (o ListPasswordVaultsResponse) MarshalJSON() ([]byte, error)

func (*ListPasswordVaultsResponse) SetItems

func (o *ListPasswordVaultsResponse) SetItems(v []PasswordVault)

SetItems gets a reference to the given []PasswordVault and assigns it to the Items field.

func (*ListPasswordVaultsResponse) SetResponseMetadata

func (o *ListPasswordVaultsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListPasswordVaultsResponse) ToMap

func (o ListPasswordVaultsResponse) ToMap() (map[string]interface{}, error)

type ListRegisteredEnginesResponse

type ListRegisteredEnginesResponse struct {
	Items            []RegisteredEngine         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListRegisteredEnginesResponse struct for ListRegisteredEnginesResponse

func NewListRegisteredEnginesResponse

func NewListRegisteredEnginesResponse() *ListRegisteredEnginesResponse

NewListRegisteredEnginesResponse instantiates a new ListRegisteredEnginesResponse 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 NewListRegisteredEnginesResponseWithDefaults

func NewListRegisteredEnginesResponseWithDefaults() *ListRegisteredEnginesResponse

NewListRegisteredEnginesResponseWithDefaults instantiates a new ListRegisteredEnginesResponse 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 (*ListRegisteredEnginesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListRegisteredEnginesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegisteredEnginesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListRegisteredEnginesResponse) GetResponseMetadataOk

func (o *ListRegisteredEnginesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegisteredEnginesResponse) HasItems

func (o *ListRegisteredEnginesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListRegisteredEnginesResponse) HasResponseMetadata

func (o *ListRegisteredEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListRegisteredEnginesResponse) MarshalJSON

func (o ListRegisteredEnginesResponse) MarshalJSON() ([]byte, error)

func (*ListRegisteredEnginesResponse) SetItems

SetItems gets a reference to the given []RegisteredEngine and assigns it to the Items field.

func (*ListRegisteredEnginesResponse) SetResponseMetadata

func (o *ListRegisteredEnginesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListRegisteredEnginesResponse) ToMap

func (o ListRegisteredEnginesResponse) ToMap() (map[string]interface{}, error)

type ListReportingScheduleResponse

type ListReportingScheduleResponse struct {
	Items            []ReportingSchedule        `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListReportingScheduleResponse struct for ListReportingScheduleResponse

func NewListReportingScheduleResponse

func NewListReportingScheduleResponse() *ListReportingScheduleResponse

NewListReportingScheduleResponse instantiates a new ListReportingScheduleResponse 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 NewListReportingScheduleResponseWithDefaults

func NewListReportingScheduleResponseWithDefaults() *ListReportingScheduleResponse

NewListReportingScheduleResponseWithDefaults instantiates a new ListReportingScheduleResponse 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 (*ListReportingScheduleResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListReportingScheduleResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListReportingScheduleResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListReportingScheduleResponse) GetResponseMetadataOk

func (o *ListReportingScheduleResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListReportingScheduleResponse) HasItems

func (o *ListReportingScheduleResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListReportingScheduleResponse) HasResponseMetadata

func (o *ListReportingScheduleResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListReportingScheduleResponse) MarshalJSON

func (o ListReportingScheduleResponse) MarshalJSON() ([]byte, error)

func (*ListReportingScheduleResponse) SetItems

SetItems gets a reference to the given []ReportingSchedule and assigns it to the Items field.

func (*ListReportingScheduleResponse) SetResponseMetadata

func (o *ListReportingScheduleResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListReportingScheduleResponse) ToMap

func (o ListReportingScheduleResponse) ToMap() (map[string]interface{}, error)

type ListRolesResponse

type ListRolesResponse struct {
	Items []Role `json:"items,omitempty"`
}

ListRolesResponse struct for ListRolesResponse

func NewListRolesResponse

func NewListRolesResponse() *ListRolesResponse

NewListRolesResponse instantiates a new ListRolesResponse 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 NewListRolesResponseWithDefaults

func NewListRolesResponseWithDefaults() *ListRolesResponse

NewListRolesResponseWithDefaults instantiates a new ListRolesResponse 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 (*ListRolesResponse) GetItems

func (o *ListRolesResponse) GetItems() []Role

GetItems returns the Items field value if set, zero value otherwise.

func (*ListRolesResponse) GetItemsOk

func (o *ListRolesResponse) GetItemsOk() ([]Role, 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.

func (*ListRolesResponse) HasItems

func (o *ListRolesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListRolesResponse) MarshalJSON

func (o ListRolesResponse) MarshalJSON() ([]byte, error)

func (*ListRolesResponse) SetItems

func (o *ListRolesResponse) SetItems(v []Role)

SetItems gets a reference to the given []Role and assigns it to the Items field.

func (ListRolesResponse) ToMap

func (o ListRolesResponse) ToMap() (map[string]interface{}, error)

type ListSnapshotsResponse

type ListSnapshotsResponse struct {
	Items            []Snapshot                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListSnapshotsResponse struct for ListSnapshotsResponse

func NewListSnapshotsResponse

func NewListSnapshotsResponse() *ListSnapshotsResponse

NewListSnapshotsResponse instantiates a new ListSnapshotsResponse 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 NewListSnapshotsResponseWithDefaults

func NewListSnapshotsResponseWithDefaults() *ListSnapshotsResponse

NewListSnapshotsResponseWithDefaults instantiates a new ListSnapshotsResponse 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 (*ListSnapshotsResponse) GetItems

func (o *ListSnapshotsResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*ListSnapshotsResponse) GetItemsOk

func (o *ListSnapshotsResponse) GetItemsOk() ([]Snapshot, 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.

func (*ListSnapshotsResponse) GetResponseMetadata

func (o *ListSnapshotsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListSnapshotsResponse) GetResponseMetadataOk

func (o *ListSnapshotsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSnapshotsResponse) HasItems

func (o *ListSnapshotsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListSnapshotsResponse) HasResponseMetadata

func (o *ListSnapshotsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListSnapshotsResponse) MarshalJSON

func (o ListSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*ListSnapshotsResponse) SetItems

func (o *ListSnapshotsResponse) SetItems(v []Snapshot)

SetItems gets a reference to the given []Snapshot and assigns it to the Items field.

func (*ListSnapshotsResponse) SetResponseMetadata

func (o *ListSnapshotsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListSnapshotsResponse) ToMap

func (o ListSnapshotsResponse) ToMap() (map[string]interface{}, error)

type ListSourcesResponse

type ListSourcesResponse struct {
	Items []Source `json:"items,omitempty"`
	// Sadly, sometimes requests to the API are not successful. Failures can occur for a wide range of reasons. The Errors object contains information about full or partial failures which might have occurred during the request.
	Errors           []Error                    `json:"errors,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListSourcesResponse struct for ListSourcesResponse

func NewListSourcesResponse

func NewListSourcesResponse() *ListSourcesResponse

NewListSourcesResponse instantiates a new ListSourcesResponse 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 NewListSourcesResponseWithDefaults

func NewListSourcesResponseWithDefaults() *ListSourcesResponse

NewListSourcesResponseWithDefaults instantiates a new ListSourcesResponse 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 (*ListSourcesResponse) GetErrors

func (o *ListSourcesResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListSourcesResponse) GetErrorsOk

func (o *ListSourcesResponse) GetErrorsOk() ([]Error, 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.

func (*ListSourcesResponse) GetItems

func (o *ListSourcesResponse) GetItems() []Source

GetItems returns the Items field value if set, zero value otherwise.

func (*ListSourcesResponse) GetItemsOk

func (o *ListSourcesResponse) GetItemsOk() ([]Source, 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.

func (*ListSourcesResponse) GetResponseMetadata

func (o *ListSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListSourcesResponse) GetResponseMetadataOk

func (o *ListSourcesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSourcesResponse) HasErrors

func (o *ListSourcesResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListSourcesResponse) HasItems

func (o *ListSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListSourcesResponse) HasResponseMetadata

func (o *ListSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListSourcesResponse) MarshalJSON

func (o ListSourcesResponse) MarshalJSON() ([]byte, error)

func (*ListSourcesResponse) SetErrors

func (o *ListSourcesResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListSourcesResponse) SetItems

func (o *ListSourcesResponse) SetItems(v []Source)

SetItems gets a reference to the given []Source and assigns it to the Items field.

func (*ListSourcesResponse) SetResponseMetadata

func (o *ListSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListSourcesResponse) ToMap

func (o ListSourcesResponse) ToMap() (map[string]interface{}, error)

type ListTimeflowsResponse

type ListTimeflowsResponse struct {
	Items            []Timeflow                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListTimeflowsResponse struct for ListTimeflowsResponse

func NewListTimeflowsResponse

func NewListTimeflowsResponse() *ListTimeflowsResponse

NewListTimeflowsResponse instantiates a new ListTimeflowsResponse 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 NewListTimeflowsResponseWithDefaults

func NewListTimeflowsResponseWithDefaults() *ListTimeflowsResponse

NewListTimeflowsResponseWithDefaults instantiates a new ListTimeflowsResponse 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 (*ListTimeflowsResponse) GetItems

func (o *ListTimeflowsResponse) GetItems() []Timeflow

GetItems returns the Items field value if set, zero value otherwise.

func (*ListTimeflowsResponse) GetItemsOk

func (o *ListTimeflowsResponse) GetItemsOk() ([]Timeflow, 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.

func (*ListTimeflowsResponse) GetResponseMetadata

func (o *ListTimeflowsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListTimeflowsResponse) GetResponseMetadataOk

func (o *ListTimeflowsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListTimeflowsResponse) HasItems

func (o *ListTimeflowsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListTimeflowsResponse) HasResponseMetadata

func (o *ListTimeflowsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListTimeflowsResponse) MarshalJSON

func (o ListTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*ListTimeflowsResponse) SetItems

func (o *ListTimeflowsResponse) SetItems(v []Timeflow)

SetItems gets a reference to the given []Timeflow and assigns it to the Items field.

func (*ListTimeflowsResponse) SetResponseMetadata

func (o *ListTimeflowsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListTimeflowsResponse) ToMap

func (o ListTimeflowsResponse) ToMap() (map[string]interface{}, error)

type ListVCDBsResponse

type ListVCDBsResponse struct {
	Items            []VCDB                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVCDBsResponse struct for ListVCDBsResponse

func NewListVCDBsResponse

func NewListVCDBsResponse() *ListVCDBsResponse

NewListVCDBsResponse instantiates a new ListVCDBsResponse 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 NewListVCDBsResponseWithDefaults

func NewListVCDBsResponseWithDefaults() *ListVCDBsResponse

NewListVCDBsResponseWithDefaults instantiates a new ListVCDBsResponse 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 (*ListVCDBsResponse) GetItems

func (o *ListVCDBsResponse) GetItems() []VCDB

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVCDBsResponse) GetItemsOk

func (o *ListVCDBsResponse) GetItemsOk() ([]VCDB, 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.

func (*ListVCDBsResponse) GetResponseMetadata

func (o *ListVCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVCDBsResponse) GetResponseMetadataOk

func (o *ListVCDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVCDBsResponse) HasItems

func (o *ListVCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVCDBsResponse) HasResponseMetadata

func (o *ListVCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVCDBsResponse) MarshalJSON

func (o ListVCDBsResponse) MarshalJSON() ([]byte, error)

func (*ListVCDBsResponse) SetItems

func (o *ListVCDBsResponse) SetItems(v []VCDB)

SetItems gets a reference to the given []VCDB and assigns it to the Items field.

func (*ListVCDBsResponse) SetResponseMetadata

func (o *ListVCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVCDBsResponse) ToMap

func (o ListVCDBsResponse) ToMap() (map[string]interface{}, error)

type ListVDBGroupsByBookmarkResponse

type ListVDBGroupsByBookmarkResponse struct {
	Items            []VDBGroup                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVDBGroupsByBookmarkResponse struct for ListVDBGroupsByBookmarkResponse

func NewListVDBGroupsByBookmarkResponse

func NewListVDBGroupsByBookmarkResponse() *ListVDBGroupsByBookmarkResponse

NewListVDBGroupsByBookmarkResponse instantiates a new ListVDBGroupsByBookmarkResponse 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 NewListVDBGroupsByBookmarkResponseWithDefaults

func NewListVDBGroupsByBookmarkResponseWithDefaults() *ListVDBGroupsByBookmarkResponse

NewListVDBGroupsByBookmarkResponseWithDefaults instantiates a new ListVDBGroupsByBookmarkResponse 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 (*ListVDBGroupsByBookmarkResponse) GetItems

func (o *ListVDBGroupsByBookmarkResponse) GetItems() []VDBGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVDBGroupsByBookmarkResponse) GetItemsOk

func (o *ListVDBGroupsByBookmarkResponse) GetItemsOk() ([]VDBGroup, 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.

func (*ListVDBGroupsByBookmarkResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVDBGroupsByBookmarkResponse) GetResponseMetadataOk

func (o *ListVDBGroupsByBookmarkResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVDBGroupsByBookmarkResponse) HasItems

func (o *ListVDBGroupsByBookmarkResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVDBGroupsByBookmarkResponse) HasResponseMetadata

func (o *ListVDBGroupsByBookmarkResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVDBGroupsByBookmarkResponse) MarshalJSON

func (o ListVDBGroupsByBookmarkResponse) MarshalJSON() ([]byte, error)

func (*ListVDBGroupsByBookmarkResponse) SetItems

func (o *ListVDBGroupsByBookmarkResponse) SetItems(v []VDBGroup)

SetItems gets a reference to the given []VDBGroup and assigns it to the Items field.

func (*ListVDBGroupsByBookmarkResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVDBGroupsByBookmarkResponse) ToMap

func (o ListVDBGroupsByBookmarkResponse) ToMap() (map[string]interface{}, error)

type ListVDBGroupsResponse

type ListVDBGroupsResponse struct {
	Items            []VDBGroup                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVDBGroupsResponse struct for ListVDBGroupsResponse

func NewListVDBGroupsResponse

func NewListVDBGroupsResponse() *ListVDBGroupsResponse

NewListVDBGroupsResponse instantiates a new ListVDBGroupsResponse 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 NewListVDBGroupsResponseWithDefaults

func NewListVDBGroupsResponseWithDefaults() *ListVDBGroupsResponse

NewListVDBGroupsResponseWithDefaults instantiates a new ListVDBGroupsResponse 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 (*ListVDBGroupsResponse) GetItems

func (o *ListVDBGroupsResponse) GetItems() []VDBGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVDBGroupsResponse) GetItemsOk

func (o *ListVDBGroupsResponse) GetItemsOk() ([]VDBGroup, 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.

func (*ListVDBGroupsResponse) GetResponseMetadata

func (o *ListVDBGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVDBGroupsResponse) GetResponseMetadataOk

func (o *ListVDBGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVDBGroupsResponse) HasItems

func (o *ListVDBGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVDBGroupsResponse) HasResponseMetadata

func (o *ListVDBGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVDBGroupsResponse) MarshalJSON

func (o ListVDBGroupsResponse) MarshalJSON() ([]byte, error)

func (*ListVDBGroupsResponse) SetItems

func (o *ListVDBGroupsResponse) SetItems(v []VDBGroup)

SetItems gets a reference to the given []VDBGroup and assigns it to the Items field.

func (*ListVDBGroupsResponse) SetResponseMetadata

func (o *ListVDBGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVDBGroupsResponse) ToMap

func (o ListVDBGroupsResponse) ToMap() (map[string]interface{}, error)

type ListVDBsResponse

type ListVDBsResponse struct {
	Items []VDB `json:"items,omitempty"`
	// Sadly, sometimes requests to the API are not successful. Failures can occur for a wide range of reasons. The Errors object contains information about full or partial failures which might have occurred during the request.
	Errors           []Error                    `json:"errors,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVDBsResponse struct for ListVDBsResponse

func NewListVDBsResponse

func NewListVDBsResponse() *ListVDBsResponse

NewListVDBsResponse instantiates a new ListVDBsResponse 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 NewListVDBsResponseWithDefaults

func NewListVDBsResponseWithDefaults() *ListVDBsResponse

NewListVDBsResponseWithDefaults instantiates a new ListVDBsResponse 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 (*ListVDBsResponse) GetErrors

func (o *ListVDBsResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListVDBsResponse) GetErrorsOk

func (o *ListVDBsResponse) GetErrorsOk() ([]Error, 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.

func (*ListVDBsResponse) GetItems

func (o *ListVDBsResponse) GetItems() []VDB

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVDBsResponse) GetItemsOk

func (o *ListVDBsResponse) GetItemsOk() ([]VDB, 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.

func (*ListVDBsResponse) GetResponseMetadata

func (o *ListVDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVDBsResponse) GetResponseMetadataOk

func (o *ListVDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVDBsResponse) HasErrors

func (o *ListVDBsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListVDBsResponse) HasItems

func (o *ListVDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVDBsResponse) HasResponseMetadata

func (o *ListVDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVDBsResponse) MarshalJSON

func (o ListVDBsResponse) MarshalJSON() ([]byte, error)

func (*ListVDBsResponse) SetErrors

func (o *ListVDBsResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListVDBsResponse) SetItems

func (o *ListVDBsResponse) SetItems(v []VDB)

SetItems gets a reference to the given []VDB and assigns it to the Items field.

func (*ListVDBsResponse) SetResponseMetadata

func (o *ListVDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVDBsResponse) ToMap

func (o ListVDBsResponse) ToMap() (map[string]interface{}, error)

type ListVirtualizationPoliciesResponse

type ListVirtualizationPoliciesResponse struct {
	Items            []VirtualizationPolicy     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVirtualizationPoliciesResponse struct for ListVirtualizationPoliciesResponse

func NewListVirtualizationPoliciesResponse

func NewListVirtualizationPoliciesResponse() *ListVirtualizationPoliciesResponse

NewListVirtualizationPoliciesResponse instantiates a new ListVirtualizationPoliciesResponse 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 NewListVirtualizationPoliciesResponseWithDefaults

func NewListVirtualizationPoliciesResponseWithDefaults() *ListVirtualizationPoliciesResponse

NewListVirtualizationPoliciesResponseWithDefaults instantiates a new ListVirtualizationPoliciesResponse 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 (*ListVirtualizationPoliciesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVirtualizationPoliciesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVirtualizationPoliciesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVirtualizationPoliciesResponse) GetResponseMetadataOk

func (o *ListVirtualizationPoliciesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVirtualizationPoliciesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*ListVirtualizationPoliciesResponse) HasResponseMetadata

func (o *ListVirtualizationPoliciesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVirtualizationPoliciesResponse) MarshalJSON

func (o ListVirtualizationPoliciesResponse) MarshalJSON() ([]byte, error)

func (*ListVirtualizationPoliciesResponse) SetItems

SetItems gets a reference to the given []VirtualizationPolicy and assigns it to the Items field.

func (*ListVirtualizationPoliciesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVirtualizationPoliciesResponse) ToMap

func (o ListVirtualizationPoliciesResponse) ToMap() (map[string]interface{}, error)

type LocationCompatibleEnvironmentsResponse

type LocationCompatibleEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
}

LocationCompatibleEnvironmentsResponse struct for LocationCompatibleEnvironmentsResponse

func NewLocationCompatibleEnvironmentsResponse

func NewLocationCompatibleEnvironmentsResponse() *LocationCompatibleEnvironmentsResponse

NewLocationCompatibleEnvironmentsResponse instantiates a new LocationCompatibleEnvironmentsResponse 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 NewLocationCompatibleEnvironmentsResponseWithDefaults

func NewLocationCompatibleEnvironmentsResponseWithDefaults() *LocationCompatibleEnvironmentsResponse

NewLocationCompatibleEnvironmentsResponseWithDefaults instantiates a new LocationCompatibleEnvironmentsResponse 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 (*LocationCompatibleEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*LocationCompatibleEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationCompatibleEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (LocationCompatibleEnvironmentsResponse) MarshalJSON

func (o LocationCompatibleEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*LocationCompatibleEnvironmentsResponse) SetItems

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (LocationCompatibleEnvironmentsResponse) ToMap

func (o LocationCompatibleEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type LocationCompatibleRepositoryRequest

type LocationCompatibleRepositoryRequest struct {
	// The ID of the source object (dSource or VDB) to get the compatible repos. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// The ID of the Engine from where to get the compatible repos. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// location from where compatible repo to be fetched.
	Location *string `json:"location,omitempty"`
	// ID of the timeflow from which compatible repos need to be fetched.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// The ID or name of the target environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

LocationCompatibleRepositoryRequest struct for LocationCompatibleRepositoryRequest

func NewLocationCompatibleRepositoryRequest

func NewLocationCompatibleRepositoryRequest() *LocationCompatibleRepositoryRequest

NewLocationCompatibleRepositoryRequest instantiates a new LocationCompatibleRepositoryRequest 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 NewLocationCompatibleRepositoryRequestWithDefaults

func NewLocationCompatibleRepositoryRequestWithDefaults() *LocationCompatibleRepositoryRequest

NewLocationCompatibleRepositoryRequestWithDefaults instantiates a new LocationCompatibleRepositoryRequest 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 (*LocationCompatibleRepositoryRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*LocationCompatibleRepositoryRequest) GetEngineIdOk

func (o *LocationCompatibleRepositoryRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationCompatibleRepositoryRequest) GetEnvironmentId

func (o *LocationCompatibleRepositoryRequest) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*LocationCompatibleRepositoryRequest) GetEnvironmentIdOk

func (o *LocationCompatibleRepositoryRequest) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationCompatibleRepositoryRequest) GetLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*LocationCompatibleRepositoryRequest) GetLocationOk

func (o *LocationCompatibleRepositoryRequest) 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.

func (*LocationCompatibleRepositoryRequest) GetSourceDataId

func (o *LocationCompatibleRepositoryRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*LocationCompatibleRepositoryRequest) GetSourceDataIdOk

func (o *LocationCompatibleRepositoryRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationCompatibleRepositoryRequest) GetTimeflowId

func (o *LocationCompatibleRepositoryRequest) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*LocationCompatibleRepositoryRequest) GetTimeflowIdOk

func (o *LocationCompatibleRepositoryRequest) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationCompatibleRepositoryRequest) HasEngineId

func (o *LocationCompatibleRepositoryRequest) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*LocationCompatibleRepositoryRequest) HasEnvironmentId

func (o *LocationCompatibleRepositoryRequest) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*LocationCompatibleRepositoryRequest) HasLocation

func (o *LocationCompatibleRepositoryRequest) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*LocationCompatibleRepositoryRequest) HasSourceDataId

func (o *LocationCompatibleRepositoryRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (*LocationCompatibleRepositoryRequest) HasTimeflowId

func (o *LocationCompatibleRepositoryRequest) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (LocationCompatibleRepositoryRequest) MarshalJSON

func (o LocationCompatibleRepositoryRequest) MarshalJSON() ([]byte, error)

func (*LocationCompatibleRepositoryRequest) SetEngineId

func (o *LocationCompatibleRepositoryRequest) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*LocationCompatibleRepositoryRequest) SetEnvironmentId

func (o *LocationCompatibleRepositoryRequest) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*LocationCompatibleRepositoryRequest) SetLocation

func (o *LocationCompatibleRepositoryRequest) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*LocationCompatibleRepositoryRequest) SetSourceDataId

func (o *LocationCompatibleRepositoryRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (*LocationCompatibleRepositoryRequest) SetTimeflowId

func (o *LocationCompatibleRepositoryRequest) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (LocationCompatibleRepositoryRequest) ToMap

func (o LocationCompatibleRepositoryRequest) ToMap() (map[string]interface{}, error)

type LockVDBGroupParameters

type LockVDBGroupParameters struct {
	// Id of the account on whose behalf this request is being made. Only accounts having LOCK_FOR_OTHER_ACCOUNT permission can lock VDB Groups on behalf of other accounts. If this property is not specified then the account id of the authenticated user making the request is used.
	AccountId *int64 `json:"account_id,omitempty"`
}

LockVDBGroupParameters struct for LockVDBGroupParameters

func NewLockVDBGroupParameters

func NewLockVDBGroupParameters() *LockVDBGroupParameters

NewLockVDBGroupParameters instantiates a new LockVDBGroupParameters 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 NewLockVDBGroupParametersWithDefaults

func NewLockVDBGroupParametersWithDefaults() *LockVDBGroupParameters

NewLockVDBGroupParametersWithDefaults instantiates a new LockVDBGroupParameters 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 (*LockVDBGroupParameters) GetAccountId

func (o *LockVDBGroupParameters) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*LockVDBGroupParameters) GetAccountIdOk

func (o *LockVDBGroupParameters) GetAccountIdOk() (*int64, 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.

func (*LockVDBGroupParameters) HasAccountId

func (o *LockVDBGroupParameters) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (LockVDBGroupParameters) MarshalJSON

func (o LockVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*LockVDBGroupParameters) SetAccountId

func (o *LockVDBGroupParameters) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (LockVDBGroupParameters) ToMap

func (o LockVDBGroupParameters) ToMap() (map[string]interface{}, error)

type LockVDBParameters

type LockVDBParameters struct {
	// Id of the account on whose behalf this request is being made. Only accounts having LOCK_FOR_OTHER_ACCOUNT permission can lock VDBs on behalf of other accounts. If this property is not specified then the account id of the authenticated user making the request is used.
	AccountId *int64 `json:"account_id,omitempty"`
}

LockVDBParameters struct for LockVDBParameters

func NewLockVDBParameters

func NewLockVDBParameters() *LockVDBParameters

NewLockVDBParameters instantiates a new LockVDBParameters 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 NewLockVDBParametersWithDefaults

func NewLockVDBParametersWithDefaults() *LockVDBParameters

NewLockVDBParametersWithDefaults instantiates a new LockVDBParameters 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 (*LockVDBParameters) GetAccountId

func (o *LockVDBParameters) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*LockVDBParameters) GetAccountIdOk

func (o *LockVDBParameters) GetAccountIdOk() (*int64, 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.

func (*LockVDBParameters) HasAccountId

func (o *LockVDBParameters) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (LockVDBParameters) MarshalJSON

func (o LockVDBParameters) MarshalJSON() ([]byte, error)

func (*LockVDBParameters) SetAccountId

func (o *LockVDBParameters) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (LockVDBParameters) ToMap

func (o LockVDBParameters) ToMap() (map[string]interface{}, error)

type LoginApiService

type LoginApiService service

LoginApiService LoginApi service

func (*LoginApiService) AccountLogin

AccountLogin Login to Account with Username and Password

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAccountLoginRequest

func (*LoginApiService) AccountLoginExecute

func (a *LoginApiService) AccountLoginExecute(r ApiAccountLoginRequest) (*LoginToken, *http.Response, error)

Execute executes the request

@return LoginToken

func (*LoginApiService) AccountLogout

AccountLogout Invalidates username/password and SSO login session.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAccountLogoutRequest

func (*LoginApiService) AccountLogoutExecute

func (a *LoginApiService) AccountLogoutExecute(r ApiAccountLogoutRequest) (*http.Response, error)

Execute executes the request

func (*LoginApiService) TokenInfo

TokenInfo Get Token Information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTokenInfoRequest

func (*LoginApiService) TokenInfoExecute

Execute executes the request

@return TokenInfoResponse

type LoginToken

type LoginToken struct {
	// Opaque token that validates the successful account login and is used to authenticate subsequent api calls. This token needs to be sent as part of 'Authorization' header for all api calls prefixed with value contained in 'token_type' property. For example, if the 'access_token' value is \"abc123\" and 'token_type' is \"Bearer\" then HTTP requests should contain following header : \"Authorization: Bearer abc123\"
	AccessToken string `json:"access_token"`
	// Type of the token returned in 'access_token' property.
	TokenType string `json:"token_type"`
	// Seconds duration after which the token will expire.
	ExpiresIn int64 `json:"expires_in"`
}

LoginToken struct for LoginToken

func NewLoginToken

func NewLoginToken(accessToken string, tokenType string, expiresIn int64) *LoginToken

NewLoginToken instantiates a new LoginToken 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 NewLoginTokenWithDefaults

func NewLoginTokenWithDefaults() *LoginToken

NewLoginTokenWithDefaults instantiates a new LoginToken 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 (*LoginToken) GetAccessToken

func (o *LoginToken) GetAccessToken() string

GetAccessToken returns the AccessToken field value

func (*LoginToken) GetAccessTokenOk

func (o *LoginToken) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value and a boolean to check if the value has been set.

func (*LoginToken) GetExpiresIn

func (o *LoginToken) GetExpiresIn() int64

GetExpiresIn returns the ExpiresIn field value

func (*LoginToken) GetExpiresInOk

func (o *LoginToken) GetExpiresInOk() (*int64, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value and a boolean to check if the value has been set.

func (*LoginToken) GetTokenType

func (o *LoginToken) GetTokenType() string

GetTokenType returns the TokenType field value

func (*LoginToken) GetTokenTypeOk

func (o *LoginToken) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value and a boolean to check if the value has been set.

func (LoginToken) MarshalJSON

func (o LoginToken) MarshalJSON() ([]byte, error)

func (*LoginToken) SetAccessToken

func (o *LoginToken) SetAccessToken(v string)

SetAccessToken sets field value

func (*LoginToken) SetExpiresIn

func (o *LoginToken) SetExpiresIn(v int64)

SetExpiresIn sets field value

func (*LoginToken) SetTokenType

func (o *LoginToken) SetTokenType(v string)

SetTokenType sets field value

func (LoginToken) ToMap

func (o LoginToken) ToMap() (map[string]interface{}, error)

type ManagementApiService

type ManagementApiService service

ManagementApiService ManagementApi service

func (*ManagementApiService) CreateEngineTags

func (a *ManagementApiService) CreateEngineTags(ctx context.Context, engineId string) ApiCreateEngineTagsRequest

CreateEngineTags Create tags for an Engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiCreateEngineTagsRequest

func (*ManagementApiService) CreateEngineTagsExecute

func (a *ManagementApiService) CreateEngineTagsExecute(r ApiCreateEngineTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ManagementApiService) CreateHashicorpVault

CreateHashicorpVault Configure a new Hashicorp Vault

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateHashicorpVaultRequest

func (*ManagementApiService) CreateHashicorpVaultExecute

func (a *ManagementApiService) CreateHashicorpVaultExecute(r ApiCreateHashicorpVaultRequest) (*HashicorpVault, *http.Response, error)

Execute executes the request

@return HashicorpVault

func (*ManagementApiService) CreateHashicorpVaultTags

func (a *ManagementApiService) CreateHashicorpVaultTags(ctx context.Context, vaultId int64) ApiCreateHashicorpVaultTagsRequest

CreateHashicorpVaultTags Create tags for a Hashicorp vault.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vaultId Numeric ID of the Hashicorp vault
@return ApiCreateHashicorpVaultTagsRequest

func (*ManagementApiService) CreateHashicorpVaultTagsExecute

func (a *ManagementApiService) CreateHashicorpVaultTagsExecute(r ApiCreateHashicorpVaultTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ManagementApiService) DeleteEngineTags

func (a *ManagementApiService) DeleteEngineTags(ctx context.Context, engineId string) ApiDeleteEngineTagsRequest

DeleteEngineTags Delete tags for an Engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiDeleteEngineTagsRequest

func (*ManagementApiService) DeleteEngineTagsExecute

func (a *ManagementApiService) DeleteEngineTagsExecute(r ApiDeleteEngineTagsRequest) (*http.Response, error)

Execute executes the request

func (*ManagementApiService) DeleteHashicorpVault

func (a *ManagementApiService) DeleteHashicorpVault(ctx context.Context, vaultId int64) ApiDeleteHashicorpVaultRequest

DeleteHashicorpVault Delete a Hashicorp vault by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vaultId Numeric ID of the Hashicorp vault
@return ApiDeleteHashicorpVaultRequest

func (*ManagementApiService) DeleteHashicorpVaultExecute

func (a *ManagementApiService) DeleteHashicorpVaultExecute(r ApiDeleteHashicorpVaultRequest) (*http.Response, error)

Execute executes the request

func (*ManagementApiService) DeleteHashicorpVaultTag

func (a *ManagementApiService) DeleteHashicorpVaultTag(ctx context.Context, vaultId int64) ApiDeleteHashicorpVaultTagRequest

DeleteHashicorpVaultTag Delete tags for a Hashicorp vault.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vaultId Numeric ID of the Hashicorp vault
@return ApiDeleteHashicorpVaultTagRequest

func (*ManagementApiService) DeleteHashicorpVaultTagExecute

func (a *ManagementApiService) DeleteHashicorpVaultTagExecute(r ApiDeleteHashicorpVaultTagRequest) (*http.Response, error)

Execute executes the request

func (*ManagementApiService) GetApiClassification

GetApiClassification Get api classification.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetApiClassificationRequest

func (*ManagementApiService) GetApiClassificationExecute

Execute executes the request

@return APIClassificationConfig

func (*ManagementApiService) GetEngineTags

func (a *ManagementApiService) GetEngineTags(ctx context.Context, engineId string) ApiGetEngineTagsRequest

GetEngineTags Get tags for a Engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiGetEngineTagsRequest

func (*ManagementApiService) GetEngineTagsExecute

Execute executes the request

@return TagsResponse

func (*ManagementApiService) GetHashicorpVault

func (a *ManagementApiService) GetHashicorpVault(ctx context.Context, vaultId int64) ApiGetHashicorpVaultRequest

GetHashicorpVault Get a Hashicorp vault by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vaultId Numeric ID of the Hashicorp vault
@return ApiGetHashicorpVaultRequest

func (*ManagementApiService) GetHashicorpVaultExecute

Execute executes the request

@return HashicorpVault

func (*ManagementApiService) GetHashicorpVaultTags

func (a *ManagementApiService) GetHashicorpVaultTags(ctx context.Context, vaultId int64) ApiGetHashicorpVaultTagsRequest

GetHashicorpVaultTags Get tags for a Hashicorp vault.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vaultId Numeric ID of the Hashicorp vault
@return ApiGetHashicorpVaultTagsRequest

func (*ManagementApiService) GetHashicorpVaultTagsExecute

func (a *ManagementApiService) GetHashicorpVaultTagsExecute(r ApiGetHashicorpVaultTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ManagementApiService) GetHashicorpVaults

GetHashicorpVaults Returns a list of configured Hashicorp vaults.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetHashicorpVaultsRequest

func (*ManagementApiService) GetHashicorpVaultsExecute

Execute executes the request

@return ListHashicorpVaultsResponse

func (*ManagementApiService) GetLdapConfig

GetLdapConfig Returns the LDAP configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetLdapConfigRequest

func (*ManagementApiService) GetLdapConfigExecute

Execute executes the request

@return LDAPConfigParams

func (*ManagementApiService) GetMetadataDatabase

GetMetadataDatabase Returns configuration information about the metadata database which stores the product data.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMetadataDatabaseRequest

func (*ManagementApiService) GetMetadataDatabaseExecute

Execute executes the request

@return MetadataDbInfo

func (*ManagementApiService) GetProxyConfiguration

GetProxyConfiguration Returns the current Proxy configuration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetProxyConfigurationRequest

func (*ManagementApiService) GetProxyConfigurationExecute

Execute executes the request

@return ProxyConfiguration

func (*ManagementApiService) GetRegisteredEngine

func (a *ManagementApiService) GetRegisteredEngine(ctx context.Context, engineId string) ApiGetRegisteredEngineRequest

GetRegisteredEngine Returns a registered engine by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiGetRegisteredEngineRequest

func (*ManagementApiService) GetRegisteredEngineExecute

Execute executes the request

@return RegisteredEngine

func (*ManagementApiService) GetRegisteredEngines

GetRegisteredEngines Returns a list of registered engines.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRegisteredEnginesRequest

func (*ManagementApiService) GetRegisteredEnginesExecute

Execute executes the request

@return ListRegisteredEnginesResponse

func (*ManagementApiService) GetSamlConfig

GetSamlConfig Returns the SAML configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSamlConfigRequest

func (*ManagementApiService) GetSamlConfigExecute

Execute executes the request

@return SAMLConfigParams

func (*ManagementApiService) GetSmtpConfig

GetSmtpConfig Returns the SMTP configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSmtpConfigRequest

func (*ManagementApiService) GetSmtpConfigExecute

Execute executes the request

@return SMTPConfigParams

func (*ManagementApiService) ListProperties

ListProperties Get global properties.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListPropertiesRequest

func (*ManagementApiService) ListPropertiesExecute

Execute executes the request

@return GlobalProperties

func (*ManagementApiService) RegisterEngine

RegisterEngine Register an engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRegisterEngineRequest

func (*ManagementApiService) RegisterEngineExecute

Execute executes the request

@return RegisteredEngine

func (*ManagementApiService) SearchEngines

SearchEngines Search for engines.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchEnginesRequest

func (*ManagementApiService) SearchEnginesExecute

Execute executes the request

@return SearchEnginesResponse

func (*ManagementApiService) SearchHashicorpVaults

SearchHashicorpVaults Search for configured Hashicorp vaults.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchHashicorpVaultsRequest

func (*ManagementApiService) SearchHashicorpVaultsExecute

Execute executes the request

@return SearchHashicorpVaultsResponse

func (*ManagementApiService) UnregisterEngine

func (a *ManagementApiService) UnregisterEngine(ctx context.Context, engineId string) ApiUnregisterEngineRequest

UnregisterEngine Unregister an engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiUnregisterEngineRequest

func (*ManagementApiService) UnregisterEngineExecute

Execute executes the request

@return DeleteEngineResponse

func (*ManagementApiService) UpdateApiClassification

UpdateApiClassification Update the api classification to new version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateApiClassificationRequest

func (*ManagementApiService) UpdateApiClassificationExecute

Execute executes the request

@return APIClassificationConfig

func (*ManagementApiService) UpdateLdapConfig

UpdateLdapConfig Update LDAP Config.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateLdapConfigRequest

func (*ManagementApiService) UpdateLdapConfigExecute

Execute executes the request

@return LDAPConfigParams

func (*ManagementApiService) UpdateProperties

UpdateProperties Update value of predefined properties.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdatePropertiesRequest

func (*ManagementApiService) UpdatePropertiesExecute

Execute executes the request

@return GlobalProperties

func (*ManagementApiService) UpdateProxyConfiguration

UpdateProxyConfiguration Update Proxy configuration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateProxyConfigurationRequest

func (*ManagementApiService) UpdateProxyConfigurationExecute

Execute executes the request

@return ProxyConfiguration

func (*ManagementApiService) UpdateRegisteredEngine

func (a *ManagementApiService) UpdateRegisteredEngine(ctx context.Context, engineId string) ApiUpdateRegisteredEngineRequest

UpdateRegisteredEngine Update a registered engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiUpdateRegisteredEngineRequest

func (*ManagementApiService) UpdateRegisteredEngineExecute

Execute executes the request

@return RegisteredEngine

func (*ManagementApiService) UpdateSamlConfig

UpdateSamlConfig Update SAML Config.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateSamlConfigRequest

func (*ManagementApiService) UpdateSamlConfigExecute

Execute executes the request

@return SAMLConfigParams

func (*ManagementApiService) UpdateSmtpConfig

UpdateSmtpConfig Update SMTP Config.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateSmtpConfigRequest

func (*ManagementApiService) UpdateSmtpConfigExecute

Execute executes the request

@return SMTPConfigParams

func (*ManagementApiService) ValidateJavaPath

func (a *ManagementApiService) ValidateJavaPath(ctx context.Context, engineId string) ApiValidateJavaPathRequest

ValidateJavaPath Validate java path for the remote host machine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param engineId The ID of the registered engine.
@return ApiValidateJavaPathRequest

func (*ManagementApiService) ValidateJavaPathExecute

func (a *ManagementApiService) ValidateJavaPathExecute(r ApiValidateJavaPathRequest) (*http.Response, error)

Execute executes the request

func (*ManagementApiService) ValidateLdapConfig

ValidateLdapConfig Validate LDAP Config. Without username/password, DCT performs an anonymous bind against the LDAP server. If credentials are provided DCT validates that authentication and mapping of optional properties are actually working with provided credentials. LDAP search is only validated if search attributes are set.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidateLdapConfigRequest

func (*ManagementApiService) ValidateLdapConfigExecute

Execute executes the request

@return LdapValidateResponse

func (*ManagementApiService) ValidateSmtpConfig

ValidateSmtpConfig Validate SMTP Config.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidateSmtpConfigRequest

func (*ManagementApiService) ValidateSmtpConfigExecute

func (a *ManagementApiService) ValidateSmtpConfigExecute(r ApiValidateSmtpConfigRequest) (*http.Response, error)

Execute executes the request

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MaskingEnvironment

type MaskingEnvironment struct {
	// The MaskingEnvironment entity ID.
	Id *string `json:"id,omitempty"`
	// The ID of the Engine where this MaskingEnvironment resides.
	EngineId *string `json:"engine_id,omitempty"`
	// The name of the Engine where this MaskingEnvironment resides.
	EngineName *string `json:"engine_name,omitempty"`
	// The name of this MaskingEnvironment.
	Name *string `json:"name,omitempty"`
	// The purpose of this MaskingEnvironment. MaskingEnvironments with a 'MASK' purpose will have access to Masking and Profiling jobs, whereas Environments with a 'TOKENIZE' purpose will have access to Tokenization and Re-Identification jobs. Note that any custom purposes created through the UI will be represented as 'MASK' purposes, due to the jobs that they have access to.
	Purpose           *string `json:"purpose,omitempty"`
	IsWorkflowEnabled *bool   `json:"is_workflow_enabled,omitempty"`
}

MaskingEnvironment struct for MaskingEnvironment

func NewMaskingEnvironment

func NewMaskingEnvironment() *MaskingEnvironment

NewMaskingEnvironment instantiates a new MaskingEnvironment 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 NewMaskingEnvironmentWithDefaults

func NewMaskingEnvironmentWithDefaults() *MaskingEnvironment

NewMaskingEnvironmentWithDefaults instantiates a new MaskingEnvironment 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 (*MaskingEnvironment) GetEngineId

func (o *MaskingEnvironment) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*MaskingEnvironment) GetEngineIdOk

func (o *MaskingEnvironment) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingEnvironment) GetEngineName

func (o *MaskingEnvironment) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*MaskingEnvironment) GetEngineNameOk

func (o *MaskingEnvironment) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingEnvironment) GetId

func (o *MaskingEnvironment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MaskingEnvironment) GetIdOk

func (o *MaskingEnvironment) 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.

func (*MaskingEnvironment) GetIsWorkflowEnabled

func (o *MaskingEnvironment) GetIsWorkflowEnabled() bool

GetIsWorkflowEnabled returns the IsWorkflowEnabled field value if set, zero value otherwise.

func (*MaskingEnvironment) GetIsWorkflowEnabledOk

func (o *MaskingEnvironment) GetIsWorkflowEnabledOk() (*bool, bool)

GetIsWorkflowEnabledOk returns a tuple with the IsWorkflowEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingEnvironment) GetName

func (o *MaskingEnvironment) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MaskingEnvironment) GetNameOk

func (o *MaskingEnvironment) 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.

func (*MaskingEnvironment) GetPurpose

func (o *MaskingEnvironment) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*MaskingEnvironment) GetPurposeOk

func (o *MaskingEnvironment) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingEnvironment) HasEngineId

func (o *MaskingEnvironment) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*MaskingEnvironment) HasEngineName

func (o *MaskingEnvironment) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*MaskingEnvironment) HasId

func (o *MaskingEnvironment) HasId() bool

HasId returns a boolean if a field has been set.

func (*MaskingEnvironment) HasIsWorkflowEnabled

func (o *MaskingEnvironment) HasIsWorkflowEnabled() bool

HasIsWorkflowEnabled returns a boolean if a field has been set.

func (*MaskingEnvironment) HasName

func (o *MaskingEnvironment) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaskingEnvironment) HasPurpose

func (o *MaskingEnvironment) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (MaskingEnvironment) MarshalJSON

func (o MaskingEnvironment) MarshalJSON() ([]byte, error)

func (*MaskingEnvironment) SetEngineId

func (o *MaskingEnvironment) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*MaskingEnvironment) SetEngineName

func (o *MaskingEnvironment) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*MaskingEnvironment) SetId

func (o *MaskingEnvironment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MaskingEnvironment) SetIsWorkflowEnabled

func (o *MaskingEnvironment) SetIsWorkflowEnabled(v bool)

SetIsWorkflowEnabled gets a reference to the given bool and assigns it to the IsWorkflowEnabled field.

func (*MaskingEnvironment) SetName

func (o *MaskingEnvironment) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*MaskingEnvironment) SetPurpose

func (o *MaskingEnvironment) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (MaskingEnvironment) ToMap

func (o MaskingEnvironment) ToMap() (map[string]interface{}, error)

type MaskingEnvironmentsApiService

type MaskingEnvironmentsApiService service

MaskingEnvironmentsApiService MaskingEnvironmentsApi service

func (*MaskingEnvironmentsApiService) GetMaskingEnvironmentById

func (a *MaskingEnvironmentsApiService) GetMaskingEnvironmentById(ctx context.Context, maskingEnvironmentId string) ApiGetMaskingEnvironmentByIdRequest

GetMaskingEnvironmentById Retrieve a MaskingEnvironment by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingEnvironmentId The ID of the Masking Environment.
@return ApiGetMaskingEnvironmentByIdRequest

func (*MaskingEnvironmentsApiService) GetMaskingEnvironmentByIdExecute

Execute executes the request

@return MaskingEnvironment

func (*MaskingEnvironmentsApiService) GetMaskingEnvironments

GetMaskingEnvironments Retrieve the list of masking environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMaskingEnvironmentsRequest

func (*MaskingEnvironmentsApiService) GetMaskingEnvironmentsExecute

Execute executes the request

@return ListMaskingEnvironmentsResponse

func (*MaskingEnvironmentsApiService) SearchMaskingEnvironments

SearchMaskingEnvironments Search masking environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchMaskingEnvironmentsRequest

func (*MaskingEnvironmentsApiService) SearchMaskingEnvironmentsExecute

Execute executes the request

@return SearchMaskingEnvironmentsResponse

type MaskingExecutionMetrics

type MaskingExecutionMetrics struct {
	// The MaskingJob entity ID.
	Id *string `json:"id,omitempty"`
	// The name of the MaskingJob.
	MaskingJobName *string `json:"masking_job_name,omitempty"`
	// The type of the Masking job.
	MaskingJobType *string `json:"masking_job_type,omitempty"`
	// The type of data being masked by this Job. If the Masking Job is masking a database this is the type of the database, otherwise \"FILE\" or \"MAINFRAME_DATASET\".
	ConnectorType *string `json:"connector_type,omitempty"`
	// Name of the ruleset for the Masking job.
	RulesetName *string `json:"ruleset_name,omitempty"`
	// The number of rows masked. This is not applicable for JSON file type.
	RowsMasked *int64 `json:"rows_masked,omitempty"`
	// The total number of rows. This is not applicable for JSON file type.
	RowsTotal *int64 `json:"rows_total,omitempty"`
	// The number of bytes masked. This is only applicable for JSON file type.
	BytesMasked *int64 `json:"bytes_masked,omitempty"`
	// The total number of bytes. This is only applicable for JSON file type.
	BytesTotal *int64 `json:"bytes_total,omitempty"`
	// The time taken by the execution in ms. Only available for successful executions.
	Duration *int64 `json:"duration,omitempty"`
	// The number of tables or files in the ruleset associated to the Masking job.
	TablesFilesCount *int64 `json:"tables_files_count,omitempty"`
	// The number of tables or files in the ruleset associated to the Masking job for which at least one column or field is masked.
	MaskedTablesFilesCount *int64 `json:"masked_tables_files_count,omitempty"`
	// The number of columns or fields across all tables or files in the ruleset associated to the Masking job.
	ColumnsFieldsCount *int64 `json:"columns_fields_count,omitempty"`
	// The number of columns or fields across all tables or files in the ruleset associated to the Masking job which are masked.
	MaskedColumnsFieldsCount *int64 `json:"masked_columns_fields_count,omitempty"`
}

MaskingExecutionMetrics Metrics for a masking job.

func NewMaskingExecutionMetrics

func NewMaskingExecutionMetrics() *MaskingExecutionMetrics

NewMaskingExecutionMetrics instantiates a new MaskingExecutionMetrics 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 NewMaskingExecutionMetricsWithDefaults

func NewMaskingExecutionMetricsWithDefaults() *MaskingExecutionMetrics

NewMaskingExecutionMetricsWithDefaults instantiates a new MaskingExecutionMetrics 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 (*MaskingExecutionMetrics) GetBytesMasked

func (o *MaskingExecutionMetrics) GetBytesMasked() int64

GetBytesMasked returns the BytesMasked field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetBytesMaskedOk

func (o *MaskingExecutionMetrics) GetBytesMaskedOk() (*int64, bool)

GetBytesMaskedOk returns a tuple with the BytesMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetBytesTotal

func (o *MaskingExecutionMetrics) GetBytesTotal() int64

GetBytesTotal returns the BytesTotal field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetBytesTotalOk

func (o *MaskingExecutionMetrics) GetBytesTotalOk() (*int64, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetColumnsFieldsCount

func (o *MaskingExecutionMetrics) GetColumnsFieldsCount() int64

GetColumnsFieldsCount returns the ColumnsFieldsCount field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetColumnsFieldsCountOk

func (o *MaskingExecutionMetrics) GetColumnsFieldsCountOk() (*int64, bool)

GetColumnsFieldsCountOk returns a tuple with the ColumnsFieldsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetConnectorType

func (o *MaskingExecutionMetrics) GetConnectorType() string

GetConnectorType returns the ConnectorType field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetConnectorTypeOk

func (o *MaskingExecutionMetrics) GetConnectorTypeOk() (*string, bool)

GetConnectorTypeOk returns a tuple with the ConnectorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetDuration

func (o *MaskingExecutionMetrics) GetDuration() int64

GetDuration returns the Duration field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetDurationOk

func (o *MaskingExecutionMetrics) GetDurationOk() (*int64, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetId

func (o *MaskingExecutionMetrics) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetIdOk

func (o *MaskingExecutionMetrics) 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.

func (*MaskingExecutionMetrics) GetMaskedColumnsFieldsCount

func (o *MaskingExecutionMetrics) GetMaskedColumnsFieldsCount() int64

GetMaskedColumnsFieldsCount returns the MaskedColumnsFieldsCount field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetMaskedColumnsFieldsCountOk

func (o *MaskingExecutionMetrics) GetMaskedColumnsFieldsCountOk() (*int64, bool)

GetMaskedColumnsFieldsCountOk returns a tuple with the MaskedColumnsFieldsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetMaskedTablesFilesCount

func (o *MaskingExecutionMetrics) GetMaskedTablesFilesCount() int64

GetMaskedTablesFilesCount returns the MaskedTablesFilesCount field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetMaskedTablesFilesCountOk

func (o *MaskingExecutionMetrics) GetMaskedTablesFilesCountOk() (*int64, bool)

GetMaskedTablesFilesCountOk returns a tuple with the MaskedTablesFilesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetMaskingJobName

func (o *MaskingExecutionMetrics) GetMaskingJobName() string

GetMaskingJobName returns the MaskingJobName field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetMaskingJobNameOk

func (o *MaskingExecutionMetrics) GetMaskingJobNameOk() (*string, bool)

GetMaskingJobNameOk returns a tuple with the MaskingJobName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetMaskingJobType

func (o *MaskingExecutionMetrics) GetMaskingJobType() string

GetMaskingJobType returns the MaskingJobType field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetMaskingJobTypeOk

func (o *MaskingExecutionMetrics) GetMaskingJobTypeOk() (*string, bool)

GetMaskingJobTypeOk returns a tuple with the MaskingJobType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetRowsMasked

func (o *MaskingExecutionMetrics) GetRowsMasked() int64

GetRowsMasked returns the RowsMasked field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetRowsMaskedOk

func (o *MaskingExecutionMetrics) GetRowsMaskedOk() (*int64, bool)

GetRowsMaskedOk returns a tuple with the RowsMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetRowsTotal

func (o *MaskingExecutionMetrics) GetRowsTotal() int64

GetRowsTotal returns the RowsTotal field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetRowsTotalOk

func (o *MaskingExecutionMetrics) GetRowsTotalOk() (*int64, bool)

GetRowsTotalOk returns a tuple with the RowsTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetRulesetName

func (o *MaskingExecutionMetrics) GetRulesetName() string

GetRulesetName returns the RulesetName field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetRulesetNameOk

func (o *MaskingExecutionMetrics) GetRulesetNameOk() (*string, bool)

GetRulesetNameOk returns a tuple with the RulesetName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) GetTablesFilesCount

func (o *MaskingExecutionMetrics) GetTablesFilesCount() int64

GetTablesFilesCount returns the TablesFilesCount field value if set, zero value otherwise.

func (*MaskingExecutionMetrics) GetTablesFilesCountOk

func (o *MaskingExecutionMetrics) GetTablesFilesCountOk() (*int64, bool)

GetTablesFilesCountOk returns a tuple with the TablesFilesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetrics) HasBytesMasked

func (o *MaskingExecutionMetrics) HasBytesMasked() bool

HasBytesMasked returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasBytesTotal

func (o *MaskingExecutionMetrics) HasBytesTotal() bool

HasBytesTotal returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasColumnsFieldsCount

func (o *MaskingExecutionMetrics) HasColumnsFieldsCount() bool

HasColumnsFieldsCount returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasConnectorType

func (o *MaskingExecutionMetrics) HasConnectorType() bool

HasConnectorType returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasDuration

func (o *MaskingExecutionMetrics) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasId

func (o *MaskingExecutionMetrics) HasId() bool

HasId returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasMaskedColumnsFieldsCount

func (o *MaskingExecutionMetrics) HasMaskedColumnsFieldsCount() bool

HasMaskedColumnsFieldsCount returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasMaskedTablesFilesCount

func (o *MaskingExecutionMetrics) HasMaskedTablesFilesCount() bool

HasMaskedTablesFilesCount returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasMaskingJobName

func (o *MaskingExecutionMetrics) HasMaskingJobName() bool

HasMaskingJobName returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasMaskingJobType

func (o *MaskingExecutionMetrics) HasMaskingJobType() bool

HasMaskingJobType returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasRowsMasked

func (o *MaskingExecutionMetrics) HasRowsMasked() bool

HasRowsMasked returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasRowsTotal

func (o *MaskingExecutionMetrics) HasRowsTotal() bool

HasRowsTotal returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasRulesetName

func (o *MaskingExecutionMetrics) HasRulesetName() bool

HasRulesetName returns a boolean if a field has been set.

func (*MaskingExecutionMetrics) HasTablesFilesCount

func (o *MaskingExecutionMetrics) HasTablesFilesCount() bool

HasTablesFilesCount returns a boolean if a field has been set.

func (MaskingExecutionMetrics) MarshalJSON

func (o MaskingExecutionMetrics) MarshalJSON() ([]byte, error)

func (*MaskingExecutionMetrics) SetBytesMasked

func (o *MaskingExecutionMetrics) SetBytesMasked(v int64)

SetBytesMasked gets a reference to the given int64 and assigns it to the BytesMasked field.

func (*MaskingExecutionMetrics) SetBytesTotal

func (o *MaskingExecutionMetrics) SetBytesTotal(v int64)

SetBytesTotal gets a reference to the given int64 and assigns it to the BytesTotal field.

func (*MaskingExecutionMetrics) SetColumnsFieldsCount

func (o *MaskingExecutionMetrics) SetColumnsFieldsCount(v int64)

SetColumnsFieldsCount gets a reference to the given int64 and assigns it to the ColumnsFieldsCount field.

func (*MaskingExecutionMetrics) SetConnectorType

func (o *MaskingExecutionMetrics) SetConnectorType(v string)

SetConnectorType gets a reference to the given string and assigns it to the ConnectorType field.

func (*MaskingExecutionMetrics) SetDuration

func (o *MaskingExecutionMetrics) SetDuration(v int64)

SetDuration gets a reference to the given int64 and assigns it to the Duration field.

func (*MaskingExecutionMetrics) SetId

func (o *MaskingExecutionMetrics) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MaskingExecutionMetrics) SetMaskedColumnsFieldsCount

func (o *MaskingExecutionMetrics) SetMaskedColumnsFieldsCount(v int64)

SetMaskedColumnsFieldsCount gets a reference to the given int64 and assigns it to the MaskedColumnsFieldsCount field.

func (*MaskingExecutionMetrics) SetMaskedTablesFilesCount

func (o *MaskingExecutionMetrics) SetMaskedTablesFilesCount(v int64)

SetMaskedTablesFilesCount gets a reference to the given int64 and assigns it to the MaskedTablesFilesCount field.

func (*MaskingExecutionMetrics) SetMaskingJobName

func (o *MaskingExecutionMetrics) SetMaskingJobName(v string)

SetMaskingJobName gets a reference to the given string and assigns it to the MaskingJobName field.

func (*MaskingExecutionMetrics) SetMaskingJobType

func (o *MaskingExecutionMetrics) SetMaskingJobType(v string)

SetMaskingJobType gets a reference to the given string and assigns it to the MaskingJobType field.

func (*MaskingExecutionMetrics) SetRowsMasked

func (o *MaskingExecutionMetrics) SetRowsMasked(v int64)

SetRowsMasked gets a reference to the given int64 and assigns it to the RowsMasked field.

func (*MaskingExecutionMetrics) SetRowsTotal

func (o *MaskingExecutionMetrics) SetRowsTotal(v int64)

SetRowsTotal gets a reference to the given int64 and assigns it to the RowsTotal field.

func (*MaskingExecutionMetrics) SetRulesetName

func (o *MaskingExecutionMetrics) SetRulesetName(v string)

SetRulesetName gets a reference to the given string and assigns it to the RulesetName field.

func (*MaskingExecutionMetrics) SetTablesFilesCount

func (o *MaskingExecutionMetrics) SetTablesFilesCount(v int64)

SetTablesFilesCount gets a reference to the given int64 and assigns it to the TablesFilesCount field.

func (MaskingExecutionMetrics) ToMap

func (o MaskingExecutionMetrics) ToMap() (map[string]interface{}, error)

type MaskingExecutionMetricsReportResponse

type MaskingExecutionMetricsReportResponse struct {
	Items            []MaskingExecutionMetrics  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

MaskingExecutionMetricsReportResponse struct for MaskingExecutionMetricsReportResponse

func NewMaskingExecutionMetricsReportResponse

func NewMaskingExecutionMetricsReportResponse() *MaskingExecutionMetricsReportResponse

NewMaskingExecutionMetricsReportResponse instantiates a new MaskingExecutionMetricsReportResponse 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 NewMaskingExecutionMetricsReportResponseWithDefaults

func NewMaskingExecutionMetricsReportResponseWithDefaults() *MaskingExecutionMetricsReportResponse

NewMaskingExecutionMetricsReportResponseWithDefaults instantiates a new MaskingExecutionMetricsReportResponse 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 (*MaskingExecutionMetricsReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*MaskingExecutionMetricsReportResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetricsReportResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*MaskingExecutionMetricsReportResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingExecutionMetricsReportResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*MaskingExecutionMetricsReportResponse) HasResponseMetadata

func (o *MaskingExecutionMetricsReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (MaskingExecutionMetricsReportResponse) MarshalJSON

func (o MaskingExecutionMetricsReportResponse) MarshalJSON() ([]byte, error)

func (*MaskingExecutionMetricsReportResponse) SetItems

SetItems gets a reference to the given []MaskingExecutionMetrics and assigns it to the Items field.

func (*MaskingExecutionMetricsReportResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (MaskingExecutionMetricsReportResponse) ToMap

func (o MaskingExecutionMetricsReportResponse) ToMap() (map[string]interface{}, error)

type MaskingFileUpload

type MaskingFileUpload struct {
	// The id of the engine onto which the file was uploaded.
	EngineId *string `json:"engine_id,omitempty"`
	// Name of this file.
	Filename *string `json:"filename,omitempty"`
	// An reference to this file.
	FileReferenceId *string `json:"file_reference_id,omitempty"`
	// Size of this file in bytes.
	FileSize *int64 `json:"file_size,omitempty"`
}

MaskingFileUpload An uploaded file.

func NewMaskingFileUpload

func NewMaskingFileUpload() *MaskingFileUpload

NewMaskingFileUpload instantiates a new MaskingFileUpload 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 NewMaskingFileUploadWithDefaults

func NewMaskingFileUploadWithDefaults() *MaskingFileUpload

NewMaskingFileUploadWithDefaults instantiates a new MaskingFileUpload 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 (*MaskingFileUpload) GetEngineId

func (o *MaskingFileUpload) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*MaskingFileUpload) GetEngineIdOk

func (o *MaskingFileUpload) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingFileUpload) GetFileReferenceId

func (o *MaskingFileUpload) GetFileReferenceId() string

GetFileReferenceId returns the FileReferenceId field value if set, zero value otherwise.

func (*MaskingFileUpload) GetFileReferenceIdOk

func (o *MaskingFileUpload) GetFileReferenceIdOk() (*string, bool)

GetFileReferenceIdOk returns a tuple with the FileReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingFileUpload) GetFileSize

func (o *MaskingFileUpload) GetFileSize() int64

GetFileSize returns the FileSize field value if set, zero value otherwise.

func (*MaskingFileUpload) GetFileSizeOk

func (o *MaskingFileUpload) GetFileSizeOk() (*int64, bool)

GetFileSizeOk returns a tuple with the FileSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingFileUpload) GetFilename

func (o *MaskingFileUpload) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*MaskingFileUpload) GetFilenameOk

func (o *MaskingFileUpload) 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.

func (*MaskingFileUpload) HasEngineId

func (o *MaskingFileUpload) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*MaskingFileUpload) HasFileReferenceId

func (o *MaskingFileUpload) HasFileReferenceId() bool

HasFileReferenceId returns a boolean if a field has been set.

func (*MaskingFileUpload) HasFileSize

func (o *MaskingFileUpload) HasFileSize() bool

HasFileSize returns a boolean if a field has been set.

func (*MaskingFileUpload) HasFilename

func (o *MaskingFileUpload) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (MaskingFileUpload) MarshalJSON

func (o MaskingFileUpload) MarshalJSON() ([]byte, error)

func (*MaskingFileUpload) SetEngineId

func (o *MaskingFileUpload) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*MaskingFileUpload) SetFileReferenceId

func (o *MaskingFileUpload) SetFileReferenceId(v string)

SetFileReferenceId gets a reference to the given string and assigns it to the FileReferenceId field.

func (*MaskingFileUpload) SetFileSize

func (o *MaskingFileUpload) SetFileSize(v int64)

SetFileSize gets a reference to the given int64 and assigns it to the FileSize field.

func (*MaskingFileUpload) SetFilename

func (o *MaskingFileUpload) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (MaskingFileUpload) ToMap

func (o MaskingFileUpload) ToMap() (map[string]interface{}, error)

type MaskingFileUploadParameters

type MaskingFileUploadParameters struct {
	// The id of the engine onto which the file will be uploaded.
	EngineId string `json:"engine_id"`
	// The file to upload.
	File *os.File `json:"file"`
}

MaskingFileUploadParameters Parameters to upload a file to a masking engine.

func NewMaskingFileUploadParameters

func NewMaskingFileUploadParameters(engineId string, file *os.File) *MaskingFileUploadParameters

NewMaskingFileUploadParameters instantiates a new MaskingFileUploadParameters 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 NewMaskingFileUploadParametersWithDefaults

func NewMaskingFileUploadParametersWithDefaults() *MaskingFileUploadParameters

NewMaskingFileUploadParametersWithDefaults instantiates a new MaskingFileUploadParameters 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 (*MaskingFileUploadParameters) GetEngineId

func (o *MaskingFileUploadParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*MaskingFileUploadParameters) GetEngineIdOk

func (o *MaskingFileUploadParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (*MaskingFileUploadParameters) GetFile

func (o *MaskingFileUploadParameters) GetFile() *os.File

GetFile returns the File field value

func (*MaskingFileUploadParameters) GetFileOk

func (o *MaskingFileUploadParameters) GetFileOk() (**os.File, bool)

GetFileOk returns a tuple with the File field value and a boolean to check if the value has been set.

func (MaskingFileUploadParameters) MarshalJSON

func (o MaskingFileUploadParameters) MarshalJSON() ([]byte, error)

func (*MaskingFileUploadParameters) SetEngineId

func (o *MaskingFileUploadParameters) SetEngineId(v string)

SetEngineId sets field value

func (*MaskingFileUploadParameters) SetFile

func (o *MaskingFileUploadParameters) SetFile(v *os.File)

SetFile sets field value

func (MaskingFileUploadParameters) ToMap

func (o MaskingFileUploadParameters) ToMap() (map[string]interface{}, error)

type MaskingFileUploadResponse

type MaskingFileUploadResponse struct {
	File *MaskingFileUpload `json:"file,omitempty"`
}

MaskingFileUploadResponse struct for MaskingFileUploadResponse

func NewMaskingFileUploadResponse

func NewMaskingFileUploadResponse() *MaskingFileUploadResponse

NewMaskingFileUploadResponse instantiates a new MaskingFileUploadResponse 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 NewMaskingFileUploadResponseWithDefaults

func NewMaskingFileUploadResponseWithDefaults() *MaskingFileUploadResponse

NewMaskingFileUploadResponseWithDefaults instantiates a new MaskingFileUploadResponse 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 (*MaskingFileUploadResponse) GetFile

GetFile returns the File field value if set, zero value otherwise.

func (*MaskingFileUploadResponse) GetFileOk

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingFileUploadResponse) HasFile

func (o *MaskingFileUploadResponse) HasFile() bool

HasFile returns a boolean if a field has been set.

func (MaskingFileUploadResponse) MarshalJSON

func (o MaskingFileUploadResponse) MarshalJSON() ([]byte, error)

func (*MaskingFileUploadResponse) SetFile

SetFile gets a reference to the given MaskingFileUpload and assigns it to the File field.

func (MaskingFileUploadResponse) ToMap

func (o MaskingFileUploadResponse) ToMap() (map[string]interface{}, error)

type MaskingFilesApiService

type MaskingFilesApiService service

MaskingFilesApiService MaskingFilesApi service

func (*MaskingFilesApiService) UploadMaskingFile

UploadMaskingFile Upload a file to a masking engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUploadMaskingFileRequest

func (*MaskingFilesApiService) UploadMaskingFileExecute

Execute executes the request

@return MaskingFileUploadResponse

type MaskingJob

type MaskingJob struct {
	// The Masking Job entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this Masking Job.
	Name    *string         `json:"name,omitempty"`
	Ruleset *MaskingRuleset `json:"ruleset,omitempty"`
	// The type of data being masked by this Job. If the Masking Job is masking a database this is the type of the database (Standard Job only).
	ConnectorType *string `json:"connector_type,omitempty"`
	// Whether this is an on-the-fly masking job (Standard Job only).
	IsOnTheFlyMasking *bool `json:"is_on_the_fly_masking,omitempty"`
	// The date this MaskingJob was created (Standard Job only).
	CreationDate *time.Time `json:"creation_date,omitempty"`
	// The date this MaskingJob was last executed to completion.
	LastCompletedExecutionDate *time.Time `json:"last_completed_execution_date,omitempty"`
	// The status of this MaskingJob's last execution.
	LastExecutionStatus *string `json:"last_execution_status,omitempty"`
	// The number of rows masked by the last successful execution. This is not applicable for JSON file type.
	LastExecutionRowsMasked *int64 `json:"last_execution_rows_masked,omitempty"`
	// The total number of rows masked by the last successful execution. This is not applicable for JSON file type.
	LastExecutionRowsTotal *int64 `json:"last_execution_rows_total,omitempty"`
	// The number of bytes masked by the last successful execution. This is only applicable for JSON file type.
	LastExecutionBytesMasked *int64 `json:"last_execution_bytes_masked,omitempty"`
	// The total number of bytes masked by the last successful execution. This is only applicable for JSON file type.
	LastExecutionBytesTotal *int64 `json:"last_execution_bytes_total,omitempty"`
	// The username of the Connector used by the MaskingJob (Standard Job only). For hyperscale jobs, see the connector of the dataset.
	ConnectorUsername NullableString `json:"connector_username,omitempty"`
	// The password of the Connector used by the MaskingJob (Standard Job only). For hyperscale jobs, see the connector of the dataset.
	ConnectorPassword NullableString `json:"connector_password,omitempty"`
	// The username of the source Connector used by the on-the-fly MaskingJob (Standard Job only).
	OnTheFlySourceConnectorUsername NullableString `json:"on_the_fly_source_connector_username,omitempty"`
	// The password of the source Connector used by the on-the-fly MaskingJob (Standard Job only).
	OnTheFlySourceConnectorPassword NullableString `json:"on_the_fly_source_connector_password,omitempty"`
	// The type of this Job.
	JobType *string `json:"job_type,omitempty"`
	// The ID of the Hyperscale instance of this Job (Hyperscale Job only).
	HyperscaleInstanceId *string `json:"hyperscale_instance_id,omitempty"`
	// Description of the Job (Hyperscale Job only).
	Description *string `json:"description,omitempty"`
	// Dataset of the Hyperscale Job (Hyperscale Job only).
	DatasetId *string `json:"dataset_id,omitempty"`
	// Defines whether execution data will be stored after execution is complete (Hyperscale Job only).
	RetainExecutionData *string `json:"retain_execution_data,omitempty"`
	// Maximum memory to be allocated for each Masking job (Hyperscale Job only).
	MaxMemory *int32 `json:"max_memory,omitempty"`
	// Minimum memory to be allocated for each Masking job (Hyperscale Job only).
	MinMemory *int32 `json:"min_memory,omitempty"`
	// Feedback Size for each Masking job (Hyperscale Job only).
	FeedbackSize *int32 `json:"feedback_size,omitempty"`
	// Stream Row Limit for each Masking job (Hyperscale Job only).
	StreamRowLimit *int32 `json:"stream_row_limit,omitempty"`
	// Number of input streams to be configured for Masking Job (Hyperscale Job only).
	NumInputStreams *int32 `json:"num_input_streams,omitempty"`
	// Maximum number of parallel connection that the Hyperscale instance can have with the source datasource.
	MaxConcurrentSourceConnections *int32 `json:"max_concurrent_source_connections,omitempty"`
	// Maximum number of parallel connection that the Hyperscale instance can have with the target datasource.
	MaxConcurrentTargetConnections *int32 `json:"max_concurrent_target_connections,omitempty"`
	// The degree of parallelism (DOP) per Oracle job to recreate the index in the post-load process.
	ParallelismDegree *int32 `json:"parallelism_degree,omitempty"`
	Tags              []Tag  `json:"tags,omitempty"`
}

MaskingJob A masking job.

func NewMaskingJob

func NewMaskingJob() *MaskingJob

NewMaskingJob instantiates a new MaskingJob 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 NewMaskingJobWithDefaults

func NewMaskingJobWithDefaults() *MaskingJob

NewMaskingJobWithDefaults instantiates a new MaskingJob 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 (*MaskingJob) GetConnectorPassword

func (o *MaskingJob) GetConnectorPassword() string

GetConnectorPassword returns the ConnectorPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingJob) GetConnectorPasswordOk

func (o *MaskingJob) GetConnectorPasswordOk() (*string, bool)

GetConnectorPasswordOk returns a tuple with the ConnectorPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MaskingJob) GetConnectorType

func (o *MaskingJob) GetConnectorType() string

GetConnectorType returns the ConnectorType field value if set, zero value otherwise.

func (*MaskingJob) GetConnectorTypeOk

func (o *MaskingJob) GetConnectorTypeOk() (*string, bool)

GetConnectorTypeOk returns a tuple with the ConnectorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetConnectorUsername

func (o *MaskingJob) GetConnectorUsername() string

GetConnectorUsername returns the ConnectorUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingJob) GetConnectorUsernameOk

func (o *MaskingJob) GetConnectorUsernameOk() (*string, bool)

GetConnectorUsernameOk returns a tuple with the ConnectorUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MaskingJob) GetCreationDate

func (o *MaskingJob) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*MaskingJob) GetCreationDateOk

func (o *MaskingJob) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetDatasetId

func (o *MaskingJob) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*MaskingJob) GetDatasetIdOk

func (o *MaskingJob) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetDescription

func (o *MaskingJob) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*MaskingJob) GetDescriptionOk

func (o *MaskingJob) 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.

func (*MaskingJob) GetFeedbackSize

func (o *MaskingJob) GetFeedbackSize() int32

GetFeedbackSize returns the FeedbackSize field value if set, zero value otherwise.

func (*MaskingJob) GetFeedbackSizeOk

func (o *MaskingJob) GetFeedbackSizeOk() (*int32, bool)

GetFeedbackSizeOk returns a tuple with the FeedbackSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetHyperscaleInstanceId

func (o *MaskingJob) GetHyperscaleInstanceId() string

GetHyperscaleInstanceId returns the HyperscaleInstanceId field value if set, zero value otherwise.

func (*MaskingJob) GetHyperscaleInstanceIdOk

func (o *MaskingJob) GetHyperscaleInstanceIdOk() (*string, bool)

GetHyperscaleInstanceIdOk returns a tuple with the HyperscaleInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetId

func (o *MaskingJob) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MaskingJob) GetIdOk

func (o *MaskingJob) 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.

func (*MaskingJob) GetIsOnTheFlyMasking

func (o *MaskingJob) GetIsOnTheFlyMasking() bool

GetIsOnTheFlyMasking returns the IsOnTheFlyMasking field value if set, zero value otherwise.

func (*MaskingJob) GetIsOnTheFlyMaskingOk

func (o *MaskingJob) GetIsOnTheFlyMaskingOk() (*bool, bool)

GetIsOnTheFlyMaskingOk returns a tuple with the IsOnTheFlyMasking field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetJobType

func (o *MaskingJob) GetJobType() string

GetJobType returns the JobType field value if set, zero value otherwise.

func (*MaskingJob) GetJobTypeOk

func (o *MaskingJob) GetJobTypeOk() (*string, bool)

GetJobTypeOk returns a tuple with the JobType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastCompletedExecutionDate

func (o *MaskingJob) GetLastCompletedExecutionDate() time.Time

GetLastCompletedExecutionDate returns the LastCompletedExecutionDate field value if set, zero value otherwise.

func (*MaskingJob) GetLastCompletedExecutionDateOk

func (o *MaskingJob) GetLastCompletedExecutionDateOk() (*time.Time, bool)

GetLastCompletedExecutionDateOk returns a tuple with the LastCompletedExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastExecutionBytesMasked

func (o *MaskingJob) GetLastExecutionBytesMasked() int64

GetLastExecutionBytesMasked returns the LastExecutionBytesMasked field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionBytesMaskedOk

func (o *MaskingJob) GetLastExecutionBytesMaskedOk() (*int64, bool)

GetLastExecutionBytesMaskedOk returns a tuple with the LastExecutionBytesMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastExecutionBytesTotal

func (o *MaskingJob) GetLastExecutionBytesTotal() int64

GetLastExecutionBytesTotal returns the LastExecutionBytesTotal field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionBytesTotalOk

func (o *MaskingJob) GetLastExecutionBytesTotalOk() (*int64, bool)

GetLastExecutionBytesTotalOk returns a tuple with the LastExecutionBytesTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastExecutionRowsMasked

func (o *MaskingJob) GetLastExecutionRowsMasked() int64

GetLastExecutionRowsMasked returns the LastExecutionRowsMasked field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionRowsMaskedOk

func (o *MaskingJob) GetLastExecutionRowsMaskedOk() (*int64, bool)

GetLastExecutionRowsMaskedOk returns a tuple with the LastExecutionRowsMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastExecutionRowsTotal

func (o *MaskingJob) GetLastExecutionRowsTotal() int64

GetLastExecutionRowsTotal returns the LastExecutionRowsTotal field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionRowsTotalOk

func (o *MaskingJob) GetLastExecutionRowsTotalOk() (*int64, bool)

GetLastExecutionRowsTotalOk returns a tuple with the LastExecutionRowsTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetLastExecutionStatus

func (o *MaskingJob) GetLastExecutionStatus() string

GetLastExecutionStatus returns the LastExecutionStatus field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionStatusOk

func (o *MaskingJob) GetLastExecutionStatusOk() (*string, bool)

GetLastExecutionStatusOk returns a tuple with the LastExecutionStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetMaxConcurrentSourceConnections

func (o *MaskingJob) GetMaxConcurrentSourceConnections() int32

GetMaxConcurrentSourceConnections returns the MaxConcurrentSourceConnections field value if set, zero value otherwise.

func (*MaskingJob) GetMaxConcurrentSourceConnectionsOk

func (o *MaskingJob) GetMaxConcurrentSourceConnectionsOk() (*int32, bool)

GetMaxConcurrentSourceConnectionsOk returns a tuple with the MaxConcurrentSourceConnections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetMaxConcurrentTargetConnections

func (o *MaskingJob) GetMaxConcurrentTargetConnections() int32

GetMaxConcurrentTargetConnections returns the MaxConcurrentTargetConnections field value if set, zero value otherwise.

func (*MaskingJob) GetMaxConcurrentTargetConnectionsOk

func (o *MaskingJob) GetMaxConcurrentTargetConnectionsOk() (*int32, bool)

GetMaxConcurrentTargetConnectionsOk returns a tuple with the MaxConcurrentTargetConnections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetMaxMemory

func (o *MaskingJob) GetMaxMemory() int32

GetMaxMemory returns the MaxMemory field value if set, zero value otherwise.

func (*MaskingJob) GetMaxMemoryOk

func (o *MaskingJob) GetMaxMemoryOk() (*int32, bool)

GetMaxMemoryOk returns a tuple with the MaxMemory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetMinMemory

func (o *MaskingJob) GetMinMemory() int32

GetMinMemory returns the MinMemory field value if set, zero value otherwise.

func (*MaskingJob) GetMinMemoryOk

func (o *MaskingJob) GetMinMemoryOk() (*int32, bool)

GetMinMemoryOk returns a tuple with the MinMemory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetName

func (o *MaskingJob) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MaskingJob) GetNameOk

func (o *MaskingJob) 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.

func (*MaskingJob) GetNumInputStreams

func (o *MaskingJob) GetNumInputStreams() int32

GetNumInputStreams returns the NumInputStreams field value if set, zero value otherwise.

func (*MaskingJob) GetNumInputStreamsOk

func (o *MaskingJob) GetNumInputStreamsOk() (*int32, bool)

GetNumInputStreamsOk returns a tuple with the NumInputStreams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetOnTheFlySourceConnectorPassword

func (o *MaskingJob) GetOnTheFlySourceConnectorPassword() string

GetOnTheFlySourceConnectorPassword returns the OnTheFlySourceConnectorPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingJob) GetOnTheFlySourceConnectorPasswordOk

func (o *MaskingJob) GetOnTheFlySourceConnectorPasswordOk() (*string, bool)

GetOnTheFlySourceConnectorPasswordOk returns a tuple with the OnTheFlySourceConnectorPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MaskingJob) GetOnTheFlySourceConnectorUsername

func (o *MaskingJob) GetOnTheFlySourceConnectorUsername() string

GetOnTheFlySourceConnectorUsername returns the OnTheFlySourceConnectorUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingJob) GetOnTheFlySourceConnectorUsernameOk

func (o *MaskingJob) GetOnTheFlySourceConnectorUsernameOk() (*string, bool)

GetOnTheFlySourceConnectorUsernameOk returns a tuple with the OnTheFlySourceConnectorUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MaskingJob) GetParallelismDegree

func (o *MaskingJob) GetParallelismDegree() int32

GetParallelismDegree returns the ParallelismDegree field value if set, zero value otherwise.

func (*MaskingJob) GetParallelismDegreeOk

func (o *MaskingJob) GetParallelismDegreeOk() (*int32, bool)

GetParallelismDegreeOk returns a tuple with the ParallelismDegree field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetRetainExecutionData

func (o *MaskingJob) GetRetainExecutionData() string

GetRetainExecutionData returns the RetainExecutionData field value if set, zero value otherwise.

func (*MaskingJob) GetRetainExecutionDataOk

func (o *MaskingJob) GetRetainExecutionDataOk() (*string, bool)

GetRetainExecutionDataOk returns a tuple with the RetainExecutionData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetRuleset

func (o *MaskingJob) GetRuleset() MaskingRuleset

GetRuleset returns the Ruleset field value if set, zero value otherwise.

func (*MaskingJob) GetRulesetOk

func (o *MaskingJob) GetRulesetOk() (*MaskingRuleset, bool)

GetRulesetOk returns a tuple with the Ruleset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetStreamRowLimit

func (o *MaskingJob) GetStreamRowLimit() int32

GetStreamRowLimit returns the StreamRowLimit field value if set, zero value otherwise.

func (*MaskingJob) GetStreamRowLimitOk

func (o *MaskingJob) GetStreamRowLimitOk() (*int32, bool)

GetStreamRowLimitOk returns a tuple with the StreamRowLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJob) GetTags

func (o *MaskingJob) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*MaskingJob) GetTagsOk

func (o *MaskingJob) 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.

func (*MaskingJob) HasConnectorPassword

func (o *MaskingJob) HasConnectorPassword() bool

HasConnectorPassword returns a boolean if a field has been set.

func (*MaskingJob) HasConnectorType

func (o *MaskingJob) HasConnectorType() bool

HasConnectorType returns a boolean if a field has been set.

func (*MaskingJob) HasConnectorUsername

func (o *MaskingJob) HasConnectorUsername() bool

HasConnectorUsername returns a boolean if a field has been set.

func (*MaskingJob) HasCreationDate

func (o *MaskingJob) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*MaskingJob) HasDatasetId

func (o *MaskingJob) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*MaskingJob) HasDescription

func (o *MaskingJob) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*MaskingJob) HasFeedbackSize

func (o *MaskingJob) HasFeedbackSize() bool

HasFeedbackSize returns a boolean if a field has been set.

func (*MaskingJob) HasHyperscaleInstanceId

func (o *MaskingJob) HasHyperscaleInstanceId() bool

HasHyperscaleInstanceId returns a boolean if a field has been set.

func (*MaskingJob) HasId

func (o *MaskingJob) HasId() bool

HasId returns a boolean if a field has been set.

func (*MaskingJob) HasIsOnTheFlyMasking

func (o *MaskingJob) HasIsOnTheFlyMasking() bool

HasIsOnTheFlyMasking returns a boolean if a field has been set.

func (*MaskingJob) HasJobType

func (o *MaskingJob) HasJobType() bool

HasJobType returns a boolean if a field has been set.

func (*MaskingJob) HasLastCompletedExecutionDate

func (o *MaskingJob) HasLastCompletedExecutionDate() bool

HasLastCompletedExecutionDate returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionBytesMasked

func (o *MaskingJob) HasLastExecutionBytesMasked() bool

HasLastExecutionBytesMasked returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionBytesTotal

func (o *MaskingJob) HasLastExecutionBytesTotal() bool

HasLastExecutionBytesTotal returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionRowsMasked

func (o *MaskingJob) HasLastExecutionRowsMasked() bool

HasLastExecutionRowsMasked returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionRowsTotal

func (o *MaskingJob) HasLastExecutionRowsTotal() bool

HasLastExecutionRowsTotal returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionStatus

func (o *MaskingJob) HasLastExecutionStatus() bool

HasLastExecutionStatus returns a boolean if a field has been set.

func (*MaskingJob) HasMaxConcurrentSourceConnections

func (o *MaskingJob) HasMaxConcurrentSourceConnections() bool

HasMaxConcurrentSourceConnections returns a boolean if a field has been set.

func (*MaskingJob) HasMaxConcurrentTargetConnections

func (o *MaskingJob) HasMaxConcurrentTargetConnections() bool

HasMaxConcurrentTargetConnections returns a boolean if a field has been set.

func (*MaskingJob) HasMaxMemory

func (o *MaskingJob) HasMaxMemory() bool

HasMaxMemory returns a boolean if a field has been set.

func (*MaskingJob) HasMinMemory

func (o *MaskingJob) HasMinMemory() bool

HasMinMemory returns a boolean if a field has been set.

func (*MaskingJob) HasName

func (o *MaskingJob) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaskingJob) HasNumInputStreams

func (o *MaskingJob) HasNumInputStreams() bool

HasNumInputStreams returns a boolean if a field has been set.

func (*MaskingJob) HasOnTheFlySourceConnectorPassword

func (o *MaskingJob) HasOnTheFlySourceConnectorPassword() bool

HasOnTheFlySourceConnectorPassword returns a boolean if a field has been set.

func (*MaskingJob) HasOnTheFlySourceConnectorUsername

func (o *MaskingJob) HasOnTheFlySourceConnectorUsername() bool

HasOnTheFlySourceConnectorUsername returns a boolean if a field has been set.

func (*MaskingJob) HasParallelismDegree

func (o *MaskingJob) HasParallelismDegree() bool

HasParallelismDegree returns a boolean if a field has been set.

func (*MaskingJob) HasRetainExecutionData

func (o *MaskingJob) HasRetainExecutionData() bool

HasRetainExecutionData returns a boolean if a field has been set.

func (*MaskingJob) HasRuleset

func (o *MaskingJob) HasRuleset() bool

HasRuleset returns a boolean if a field has been set.

func (*MaskingJob) HasStreamRowLimit

func (o *MaskingJob) HasStreamRowLimit() bool

HasStreamRowLimit returns a boolean if a field has been set.

func (*MaskingJob) HasTags

func (o *MaskingJob) HasTags() bool

HasTags returns a boolean if a field has been set.

func (MaskingJob) MarshalJSON

func (o MaskingJob) MarshalJSON() ([]byte, error)

func (*MaskingJob) SetConnectorPassword

func (o *MaskingJob) SetConnectorPassword(v string)

SetConnectorPassword gets a reference to the given NullableString and assigns it to the ConnectorPassword field.

func (*MaskingJob) SetConnectorPasswordNil

func (o *MaskingJob) SetConnectorPasswordNil()

SetConnectorPasswordNil sets the value for ConnectorPassword to be an explicit nil

func (*MaskingJob) SetConnectorType

func (o *MaskingJob) SetConnectorType(v string)

SetConnectorType gets a reference to the given string and assigns it to the ConnectorType field.

func (*MaskingJob) SetConnectorUsername

func (o *MaskingJob) SetConnectorUsername(v string)

SetConnectorUsername gets a reference to the given NullableString and assigns it to the ConnectorUsername field.

func (*MaskingJob) SetConnectorUsernameNil

func (o *MaskingJob) SetConnectorUsernameNil()

SetConnectorUsernameNil sets the value for ConnectorUsername to be an explicit nil

func (*MaskingJob) SetCreationDate

func (o *MaskingJob) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.

func (*MaskingJob) SetDatasetId

func (o *MaskingJob) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*MaskingJob) SetDescription

func (o *MaskingJob) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*MaskingJob) SetFeedbackSize

func (o *MaskingJob) SetFeedbackSize(v int32)

SetFeedbackSize gets a reference to the given int32 and assigns it to the FeedbackSize field.

func (*MaskingJob) SetHyperscaleInstanceId

func (o *MaskingJob) SetHyperscaleInstanceId(v string)

SetHyperscaleInstanceId gets a reference to the given string and assigns it to the HyperscaleInstanceId field.

func (*MaskingJob) SetId

func (o *MaskingJob) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MaskingJob) SetIsOnTheFlyMasking

func (o *MaskingJob) SetIsOnTheFlyMasking(v bool)

SetIsOnTheFlyMasking gets a reference to the given bool and assigns it to the IsOnTheFlyMasking field.

func (*MaskingJob) SetJobType

func (o *MaskingJob) SetJobType(v string)

SetJobType gets a reference to the given string and assigns it to the JobType field.

func (*MaskingJob) SetLastCompletedExecutionDate

func (o *MaskingJob) SetLastCompletedExecutionDate(v time.Time)

SetLastCompletedExecutionDate gets a reference to the given time.Time and assigns it to the LastCompletedExecutionDate field.

func (*MaskingJob) SetLastExecutionBytesMasked

func (o *MaskingJob) SetLastExecutionBytesMasked(v int64)

SetLastExecutionBytesMasked gets a reference to the given int64 and assigns it to the LastExecutionBytesMasked field.

func (*MaskingJob) SetLastExecutionBytesTotal

func (o *MaskingJob) SetLastExecutionBytesTotal(v int64)

SetLastExecutionBytesTotal gets a reference to the given int64 and assigns it to the LastExecutionBytesTotal field.

func (*MaskingJob) SetLastExecutionRowsMasked

func (o *MaskingJob) SetLastExecutionRowsMasked(v int64)

SetLastExecutionRowsMasked gets a reference to the given int64 and assigns it to the LastExecutionRowsMasked field.

func (*MaskingJob) SetLastExecutionRowsTotal

func (o *MaskingJob) SetLastExecutionRowsTotal(v int64)

SetLastExecutionRowsTotal gets a reference to the given int64 and assigns it to the LastExecutionRowsTotal field.

func (*MaskingJob) SetLastExecutionStatus

func (o *MaskingJob) SetLastExecutionStatus(v string)

SetLastExecutionStatus gets a reference to the given string and assigns it to the LastExecutionStatus field.

func (*MaskingJob) SetMaxConcurrentSourceConnections

func (o *MaskingJob) SetMaxConcurrentSourceConnections(v int32)

SetMaxConcurrentSourceConnections gets a reference to the given int32 and assigns it to the MaxConcurrentSourceConnections field.

func (*MaskingJob) SetMaxConcurrentTargetConnections

func (o *MaskingJob) SetMaxConcurrentTargetConnections(v int32)

SetMaxConcurrentTargetConnections gets a reference to the given int32 and assigns it to the MaxConcurrentTargetConnections field.

func (*MaskingJob) SetMaxMemory

func (o *MaskingJob) SetMaxMemory(v int32)

SetMaxMemory gets a reference to the given int32 and assigns it to the MaxMemory field.

func (*MaskingJob) SetMinMemory

func (o *MaskingJob) SetMinMemory(v int32)

SetMinMemory gets a reference to the given int32 and assigns it to the MinMemory field.

func (*MaskingJob) SetName

func (o *MaskingJob) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*MaskingJob) SetNumInputStreams

func (o *MaskingJob) SetNumInputStreams(v int32)

SetNumInputStreams gets a reference to the given int32 and assigns it to the NumInputStreams field.

func (*MaskingJob) SetOnTheFlySourceConnectorPassword

func (o *MaskingJob) SetOnTheFlySourceConnectorPassword(v string)

SetOnTheFlySourceConnectorPassword gets a reference to the given NullableString and assigns it to the OnTheFlySourceConnectorPassword field.

func (*MaskingJob) SetOnTheFlySourceConnectorPasswordNil

func (o *MaskingJob) SetOnTheFlySourceConnectorPasswordNil()

SetOnTheFlySourceConnectorPasswordNil sets the value for OnTheFlySourceConnectorPassword to be an explicit nil

func (*MaskingJob) SetOnTheFlySourceConnectorUsername

func (o *MaskingJob) SetOnTheFlySourceConnectorUsername(v string)

SetOnTheFlySourceConnectorUsername gets a reference to the given NullableString and assigns it to the OnTheFlySourceConnectorUsername field.

func (*MaskingJob) SetOnTheFlySourceConnectorUsernameNil

func (o *MaskingJob) SetOnTheFlySourceConnectorUsernameNil()

SetOnTheFlySourceConnectorUsernameNil sets the value for OnTheFlySourceConnectorUsername to be an explicit nil

func (*MaskingJob) SetParallelismDegree

func (o *MaskingJob) SetParallelismDegree(v int32)

SetParallelismDegree gets a reference to the given int32 and assigns it to the ParallelismDegree field.

func (*MaskingJob) SetRetainExecutionData

func (o *MaskingJob) SetRetainExecutionData(v string)

SetRetainExecutionData gets a reference to the given string and assigns it to the RetainExecutionData field.

func (*MaskingJob) SetRuleset

func (o *MaskingJob) SetRuleset(v MaskingRuleset)

SetRuleset gets a reference to the given MaskingRuleset and assigns it to the Ruleset field.

func (*MaskingJob) SetStreamRowLimit

func (o *MaskingJob) SetStreamRowLimit(v int32)

SetStreamRowLimit gets a reference to the given int32 and assigns it to the StreamRowLimit field.

func (*MaskingJob) SetTags

func (o *MaskingJob) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (MaskingJob) ToMap

func (o MaskingJob) ToMap() (map[string]interface{}, error)

func (*MaskingJob) UnsetConnectorPassword

func (o *MaskingJob) UnsetConnectorPassword()

UnsetConnectorPassword ensures that no value is present for ConnectorPassword, not even an explicit nil

func (*MaskingJob) UnsetConnectorUsername

func (o *MaskingJob) UnsetConnectorUsername()

UnsetConnectorUsername ensures that no value is present for ConnectorUsername, not even an explicit nil

func (*MaskingJob) UnsetOnTheFlySourceConnectorPassword

func (o *MaskingJob) UnsetOnTheFlySourceConnectorPassword()

UnsetOnTheFlySourceConnectorPassword ensures that no value is present for OnTheFlySourceConnectorPassword, not even an explicit nil

func (*MaskingJob) UnsetOnTheFlySourceConnectorUsername

func (o *MaskingJob) UnsetOnTheFlySourceConnectorUsername()

UnsetOnTheFlySourceConnectorUsername ensures that no value is present for OnTheFlySourceConnectorUsername, not even an explicit nil

type MaskingJobConnectorsResponse

type MaskingJobConnectorsResponse struct {
	Connector         *Connector `json:"connector,omitempty"`
	OnTheFlyConnector *Connector `json:"on_the_fly_connector,omitempty"`
}

MaskingJobConnectorsResponse Connector(s) for a masking job.

func NewMaskingJobConnectorsResponse

func NewMaskingJobConnectorsResponse() *MaskingJobConnectorsResponse

NewMaskingJobConnectorsResponse instantiates a new MaskingJobConnectorsResponse 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 NewMaskingJobConnectorsResponseWithDefaults

func NewMaskingJobConnectorsResponseWithDefaults() *MaskingJobConnectorsResponse

NewMaskingJobConnectorsResponseWithDefaults instantiates a new MaskingJobConnectorsResponse 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 (*MaskingJobConnectorsResponse) GetConnector

func (o *MaskingJobConnectorsResponse) GetConnector() Connector

GetConnector returns the Connector field value if set, zero value otherwise.

func (*MaskingJobConnectorsResponse) GetConnectorOk

func (o *MaskingJobConnectorsResponse) GetConnectorOk() (*Connector, bool)

GetConnectorOk returns a tuple with the Connector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJobConnectorsResponse) GetOnTheFlyConnector

func (o *MaskingJobConnectorsResponse) GetOnTheFlyConnector() Connector

GetOnTheFlyConnector returns the OnTheFlyConnector field value if set, zero value otherwise.

func (*MaskingJobConnectorsResponse) GetOnTheFlyConnectorOk

func (o *MaskingJobConnectorsResponse) GetOnTheFlyConnectorOk() (*Connector, bool)

GetOnTheFlyConnectorOk returns a tuple with the OnTheFlyConnector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJobConnectorsResponse) HasConnector

func (o *MaskingJobConnectorsResponse) HasConnector() bool

HasConnector returns a boolean if a field has been set.

func (*MaskingJobConnectorsResponse) HasOnTheFlyConnector

func (o *MaskingJobConnectorsResponse) HasOnTheFlyConnector() bool

HasOnTheFlyConnector returns a boolean if a field has been set.

func (MaskingJobConnectorsResponse) MarshalJSON

func (o MaskingJobConnectorsResponse) MarshalJSON() ([]byte, error)

func (*MaskingJobConnectorsResponse) SetConnector

func (o *MaskingJobConnectorsResponse) SetConnector(v Connector)

SetConnector gets a reference to the given Connector and assigns it to the Connector field.

func (*MaskingJobConnectorsResponse) SetOnTheFlyConnector

func (o *MaskingJobConnectorsResponse) SetOnTheFlyConnector(v Connector)

SetOnTheFlyConnector gets a reference to the given Connector and assigns it to the OnTheFlyConnector field.

func (MaskingJobConnectorsResponse) ToMap

func (o MaskingJobConnectorsResponse) ToMap() (map[string]interface{}, error)

type MaskingJobSourceEngine

type MaskingJobSourceEngine struct {
	// The MaskingJob entity ID.
	MaskingJobId *string `json:"masking_job_id,omitempty"`
	// The ID of the Engine serving as the source for the MaskingJob.
	SourceEngineId *string `json:"source_engine_id,omitempty"`
}

MaskingJobSourceEngine A masking job's source engine.

func NewMaskingJobSourceEngine

func NewMaskingJobSourceEngine() *MaskingJobSourceEngine

NewMaskingJobSourceEngine instantiates a new MaskingJobSourceEngine 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 NewMaskingJobSourceEngineWithDefaults

func NewMaskingJobSourceEngineWithDefaults() *MaskingJobSourceEngine

NewMaskingJobSourceEngineWithDefaults instantiates a new MaskingJobSourceEngine 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 (*MaskingJobSourceEngine) GetMaskingJobId

func (o *MaskingJobSourceEngine) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*MaskingJobSourceEngine) GetMaskingJobIdOk

func (o *MaskingJobSourceEngine) GetMaskingJobIdOk() (*string, bool)

GetMaskingJobIdOk returns a tuple with the MaskingJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJobSourceEngine) GetSourceEngineId

func (o *MaskingJobSourceEngine) GetSourceEngineId() string

GetSourceEngineId returns the SourceEngineId field value if set, zero value otherwise.

func (*MaskingJobSourceEngine) GetSourceEngineIdOk

func (o *MaskingJobSourceEngine) GetSourceEngineIdOk() (*string, bool)

GetSourceEngineIdOk returns a tuple with the SourceEngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingJobSourceEngine) HasMaskingJobId

func (o *MaskingJobSourceEngine) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (*MaskingJobSourceEngine) HasSourceEngineId

func (o *MaskingJobSourceEngine) HasSourceEngineId() bool

HasSourceEngineId returns a boolean if a field has been set.

func (MaskingJobSourceEngine) MarshalJSON

func (o MaskingJobSourceEngine) MarshalJSON() ([]byte, error)

func (*MaskingJobSourceEngine) SetMaskingJobId

func (o *MaskingJobSourceEngine) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (*MaskingJobSourceEngine) SetSourceEngineId

func (o *MaskingJobSourceEngine) SetSourceEngineId(v string)

SetSourceEngineId gets a reference to the given string and assigns it to the SourceEngineId field.

func (MaskingJobSourceEngine) ToMap

func (o MaskingJobSourceEngine) ToMap() (map[string]interface{}, error)

type MaskingJobsApiService

type MaskingJobsApiService service

MaskingJobsApiService MaskingJobsApi service

func (*MaskingJobsApiService) CopyMaskingJob

func (a *MaskingJobsApiService) CopyMaskingJob(ctx context.Context, maskingJobId string) ApiCopyMaskingJobRequest

CopyMaskingJob Copies the masking job to another engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiCopyMaskingJobRequest

func (*MaskingJobsApiService) CopyMaskingJobExecute

Execute executes the request

@return CopyMaskingJobResponse

func (*MaskingJobsApiService) CreateMaskingJobTag

func (a *MaskingJobsApiService) CreateMaskingJobTag(ctx context.Context, maskingJobId string) ApiCreateMaskingJobTagRequest

CreateMaskingJobTag Create tags for a Masking Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiCreateMaskingJobTagRequest

func (*MaskingJobsApiService) CreateMaskingJobTagExecute

func (a *MaskingJobsApiService) CreateMaskingJobTagExecute(r ApiCreateMaskingJobTagRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*MaskingJobsApiService) DeleteMaskingJob

func (a *MaskingJobsApiService) DeleteMaskingJob(ctx context.Context, maskingJobId string) ApiDeleteMaskingJobRequest

DeleteMaskingJob Delete a masking job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiDeleteMaskingJobRequest

func (*MaskingJobsApiService) DeleteMaskingJobExecute

Execute executes the request

@return DeleteMaskingJobResponse

func (*MaskingJobsApiService) DeleteMaskingJobTag

func (a *MaskingJobsApiService) DeleteMaskingJobTag(ctx context.Context, maskingJobId string) ApiDeleteMaskingJobTagRequest

DeleteMaskingJobTag Delete tags for a Masking Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiDeleteMaskingJobTagRequest

func (*MaskingJobsApiService) DeleteMaskingJobTagExecute

func (a *MaskingJobsApiService) DeleteMaskingJobTagExecute(r ApiDeleteMaskingJobTagRequest) (*http.Response, error)

Execute executes the request

func (*MaskingJobsApiService) ExecuteMaskingJob

func (a *MaskingJobsApiService) ExecuteMaskingJob(ctx context.Context, maskingJobId string) ApiExecuteMaskingJobRequest

ExecuteMaskingJob Execute a MaskingJob.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiExecuteMaskingJobRequest

func (*MaskingJobsApiService) ExecuteMaskingJobExecute

Execute executes the request

@return ExecuteMaskingJobResponse

func (*MaskingJobsApiService) GetMaskingJobById

func (a *MaskingJobsApiService) GetMaskingJobById(ctx context.Context, maskingJobId string) ApiGetMaskingJobByIdRequest

GetMaskingJobById Retrieve a MaskingJob by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiGetMaskingJobByIdRequest

func (*MaskingJobsApiService) GetMaskingJobByIdExecute

func (a *MaskingJobsApiService) GetMaskingJobByIdExecute(r ApiGetMaskingJobByIdRequest) (*MaskingJob, *http.Response, error)

Execute executes the request

@return MaskingJob

func (*MaskingJobsApiService) GetMaskingJobConnectors

func (a *MaskingJobsApiService) GetMaskingJobConnectors(ctx context.Context, maskingJobId string) ApiGetMaskingJobConnectorsRequest

GetMaskingJobConnectors Get connectors for a Masking Job by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiGetMaskingJobConnectorsRequest

func (*MaskingJobsApiService) GetMaskingJobConnectorsExecute

Execute executes the request

@return MaskingJobConnectorsResponse

func (*MaskingJobsApiService) GetMaskingJobSourceEngines

GetMaskingJobSourceEngines Retrieve the list of masking jobs along with their source engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMaskingJobSourceEnginesRequest

func (*MaskingJobsApiService) GetMaskingJobSourceEnginesExecute

Execute executes the request

@return ListMaskingJobSourceEnginesResponse

func (*MaskingJobsApiService) GetMaskingJobTag

func (a *MaskingJobsApiService) GetMaskingJobTag(ctx context.Context, maskingJobId string) ApiGetMaskingJobTagRequest

GetMaskingJobTag Get tags for a Masking Job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiGetMaskingJobTagRequest

func (*MaskingJobsApiService) GetMaskingJobTagExecute

Execute executes the request

@return TagsResponse

func (*MaskingJobsApiService) GetMaskingJobs

GetMaskingJobs Retrieve the list of masking jobs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMaskingJobsRequest

func (*MaskingJobsApiService) GetMaskingJobsExecute

Execute executes the request

@return ListMaskingJobsResponse

func (*MaskingJobsApiService) MigrateMaskingJob

func (a *MaskingJobsApiService) MigrateMaskingJob(ctx context.Context, maskingJobId string) ApiMigrateMaskingJobRequest

MigrateMaskingJob Migrates the masking job from its current source engine to another engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiMigrateMaskingJobRequest

func (*MaskingJobsApiService) MigrateMaskingJobExecute

Execute executes the request

@return MigrateMaskingJobResponse

func (*MaskingJobsApiService) SearchMaskingJobSourceEngines

func (a *MaskingJobsApiService) SearchMaskingJobSourceEngines(ctx context.Context) ApiSearchMaskingJobSourceEnginesRequest

SearchMaskingJobSourceEngines Search the list of masking jobs along with their source engine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchMaskingJobSourceEnginesRequest

func (*MaskingJobsApiService) SearchMaskingJobSourceEnginesExecute

Execute executes the request

@return SearchMaskingJobSourceEnginesResponse

func (*MaskingJobsApiService) SearchMaskingJobs

SearchMaskingJobs Search masking jobs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchMaskingJobsRequest

func (*MaskingJobsApiService) SearchMaskingJobsExecute

Execute executes the request

@return SearchMaskingJobsResponse

func (*MaskingJobsApiService) UpdateMaskingJobById

func (a *MaskingJobsApiService) UpdateMaskingJobById(ctx context.Context, maskingJobId string) ApiUpdateMaskingJobByIdRequest

UpdateMaskingJobById Update values of a MaskingJob.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param maskingJobId The ID of the Masking Job.
@return ApiUpdateMaskingJobByIdRequest

func (*MaskingJobsApiService) UpdateMaskingJobByIdExecute

func (a *MaskingJobsApiService) UpdateMaskingJobByIdExecute(r ApiUpdateMaskingJobByIdRequest) (*MaskingJob, *http.Response, error)

Execute executes the request

@return MaskingJob

type MaskingRuleset

type MaskingRuleset struct {
	// The Ruleset type.
	Type NullableString `json:"type,omitempty"`
	// The name of this Ruleset.
	Name *string `json:"name,omitempty"`
	// Whether refresh drops tables. Only applicable to database ruleset type.
	RefreshDropsTables NullableBool `json:"refresh_drops_tables,omitempty"`
	// The list of algorithms for this Ruleset.
	Algorithms []string `json:"algorithms,omitempty"`
}

MaskingRuleset A masking ruleset.

func NewMaskingRuleset

func NewMaskingRuleset() *MaskingRuleset

NewMaskingRuleset instantiates a new MaskingRuleset 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 NewMaskingRulesetWithDefaults

func NewMaskingRulesetWithDefaults() *MaskingRuleset

NewMaskingRulesetWithDefaults instantiates a new MaskingRuleset 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 (*MaskingRuleset) GetAlgorithms

func (o *MaskingRuleset) GetAlgorithms() []string

GetAlgorithms returns the Algorithms field value if set, zero value otherwise.

func (*MaskingRuleset) GetAlgorithmsOk

func (o *MaskingRuleset) GetAlgorithmsOk() ([]string, bool)

GetAlgorithmsOk returns a tuple with the Algorithms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskingRuleset) GetName

func (o *MaskingRuleset) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MaskingRuleset) GetNameOk

func (o *MaskingRuleset) 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.

func (*MaskingRuleset) GetRefreshDropsTables

func (o *MaskingRuleset) GetRefreshDropsTables() bool

GetRefreshDropsTables returns the RefreshDropsTables field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingRuleset) GetRefreshDropsTablesOk

func (o *MaskingRuleset) GetRefreshDropsTablesOk() (*bool, bool)

GetRefreshDropsTablesOk returns a tuple with the RefreshDropsTables field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MaskingRuleset) GetType

func (o *MaskingRuleset) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MaskingRuleset) GetTypeOk

func (o *MaskingRuleset) 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 (*MaskingRuleset) HasAlgorithms

func (o *MaskingRuleset) HasAlgorithms() bool

HasAlgorithms returns a boolean if a field has been set.

func (*MaskingRuleset) HasName

func (o *MaskingRuleset) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaskingRuleset) HasRefreshDropsTables

func (o *MaskingRuleset) HasRefreshDropsTables() bool

HasRefreshDropsTables returns a boolean if a field has been set.

func (*MaskingRuleset) HasType

func (o *MaskingRuleset) HasType() bool

HasType returns a boolean if a field has been set.

func (MaskingRuleset) MarshalJSON

func (o MaskingRuleset) MarshalJSON() ([]byte, error)

func (*MaskingRuleset) SetAlgorithms

func (o *MaskingRuleset) SetAlgorithms(v []string)

SetAlgorithms gets a reference to the given []string and assigns it to the Algorithms field.

func (*MaskingRuleset) SetName

func (o *MaskingRuleset) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*MaskingRuleset) SetRefreshDropsTables

func (o *MaskingRuleset) SetRefreshDropsTables(v bool)

SetRefreshDropsTables gets a reference to the given NullableBool and assigns it to the RefreshDropsTables field.

func (*MaskingRuleset) SetRefreshDropsTablesNil

func (o *MaskingRuleset) SetRefreshDropsTablesNil()

SetRefreshDropsTablesNil sets the value for RefreshDropsTables to be an explicit nil

func (*MaskingRuleset) SetType

func (o *MaskingRuleset) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*MaskingRuleset) SetTypeNil

func (o *MaskingRuleset) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (MaskingRuleset) ToMap

func (o MaskingRuleset) ToMap() (map[string]interface{}, error)

func (*MaskingRuleset) UnsetRefreshDropsTables

func (o *MaskingRuleset) UnsetRefreshDropsTables()

UnsetRefreshDropsTables ensures that no value is present for RefreshDropsTables, not even an explicit nil

func (*MaskingRuleset) UnsetType

func (o *MaskingRuleset) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type MetadataDbInfo

type MetadataDbInfo struct {
	// True if an external database, i.e a database running outside of the application cluster, is in use.
	External *bool `json:"external,omitempty"`
	// The full database version in String format
	Version *string `json:"version,omitempty"`
	// The database product name as reported by the database itself.
	DatabaseProductName *string `json:"database_product_name,omitempty"`
	// The database major version.
	MajorVersion *int32 `json:"major_version,omitempty"`
	// The database minor version
	MinorVersion *int32 `json:"minor_version,omitempty"`
	// The minimum supported major version of PostgreSQL.
	MinSupportedMajorVersion *int32 `json:"min_supported_major_version,omitempty"`
	// The minimum supported minor version of PostgreSQL.
	MinSupportedMinorVersion *int32 `json:"min_supported_minor_version,omitempty"`
	// The maximum supported major version of PostgreSQL.
	MaxSupportedMajorVersion *int32 `json:"max_supported_major_version,omitempty"`
	// The maximum supported minor version of PostgreSQL.
	MaxSupportedMinorVersion *int32 `json:"max_supported_minor_version,omitempty"`
	// Whether the database is recognized as valid for this product. In order to be compatible, the database product name must be a recognized PostgreSQL and the database version must be greater than or equal to the minimum minor version and smaller than or equal to the maximum support version.
	Compatible *bool `json:"compatible,omitempty"`
}

MetadataDbInfo Information about the product's metadata database.

func NewMetadataDbInfo

func NewMetadataDbInfo() *MetadataDbInfo

NewMetadataDbInfo instantiates a new MetadataDbInfo 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 NewMetadataDbInfoWithDefaults

func NewMetadataDbInfoWithDefaults() *MetadataDbInfo

NewMetadataDbInfoWithDefaults instantiates a new MetadataDbInfo 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 (*MetadataDbInfo) GetCompatible

func (o *MetadataDbInfo) GetCompatible() bool

GetCompatible returns the Compatible field value if set, zero value otherwise.

func (*MetadataDbInfo) GetCompatibleOk

func (o *MetadataDbInfo) GetCompatibleOk() (*bool, bool)

GetCompatibleOk returns a tuple with the Compatible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetDatabaseProductName

func (o *MetadataDbInfo) GetDatabaseProductName() string

GetDatabaseProductName returns the DatabaseProductName field value if set, zero value otherwise.

func (*MetadataDbInfo) GetDatabaseProductNameOk

func (o *MetadataDbInfo) GetDatabaseProductNameOk() (*string, bool)

GetDatabaseProductNameOk returns a tuple with the DatabaseProductName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetExternal

func (o *MetadataDbInfo) GetExternal() bool

GetExternal returns the External field value if set, zero value otherwise.

func (*MetadataDbInfo) GetExternalOk

func (o *MetadataDbInfo) GetExternalOk() (*bool, bool)

GetExternalOk returns a tuple with the External field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMajorVersion

func (o *MetadataDbInfo) GetMajorVersion() int32

GetMajorVersion returns the MajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMajorVersionOk

func (o *MetadataDbInfo) GetMajorVersionOk() (*int32, bool)

GetMajorVersionOk returns a tuple with the MajorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMaxSupportedMajorVersion

func (o *MetadataDbInfo) GetMaxSupportedMajorVersion() int32

GetMaxSupportedMajorVersion returns the MaxSupportedMajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMaxSupportedMajorVersionOk

func (o *MetadataDbInfo) GetMaxSupportedMajorVersionOk() (*int32, bool)

GetMaxSupportedMajorVersionOk returns a tuple with the MaxSupportedMajorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMaxSupportedMinorVersion

func (o *MetadataDbInfo) GetMaxSupportedMinorVersion() int32

GetMaxSupportedMinorVersion returns the MaxSupportedMinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMaxSupportedMinorVersionOk

func (o *MetadataDbInfo) GetMaxSupportedMinorVersionOk() (*int32, bool)

GetMaxSupportedMinorVersionOk returns a tuple with the MaxSupportedMinorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMinSupportedMajorVersion

func (o *MetadataDbInfo) GetMinSupportedMajorVersion() int32

GetMinSupportedMajorVersion returns the MinSupportedMajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinSupportedMajorVersionOk

func (o *MetadataDbInfo) GetMinSupportedMajorVersionOk() (*int32, bool)

GetMinSupportedMajorVersionOk returns a tuple with the MinSupportedMajorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMinSupportedMinorVersion

func (o *MetadataDbInfo) GetMinSupportedMinorVersion() int32

GetMinSupportedMinorVersion returns the MinSupportedMinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinSupportedMinorVersionOk

func (o *MetadataDbInfo) GetMinSupportedMinorVersionOk() (*int32, bool)

GetMinSupportedMinorVersionOk returns a tuple with the MinSupportedMinorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetMinorVersion

func (o *MetadataDbInfo) GetMinorVersion() int32

GetMinorVersion returns the MinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinorVersionOk

func (o *MetadataDbInfo) GetMinorVersionOk() (*int32, bool)

GetMinorVersionOk returns a tuple with the MinorVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) GetVersion

func (o *MetadataDbInfo) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*MetadataDbInfo) GetVersionOk

func (o *MetadataDbInfo) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetadataDbInfo) HasCompatible

func (o *MetadataDbInfo) HasCompatible() bool

HasCompatible returns a boolean if a field has been set.

func (*MetadataDbInfo) HasDatabaseProductName

func (o *MetadataDbInfo) HasDatabaseProductName() bool

HasDatabaseProductName returns a boolean if a field has been set.

func (*MetadataDbInfo) HasExternal

func (o *MetadataDbInfo) HasExternal() bool

HasExternal returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMajorVersion

func (o *MetadataDbInfo) HasMajorVersion() bool

HasMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMaxSupportedMajorVersion

func (o *MetadataDbInfo) HasMaxSupportedMajorVersion() bool

HasMaxSupportedMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMaxSupportedMinorVersion

func (o *MetadataDbInfo) HasMaxSupportedMinorVersion() bool

HasMaxSupportedMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinSupportedMajorVersion

func (o *MetadataDbInfo) HasMinSupportedMajorVersion() bool

HasMinSupportedMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinSupportedMinorVersion

func (o *MetadataDbInfo) HasMinSupportedMinorVersion() bool

HasMinSupportedMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinorVersion

func (o *MetadataDbInfo) HasMinorVersion() bool

HasMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasVersion

func (o *MetadataDbInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (MetadataDbInfo) MarshalJSON

func (o MetadataDbInfo) MarshalJSON() ([]byte, error)

func (*MetadataDbInfo) SetCompatible

func (o *MetadataDbInfo) SetCompatible(v bool)

SetCompatible gets a reference to the given bool and assigns it to the Compatible field.

func (*MetadataDbInfo) SetDatabaseProductName

func (o *MetadataDbInfo) SetDatabaseProductName(v string)

SetDatabaseProductName gets a reference to the given string and assigns it to the DatabaseProductName field.

func (*MetadataDbInfo) SetExternal

func (o *MetadataDbInfo) SetExternal(v bool)

SetExternal gets a reference to the given bool and assigns it to the External field.

func (*MetadataDbInfo) SetMajorVersion

func (o *MetadataDbInfo) SetMajorVersion(v int32)

SetMajorVersion gets a reference to the given int32 and assigns it to the MajorVersion field.

func (*MetadataDbInfo) SetMaxSupportedMajorVersion

func (o *MetadataDbInfo) SetMaxSupportedMajorVersion(v int32)

SetMaxSupportedMajorVersion gets a reference to the given int32 and assigns it to the MaxSupportedMajorVersion field.

func (*MetadataDbInfo) SetMaxSupportedMinorVersion

func (o *MetadataDbInfo) SetMaxSupportedMinorVersion(v int32)

SetMaxSupportedMinorVersion gets a reference to the given int32 and assigns it to the MaxSupportedMinorVersion field.

func (*MetadataDbInfo) SetMinSupportedMajorVersion

func (o *MetadataDbInfo) SetMinSupportedMajorVersion(v int32)

SetMinSupportedMajorVersion gets a reference to the given int32 and assigns it to the MinSupportedMajorVersion field.

func (*MetadataDbInfo) SetMinSupportedMinorVersion

func (o *MetadataDbInfo) SetMinSupportedMinorVersion(v int32)

SetMinSupportedMinorVersion gets a reference to the given int32 and assigns it to the MinSupportedMinorVersion field.

func (*MetadataDbInfo) SetMinorVersion

func (o *MetadataDbInfo) SetMinorVersion(v int32)

SetMinorVersion gets a reference to the given int32 and assigns it to the MinorVersion field.

func (*MetadataDbInfo) SetVersion

func (o *MetadataDbInfo) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (MetadataDbInfo) ToMap

func (o MetadataDbInfo) ToMap() (map[string]interface{}, error)

type MigrateMaskingJobParameters

type MigrateMaskingJobParameters struct {
	// The ID of the engine to copy the job to.
	TargetEngineId string `json:"target_engine_id"`
	// The ID or name of the source environment on the target engine. This only applies to On-The-Fly jobs.
	SourceEnvironmentId *string `json:"source_environment_id,omitempty"`
	// The ID or name of the target environment to copy the job into.
	TargetEnvironmentId *string `json:"target_environment_id,omitempty"`
}

MigrateMaskingJobParameters Parameters to migrate a masking job.

func NewMigrateMaskingJobParameters

func NewMigrateMaskingJobParameters(targetEngineId string) *MigrateMaskingJobParameters

NewMigrateMaskingJobParameters instantiates a new MigrateMaskingJobParameters 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 NewMigrateMaskingJobParametersWithDefaults

func NewMigrateMaskingJobParametersWithDefaults() *MigrateMaskingJobParameters

NewMigrateMaskingJobParametersWithDefaults instantiates a new MigrateMaskingJobParameters 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 (*MigrateMaskingJobParameters) GetSourceEnvironmentId

func (o *MigrateMaskingJobParameters) GetSourceEnvironmentId() string

GetSourceEnvironmentId returns the SourceEnvironmentId field value if set, zero value otherwise.

func (*MigrateMaskingJobParameters) GetSourceEnvironmentIdOk

func (o *MigrateMaskingJobParameters) GetSourceEnvironmentIdOk() (*string, bool)

GetSourceEnvironmentIdOk returns a tuple with the SourceEnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MigrateMaskingJobParameters) GetTargetEngineId

func (o *MigrateMaskingJobParameters) GetTargetEngineId() string

GetTargetEngineId returns the TargetEngineId field value

func (*MigrateMaskingJobParameters) GetTargetEngineIdOk

func (o *MigrateMaskingJobParameters) GetTargetEngineIdOk() (*string, bool)

GetTargetEngineIdOk returns a tuple with the TargetEngineId field value and a boolean to check if the value has been set.

func (*MigrateMaskingJobParameters) GetTargetEnvironmentId

func (o *MigrateMaskingJobParameters) GetTargetEnvironmentId() string

GetTargetEnvironmentId returns the TargetEnvironmentId field value if set, zero value otherwise.

func (*MigrateMaskingJobParameters) GetTargetEnvironmentIdOk

func (o *MigrateMaskingJobParameters) GetTargetEnvironmentIdOk() (*string, bool)

GetTargetEnvironmentIdOk returns a tuple with the TargetEnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MigrateMaskingJobParameters) HasSourceEnvironmentId

func (o *MigrateMaskingJobParameters) HasSourceEnvironmentId() bool

HasSourceEnvironmentId returns a boolean if a field has been set.

func (*MigrateMaskingJobParameters) HasTargetEnvironmentId

func (o *MigrateMaskingJobParameters) HasTargetEnvironmentId() bool

HasTargetEnvironmentId returns a boolean if a field has been set.

func (MigrateMaskingJobParameters) MarshalJSON

func (o MigrateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*MigrateMaskingJobParameters) SetSourceEnvironmentId

func (o *MigrateMaskingJobParameters) SetSourceEnvironmentId(v string)

SetSourceEnvironmentId gets a reference to the given string and assigns it to the SourceEnvironmentId field.

func (*MigrateMaskingJobParameters) SetTargetEngineId

func (o *MigrateMaskingJobParameters) SetTargetEngineId(v string)

SetTargetEngineId sets field value

func (*MigrateMaskingJobParameters) SetTargetEnvironmentId

func (o *MigrateMaskingJobParameters) SetTargetEnvironmentId(v string)

SetTargetEnvironmentId gets a reference to the given string and assigns it to the TargetEnvironmentId field.

func (MigrateMaskingJobParameters) ToMap

func (o MigrateMaskingJobParameters) ToMap() (map[string]interface{}, error)

type MigrateMaskingJobResponse

type MigrateMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

MigrateMaskingJobResponse struct for MigrateMaskingJobResponse

func NewMigrateMaskingJobResponse

func NewMigrateMaskingJobResponse() *MigrateMaskingJobResponse

NewMigrateMaskingJobResponse instantiates a new MigrateMaskingJobResponse 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 NewMigrateMaskingJobResponseWithDefaults

func NewMigrateMaskingJobResponseWithDefaults() *MigrateMaskingJobResponse

NewMigrateMaskingJobResponseWithDefaults instantiates a new MigrateMaskingJobResponse 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 (*MigrateMaskingJobResponse) GetJob

func (o *MigrateMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*MigrateMaskingJobResponse) GetJobOk

func (o *MigrateMaskingJobResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MigrateMaskingJobResponse) HasJob

func (o *MigrateMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (MigrateMaskingJobResponse) MarshalJSON

func (o MigrateMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*MigrateMaskingJobResponse) SetJob

func (o *MigrateMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (MigrateMaskingJobResponse) ToMap

func (o MigrateMaskingJobResponse) ToMap() (map[string]interface{}, error)

type NullableAPIClassificationConfig

type NullableAPIClassificationConfig struct {
	// contains filtered or unexported fields
}

func (NullableAPIClassificationConfig) Get

func (NullableAPIClassificationConfig) IsSet

func (NullableAPIClassificationConfig) MarshalJSON

func (v NullableAPIClassificationConfig) MarshalJSON() ([]byte, error)

func (*NullableAPIClassificationConfig) Set

func (*NullableAPIClassificationConfig) UnmarshalJSON

func (v *NullableAPIClassificationConfig) UnmarshalJSON(src []byte) error

func (*NullableAPIClassificationConfig) Unset

type NullableASEDSourceLinkSourceParameters

type NullableASEDSourceLinkSourceParameters struct {
	// contains filtered or unexported fields
}

func (NullableASEDSourceLinkSourceParameters) Get

func (NullableASEDSourceLinkSourceParameters) IsSet

func (NullableASEDSourceLinkSourceParameters) MarshalJSON

func (v NullableASEDSourceLinkSourceParameters) MarshalJSON() ([]byte, error)

func (*NullableASEDSourceLinkSourceParameters) Set

func (*NullableASEDSourceLinkSourceParameters) UnmarshalJSON

func (v *NullableASEDSourceLinkSourceParameters) UnmarshalJSON(src []byte) error

func (*NullableASEDSourceLinkSourceParameters) Unset

type NullableASEDSourceLinkSourceParametersAllOf

type NullableASEDSourceLinkSourceParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableASEDSourceLinkSourceParametersAllOf) Get

func (NullableASEDSourceLinkSourceParametersAllOf) IsSet

func (NullableASEDSourceLinkSourceParametersAllOf) MarshalJSON

func (*NullableASEDSourceLinkSourceParametersAllOf) Set

func (*NullableASEDSourceLinkSourceParametersAllOf) UnmarshalJSON

func (v *NullableASEDSourceLinkSourceParametersAllOf) UnmarshalJSON(src []byte) error

func (*NullableASEDSourceLinkSourceParametersAllOf) Unset

type NullableAccessGroup

type NullableAccessGroup struct {
	// contains filtered or unexported fields
}

func NewNullableAccessGroup

func NewNullableAccessGroup(val *AccessGroup) *NullableAccessGroup

func (NullableAccessGroup) Get

func (NullableAccessGroup) IsSet

func (v NullableAccessGroup) IsSet() bool

func (NullableAccessGroup) MarshalJSON

func (v NullableAccessGroup) MarshalJSON() ([]byte, error)

func (*NullableAccessGroup) Set

func (v *NullableAccessGroup) Set(val *AccessGroup)

func (*NullableAccessGroup) UnmarshalJSON

func (v *NullableAccessGroup) UnmarshalJSON(src []byte) error

func (*NullableAccessGroup) Unset

func (v *NullableAccessGroup) Unset()

type NullableAccessGroupAccountIdsRequest

type NullableAccessGroupAccountIdsRequest struct {
	// contains filtered or unexported fields
}

func (NullableAccessGroupAccountIdsRequest) Get

func (NullableAccessGroupAccountIdsRequest) IsSet

func (NullableAccessGroupAccountIdsRequest) MarshalJSON

func (v NullableAccessGroupAccountIdsRequest) MarshalJSON() ([]byte, error)

func (*NullableAccessGroupAccountIdsRequest) Set

func (*NullableAccessGroupAccountIdsRequest) UnmarshalJSON

func (v *NullableAccessGroupAccountIdsRequest) UnmarshalJSON(src []byte) error

func (*NullableAccessGroupAccountIdsRequest) Unset

type NullableAccessGroupScope

type NullableAccessGroupScope struct {
	// contains filtered or unexported fields
}

func NewNullableAccessGroupScope

func NewNullableAccessGroupScope(val *AccessGroupScope) *NullableAccessGroupScope

func (NullableAccessGroupScope) Get

func (NullableAccessGroupScope) IsSet

func (v NullableAccessGroupScope) IsSet() bool

func (NullableAccessGroupScope) MarshalJSON

func (v NullableAccessGroupScope) MarshalJSON() ([]byte, error)

func (*NullableAccessGroupScope) Set

func (*NullableAccessGroupScope) UnmarshalJSON

func (v *NullableAccessGroupScope) UnmarshalJSON(src []byte) error

func (*NullableAccessGroupScope) Unset

func (v *NullableAccessGroupScope) Unset()

type NullableAccessGroupScopesRequest

type NullableAccessGroupScopesRequest struct {
	// contains filtered or unexported fields
}

func (NullableAccessGroupScopesRequest) Get

func (NullableAccessGroupScopesRequest) IsSet

func (NullableAccessGroupScopesRequest) MarshalJSON

func (v NullableAccessGroupScopesRequest) MarshalJSON() ([]byte, error)

func (*NullableAccessGroupScopesRequest) Set

func (*NullableAccessGroupScopesRequest) UnmarshalJSON

func (v *NullableAccessGroupScopesRequest) UnmarshalJSON(src []byte) error

func (*NullableAccessGroupScopesRequest) Unset

type NullableAccessGroupUpdateParameters

type NullableAccessGroupUpdateParameters struct {
	// contains filtered or unexported fields
}

func (NullableAccessGroupUpdateParameters) Get

func (NullableAccessGroupUpdateParameters) IsSet

func (NullableAccessGroupUpdateParameters) MarshalJSON

func (v NullableAccessGroupUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableAccessGroupUpdateParameters) Set

func (*NullableAccessGroupUpdateParameters) UnmarshalJSON

func (v *NullableAccessGroupUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableAccessGroupUpdateParameters) Unset

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 NullableAccountCreateParameter

type NullableAccountCreateParameter struct {
	// contains filtered or unexported fields
}

func (NullableAccountCreateParameter) Get

func (NullableAccountCreateParameter) IsSet

func (NullableAccountCreateParameter) MarshalJSON

func (v NullableAccountCreateParameter) MarshalJSON() ([]byte, error)

func (*NullableAccountCreateParameter) Set

func (*NullableAccountCreateParameter) UnmarshalJSON

func (v *NullableAccountCreateParameter) UnmarshalJSON(src []byte) error

func (*NullableAccountCreateParameter) Unset

func (v *NullableAccountCreateParameter) Unset()

type NullableAccountCreateResponse

type NullableAccountCreateResponse struct {
	// contains filtered or unexported fields
}

func (NullableAccountCreateResponse) Get

func (NullableAccountCreateResponse) IsSet

func (NullableAccountCreateResponse) MarshalJSON

func (v NullableAccountCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableAccountCreateResponse) Set

func (*NullableAccountCreateResponse) UnmarshalJSON

func (v *NullableAccountCreateResponse) UnmarshalJSON(src []byte) error

func (*NullableAccountCreateResponse) Unset

func (v *NullableAccountCreateResponse) Unset()

type NullableAccountLoginParameter

type NullableAccountLoginParameter struct {
	// contains filtered or unexported fields
}

func (NullableAccountLoginParameter) Get

func (NullableAccountLoginParameter) IsSet

func (NullableAccountLoginParameter) MarshalJSON

func (v NullableAccountLoginParameter) MarshalJSON() ([]byte, error)

func (*NullableAccountLoginParameter) Set

func (*NullableAccountLoginParameter) UnmarshalJSON

func (v *NullableAccountLoginParameter) UnmarshalJSON(src []byte) error

func (*NullableAccountLoginParameter) Unset

func (v *NullableAccountLoginParameter) Unset()

type NullableAccountUpdateParameter

type NullableAccountUpdateParameter struct {
	// contains filtered or unexported fields
}

func (NullableAccountUpdateParameter) Get

func (NullableAccountUpdateParameter) IsSet

func (NullableAccountUpdateParameter) MarshalJSON

func (v NullableAccountUpdateParameter) MarshalJSON() ([]byte, error)

func (*NullableAccountUpdateParameter) Set

func (*NullableAccountUpdateParameter) UnmarshalJSON

func (v *NullableAccountUpdateParameter) UnmarshalJSON(src []byte) error

func (*NullableAccountUpdateParameter) Unset

func (v *NullableAccountUpdateParameter) Unset()

type NullableAdditionalMountPoint

type NullableAdditionalMountPoint struct {
	// contains filtered or unexported fields
}

func NewNullableAdditionalMountPoint

func NewNullableAdditionalMountPoint(val *AdditionalMountPoint) *NullableAdditionalMountPoint

func (NullableAdditionalMountPoint) Get

func (NullableAdditionalMountPoint) IsSet

func (NullableAdditionalMountPoint) MarshalJSON

func (v NullableAdditionalMountPoint) MarshalJSON() ([]byte, error)

func (*NullableAdditionalMountPoint) Set

func (*NullableAdditionalMountPoint) UnmarshalJSON

func (v *NullableAdditionalMountPoint) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMountPoint) Unset

func (v *NullableAdditionalMountPoint) Unset()

type NullableAlgorithm

type NullableAlgorithm struct {
	// contains filtered or unexported fields
}

func NewNullableAlgorithm

func NewNullableAlgorithm(val *Algorithm) *NullableAlgorithm

func (NullableAlgorithm) Get

func (v NullableAlgorithm) Get() *Algorithm

func (NullableAlgorithm) IsSet

func (v NullableAlgorithm) IsSet() bool

func (NullableAlgorithm) MarshalJSON

func (v NullableAlgorithm) MarshalJSON() ([]byte, error)

func (*NullableAlgorithm) Set

func (v *NullableAlgorithm) Set(val *Algorithm)

func (*NullableAlgorithm) UnmarshalJSON

func (v *NullableAlgorithm) UnmarshalJSON(src []byte) error

func (*NullableAlgorithm) Unset

func (v *NullableAlgorithm) Unset()

type NullableAlgorithmCreateParameters

type NullableAlgorithmCreateParameters struct {
	// contains filtered or unexported fields
}

func (NullableAlgorithmCreateParameters) Get

func (NullableAlgorithmCreateParameters) IsSet

func (NullableAlgorithmCreateParameters) MarshalJSON

func (v NullableAlgorithmCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableAlgorithmCreateParameters) Set

func (*NullableAlgorithmCreateParameters) UnmarshalJSON

func (v *NullableAlgorithmCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableAlgorithmCreateParameters) Unset

type NullableAllObjectPermissionsResponse

type NullableAllObjectPermissionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableAllObjectPermissionsResponse) Get

func (NullableAllObjectPermissionsResponse) IsSet

func (NullableAllObjectPermissionsResponse) MarshalJSON

func (v NullableAllObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*NullableAllObjectPermissionsResponse) Set

func (*NullableAllObjectPermissionsResponse) UnmarshalJSON

func (v *NullableAllObjectPermissionsResponse) UnmarshalJSON(src []byte) error

func (*NullableAllObjectPermissionsResponse) Unset

type NullableAlwaysAllowedPermission

type NullableAlwaysAllowedPermission struct {
	// contains filtered or unexported fields
}

func (NullableAlwaysAllowedPermission) Get

func (NullableAlwaysAllowedPermission) IsSet

func (NullableAlwaysAllowedPermission) MarshalJSON

func (v NullableAlwaysAllowedPermission) MarshalJSON() ([]byte, error)

func (*NullableAlwaysAllowedPermission) Set

func (*NullableAlwaysAllowedPermission) UnmarshalJSON

func (v *NullableAlwaysAllowedPermission) UnmarshalJSON(src []byte) error

func (*NullableAlwaysAllowedPermission) Unset

type NullableAlwaysAllowedPermissionRequest

type NullableAlwaysAllowedPermissionRequest struct {
	// contains filtered or unexported fields
}

func (NullableAlwaysAllowedPermissionRequest) Get

func (NullableAlwaysAllowedPermissionRequest) IsSet

func (NullableAlwaysAllowedPermissionRequest) MarshalJSON

func (v NullableAlwaysAllowedPermissionRequest) MarshalJSON() ([]byte, error)

func (*NullableAlwaysAllowedPermissionRequest) Set

func (*NullableAlwaysAllowedPermissionRequest) UnmarshalJSON

func (v *NullableAlwaysAllowedPermissionRequest) UnmarshalJSON(src []byte) error

func (*NullableAlwaysAllowedPermissionRequest) Unset

type NullableApiClassificationObject

type NullableApiClassificationObject struct {
	// contains filtered or unexported fields
}

func (NullableApiClassificationObject) Get

func (NullableApiClassificationObject) IsSet

func (NullableApiClassificationObject) MarshalJSON

func (v NullableApiClassificationObject) MarshalJSON() ([]byte, error)

func (*NullableApiClassificationObject) Set

func (*NullableApiClassificationObject) UnmarshalJSON

func (v *NullableApiClassificationObject) UnmarshalJSON(src []byte) error

func (*NullableApiClassificationObject) Unset

type NullableApiUsageData

type NullableApiUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableApiUsageData

func NewNullableApiUsageData(val *ApiUsageData) *NullableApiUsageData

func (NullableApiUsageData) Get

func (NullableApiUsageData) IsSet

func (v NullableApiUsageData) IsSet() bool

func (NullableApiUsageData) MarshalJSON

func (v NullableApiUsageData) MarshalJSON() ([]byte, error)

func (*NullableApiUsageData) Set

func (v *NullableApiUsageData) Set(val *ApiUsageData)

func (*NullableApiUsageData) UnmarshalJSON

func (v *NullableApiUsageData) UnmarshalJSON(src []byte) error

func (*NullableApiUsageData) Unset

func (v *NullableApiUsageData) Unset()

type NullableApiUsageReportResponse

type NullableApiUsageReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiUsageReportResponse) Get

func (NullableApiUsageReportResponse) IsSet

func (NullableApiUsageReportResponse) MarshalJSON

func (v NullableApiUsageReportResponse) MarshalJSON() ([]byte, error)

func (*NullableApiUsageReportResponse) Set

func (*NullableApiUsageReportResponse) UnmarshalJSON

func (v *NullableApiUsageReportResponse) UnmarshalJSON(src []byte) error

func (*NullableApiUsageReportResponse) Unset

func (v *NullableApiUsageReportResponse) Unset()

type NullableAppDataDSourceLinkSourceParameters

type NullableAppDataDSourceLinkSourceParameters struct {
	// contains filtered or unexported fields
}

func (NullableAppDataDSourceLinkSourceParameters) Get

func (NullableAppDataDSourceLinkSourceParameters) IsSet

func (NullableAppDataDSourceLinkSourceParameters) MarshalJSON

func (*NullableAppDataDSourceLinkSourceParameters) Set

func (*NullableAppDataDSourceLinkSourceParameters) UnmarshalJSON

func (v *NullableAppDataDSourceLinkSourceParameters) UnmarshalJSON(src []byte) error

func (*NullableAppDataDSourceLinkSourceParameters) Unset

type NullableAppDataDSourceLinkSourceParametersAllOf

type NullableAppDataDSourceLinkSourceParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAppDataDSourceLinkSourceParametersAllOf) Get

func (NullableAppDataDSourceLinkSourceParametersAllOf) IsSet

func (NullableAppDataDSourceLinkSourceParametersAllOf) MarshalJSON

func (*NullableAppDataDSourceLinkSourceParametersAllOf) Set

func (*NullableAppDataDSourceLinkSourceParametersAllOf) UnmarshalJSON

func (*NullableAppDataDSourceLinkSourceParametersAllOf) Unset

type NullableAuditLogsSummary

type NullableAuditLogsSummary struct {
	// contains filtered or unexported fields
}

func NewNullableAuditLogsSummary

func NewNullableAuditLogsSummary(val *AuditLogsSummary) *NullableAuditLogsSummary

func (NullableAuditLogsSummary) Get

func (NullableAuditLogsSummary) IsSet

func (v NullableAuditLogsSummary) IsSet() bool

func (NullableAuditLogsSummary) MarshalJSON

func (v NullableAuditLogsSummary) MarshalJSON() ([]byte, error)

func (*NullableAuditLogsSummary) Set

func (*NullableAuditLogsSummary) UnmarshalJSON

func (v *NullableAuditLogsSummary) UnmarshalJSON(src []byte) error

func (*NullableAuditLogsSummary) Unset

func (v *NullableAuditLogsSummary) Unset()

type NullableAuditLogsSummaryReportResponse

type NullableAuditLogsSummaryReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableAuditLogsSummaryReportResponse) Get

func (NullableAuditLogsSummaryReportResponse) IsSet

func (NullableAuditLogsSummaryReportResponse) MarshalJSON

func (v NullableAuditLogsSummaryReportResponse) MarshalJSON() ([]byte, error)

func (*NullableAuditLogsSummaryReportResponse) Set

func (*NullableAuditLogsSummaryReportResponse) UnmarshalJSON

func (v *NullableAuditLogsSummaryReportResponse) UnmarshalJSON(src []byte) error

func (*NullableAuditLogsSummaryReportResponse) Unset

type NullableAuditLogsSummaryTotals

type NullableAuditLogsSummaryTotals struct {
	// contains filtered or unexported fields
}

func (NullableAuditLogsSummaryTotals) Get

func (NullableAuditLogsSummaryTotals) IsSet

func (NullableAuditLogsSummaryTotals) MarshalJSON

func (v NullableAuditLogsSummaryTotals) MarshalJSON() ([]byte, error)

func (*NullableAuditLogsSummaryTotals) Set

func (*NullableAuditLogsSummaryTotals) UnmarshalJSON

func (v *NullableAuditLogsSummaryTotals) UnmarshalJSON(src []byte) error

func (*NullableAuditLogsSummaryTotals) Unset

func (v *NullableAuditLogsSummaryTotals) Unset()

type NullableBaseDSourceLinkSourceParameters

type NullableBaseDSourceLinkSourceParameters struct {
	// contains filtered or unexported fields
}

func (NullableBaseDSourceLinkSourceParameters) Get

func (NullableBaseDSourceLinkSourceParameters) IsSet

func (NullableBaseDSourceLinkSourceParameters) MarshalJSON

func (v NullableBaseDSourceLinkSourceParameters) MarshalJSON() ([]byte, error)

func (*NullableBaseDSourceLinkSourceParameters) Set

func (*NullableBaseDSourceLinkSourceParameters) UnmarshalJSON

func (v *NullableBaseDSourceLinkSourceParameters) UnmarshalJSON(src []byte) error

func (*NullableBaseDSourceLinkSourceParameters) Unset

type NullableBaseProvisionVDBParameters

type NullableBaseProvisionVDBParameters struct {
	// contains filtered or unexported fields
}

func (NullableBaseProvisionVDBParameters) Get

func (NullableBaseProvisionVDBParameters) IsSet

func (NullableBaseProvisionVDBParameters) MarshalJSON

func (v NullableBaseProvisionVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableBaseProvisionVDBParameters) Set

func (*NullableBaseProvisionVDBParameters) UnmarshalJSON

func (v *NullableBaseProvisionVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableBaseProvisionVDBParameters) Unset

type NullableBaseProvisionVDBParametersAllOf

type NullableBaseProvisionVDBParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableBaseProvisionVDBParametersAllOf) Get

func (NullableBaseProvisionVDBParametersAllOf) IsSet

func (NullableBaseProvisionVDBParametersAllOf) MarshalJSON

func (v NullableBaseProvisionVDBParametersAllOf) MarshalJSON() ([]byte, error)

func (*NullableBaseProvisionVDBParametersAllOf) Set

func (*NullableBaseProvisionVDBParametersAllOf) UnmarshalJSON

func (v *NullableBaseProvisionVDBParametersAllOf) UnmarshalJSON(src []byte) error

func (*NullableBaseProvisionVDBParametersAllOf) Unset

type NullableBookmark

type NullableBookmark struct {
	// contains filtered or unexported fields
}

func NewNullableBookmark

func NewNullableBookmark(val *Bookmark) *NullableBookmark

func (NullableBookmark) Get

func (v NullableBookmark) Get() *Bookmark

func (NullableBookmark) IsSet

func (v NullableBookmark) IsSet() bool

func (NullableBookmark) MarshalJSON

func (v NullableBookmark) MarshalJSON() ([]byte, error)

func (*NullableBookmark) Set

func (v *NullableBookmark) Set(val *Bookmark)

func (*NullableBookmark) UnmarshalJSON

func (v *NullableBookmark) UnmarshalJSON(src []byte) error

func (*NullableBookmark) Unset

func (v *NullableBookmark) Unset()

type NullableBookmarkCompatibleEnvironmentsResponse

type NullableBookmarkCompatibleEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableBookmarkCompatibleEnvironmentsResponse) Get

func (NullableBookmarkCompatibleEnvironmentsResponse) IsSet

func (NullableBookmarkCompatibleEnvironmentsResponse) MarshalJSON

func (*NullableBookmarkCompatibleEnvironmentsResponse) Set

func (*NullableBookmarkCompatibleEnvironmentsResponse) UnmarshalJSON

func (*NullableBookmarkCompatibleEnvironmentsResponse) Unset

type NullableBookmarkCompatibleRepositoryRequest

type NullableBookmarkCompatibleRepositoryRequest struct {
	// contains filtered or unexported fields
}

func (NullableBookmarkCompatibleRepositoryRequest) Get

func (NullableBookmarkCompatibleRepositoryRequest) IsSet

func (NullableBookmarkCompatibleRepositoryRequest) MarshalJSON

func (*NullableBookmarkCompatibleRepositoryRequest) Set

func (*NullableBookmarkCompatibleRepositoryRequest) UnmarshalJSON

func (v *NullableBookmarkCompatibleRepositoryRequest) UnmarshalJSON(src []byte) error

func (*NullableBookmarkCompatibleRepositoryRequest) Unset

type NullableBookmarkCreateParameters

type NullableBookmarkCreateParameters struct {
	// contains filtered or unexported fields
}

func (NullableBookmarkCreateParameters) Get

func (NullableBookmarkCreateParameters) IsSet

func (NullableBookmarkCreateParameters) MarshalJSON

func (v NullableBookmarkCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableBookmarkCreateParameters) Set

func (*NullableBookmarkCreateParameters) UnmarshalJSON

func (v *NullableBookmarkCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableBookmarkCreateParameters) 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 NullableCDB

type NullableCDB struct {
	// contains filtered or unexported fields
}

func NewNullableCDB

func NewNullableCDB(val *CDB) *NullableCDB

func (NullableCDB) Get

func (v NullableCDB) Get() *CDB

func (NullableCDB) IsSet

func (v NullableCDB) IsSet() bool

func (NullableCDB) MarshalJSON

func (v NullableCDB) MarshalJSON() ([]byte, error)

func (*NullableCDB) Set

func (v *NullableCDB) Set(val *CDB)

func (*NullableCDB) UnmarshalJSON

func (v *NullableCDB) UnmarshalJSON(src []byte) error

func (*NullableCDB) Unset

func (v *NullableCDB) Unset()

type NullableChangePasswordParameter

type NullableChangePasswordParameter struct {
	// contains filtered or unexported fields
}

func (NullableChangePasswordParameter) Get

func (NullableChangePasswordParameter) IsSet

func (NullableChangePasswordParameter) MarshalJSON

func (v NullableChangePasswordParameter) MarshalJSON() ([]byte, error)

func (*NullableChangePasswordParameter) Set

func (*NullableChangePasswordParameter) UnmarshalJSON

func (v *NullableChangePasswordParameter) UnmarshalJSON(src []byte) error

func (*NullableChangePasswordParameter) Unset

type NullableClusterNodeInstance

type NullableClusterNodeInstance struct {
	// contains filtered or unexported fields
}

func NewNullableClusterNodeInstance

func NewNullableClusterNodeInstance(val *ClusterNodeInstance) *NullableClusterNodeInstance

func (NullableClusterNodeInstance) Get

func (NullableClusterNodeInstance) IsSet

func (NullableClusterNodeInstance) MarshalJSON

func (v NullableClusterNodeInstance) MarshalJSON() ([]byte, error)

func (*NullableClusterNodeInstance) Set

func (*NullableClusterNodeInstance) UnmarshalJSON

func (v *NullableClusterNodeInstance) UnmarshalJSON(src []byte) error

func (*NullableClusterNodeInstance) Unset

func (v *NullableClusterNodeInstance) Unset()

type NullableConfigSettingsStg

type NullableConfigSettingsStg struct {
	// contains filtered or unexported fields
}

func NewNullableConfigSettingsStg

func NewNullableConfigSettingsStg(val *ConfigSettingsStg) *NullableConfigSettingsStg

func (NullableConfigSettingsStg) Get

func (NullableConfigSettingsStg) IsSet

func (v NullableConfigSettingsStg) IsSet() bool

func (NullableConfigSettingsStg) MarshalJSON

func (v NullableConfigSettingsStg) MarshalJSON() ([]byte, error)

func (*NullableConfigSettingsStg) Set

func (*NullableConfigSettingsStg) UnmarshalJSON

func (v *NullableConfigSettingsStg) UnmarshalJSON(src []byte) error

func (*NullableConfigSettingsStg) Unset

func (v *NullableConfigSettingsStg) Unset()

type NullableConnectivityCheckParameters

type NullableConnectivityCheckParameters struct {
	// contains filtered or unexported fields
}

func (NullableConnectivityCheckParameters) Get

func (NullableConnectivityCheckParameters) IsSet

func (NullableConnectivityCheckParameters) MarshalJSON

func (v NullableConnectivityCheckParameters) MarshalJSON() ([]byte, error)

func (*NullableConnectivityCheckParameters) Set

func (*NullableConnectivityCheckParameters) UnmarshalJSON

func (v *NullableConnectivityCheckParameters) UnmarshalJSON(src []byte) error

func (*NullableConnectivityCheckParameters) Unset

type NullableConnectivityCheckResponse

type NullableConnectivityCheckResponse struct {
	// contains filtered or unexported fields
}

func (NullableConnectivityCheckResponse) Get

func (NullableConnectivityCheckResponse) IsSet

func (NullableConnectivityCheckResponse) MarshalJSON

func (v NullableConnectivityCheckResponse) MarshalJSON() ([]byte, error)

func (*NullableConnectivityCheckResponse) Set

func (*NullableConnectivityCheckResponse) UnmarshalJSON

func (v *NullableConnectivityCheckResponse) UnmarshalJSON(src []byte) error

func (*NullableConnectivityCheckResponse) Unset

type NullableConnector

type NullableConnector struct {
	// contains filtered or unexported fields
}

func NewNullableConnector

func NewNullableConnector(val *Connector) *NullableConnector

func (NullableConnector) Get

func (v NullableConnector) Get() *Connector

func (NullableConnector) IsSet

func (v NullableConnector) IsSet() bool

func (NullableConnector) MarshalJSON

func (v NullableConnector) MarshalJSON() ([]byte, error)

func (*NullableConnector) Set

func (v *NullableConnector) Set(val *Connector)

func (*NullableConnector) UnmarshalJSON

func (v *NullableConnector) UnmarshalJSON(src []byte) error

func (*NullableConnector) Unset

func (v *NullableConnector) Unset()

type NullableConnectorTestResponse

type NullableConnectorTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableConnectorTestResponse) Get

func (NullableConnectorTestResponse) IsSet

func (NullableConnectorTestResponse) MarshalJSON

func (v NullableConnectorTestResponse) MarshalJSON() ([]byte, error)

func (*NullableConnectorTestResponse) Set

func (*NullableConnectorTestResponse) UnmarshalJSON

func (v *NullableConnectorTestResponse) UnmarshalJSON(src []byte) error

func (*NullableConnectorTestResponse) Unset

func (v *NullableConnectorTestResponse) Unset()

type NullableConnectorUpdateParameters

type NullableConnectorUpdateParameters struct {
	// contains filtered or unexported fields
}

func (NullableConnectorUpdateParameters) Get

func (NullableConnectorUpdateParameters) IsSet

func (NullableConnectorUpdateParameters) MarshalJSON

func (v NullableConnectorUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableConnectorUpdateParameters) Set

func (*NullableConnectorUpdateParameters) UnmarshalJSON

func (v *NullableConnectorUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableConnectorUpdateParameters) Unset

type NullableCopyMaskingJobParameters

type NullableCopyMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func (NullableCopyMaskingJobParameters) Get

func (NullableCopyMaskingJobParameters) IsSet

func (NullableCopyMaskingJobParameters) MarshalJSON

func (v NullableCopyMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableCopyMaskingJobParameters) Set

func (*NullableCopyMaskingJobParameters) UnmarshalJSON

func (v *NullableCopyMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableCopyMaskingJobParameters) Unset

type NullableCopyMaskingJobResponse

type NullableCopyMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableCopyMaskingJobResponse) Get

func (NullableCopyMaskingJobResponse) IsSet

func (NullableCopyMaskingJobResponse) MarshalJSON

func (v NullableCopyMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableCopyMaskingJobResponse) Set

func (*NullableCopyMaskingJobResponse) UnmarshalJSON

func (v *NullableCopyMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableCopyMaskingJobResponse) Unset

func (v *NullableCopyMaskingJobResponse) Unset()

type NullableCreateAlgorithmResponse

type NullableCreateAlgorithmResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateAlgorithmResponse) Get

func (NullableCreateAlgorithmResponse) IsSet

func (NullableCreateAlgorithmResponse) MarshalJSON

func (v NullableCreateAlgorithmResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateAlgorithmResponse) Set

func (*NullableCreateAlgorithmResponse) UnmarshalJSON

func (v *NullableCreateAlgorithmResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateAlgorithmResponse) Unset

type NullableCreateBookmarkResponse

type NullableCreateBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateBookmarkResponse) Get

func (NullableCreateBookmarkResponse) IsSet

func (NullableCreateBookmarkResponse) MarshalJSON

func (v NullableCreateBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateBookmarkResponse) Set

func (*NullableCreateBookmarkResponse) UnmarshalJSON

func (v *NullableCreateBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateBookmarkResponse) Unset

func (v *NullableCreateBookmarkResponse) Unset()

type NullableCreateDatabaseTemplateResponse

type NullableCreateDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateDatabaseTemplateResponse) Get

func (NullableCreateDatabaseTemplateResponse) IsSet

func (NullableCreateDatabaseTemplateResponse) MarshalJSON

func (v NullableCreateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateDatabaseTemplateResponse) Set

func (*NullableCreateDatabaseTemplateResponse) UnmarshalJSON

func (v *NullableCreateDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateDatabaseTemplateResponse) Unset

type NullableCreateEnvironmentResponse

type NullableCreateEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentResponse) Get

func (NullableCreateEnvironmentResponse) IsSet

func (NullableCreateEnvironmentResponse) MarshalJSON

func (v NullableCreateEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentResponse) Set

func (*NullableCreateEnvironmentResponse) UnmarshalJSON

func (v *NullableCreateEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentResponse) Unset

type NullableCreateEnvironmentUserResponse

type NullableCreateEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentUserResponse) Get

func (NullableCreateEnvironmentUserResponse) IsSet

func (NullableCreateEnvironmentUserResponse) MarshalJSON

func (v NullableCreateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentUserResponse) Set

func (*NullableCreateEnvironmentUserResponse) UnmarshalJSON

func (v *NullableCreateEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentUserResponse) Unset

type NullableCreateHostResponse

type NullableCreateHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateHostResponse

func NewNullableCreateHostResponse(val *CreateHostResponse) *NullableCreateHostResponse

func (NullableCreateHostResponse) Get

func (NullableCreateHostResponse) IsSet

func (v NullableCreateHostResponse) IsSet() bool

func (NullableCreateHostResponse) MarshalJSON

func (v NullableCreateHostResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateHostResponse) Set

func (*NullableCreateHostResponse) UnmarshalJSON

func (v *NullableCreateHostResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateHostResponse) Unset

func (v *NullableCreateHostResponse) Unset()

type NullableCreateRole

type NullableCreateRole struct {
	// contains filtered or unexported fields
}

func NewNullableCreateRole

func NewNullableCreateRole(val *CreateRole) *NullableCreateRole

func (NullableCreateRole) Get

func (v NullableCreateRole) Get() *CreateRole

func (NullableCreateRole) IsSet

func (v NullableCreateRole) IsSet() bool

func (NullableCreateRole) MarshalJSON

func (v NullableCreateRole) MarshalJSON() ([]byte, error)

func (*NullableCreateRole) Set

func (v *NullableCreateRole) Set(val *CreateRole)

func (*NullableCreateRole) UnmarshalJSON

func (v *NullableCreateRole) UnmarshalJSON(src []byte) error

func (*NullableCreateRole) Unset

func (v *NullableCreateRole) Unset()

type NullableCreateVDBGroupRequest

type NullableCreateVDBGroupRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateVDBGroupRequest) Get

func (NullableCreateVDBGroupRequest) IsSet

func (NullableCreateVDBGroupRequest) MarshalJSON

func (v NullableCreateVDBGroupRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateVDBGroupRequest) Set

func (*NullableCreateVDBGroupRequest) UnmarshalJSON

func (v *NullableCreateVDBGroupRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateVDBGroupRequest) Unset

func (v *NullableCreateVDBGroupRequest) Unset()

type NullableCreateVDBGroupResponse

type NullableCreateVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateVDBGroupResponse) Get

func (NullableCreateVDBGroupResponse) IsSet

func (NullableCreateVDBGroupResponse) MarshalJSON

func (v NullableCreateVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateVDBGroupResponse) Set

func (*NullableCreateVDBGroupResponse) UnmarshalJSON

func (v *NullableCreateVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateVDBGroupResponse) Unset

func (v *NullableCreateVDBGroupResponse) Unset()

type NullableCredentialsEnvVariable

type NullableCredentialsEnvVariable struct {
	// contains filtered or unexported fields
}

func (NullableCredentialsEnvVariable) Get

func (NullableCredentialsEnvVariable) IsSet

func (NullableCredentialsEnvVariable) MarshalJSON

func (v NullableCredentialsEnvVariable) MarshalJSON() ([]byte, error)

func (*NullableCredentialsEnvVariable) Set

func (*NullableCredentialsEnvVariable) UnmarshalJSON

func (v *NullableCredentialsEnvVariable) UnmarshalJSON(src []byte) error

func (*NullableCredentialsEnvVariable) Unset

func (v *NullableCredentialsEnvVariable) Unset()

type NullableDSource

type NullableDSource struct {
	// contains filtered or unexported fields
}

func NewNullableDSource

func NewNullableDSource(val *DSource) *NullableDSource

func (NullableDSource) Get

func (v NullableDSource) Get() *DSource

func (NullableDSource) IsSet

func (v NullableDSource) IsSet() bool

func (NullableDSource) MarshalJSON

func (v NullableDSource) MarshalJSON() ([]byte, error)

func (*NullableDSource) Set

func (v *NullableDSource) Set(val *DSource)

func (*NullableDSource) UnmarshalJSON

func (v *NullableDSource) UnmarshalJSON(src []byte) error

func (*NullableDSource) Unset

func (v *NullableDSource) Unset()

type NullableDSourceConsumptionData

type NullableDSourceConsumptionData struct {
	// contains filtered or unexported fields
}

func (NullableDSourceConsumptionData) Get

func (NullableDSourceConsumptionData) IsSet

func (NullableDSourceConsumptionData) MarshalJSON

func (v NullableDSourceConsumptionData) MarshalJSON() ([]byte, error)

func (*NullableDSourceConsumptionData) Set

func (*NullableDSourceConsumptionData) UnmarshalJSON

func (v *NullableDSourceConsumptionData) UnmarshalJSON(src []byte) error

func (*NullableDSourceConsumptionData) Unset

func (v *NullableDSourceConsumptionData) Unset()

type NullableDSourceConsumptionReportResponse

type NullableDSourceConsumptionReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableDSourceConsumptionReportResponse) Get

func (NullableDSourceConsumptionReportResponse) IsSet

func (NullableDSourceConsumptionReportResponse) MarshalJSON

func (*NullableDSourceConsumptionReportResponse) Set

func (*NullableDSourceConsumptionReportResponse) UnmarshalJSON

func (v *NullableDSourceConsumptionReportResponse) UnmarshalJSON(src []byte) error

func (*NullableDSourceConsumptionReportResponse) Unset

type NullableDSourceSnapshotParameters

type NullableDSourceSnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableDSourceSnapshotParameters) Get

func (NullableDSourceSnapshotParameters) IsSet

func (NullableDSourceSnapshotParameters) MarshalJSON

func (v NullableDSourceSnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableDSourceSnapshotParameters) Set

func (*NullableDSourceSnapshotParameters) UnmarshalJSON

func (v *NullableDSourceSnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableDSourceSnapshotParameters) Unset

type NullableDSourceUsageData

type NullableDSourceUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceUsageData

func NewNullableDSourceUsageData(val *DSourceUsageData) *NullableDSourceUsageData

func (NullableDSourceUsageData) Get

func (NullableDSourceUsageData) IsSet

func (v NullableDSourceUsageData) IsSet() bool

func (NullableDSourceUsageData) MarshalJSON

func (v NullableDSourceUsageData) MarshalJSON() ([]byte, error)

func (*NullableDSourceUsageData) Set

func (*NullableDSourceUsageData) UnmarshalJSON

func (v *NullableDSourceUsageData) UnmarshalJSON(src []byte) error

func (*NullableDSourceUsageData) Unset

func (v *NullableDSourceUsageData) Unset()

type NullableDSourceUsageReportResponse

type NullableDSourceUsageReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableDSourceUsageReportResponse) Get

func (NullableDSourceUsageReportResponse) IsSet

func (NullableDSourceUsageReportResponse) MarshalJSON

func (v NullableDSourceUsageReportResponse) MarshalJSON() ([]byte, error)

func (*NullableDSourceUsageReportResponse) Set

func (*NullableDSourceUsageReportResponse) UnmarshalJSON

func (v *NullableDSourceUsageReportResponse) UnmarshalJSON(src []byte) error

func (*NullableDSourceUsageReportResponse) Unset

type NullableDataPointByLocationParameters

type NullableDataPointByLocationParameters struct {
	// contains filtered or unexported fields
}

func (NullableDataPointByLocationParameters) Get

func (NullableDataPointByLocationParameters) IsSet

func (NullableDataPointByLocationParameters) MarshalJSON

func (v NullableDataPointByLocationParameters) MarshalJSON() ([]byte, error)

func (*NullableDataPointByLocationParameters) Set

func (*NullableDataPointByLocationParameters) UnmarshalJSON

func (v *NullableDataPointByLocationParameters) UnmarshalJSON(src []byte) error

func (*NullableDataPointByLocationParameters) Unset

type NullableDataPointBySnapshotParameters

type NullableDataPointBySnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableDataPointBySnapshotParameters) Get

func (NullableDataPointBySnapshotParameters) IsSet

func (NullableDataPointBySnapshotParameters) MarshalJSON

func (v NullableDataPointBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableDataPointBySnapshotParameters) Set

func (*NullableDataPointBySnapshotParameters) UnmarshalJSON

func (v *NullableDataPointBySnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableDataPointBySnapshotParameters) Unset

type NullableDataPointByTimestampParameters

type NullableDataPointByTimestampParameters struct {
	// contains filtered or unexported fields
}

func (NullableDataPointByTimestampParameters) Get

func (NullableDataPointByTimestampParameters) IsSet

func (NullableDataPointByTimestampParameters) MarshalJSON

func (v NullableDataPointByTimestampParameters) MarshalJSON() ([]byte, error)

func (*NullableDataPointByTimestampParameters) Set

func (*NullableDataPointByTimestampParameters) UnmarshalJSON

func (v *NullableDataPointByTimestampParameters) UnmarshalJSON(src []byte) error

func (*NullableDataPointByTimestampParameters) Unset

type NullableDataPointFromBookmarkParameters

type NullableDataPointFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableDataPointFromBookmarkParameters) Get

func (NullableDataPointFromBookmarkParameters) IsSet

func (NullableDataPointFromBookmarkParameters) MarshalJSON

func (v NullableDataPointFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*NullableDataPointFromBookmarkParameters) Set

func (*NullableDataPointFromBookmarkParameters) UnmarshalJSON

func (v *NullableDataPointFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableDataPointFromBookmarkParameters) Unset

type NullableDatabaseConnectivityCheckParameters

type NullableDatabaseConnectivityCheckParameters struct {
	// contains filtered or unexported fields
}

func (NullableDatabaseConnectivityCheckParameters) Get

func (NullableDatabaseConnectivityCheckParameters) IsSet

func (NullableDatabaseConnectivityCheckParameters) MarshalJSON

func (*NullableDatabaseConnectivityCheckParameters) Set

func (*NullableDatabaseConnectivityCheckParameters) UnmarshalJSON

func (v *NullableDatabaseConnectivityCheckParameters) UnmarshalJSON(src []byte) error

func (*NullableDatabaseConnectivityCheckParameters) Unset

type NullableDatabaseTemplate

type NullableDatabaseTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseTemplate

func NewNullableDatabaseTemplate(val *DatabaseTemplate) *NullableDatabaseTemplate

func (NullableDatabaseTemplate) Get

func (NullableDatabaseTemplate) IsSet

func (v NullableDatabaseTemplate) IsSet() bool

func (NullableDatabaseTemplate) MarshalJSON

func (v NullableDatabaseTemplate) MarshalJSON() ([]byte, error)

func (*NullableDatabaseTemplate) Set

func (*NullableDatabaseTemplate) UnmarshalJSON

func (v *NullableDatabaseTemplate) UnmarshalJSON(src []byte) error

func (*NullableDatabaseTemplate) Unset

func (v *NullableDatabaseTemplate) Unset()

type NullableDatabaseTemplateCreateParameters

type NullableDatabaseTemplateCreateParameters struct {
	// contains filtered or unexported fields
}

func (NullableDatabaseTemplateCreateParameters) Get

func (NullableDatabaseTemplateCreateParameters) IsSet

func (NullableDatabaseTemplateCreateParameters) MarshalJSON

func (*NullableDatabaseTemplateCreateParameters) Set

func (*NullableDatabaseTemplateCreateParameters) UnmarshalJSON

func (v *NullableDatabaseTemplateCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableDatabaseTemplateCreateParameters) Unset

type NullableDatasetGroup

type NullableDatasetGroup struct {
	// contains filtered or unexported fields
}

func NewNullableDatasetGroup

func NewNullableDatasetGroup(val *DatasetGroup) *NullableDatasetGroup

func (NullableDatasetGroup) Get

func (NullableDatasetGroup) IsSet

func (v NullableDatasetGroup) IsSet() bool

func (NullableDatasetGroup) MarshalJSON

func (v NullableDatasetGroup) MarshalJSON() ([]byte, error)

func (*NullableDatasetGroup) Set

func (v *NullableDatasetGroup) Set(val *DatasetGroup)

func (*NullableDatasetGroup) UnmarshalJSON

func (v *NullableDatasetGroup) UnmarshalJSON(src []byte) error

func (*NullableDatasetGroup) Unset

func (v *NullableDatasetGroup) Unset()

type NullableDeleteDSourceRequest

type NullableDeleteDSourceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteDSourceRequest

func NewNullableDeleteDSourceRequest(val *DeleteDSourceRequest) *NullableDeleteDSourceRequest

func (NullableDeleteDSourceRequest) Get

func (NullableDeleteDSourceRequest) IsSet

func (NullableDeleteDSourceRequest) MarshalJSON

func (v NullableDeleteDSourceRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteDSourceRequest) Set

func (*NullableDeleteDSourceRequest) UnmarshalJSON

func (v *NullableDeleteDSourceRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteDSourceRequest) Unset

func (v *NullableDeleteDSourceRequest) Unset()

type NullableDeleteDatabaseTemplateResponse

type NullableDeleteDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteDatabaseTemplateResponse) Get

func (NullableDeleteDatabaseTemplateResponse) IsSet

func (NullableDeleteDatabaseTemplateResponse) MarshalJSON

func (v NullableDeleteDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteDatabaseTemplateResponse) Set

func (*NullableDeleteDatabaseTemplateResponse) UnmarshalJSON

func (v *NullableDeleteDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteDatabaseTemplateResponse) Unset

type NullableDeleteEngineResponse

type NullableDeleteEngineResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteEngineResponse

func NewNullableDeleteEngineResponse(val *DeleteEngineResponse) *NullableDeleteEngineResponse

func (NullableDeleteEngineResponse) Get

func (NullableDeleteEngineResponse) IsSet

func (NullableDeleteEngineResponse) MarshalJSON

func (v NullableDeleteEngineResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteEngineResponse) Set

func (*NullableDeleteEngineResponse) UnmarshalJSON

func (v *NullableDeleteEngineResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteEngineResponse) Unset

func (v *NullableDeleteEngineResponse) Unset()

type NullableDeleteEnvironmentResponse

type NullableDeleteEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironmentResponse) Get

func (NullableDeleteEnvironmentResponse) IsSet

func (NullableDeleteEnvironmentResponse) MarshalJSON

func (v NullableDeleteEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironmentResponse) Set

func (*NullableDeleteEnvironmentResponse) UnmarshalJSON

func (v *NullableDeleteEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironmentResponse) Unset

type NullableDeleteEnvironmentUserResponse

type NullableDeleteEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironmentUserResponse) Get

func (NullableDeleteEnvironmentUserResponse) IsSet

func (NullableDeleteEnvironmentUserResponse) MarshalJSON

func (v NullableDeleteEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironmentUserResponse) Set

func (*NullableDeleteEnvironmentUserResponse) UnmarshalJSON

func (v *NullableDeleteEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironmentUserResponse) Unset

type NullableDeleteHostResponse

type NullableDeleteHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteHostResponse

func NewNullableDeleteHostResponse(val *DeleteHostResponse) *NullableDeleteHostResponse

func (NullableDeleteHostResponse) Get

func (NullableDeleteHostResponse) IsSet

func (v NullableDeleteHostResponse) IsSet() bool

func (NullableDeleteHostResponse) MarshalJSON

func (v NullableDeleteHostResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteHostResponse) Set

func (*NullableDeleteHostResponse) UnmarshalJSON

func (v *NullableDeleteHostResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteHostResponse) Unset

func (v *NullableDeleteHostResponse) Unset()

type NullableDeleteMaskingJobResponse

type NullableDeleteMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteMaskingJobResponse) Get

func (NullableDeleteMaskingJobResponse) IsSet

func (NullableDeleteMaskingJobResponse) MarshalJSON

func (v NullableDeleteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteMaskingJobResponse) Set

func (*NullableDeleteMaskingJobResponse) UnmarshalJSON

func (v *NullableDeleteMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteMaskingJobResponse) Unset

type NullableDeleteScopeObjectTags

type NullableDeleteScopeObjectTags struct {
	// contains filtered or unexported fields
}

func (NullableDeleteScopeObjectTags) Get

func (NullableDeleteScopeObjectTags) IsSet

func (NullableDeleteScopeObjectTags) MarshalJSON

func (v NullableDeleteScopeObjectTags) MarshalJSON() ([]byte, error)

func (*NullableDeleteScopeObjectTags) Set

func (*NullableDeleteScopeObjectTags) UnmarshalJSON

func (v *NullableDeleteScopeObjectTags) UnmarshalJSON(src []byte) error

func (*NullableDeleteScopeObjectTags) Unset

func (v *NullableDeleteScopeObjectTags) Unset()

type NullableDeleteScopedObjectItem

type NullableDeleteScopedObjectItem struct {
	// contains filtered or unexported fields
}

func (NullableDeleteScopedObjectItem) Get

func (NullableDeleteScopedObjectItem) IsSet

func (NullableDeleteScopedObjectItem) MarshalJSON

func (v NullableDeleteScopedObjectItem) MarshalJSON() ([]byte, error)

func (*NullableDeleteScopedObjectItem) Set

func (*NullableDeleteScopedObjectItem) UnmarshalJSON

func (v *NullableDeleteScopedObjectItem) UnmarshalJSON(src []byte) error

func (*NullableDeleteScopedObjectItem) Unset

func (v *NullableDeleteScopedObjectItem) Unset()

type NullableDeleteSnapshotResponse

type NullableDeleteSnapshotResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteSnapshotResponse) Get

func (NullableDeleteSnapshotResponse) IsSet

func (NullableDeleteSnapshotResponse) MarshalJSON

func (v NullableDeleteSnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteSnapshotResponse) Set

func (*NullableDeleteSnapshotResponse) UnmarshalJSON

func (v *NullableDeleteSnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteSnapshotResponse) Unset

func (v *NullableDeleteSnapshotResponse) Unset()

type NullableDeleteTag

type NullableDeleteTag struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteTag

func NewNullableDeleteTag(val *DeleteTag) *NullableDeleteTag

func (NullableDeleteTag) Get

func (v NullableDeleteTag) Get() *DeleteTag

func (NullableDeleteTag) IsSet

func (v NullableDeleteTag) IsSet() bool

func (NullableDeleteTag) MarshalJSON

func (v NullableDeleteTag) MarshalJSON() ([]byte, error)

func (*NullableDeleteTag) Set

func (v *NullableDeleteTag) Set(val *DeleteTag)

func (*NullableDeleteTag) UnmarshalJSON

func (v *NullableDeleteTag) UnmarshalJSON(src []byte) error

func (*NullableDeleteTag) Unset

func (v *NullableDeleteTag) Unset()

type NullableDeleteTimeflowResponse

type NullableDeleteTimeflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteTimeflowResponse) Get

func (NullableDeleteTimeflowResponse) IsSet

func (NullableDeleteTimeflowResponse) MarshalJSON

func (v NullableDeleteTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteTimeflowResponse) Set

func (*NullableDeleteTimeflowResponse) UnmarshalJSON

func (v *NullableDeleteTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteTimeflowResponse) Unset

func (v *NullableDeleteTimeflowResponse) Unset()

type NullableDeleteVDBParameters

type NullableDeleteVDBParameters struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteVDBParameters

func NewNullableDeleteVDBParameters(val *DeleteVDBParameters) *NullableDeleteVDBParameters

func (NullableDeleteVDBParameters) Get

func (NullableDeleteVDBParameters) IsSet

func (NullableDeleteVDBParameters) MarshalJSON

func (v NullableDeleteVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableDeleteVDBParameters) Set

func (*NullableDeleteVDBParameters) UnmarshalJSON

func (v *NullableDeleteVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableDeleteVDBParameters) Unset

func (v *NullableDeleteVDBParameters) Unset()

type NullableDeleteVDBResponse

type NullableDeleteVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteVDBResponse

func NewNullableDeleteVDBResponse(val *DeleteVDBResponse) *NullableDeleteVDBResponse

func (NullableDeleteVDBResponse) Get

func (NullableDeleteVDBResponse) IsSet

func (v NullableDeleteVDBResponse) IsSet() bool

func (NullableDeleteVDBResponse) MarshalJSON

func (v NullableDeleteVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteVDBResponse) Set

func (*NullableDeleteVDBResponse) UnmarshalJSON

func (v *NullableDeleteVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteVDBResponse) Unset

func (v *NullableDeleteVDBResponse) Unset()

type NullableDisableEnvironmentResponse

type NullableDisableEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableDisableEnvironmentResponse) Get

func (NullableDisableEnvironmentResponse) IsSet

func (NullableDisableEnvironmentResponse) MarshalJSON

func (v NullableDisableEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableDisableEnvironmentResponse) Set

func (*NullableDisableEnvironmentResponse) UnmarshalJSON

func (v *NullableDisableEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableDisableEnvironmentResponse) Unset

type NullableDisableVDBParameters

type NullableDisableVDBParameters struct {
	// contains filtered or unexported fields
}

func NewNullableDisableVDBParameters

func NewNullableDisableVDBParameters(val *DisableVDBParameters) *NullableDisableVDBParameters

func (NullableDisableVDBParameters) Get

func (NullableDisableVDBParameters) IsSet

func (NullableDisableVDBParameters) MarshalJSON

func (v NullableDisableVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableDisableVDBParameters) Set

func (*NullableDisableVDBParameters) UnmarshalJSON

func (v *NullableDisableVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableDisableVDBParameters) Unset

func (v *NullableDisableVDBParameters) Unset()

type NullableDisableVDBResponse

type NullableDisableVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDisableVDBResponse

func NewNullableDisableVDBResponse(val *DisableVDBResponse) *NullableDisableVDBResponse

func (NullableDisableVDBResponse) Get

func (NullableDisableVDBResponse) IsSet

func (v NullableDisableVDBResponse) IsSet() bool

func (NullableDisableVDBResponse) MarshalJSON

func (v NullableDisableVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableDisableVDBResponse) Set

func (*NullableDisableVDBResponse) UnmarshalJSON

func (v *NullableDisableVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableDisableVDBResponse) Unset

func (v *NullableDisableVDBResponse) Unset()

type NullableDomain

type NullableDomain struct {
	// contains filtered or unexported fields
}

func NewNullableDomain

func NewNullableDomain(val *Domain) *NullableDomain

func (NullableDomain) Get

func (v NullableDomain) Get() *Domain

func (NullableDomain) IsSet

func (v NullableDomain) IsSet() bool

func (NullableDomain) MarshalJSON

func (v NullableDomain) MarshalJSON() ([]byte, error)

func (*NullableDomain) Set

func (v *NullableDomain) Set(val *Domain)

func (*NullableDomain) UnmarshalJSON

func (v *NullableDomain) UnmarshalJSON(src []byte) error

func (*NullableDomain) Unset

func (v *NullableDomain) Unset()

type NullableEffectiveScope

type NullableEffectiveScope struct {
	// contains filtered or unexported fields
}

func NewNullableEffectiveScope

func NewNullableEffectiveScope(val *EffectiveScope) *NullableEffectiveScope

func (NullableEffectiveScope) Get

func (NullableEffectiveScope) IsSet

func (v NullableEffectiveScope) IsSet() bool

func (NullableEffectiveScope) MarshalJSON

func (v NullableEffectiveScope) MarshalJSON() ([]byte, error)

func (*NullableEffectiveScope) Set

func (*NullableEffectiveScope) UnmarshalJSON

func (v *NullableEffectiveScope) UnmarshalJSON(src []byte) error

func (*NullableEffectiveScope) Unset

func (v *NullableEffectiveScope) Unset()

type NullableEnableEnvironmentResponse

type NullableEnableEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableEnableEnvironmentResponse) Get

func (NullableEnableEnvironmentResponse) IsSet

func (NullableEnableEnvironmentResponse) MarshalJSON

func (v NullableEnableEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableEnableEnvironmentResponse) Set

func (*NullableEnableEnvironmentResponse) UnmarshalJSON

func (v *NullableEnableEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableEnableEnvironmentResponse) Unset

type NullableEnableScaleTestingRequest

type NullableEnableScaleTestingRequest struct {
	// contains filtered or unexported fields
}

func (NullableEnableScaleTestingRequest) Get

func (NullableEnableScaleTestingRequest) IsSet

func (NullableEnableScaleTestingRequest) MarshalJSON

func (v NullableEnableScaleTestingRequest) MarshalJSON() ([]byte, error)

func (*NullableEnableScaleTestingRequest) Set

func (*NullableEnableScaleTestingRequest) UnmarshalJSON

func (v *NullableEnableScaleTestingRequest) UnmarshalJSON(src []byte) error

func (*NullableEnableScaleTestingRequest) Unset

type NullableEnableVDBParameters

type NullableEnableVDBParameters struct {
	// contains filtered or unexported fields
}

func NewNullableEnableVDBParameters

func NewNullableEnableVDBParameters(val *EnableVDBParameters) *NullableEnableVDBParameters

func (NullableEnableVDBParameters) Get

func (NullableEnableVDBParameters) IsSet

func (NullableEnableVDBParameters) MarshalJSON

func (v NullableEnableVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableEnableVDBParameters) Set

func (*NullableEnableVDBParameters) UnmarshalJSON

func (v *NullableEnableVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableEnableVDBParameters) Unset

func (v *NullableEnableVDBParameters) Unset()

type NullableEnableVDBResponse

type NullableEnableVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEnableVDBResponse

func NewNullableEnableVDBResponse(val *EnableVDBResponse) *NullableEnableVDBResponse

func (NullableEnableVDBResponse) Get

func (NullableEnableVDBResponse) IsSet

func (v NullableEnableVDBResponse) IsSet() bool

func (NullableEnableVDBResponse) MarshalJSON

func (v NullableEnableVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableEnableVDBResponse) Set

func (*NullableEnableVDBResponse) UnmarshalJSON

func (v *NullableEnableVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableEnableVDBResponse) Unset

func (v *NullableEnableVDBResponse) Unset()

type NullableEngine

type NullableEngine struct {
	// contains filtered or unexported fields
}

func NewNullableEngine

func NewNullableEngine(val *Engine) *NullableEngine

func (NullableEngine) Get

func (v NullableEngine) Get() *Engine

func (NullableEngine) IsSet

func (v NullableEngine) IsSet() bool

func (NullableEngine) MarshalJSON

func (v NullableEngine) MarshalJSON() ([]byte, error)

func (*NullableEngine) Set

func (v *NullableEngine) Set(val *Engine)

func (*NullableEngine) UnmarshalJSON

func (v *NullableEngine) UnmarshalJSON(src []byte) error

func (*NullableEngine) Unset

func (v *NullableEngine) Unset()

type NullableEngineIdBody

type NullableEngineIdBody struct {
	// contains filtered or unexported fields
}

func NewNullableEngineIdBody

func NewNullableEngineIdBody(val *EngineIdBody) *NullableEngineIdBody

func (NullableEngineIdBody) Get

func (NullableEngineIdBody) IsSet

func (v NullableEngineIdBody) IsSet() bool

func (NullableEngineIdBody) MarshalJSON

func (v NullableEngineIdBody) MarshalJSON() ([]byte, error)

func (*NullableEngineIdBody) Set

func (v *NullableEngineIdBody) Set(val *EngineIdBody)

func (*NullableEngineIdBody) UnmarshalJSON

func (v *NullableEngineIdBody) UnmarshalJSON(src []byte) error

func (*NullableEngineIdBody) Unset

func (v *NullableEngineIdBody) Unset()

type NullableEngineRegistrationParameter

type NullableEngineRegistrationParameter struct {
	// contains filtered or unexported fields
}

func (NullableEngineRegistrationParameter) Get

func (NullableEngineRegistrationParameter) IsSet

func (NullableEngineRegistrationParameter) MarshalJSON

func (v NullableEngineRegistrationParameter) MarshalJSON() ([]byte, error)

func (*NullableEngineRegistrationParameter) Set

func (*NullableEngineRegistrationParameter) UnmarshalJSON

func (v *NullableEngineRegistrationParameter) UnmarshalJSON(src []byte) error

func (*NullableEngineRegistrationParameter) Unset

type NullableEnvironment

type NullableEnvironment struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironment

func NewNullableEnvironment(val *Environment) *NullableEnvironment

func (NullableEnvironment) Get

func (NullableEnvironment) IsSet

func (v NullableEnvironment) IsSet() bool

func (NullableEnvironment) MarshalJSON

func (v NullableEnvironment) MarshalJSON() ([]byte, error)

func (*NullableEnvironment) Set

func (v *NullableEnvironment) Set(val *Environment)

func (*NullableEnvironment) UnmarshalJSON

func (v *NullableEnvironment) UnmarshalJSON(src []byte) error

func (*NullableEnvironment) Unset

func (v *NullableEnvironment) Unset()

type NullableEnvironmentCreateParameters

type NullableEnvironmentCreateParameters struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentCreateParameters) Get

func (NullableEnvironmentCreateParameters) IsSet

func (NullableEnvironmentCreateParameters) MarshalJSON

func (v NullableEnvironmentCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentCreateParameters) Set

func (*NullableEnvironmentCreateParameters) UnmarshalJSON

func (v *NullableEnvironmentCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentCreateParameters) Unset

type NullableEnvironmentRepository

type NullableEnvironmentRepository struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentRepository) Get

func (NullableEnvironmentRepository) IsSet

func (NullableEnvironmentRepository) MarshalJSON

func (v NullableEnvironmentRepository) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentRepository) Set

func (*NullableEnvironmentRepository) UnmarshalJSON

func (v *NullableEnvironmentRepository) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentRepository) Unset

func (v *NullableEnvironmentRepository) Unset()

type NullableEnvironmentRepositoryAllOf

type NullableEnvironmentRepositoryAllOf struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentRepositoryAllOf) Get

func (NullableEnvironmentRepositoryAllOf) IsSet

func (NullableEnvironmentRepositoryAllOf) MarshalJSON

func (v NullableEnvironmentRepositoryAllOf) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentRepositoryAllOf) Set

func (*NullableEnvironmentRepositoryAllOf) UnmarshalJSON

func (v *NullableEnvironmentRepositoryAllOf) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentRepositoryAllOf) Unset

type NullableEnvironmentUpdateParameters

type NullableEnvironmentUpdateParameters struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentUpdateParameters) Get

func (NullableEnvironmentUpdateParameters) IsSet

func (NullableEnvironmentUpdateParameters) MarshalJSON

func (v NullableEnvironmentUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUpdateParameters) Set

func (*NullableEnvironmentUpdateParameters) UnmarshalJSON

func (v *NullableEnvironmentUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUpdateParameters) Unset

type NullableEnvironmentUser

type NullableEnvironmentUser struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentUser

func NewNullableEnvironmentUser(val *EnvironmentUser) *NullableEnvironmentUser

func (NullableEnvironmentUser) Get

func (NullableEnvironmentUser) IsSet

func (v NullableEnvironmentUser) IsSet() bool

func (NullableEnvironmentUser) MarshalJSON

func (v NullableEnvironmentUser) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUser) Set

func (*NullableEnvironmentUser) UnmarshalJSON

func (v *NullableEnvironmentUser) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUser) Unset

func (v *NullableEnvironmentUser) Unset()

type NullableEnvironmentUserParams

type NullableEnvironmentUserParams struct {
	// contains filtered or unexported fields
}

func (NullableEnvironmentUserParams) Get

func (NullableEnvironmentUserParams) IsSet

func (NullableEnvironmentUserParams) MarshalJSON

func (v NullableEnvironmentUserParams) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUserParams) Set

func (*NullableEnvironmentUserParams) UnmarshalJSON

func (v *NullableEnvironmentUserParams) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUserParams) Unset

func (v *NullableEnvironmentUserParams) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type 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 NullableExecuteMaskingJobParameters

type NullableExecuteMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func (NullableExecuteMaskingJobParameters) Get

func (NullableExecuteMaskingJobParameters) IsSet

func (NullableExecuteMaskingJobParameters) MarshalJSON

func (v NullableExecuteMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableExecuteMaskingJobParameters) Set

func (*NullableExecuteMaskingJobParameters) UnmarshalJSON

func (v *NullableExecuteMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableExecuteMaskingJobParameters) Unset

type NullableExecuteMaskingJobResponse

type NullableExecuteMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableExecuteMaskingJobResponse) Get

func (NullableExecuteMaskingJobResponse) IsSet

func (NullableExecuteMaskingJobResponse) MarshalJSON

func (v NullableExecuteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableExecuteMaskingJobResponse) Set

func (*NullableExecuteMaskingJobResponse) UnmarshalJSON

func (v *NullableExecuteMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableExecuteMaskingJobResponse) Unset

type NullableExecution

type NullableExecution struct {
	// contains filtered or unexported fields
}

func NewNullableExecution

func NewNullableExecution(val *Execution) *NullableExecution

func (NullableExecution) Get

func (v NullableExecution) Get() *Execution

func (NullableExecution) IsSet

func (v NullableExecution) IsSet() bool

func (NullableExecution) MarshalJSON

func (v NullableExecution) MarshalJSON() ([]byte, error)

func (*NullableExecution) Set

func (v *NullableExecution) Set(val *Execution)

func (*NullableExecution) UnmarshalJSON

func (v *NullableExecution) UnmarshalJSON(src []byte) error

func (*NullableExecution) Unset

func (v *NullableExecution) Unset()

type NullableExecutionCancelParameters

type NullableExecutionCancelParameters struct {
	// contains filtered or unexported fields
}

func (NullableExecutionCancelParameters) Get

func (NullableExecutionCancelParameters) IsSet

func (NullableExecutionCancelParameters) MarshalJSON

func (v NullableExecutionCancelParameters) MarshalJSON() ([]byte, error)

func (*NullableExecutionCancelParameters) Set

func (*NullableExecutionCancelParameters) UnmarshalJSON

func (v *NullableExecutionCancelParameters) UnmarshalJSON(src []byte) error

func (*NullableExecutionCancelParameters) Unset

type NullableExecutionEvent

type NullableExecutionEvent struct {
	// contains filtered or unexported fields
}

func NewNullableExecutionEvent

func NewNullableExecutionEvent(val *ExecutionEvent) *NullableExecutionEvent

func (NullableExecutionEvent) Get

func (NullableExecutionEvent) IsSet

func (v NullableExecutionEvent) IsSet() bool

func (NullableExecutionEvent) MarshalJSON

func (v NullableExecutionEvent) MarshalJSON() ([]byte, error)

func (*NullableExecutionEvent) Set

func (*NullableExecutionEvent) UnmarshalJSON

func (v *NullableExecutionEvent) UnmarshalJSON(src []byte) error

func (*NullableExecutionEvent) Unset

func (v *NullableExecutionEvent) Unset()

type NullableExecutionLog

type NullableExecutionLog struct {
	// contains filtered or unexported fields
}

func NewNullableExecutionLog

func NewNullableExecutionLog(val *ExecutionLog) *NullableExecutionLog

func (NullableExecutionLog) Get

func (NullableExecutionLog) IsSet

func (v NullableExecutionLog) IsSet() bool

func (NullableExecutionLog) MarshalJSON

func (v NullableExecutionLog) MarshalJSON() ([]byte, error)

func (*NullableExecutionLog) Set

func (v *NullableExecutionLog) Set(val *ExecutionLog)

func (*NullableExecutionLog) UnmarshalJSON

func (v *NullableExecutionLog) UnmarshalJSON(src []byte) error

func (*NullableExecutionLog) Unset

func (v *NullableExecutionLog) Unset()

type NullableFindByLocationResponse

type NullableFindByLocationResponse struct {
	// contains filtered or unexported fields
}

func (NullableFindByLocationResponse) Get

func (NullableFindByLocationResponse) IsSet

func (NullableFindByLocationResponse) MarshalJSON

func (v NullableFindByLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableFindByLocationResponse) Set

func (*NullableFindByLocationResponse) UnmarshalJSON

func (v *NullableFindByLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableFindByLocationResponse) Unset

func (v *NullableFindByLocationResponse) Unset()

type NullableFindByTimestampResponse

type NullableFindByTimestampResponse struct {
	// contains filtered or unexported fields
}

func (NullableFindByTimestampResponse) Get

func (NullableFindByTimestampResponse) IsSet

func (NullableFindByTimestampResponse) MarshalJSON

func (v NullableFindByTimestampResponse) MarshalJSON() ([]byte, error)

func (*NullableFindByTimestampResponse) Set

func (*NullableFindByTimestampResponse) UnmarshalJSON

func (v *NullableFindByTimestampResponse) UnmarshalJSON(src []byte) error

func (*NullableFindByTimestampResponse) 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 NullableGlobalProperties

type NullableGlobalProperties struct {
	// contains filtered or unexported fields
}

func NewNullableGlobalProperties

func NewNullableGlobalProperties(val *GlobalProperties) *NullableGlobalProperties

func (NullableGlobalProperties) Get

func (NullableGlobalProperties) IsSet

func (v NullableGlobalProperties) IsSet() bool

func (NullableGlobalProperties) MarshalJSON

func (v NullableGlobalProperties) MarshalJSON() ([]byte, error)

func (*NullableGlobalProperties) Set

func (*NullableGlobalProperties) UnmarshalJSON

func (v *NullableGlobalProperties) UnmarshalJSON(src []byte) error

func (*NullableGlobalProperties) Unset

func (v *NullableGlobalProperties) Unset()

type NullableHashicorpVault

type NullableHashicorpVault struct {
	// contains filtered or unexported fields
}

func NewNullableHashicorpVault

func NewNullableHashicorpVault(val *HashicorpVault) *NullableHashicorpVault

func (NullableHashicorpVault) Get

func (NullableHashicorpVault) IsSet

func (v NullableHashicorpVault) IsSet() bool

func (NullableHashicorpVault) MarshalJSON

func (v NullableHashicorpVault) MarshalJSON() ([]byte, error)

func (*NullableHashicorpVault) Set

func (*NullableHashicorpVault) UnmarshalJSON

func (v *NullableHashicorpVault) UnmarshalJSON(src []byte) error

func (*NullableHashicorpVault) Unset

func (v *NullableHashicorpVault) Unset()

type NullableHook

type NullableHook struct {
	// contains filtered or unexported fields
}

func NewNullableHook

func NewNullableHook(val *Hook) *NullableHook

func (NullableHook) Get

func (v NullableHook) Get() *Hook

func (NullableHook) IsSet

func (v NullableHook) IsSet() bool

func (NullableHook) MarshalJSON

func (v NullableHook) MarshalJSON() ([]byte, error)

func (*NullableHook) Set

func (v *NullableHook) Set(val *Hook)

func (*NullableHook) UnmarshalJSON

func (v *NullableHook) UnmarshalJSON(src []byte) error

func (*NullableHook) Unset

func (v *NullableHook) Unset()

type NullableHost

type NullableHost struct {
	// contains filtered or unexported fields
}

func NewNullableHost

func NewNullableHost(val *Host) *NullableHost

func (NullableHost) Get

func (v NullableHost) Get() *Host

func (NullableHost) IsSet

func (v NullableHost) IsSet() bool

func (NullableHost) MarshalJSON

func (v NullableHost) MarshalJSON() ([]byte, error)

func (*NullableHost) Set

func (v *NullableHost) Set(val *Host)

func (*NullableHost) UnmarshalJSON

func (v *NullableHost) UnmarshalJSON(src []byte) error

func (*NullableHost) Unset

func (v *NullableHost) Unset()

type NullableHostCreateParameters

type NullableHostCreateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableHostCreateParameters

func NewNullableHostCreateParameters(val *HostCreateParameters) *NullableHostCreateParameters

func (NullableHostCreateParameters) Get

func (NullableHostCreateParameters) IsSet

func (NullableHostCreateParameters) MarshalJSON

func (v NullableHostCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableHostCreateParameters) Set

func (*NullableHostCreateParameters) UnmarshalJSON

func (v *NullableHostCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableHostCreateParameters) Unset

func (v *NullableHostCreateParameters) Unset()

type NullableHostUpdateParameters

type NullableHostUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableHostUpdateParameters

func NewNullableHostUpdateParameters(val *HostUpdateParameters) *NullableHostUpdateParameters

func (NullableHostUpdateParameters) Get

func (NullableHostUpdateParameters) IsSet

func (NullableHostUpdateParameters) MarshalJSON

func (v NullableHostUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableHostUpdateParameters) Set

func (*NullableHostUpdateParameters) UnmarshalJSON

func (v *NullableHostUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableHostUpdateParameters) Unset

func (v *NullableHostUpdateParameters) Unset()

type NullableHyperscaleColumnOrField

type NullableHyperscaleColumnOrField struct {
	// contains filtered or unexported fields
}

func (NullableHyperscaleColumnOrField) Get

func (NullableHyperscaleColumnOrField) IsSet

func (NullableHyperscaleColumnOrField) MarshalJSON

func (v NullableHyperscaleColumnOrField) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleColumnOrField) Set

func (*NullableHyperscaleColumnOrField) UnmarshalJSON

func (v *NullableHyperscaleColumnOrField) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleColumnOrField) Unset

type NullableHyperscaleConnector

type NullableHyperscaleConnector struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleConnector

func NewNullableHyperscaleConnector(val *HyperscaleConnector) *NullableHyperscaleConnector

func (NullableHyperscaleConnector) Get

func (NullableHyperscaleConnector) IsSet

func (NullableHyperscaleConnector) MarshalJSON

func (v NullableHyperscaleConnector) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleConnector) Set

func (*NullableHyperscaleConnector) UnmarshalJSON

func (v *NullableHyperscaleConnector) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleConnector) Unset

func (v *NullableHyperscaleConnector) Unset()

type NullableHyperscaleDataset

type NullableHyperscaleDataset struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleDataset

func NewNullableHyperscaleDataset(val *HyperscaleDataset) *NullableHyperscaleDataset

func (NullableHyperscaleDataset) Get

func (NullableHyperscaleDataset) IsSet

func (v NullableHyperscaleDataset) IsSet() bool

func (NullableHyperscaleDataset) MarshalJSON

func (v NullableHyperscaleDataset) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleDataset) Set

func (*NullableHyperscaleDataset) UnmarshalJSON

func (v *NullableHyperscaleDataset) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleDataset) Unset

func (v *NullableHyperscaleDataset) Unset()

type NullableHyperscaleDatasetTableOrFile

type NullableHyperscaleDatasetTableOrFile struct {
	// contains filtered or unexported fields
}

func (NullableHyperscaleDatasetTableOrFile) Get

func (NullableHyperscaleDatasetTableOrFile) IsSet

func (NullableHyperscaleDatasetTableOrFile) MarshalJSON

func (v NullableHyperscaleDatasetTableOrFile) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleDatasetTableOrFile) Set

func (*NullableHyperscaleDatasetTableOrFile) UnmarshalJSON

func (v *NullableHyperscaleDatasetTableOrFile) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleDatasetTableOrFile) Unset

type NullableHyperscaleInstance

type NullableHyperscaleInstance struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleInstance

func NewNullableHyperscaleInstance(val *HyperscaleInstance) *NullableHyperscaleInstance

func (NullableHyperscaleInstance) Get

func (NullableHyperscaleInstance) IsSet

func (v NullableHyperscaleInstance) IsSet() bool

func (NullableHyperscaleInstance) MarshalJSON

func (v NullableHyperscaleInstance) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleInstance) Set

func (*NullableHyperscaleInstance) UnmarshalJSON

func (v *NullableHyperscaleInstance) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleInstance) Unset

func (v *NullableHyperscaleInstance) Unset()

type NullableHyperscaleInstanceRegistrationParameter

type NullableHyperscaleInstanceRegistrationParameter struct {
	// contains filtered or unexported fields
}

func (NullableHyperscaleInstanceRegistrationParameter) Get

func (NullableHyperscaleInstanceRegistrationParameter) IsSet

func (NullableHyperscaleInstanceRegistrationParameter) MarshalJSON

func (*NullableHyperscaleInstanceRegistrationParameter) Set

func (*NullableHyperscaleInstanceRegistrationParameter) UnmarshalJSON

func (*NullableHyperscaleInstanceRegistrationParameter) Unset

type NullableHyperscaleInstanceUpdateParams

type NullableHyperscaleInstanceUpdateParams struct {
	// contains filtered or unexported fields
}

func (NullableHyperscaleInstanceUpdateParams) Get

func (NullableHyperscaleInstanceUpdateParams) IsSet

func (NullableHyperscaleInstanceUpdateParams) MarshalJSON

func (v NullableHyperscaleInstanceUpdateParams) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleInstanceUpdateParams) Set

func (*NullableHyperscaleInstanceUpdateParams) UnmarshalJSON

func (v *NullableHyperscaleInstanceUpdateParams) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleInstanceUpdateParams) Unset

type NullableHyperscaleMountPoint

type NullableHyperscaleMountPoint struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleMountPoint

func NewNullableHyperscaleMountPoint(val *HyperscaleMountPoint) *NullableHyperscaleMountPoint

func (NullableHyperscaleMountPoint) Get

func (NullableHyperscaleMountPoint) IsSet

func (NullableHyperscaleMountPoint) MarshalJSON

func (v NullableHyperscaleMountPoint) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleMountPoint) Set

func (*NullableHyperscaleMountPoint) UnmarshalJSON

func (v *NullableHyperscaleMountPoint) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleMountPoint) Unset

func (v *NullableHyperscaleMountPoint) Unset()

type NullableHyperscaleTaskError

type NullableHyperscaleTaskError struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleTaskError

func NewNullableHyperscaleTaskError(val *HyperscaleTaskError) *NullableHyperscaleTaskError

func (NullableHyperscaleTaskError) Get

func (NullableHyperscaleTaskError) IsSet

func (NullableHyperscaleTaskError) MarshalJSON

func (v NullableHyperscaleTaskError) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleTaskError) Set

func (*NullableHyperscaleTaskError) UnmarshalJSON

func (v *NullableHyperscaleTaskError) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleTaskError) Unset

func (v *NullableHyperscaleTaskError) Unset()

type NullableHyperscaleTaskEvent

type NullableHyperscaleTaskEvent struct {
	// contains filtered or unexported fields
}

func NewNullableHyperscaleTaskEvent

func NewNullableHyperscaleTaskEvent(val *HyperscaleTaskEvent) *NullableHyperscaleTaskEvent

func (NullableHyperscaleTaskEvent) Get

func (NullableHyperscaleTaskEvent) IsSet

func (NullableHyperscaleTaskEvent) MarshalJSON

func (v NullableHyperscaleTaskEvent) MarshalJSON() ([]byte, error)

func (*NullableHyperscaleTaskEvent) Set

func (*NullableHyperscaleTaskEvent) UnmarshalJSON

func (v *NullableHyperscaleTaskEvent) UnmarshalJSON(src []byte) error

func (*NullableHyperscaleTaskEvent) Unset

func (v *NullableHyperscaleTaskEvent) 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 NullableJob

type NullableJob struct {
	// contains filtered or unexported fields
}

func NewNullableJob

func NewNullableJob(val *Job) *NullableJob

func (NullableJob) Get

func (v NullableJob) Get() *Job

func (NullableJob) IsSet

func (v NullableJob) IsSet() bool

func (NullableJob) MarshalJSON

func (v NullableJob) MarshalJSON() ([]byte, error)

func (*NullableJob) Set

func (v *NullableJob) Set(val *Job)

func (*NullableJob) UnmarshalJSON

func (v *NullableJob) UnmarshalJSON(src []byte) error

func (*NullableJob) Unset

func (v *NullableJob) Unset()

type NullableKDCServers

type NullableKDCServers struct {
	// contains filtered or unexported fields
}

func NewNullableKDCServers

func NewNullableKDCServers(val *KDCServers) *NullableKDCServers

func (NullableKDCServers) Get

func (v NullableKDCServers) Get() *KDCServers

func (NullableKDCServers) IsSet

func (v NullableKDCServers) IsSet() bool

func (NullableKDCServers) MarshalJSON

func (v NullableKDCServers) MarshalJSON() ([]byte, error)

func (*NullableKDCServers) Set

func (v *NullableKDCServers) Set(val *KDCServers)

func (*NullableKDCServers) UnmarshalJSON

func (v *NullableKDCServers) UnmarshalJSON(src []byte) error

func (*NullableKDCServers) Unset

func (v *NullableKDCServers) Unset()

type NullableKerberosConfig

type NullableKerberosConfig struct {
	// contains filtered or unexported fields
}

func NewNullableKerberosConfig

func NewNullableKerberosConfig(val *KerberosConfig) *NullableKerberosConfig

func (NullableKerberosConfig) Get

func (NullableKerberosConfig) IsSet

func (v NullableKerberosConfig) IsSet() bool

func (NullableKerberosConfig) MarshalJSON

func (v NullableKerberosConfig) MarshalJSON() ([]byte, error)

func (*NullableKerberosConfig) Set

func (*NullableKerberosConfig) UnmarshalJSON

func (v *NullableKerberosConfig) UnmarshalJSON(src []byte) error

func (*NullableKerberosConfig) Unset

func (v *NullableKerberosConfig) Unset()

type NullableLDAPConfigParams

type NullableLDAPConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableLDAPConfigParams

func NewNullableLDAPConfigParams(val *LDAPConfigParams) *NullableLDAPConfigParams

func (NullableLDAPConfigParams) Get

func (NullableLDAPConfigParams) IsSet

func (v NullableLDAPConfigParams) IsSet() bool

func (NullableLDAPConfigParams) MarshalJSON

func (v NullableLDAPConfigParams) MarshalJSON() ([]byte, error)

func (*NullableLDAPConfigParams) Set

func (*NullableLDAPConfigParams) UnmarshalJSON

func (v *NullableLDAPConfigParams) UnmarshalJSON(src []byte) error

func (*NullableLDAPConfigParams) Unset

func (v *NullableLDAPConfigParams) Unset()

type NullableLdapConfigValidateParameter

type NullableLdapConfigValidateParameter struct {
	// contains filtered or unexported fields
}

func (NullableLdapConfigValidateParameter) Get

func (NullableLdapConfigValidateParameter) IsSet

func (NullableLdapConfigValidateParameter) MarshalJSON

func (v NullableLdapConfigValidateParameter) MarshalJSON() ([]byte, error)

func (*NullableLdapConfigValidateParameter) Set

func (*NullableLdapConfigValidateParameter) UnmarshalJSON

func (v *NullableLdapConfigValidateParameter) UnmarshalJSON(src []byte) error

func (*NullableLdapConfigValidateParameter) Unset

type NullableLdapValidateResponse

type NullableLdapValidateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLdapValidateResponse

func NewNullableLdapValidateResponse(val *LdapValidateResponse) *NullableLdapValidateResponse

func (NullableLdapValidateResponse) Get

func (NullableLdapValidateResponse) IsSet

func (NullableLdapValidateResponse) MarshalJSON

func (v NullableLdapValidateResponse) MarshalJSON() ([]byte, error)

func (*NullableLdapValidateResponse) Set

func (*NullableLdapValidateResponse) UnmarshalJSON

func (v *NullableLdapValidateResponse) UnmarshalJSON(src []byte) error

func (*NullableLdapValidateResponse) Unset

func (v *NullableLdapValidateResponse) Unset()

type NullableLinkDSourceDefaultRequest

type NullableLinkDSourceDefaultRequest struct {
	// contains filtered or unexported fields
}

func (NullableLinkDSourceDefaultRequest) Get

func (NullableLinkDSourceDefaultRequest) IsSet

func (NullableLinkDSourceDefaultRequest) MarshalJSON

func (v NullableLinkDSourceDefaultRequest) MarshalJSON() ([]byte, error)

func (*NullableLinkDSourceDefaultRequest) Set

func (*NullableLinkDSourceDefaultRequest) UnmarshalJSON

func (v *NullableLinkDSourceDefaultRequest) UnmarshalJSON(src []byte) error

func (*NullableLinkDSourceDefaultRequest) Unset

type NullableLinkDSourceResponse

type NullableLinkDSourceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLinkDSourceResponse

func NewNullableLinkDSourceResponse(val *LinkDSourceResponse) *NullableLinkDSourceResponse

func (NullableLinkDSourceResponse) Get

func (NullableLinkDSourceResponse) IsSet

func (NullableLinkDSourceResponse) MarshalJSON

func (v NullableLinkDSourceResponse) MarshalJSON() ([]byte, error)

func (*NullableLinkDSourceResponse) Set

func (*NullableLinkDSourceResponse) UnmarshalJSON

func (v *NullableLinkDSourceResponse) UnmarshalJSON(src []byte) error

func (*NullableLinkDSourceResponse) Unset

func (v *NullableLinkDSourceResponse) Unset()

type NullableListAccessGroupsResponse

type NullableListAccessGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListAccessGroupsResponse) Get

func (NullableListAccessGroupsResponse) IsSet

func (NullableListAccessGroupsResponse) MarshalJSON

func (v NullableListAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAccessGroupsResponse) Set

func (*NullableListAccessGroupsResponse) UnmarshalJSON

func (v *NullableListAccessGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListAccessGroupsResponse) Unset

type NullableListAccountsResponse

type NullableListAccountsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListAccountsResponse

func NewNullableListAccountsResponse(val *ListAccountsResponse) *NullableListAccountsResponse

func (NullableListAccountsResponse) Get

func (NullableListAccountsResponse) IsSet

func (NullableListAccountsResponse) MarshalJSON

func (v NullableListAccountsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAccountsResponse) Set

func (*NullableListAccountsResponse) UnmarshalJSON

func (v *NullableListAccountsResponse) UnmarshalJSON(src []byte) error

func (*NullableListAccountsResponse) Unset

func (v *NullableListAccountsResponse) Unset()

type NullableListAlgorithmsResponse

type NullableListAlgorithmsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListAlgorithmsResponse) Get

func (NullableListAlgorithmsResponse) IsSet

func (NullableListAlgorithmsResponse) MarshalJSON

func (v NullableListAlgorithmsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAlgorithmsResponse) Set

func (*NullableListAlgorithmsResponse) UnmarshalJSON

func (v *NullableListAlgorithmsResponse) UnmarshalJSON(src []byte) error

func (*NullableListAlgorithmsResponse) Unset

func (v *NullableListAlgorithmsResponse) Unset()

type NullableListBookmarksByVDBGroupsResponse

type NullableListBookmarksByVDBGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListBookmarksByVDBGroupsResponse) Get

func (NullableListBookmarksByVDBGroupsResponse) IsSet

func (NullableListBookmarksByVDBGroupsResponse) MarshalJSON

func (*NullableListBookmarksByVDBGroupsResponse) Set

func (*NullableListBookmarksByVDBGroupsResponse) UnmarshalJSON

func (v *NullableListBookmarksByVDBGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListBookmarksByVDBGroupsResponse) Unset

type NullableListBookmarksByVDBResponse

type NullableListBookmarksByVDBResponse struct {
	// contains filtered or unexported fields
}

func (NullableListBookmarksByVDBResponse) Get

func (NullableListBookmarksByVDBResponse) IsSet

func (NullableListBookmarksByVDBResponse) MarshalJSON

func (v NullableListBookmarksByVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableListBookmarksByVDBResponse) Set

func (*NullableListBookmarksByVDBResponse) UnmarshalJSON

func (v *NullableListBookmarksByVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableListBookmarksByVDBResponse) Unset

type NullableListBookmarksResponse

type NullableListBookmarksResponse struct {
	// contains filtered or unexported fields
}

func (NullableListBookmarksResponse) Get

func (NullableListBookmarksResponse) IsSet

func (NullableListBookmarksResponse) MarshalJSON

func (v NullableListBookmarksResponse) MarshalJSON() ([]byte, error)

func (*NullableListBookmarksResponse) Set

func (*NullableListBookmarksResponse) UnmarshalJSON

func (v *NullableListBookmarksResponse) UnmarshalJSON(src []byte) error

func (*NullableListBookmarksResponse) Unset

func (v *NullableListBookmarksResponse) Unset()

type NullableListCDBsResponse

type NullableListCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListCDBsResponse

func NewNullableListCDBsResponse(val *ListCDBsResponse) *NullableListCDBsResponse

func (NullableListCDBsResponse) Get

func (NullableListCDBsResponse) IsSet

func (v NullableListCDBsResponse) IsSet() bool

func (NullableListCDBsResponse) MarshalJSON

func (v NullableListCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableListCDBsResponse) Set

func (*NullableListCDBsResponse) UnmarshalJSON

func (v *NullableListCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableListCDBsResponse) Unset

func (v *NullableListCDBsResponse) Unset()

type NullableListConnectorsResponse

type NullableListConnectorsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListConnectorsResponse) Get

func (NullableListConnectorsResponse) IsSet

func (NullableListConnectorsResponse) MarshalJSON

func (v NullableListConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableListConnectorsResponse) Set

func (*NullableListConnectorsResponse) UnmarshalJSON

func (v *NullableListConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableListConnectorsResponse) Unset

func (v *NullableListConnectorsResponse) Unset()

type NullableListDSourcesResponse

type NullableListDSourcesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListDSourcesResponse

func NewNullableListDSourcesResponse(val *ListDSourcesResponse) *NullableListDSourcesResponse

func (NullableListDSourcesResponse) Get

func (NullableListDSourcesResponse) IsSet

func (NullableListDSourcesResponse) MarshalJSON

func (v NullableListDSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableListDSourcesResponse) Set

func (*NullableListDSourcesResponse) UnmarshalJSON

func (v *NullableListDSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableListDSourcesResponse) Unset

func (v *NullableListDSourcesResponse) Unset()

type NullableListDatabaseTemplatesResponse

type NullableListDatabaseTemplatesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListDatabaseTemplatesResponse) Get

func (NullableListDatabaseTemplatesResponse) IsSet

func (NullableListDatabaseTemplatesResponse) MarshalJSON

func (v NullableListDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*NullableListDatabaseTemplatesResponse) Set

func (*NullableListDatabaseTemplatesResponse) UnmarshalJSON

func (v *NullableListDatabaseTemplatesResponse) UnmarshalJSON(src []byte) error

func (*NullableListDatabaseTemplatesResponse) Unset

type NullableListEnvironmentUsers

type NullableListEnvironmentUsers struct {
	// contains filtered or unexported fields
}

func NewNullableListEnvironmentUsers

func NewNullableListEnvironmentUsers(val *ListEnvironmentUsers) *NullableListEnvironmentUsers

func (NullableListEnvironmentUsers) Get

func (NullableListEnvironmentUsers) IsSet

func (NullableListEnvironmentUsers) MarshalJSON

func (v NullableListEnvironmentUsers) MarshalJSON() ([]byte, error)

func (*NullableListEnvironmentUsers) Set

func (*NullableListEnvironmentUsers) UnmarshalJSON

func (v *NullableListEnvironmentUsers) UnmarshalJSON(src []byte) error

func (*NullableListEnvironmentUsers) Unset

func (v *NullableListEnvironmentUsers) Unset()

type NullableListEnvironmentsResponse

type NullableListEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListEnvironmentsResponse) Get

func (NullableListEnvironmentsResponse) IsSet

func (NullableListEnvironmentsResponse) MarshalJSON

func (v NullableListEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*NullableListEnvironmentsResponse) Set

func (*NullableListEnvironmentsResponse) UnmarshalJSON

func (v *NullableListEnvironmentsResponse) UnmarshalJSON(src []byte) error

func (*NullableListEnvironmentsResponse) Unset

type NullableListExecutionEventsResponse

type NullableListExecutionEventsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListExecutionEventsResponse) Get

func (NullableListExecutionEventsResponse) IsSet

func (NullableListExecutionEventsResponse) MarshalJSON

func (v NullableListExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableListExecutionEventsResponse) Set

func (*NullableListExecutionEventsResponse) UnmarshalJSON

func (v *NullableListExecutionEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableListExecutionEventsResponse) Unset

type NullableListExecutionsResponse

type NullableListExecutionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListExecutionsResponse) Get

func (NullableListExecutionsResponse) IsSet

func (NullableListExecutionsResponse) MarshalJSON

func (v NullableListExecutionsResponse) MarshalJSON() ([]byte, error)

func (*NullableListExecutionsResponse) Set

func (*NullableListExecutionsResponse) UnmarshalJSON

func (v *NullableListExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableListExecutionsResponse) Unset

func (v *NullableListExecutionsResponse) Unset()

type NullableListGroupsResponse

type NullableListGroupsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListGroupsResponse

func NewNullableListGroupsResponse(val *ListGroupsResponse) *NullableListGroupsResponse

func (NullableListGroupsResponse) Get

func (NullableListGroupsResponse) IsSet

func (v NullableListGroupsResponse) IsSet() bool

func (NullableListGroupsResponse) MarshalJSON

func (v NullableListGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListGroupsResponse) Set

func (*NullableListGroupsResponse) UnmarshalJSON

func (v *NullableListGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListGroupsResponse) Unset

func (v *NullableListGroupsResponse) Unset()

type NullableListHashicorpVaultsResponse

type NullableListHashicorpVaultsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHashicorpVaultsResponse) Get

func (NullableListHashicorpVaultsResponse) IsSet

func (NullableListHashicorpVaultsResponse) MarshalJSON

func (v NullableListHashicorpVaultsResponse) MarshalJSON() ([]byte, error)

func (*NullableListHashicorpVaultsResponse) Set

func (*NullableListHashicorpVaultsResponse) UnmarshalJSON

func (v *NullableListHashicorpVaultsResponse) UnmarshalJSON(src []byte) error

func (*NullableListHashicorpVaultsResponse) Unset

type NullableListHyperscaleConnectorsResponse

type NullableListHyperscaleConnectorsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHyperscaleConnectorsResponse) Get

func (NullableListHyperscaleConnectorsResponse) IsSet

func (NullableListHyperscaleConnectorsResponse) MarshalJSON

func (*NullableListHyperscaleConnectorsResponse) Set

func (*NullableListHyperscaleConnectorsResponse) UnmarshalJSON

func (v *NullableListHyperscaleConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableListHyperscaleConnectorsResponse) Unset

type NullableListHyperscaleDatasetTablesOrFilesResponse

type NullableListHyperscaleDatasetTablesOrFilesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHyperscaleDatasetTablesOrFilesResponse) Get

func (NullableListHyperscaleDatasetTablesOrFilesResponse) IsSet

func (NullableListHyperscaleDatasetTablesOrFilesResponse) MarshalJSON

func (*NullableListHyperscaleDatasetTablesOrFilesResponse) Set

func (*NullableListHyperscaleDatasetTablesOrFilesResponse) UnmarshalJSON

func (*NullableListHyperscaleDatasetTablesOrFilesResponse) Unset

type NullableListHyperscaleDatasetsResponse

type NullableListHyperscaleDatasetsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHyperscaleDatasetsResponse) Get

func (NullableListHyperscaleDatasetsResponse) IsSet

func (NullableListHyperscaleDatasetsResponse) MarshalJSON

func (v NullableListHyperscaleDatasetsResponse) MarshalJSON() ([]byte, error)

func (*NullableListHyperscaleDatasetsResponse) Set

func (*NullableListHyperscaleDatasetsResponse) UnmarshalJSON

func (v *NullableListHyperscaleDatasetsResponse) UnmarshalJSON(src []byte) error

func (*NullableListHyperscaleDatasetsResponse) Unset

type NullableListHyperscaleInstancesResponse

type NullableListHyperscaleInstancesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHyperscaleInstancesResponse) Get

func (NullableListHyperscaleInstancesResponse) IsSet

func (NullableListHyperscaleInstancesResponse) MarshalJSON

func (v NullableListHyperscaleInstancesResponse) MarshalJSON() ([]byte, error)

func (*NullableListHyperscaleInstancesResponse) Set

func (*NullableListHyperscaleInstancesResponse) UnmarshalJSON

func (v *NullableListHyperscaleInstancesResponse) UnmarshalJSON(src []byte) error

func (*NullableListHyperscaleInstancesResponse) Unset

type NullableListHyperscaleMountPointsResponse

type NullableListHyperscaleMountPointsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListHyperscaleMountPointsResponse) Get

func (NullableListHyperscaleMountPointsResponse) IsSet

func (NullableListHyperscaleMountPointsResponse) MarshalJSON

func (*NullableListHyperscaleMountPointsResponse) Set

func (*NullableListHyperscaleMountPointsResponse) UnmarshalJSON

func (v *NullableListHyperscaleMountPointsResponse) UnmarshalJSON(src []byte) error

func (*NullableListHyperscaleMountPointsResponse) Unset

type NullableListJobsResponse

type NullableListJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListJobsResponse

func NewNullableListJobsResponse(val *ListJobsResponse) *NullableListJobsResponse

func (NullableListJobsResponse) Get

func (NullableListJobsResponse) IsSet

func (v NullableListJobsResponse) IsSet() bool

func (NullableListJobsResponse) MarshalJSON

func (v NullableListJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableListJobsResponse) Set

func (*NullableListJobsResponse) UnmarshalJSON

func (v *NullableListJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableListJobsResponse) Unset

func (v *NullableListJobsResponse) Unset()

type NullableListKerberosConfigsResponse

type NullableListKerberosConfigsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListKerberosConfigsResponse) Get

func (NullableListKerberosConfigsResponse) IsSet

func (NullableListKerberosConfigsResponse) MarshalJSON

func (v NullableListKerberosConfigsResponse) MarshalJSON() ([]byte, error)

func (*NullableListKerberosConfigsResponse) Set

func (*NullableListKerberosConfigsResponse) UnmarshalJSON

func (v *NullableListKerberosConfigsResponse) UnmarshalJSON(src []byte) error

func (*NullableListKerberosConfigsResponse) Unset

type NullableListMaskingEnvironmentsResponse

type NullableListMaskingEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListMaskingEnvironmentsResponse) Get

func (NullableListMaskingEnvironmentsResponse) IsSet

func (NullableListMaskingEnvironmentsResponse) MarshalJSON

func (v NullableListMaskingEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*NullableListMaskingEnvironmentsResponse) Set

func (*NullableListMaskingEnvironmentsResponse) UnmarshalJSON

func (v *NullableListMaskingEnvironmentsResponse) UnmarshalJSON(src []byte) error

func (*NullableListMaskingEnvironmentsResponse) Unset

type NullableListMaskingJobSourceEnginesResponse

type NullableListMaskingJobSourceEnginesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListMaskingJobSourceEnginesResponse) Get

func (NullableListMaskingJobSourceEnginesResponse) IsSet

func (NullableListMaskingJobSourceEnginesResponse) MarshalJSON

func (*NullableListMaskingJobSourceEnginesResponse) Set

func (*NullableListMaskingJobSourceEnginesResponse) UnmarshalJSON

func (v *NullableListMaskingJobSourceEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableListMaskingJobSourceEnginesResponse) Unset

type NullableListMaskingJobsResponse

type NullableListMaskingJobsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListMaskingJobsResponse) Get

func (NullableListMaskingJobsResponse) IsSet

func (NullableListMaskingJobsResponse) MarshalJSON

func (v NullableListMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableListMaskingJobsResponse) Set

func (*NullableListMaskingJobsResponse) UnmarshalJSON

func (v *NullableListMaskingJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableListMaskingJobsResponse) Unset

type NullableListPasswordVaultsResponse

type NullableListPasswordVaultsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListPasswordVaultsResponse) Get

func (NullableListPasswordVaultsResponse) IsSet

func (NullableListPasswordVaultsResponse) MarshalJSON

func (v NullableListPasswordVaultsResponse) MarshalJSON() ([]byte, error)

func (*NullableListPasswordVaultsResponse) Set

func (*NullableListPasswordVaultsResponse) UnmarshalJSON

func (v *NullableListPasswordVaultsResponse) UnmarshalJSON(src []byte) error

func (*NullableListPasswordVaultsResponse) Unset

type NullableListRegisteredEnginesResponse

type NullableListRegisteredEnginesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListRegisteredEnginesResponse) Get

func (NullableListRegisteredEnginesResponse) IsSet

func (NullableListRegisteredEnginesResponse) MarshalJSON

func (v NullableListRegisteredEnginesResponse) MarshalJSON() ([]byte, error)

func (*NullableListRegisteredEnginesResponse) Set

func (*NullableListRegisteredEnginesResponse) UnmarshalJSON

func (v *NullableListRegisteredEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableListRegisteredEnginesResponse) Unset

type NullableListReportingScheduleResponse

type NullableListReportingScheduleResponse struct {
	// contains filtered or unexported fields
}

func (NullableListReportingScheduleResponse) Get

func (NullableListReportingScheduleResponse) IsSet

func (NullableListReportingScheduleResponse) MarshalJSON

func (v NullableListReportingScheduleResponse) MarshalJSON() ([]byte, error)

func (*NullableListReportingScheduleResponse) Set

func (*NullableListReportingScheduleResponse) UnmarshalJSON

func (v *NullableListReportingScheduleResponse) UnmarshalJSON(src []byte) error

func (*NullableListReportingScheduleResponse) Unset

type NullableListRolesResponse

type NullableListRolesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListRolesResponse

func NewNullableListRolesResponse(val *ListRolesResponse) *NullableListRolesResponse

func (NullableListRolesResponse) Get

func (NullableListRolesResponse) IsSet

func (v NullableListRolesResponse) IsSet() bool

func (NullableListRolesResponse) MarshalJSON

func (v NullableListRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableListRolesResponse) Set

func (*NullableListRolesResponse) UnmarshalJSON

func (v *NullableListRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableListRolesResponse) Unset

func (v *NullableListRolesResponse) Unset()

type NullableListSnapshotsResponse

type NullableListSnapshotsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListSnapshotsResponse) Get

func (NullableListSnapshotsResponse) IsSet

func (NullableListSnapshotsResponse) MarshalJSON

func (v NullableListSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*NullableListSnapshotsResponse) Set

func (*NullableListSnapshotsResponse) UnmarshalJSON

func (v *NullableListSnapshotsResponse) UnmarshalJSON(src []byte) error

func (*NullableListSnapshotsResponse) Unset

func (v *NullableListSnapshotsResponse) Unset()

type NullableListSourcesResponse

type NullableListSourcesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListSourcesResponse

func NewNullableListSourcesResponse(val *ListSourcesResponse) *NullableListSourcesResponse

func (NullableListSourcesResponse) Get

func (NullableListSourcesResponse) IsSet

func (NullableListSourcesResponse) MarshalJSON

func (v NullableListSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableListSourcesResponse) Set

func (*NullableListSourcesResponse) UnmarshalJSON

func (v *NullableListSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableListSourcesResponse) Unset

func (v *NullableListSourcesResponse) Unset()

type NullableListTimeflowsResponse

type NullableListTimeflowsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListTimeflowsResponse) Get

func (NullableListTimeflowsResponse) IsSet

func (NullableListTimeflowsResponse) MarshalJSON

func (v NullableListTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*NullableListTimeflowsResponse) Set

func (*NullableListTimeflowsResponse) UnmarshalJSON

func (v *NullableListTimeflowsResponse) UnmarshalJSON(src []byte) error

func (*NullableListTimeflowsResponse) Unset

func (v *NullableListTimeflowsResponse) Unset()

type NullableListVCDBsResponse

type NullableListVCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListVCDBsResponse

func NewNullableListVCDBsResponse(val *ListVCDBsResponse) *NullableListVCDBsResponse

func (NullableListVCDBsResponse) Get

func (NullableListVCDBsResponse) IsSet

func (v NullableListVCDBsResponse) IsSet() bool

func (NullableListVCDBsResponse) MarshalJSON

func (v NullableListVCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableListVCDBsResponse) Set

func (*NullableListVCDBsResponse) UnmarshalJSON

func (v *NullableListVCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableListVCDBsResponse) Unset

func (v *NullableListVCDBsResponse) Unset()

type NullableListVDBGroupsByBookmarkResponse

type NullableListVDBGroupsByBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableListVDBGroupsByBookmarkResponse) Get

func (NullableListVDBGroupsByBookmarkResponse) IsSet

func (NullableListVDBGroupsByBookmarkResponse) MarshalJSON

func (v NullableListVDBGroupsByBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableListVDBGroupsByBookmarkResponse) Set

func (*NullableListVDBGroupsByBookmarkResponse) UnmarshalJSON

func (v *NullableListVDBGroupsByBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableListVDBGroupsByBookmarkResponse) Unset

type NullableListVDBGroupsResponse

type NullableListVDBGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListVDBGroupsResponse) Get

func (NullableListVDBGroupsResponse) IsSet

func (NullableListVDBGroupsResponse) MarshalJSON

func (v NullableListVDBGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListVDBGroupsResponse) Set

func (*NullableListVDBGroupsResponse) UnmarshalJSON

func (v *NullableListVDBGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListVDBGroupsResponse) Unset

func (v *NullableListVDBGroupsResponse) Unset()

type NullableListVDBsResponse

type NullableListVDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListVDBsResponse

func NewNullableListVDBsResponse(val *ListVDBsResponse) *NullableListVDBsResponse

func (NullableListVDBsResponse) Get

func (NullableListVDBsResponse) IsSet

func (v NullableListVDBsResponse) IsSet() bool

func (NullableListVDBsResponse) MarshalJSON

func (v NullableListVDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableListVDBsResponse) Set

func (*NullableListVDBsResponse) UnmarshalJSON

func (v *NullableListVDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableListVDBsResponse) Unset

func (v *NullableListVDBsResponse) Unset()

type NullableListVirtualizationPoliciesResponse

type NullableListVirtualizationPoliciesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListVirtualizationPoliciesResponse) Get

func (NullableListVirtualizationPoliciesResponse) IsSet

func (NullableListVirtualizationPoliciesResponse) MarshalJSON

func (*NullableListVirtualizationPoliciesResponse) Set

func (*NullableListVirtualizationPoliciesResponse) UnmarshalJSON

func (v *NullableListVirtualizationPoliciesResponse) UnmarshalJSON(src []byte) error

func (*NullableListVirtualizationPoliciesResponse) Unset

type NullableLocationCompatibleEnvironmentsResponse

type NullableLocationCompatibleEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableLocationCompatibleEnvironmentsResponse) Get

func (NullableLocationCompatibleEnvironmentsResponse) IsSet

func (NullableLocationCompatibleEnvironmentsResponse) MarshalJSON

func (*NullableLocationCompatibleEnvironmentsResponse) Set

func (*NullableLocationCompatibleEnvironmentsResponse) UnmarshalJSON

func (*NullableLocationCompatibleEnvironmentsResponse) Unset

type NullableLocationCompatibleRepositoryRequest

type NullableLocationCompatibleRepositoryRequest struct {
	// contains filtered or unexported fields
}

func (NullableLocationCompatibleRepositoryRequest) Get

func (NullableLocationCompatibleRepositoryRequest) IsSet

func (NullableLocationCompatibleRepositoryRequest) MarshalJSON

func (*NullableLocationCompatibleRepositoryRequest) Set

func (*NullableLocationCompatibleRepositoryRequest) UnmarshalJSON

func (v *NullableLocationCompatibleRepositoryRequest) UnmarshalJSON(src []byte) error

func (*NullableLocationCompatibleRepositoryRequest) Unset

type NullableLockVDBGroupParameters

type NullableLockVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func (NullableLockVDBGroupParameters) Get

func (NullableLockVDBGroupParameters) IsSet

func (NullableLockVDBGroupParameters) MarshalJSON

func (v NullableLockVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableLockVDBGroupParameters) Set

func (*NullableLockVDBGroupParameters) UnmarshalJSON

func (v *NullableLockVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableLockVDBGroupParameters) Unset

func (v *NullableLockVDBGroupParameters) Unset()

type NullableLockVDBParameters

type NullableLockVDBParameters struct {
	// contains filtered or unexported fields
}

func NewNullableLockVDBParameters

func NewNullableLockVDBParameters(val *LockVDBParameters) *NullableLockVDBParameters

func (NullableLockVDBParameters) Get

func (NullableLockVDBParameters) IsSet

func (v NullableLockVDBParameters) IsSet() bool

func (NullableLockVDBParameters) MarshalJSON

func (v NullableLockVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableLockVDBParameters) Set

func (*NullableLockVDBParameters) UnmarshalJSON

func (v *NullableLockVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableLockVDBParameters) Unset

func (v *NullableLockVDBParameters) Unset()

type NullableLoginToken

type NullableLoginToken struct {
	// contains filtered or unexported fields
}

func NewNullableLoginToken

func NewNullableLoginToken(val *LoginToken) *NullableLoginToken

func (NullableLoginToken) Get

func (v NullableLoginToken) Get() *LoginToken

func (NullableLoginToken) IsSet

func (v NullableLoginToken) IsSet() bool

func (NullableLoginToken) MarshalJSON

func (v NullableLoginToken) MarshalJSON() ([]byte, error)

func (*NullableLoginToken) Set

func (v *NullableLoginToken) Set(val *LoginToken)

func (*NullableLoginToken) UnmarshalJSON

func (v *NullableLoginToken) UnmarshalJSON(src []byte) error

func (*NullableLoginToken) Unset

func (v *NullableLoginToken) Unset()

type NullableMaskingEnvironment

type NullableMaskingEnvironment struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingEnvironment

func NewNullableMaskingEnvironment(val *MaskingEnvironment) *NullableMaskingEnvironment

func (NullableMaskingEnvironment) Get

func (NullableMaskingEnvironment) IsSet

func (v NullableMaskingEnvironment) IsSet() bool

func (NullableMaskingEnvironment) MarshalJSON

func (v NullableMaskingEnvironment) MarshalJSON() ([]byte, error)

func (*NullableMaskingEnvironment) Set

func (*NullableMaskingEnvironment) UnmarshalJSON

func (v *NullableMaskingEnvironment) UnmarshalJSON(src []byte) error

func (*NullableMaskingEnvironment) Unset

func (v *NullableMaskingEnvironment) Unset()

type NullableMaskingExecutionMetrics

type NullableMaskingExecutionMetrics struct {
	// contains filtered or unexported fields
}

func (NullableMaskingExecutionMetrics) Get

func (NullableMaskingExecutionMetrics) IsSet

func (NullableMaskingExecutionMetrics) MarshalJSON

func (v NullableMaskingExecutionMetrics) MarshalJSON() ([]byte, error)

func (*NullableMaskingExecutionMetrics) Set

func (*NullableMaskingExecutionMetrics) UnmarshalJSON

func (v *NullableMaskingExecutionMetrics) UnmarshalJSON(src []byte) error

func (*NullableMaskingExecutionMetrics) Unset

type NullableMaskingExecutionMetricsReportResponse

type NullableMaskingExecutionMetricsReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaskingExecutionMetricsReportResponse) Get

func (NullableMaskingExecutionMetricsReportResponse) IsSet

func (NullableMaskingExecutionMetricsReportResponse) MarshalJSON

func (*NullableMaskingExecutionMetricsReportResponse) Set

func (*NullableMaskingExecutionMetricsReportResponse) UnmarshalJSON

func (*NullableMaskingExecutionMetricsReportResponse) Unset

type NullableMaskingFileUpload

type NullableMaskingFileUpload struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingFileUpload

func NewNullableMaskingFileUpload(val *MaskingFileUpload) *NullableMaskingFileUpload

func (NullableMaskingFileUpload) Get

func (NullableMaskingFileUpload) IsSet

func (v NullableMaskingFileUpload) IsSet() bool

func (NullableMaskingFileUpload) MarshalJSON

func (v NullableMaskingFileUpload) MarshalJSON() ([]byte, error)

func (*NullableMaskingFileUpload) Set

func (*NullableMaskingFileUpload) UnmarshalJSON

func (v *NullableMaskingFileUpload) UnmarshalJSON(src []byte) error

func (*NullableMaskingFileUpload) Unset

func (v *NullableMaskingFileUpload) Unset()

type NullableMaskingFileUploadParameters

type NullableMaskingFileUploadParameters struct {
	// contains filtered or unexported fields
}

func (NullableMaskingFileUploadParameters) Get

func (NullableMaskingFileUploadParameters) IsSet

func (NullableMaskingFileUploadParameters) MarshalJSON

func (v NullableMaskingFileUploadParameters) MarshalJSON() ([]byte, error)

func (*NullableMaskingFileUploadParameters) Set

func (*NullableMaskingFileUploadParameters) UnmarshalJSON

func (v *NullableMaskingFileUploadParameters) UnmarshalJSON(src []byte) error

func (*NullableMaskingFileUploadParameters) Unset

type NullableMaskingFileUploadResponse

type NullableMaskingFileUploadResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaskingFileUploadResponse) Get

func (NullableMaskingFileUploadResponse) IsSet

func (NullableMaskingFileUploadResponse) MarshalJSON

func (v NullableMaskingFileUploadResponse) MarshalJSON() ([]byte, error)

func (*NullableMaskingFileUploadResponse) Set

func (*NullableMaskingFileUploadResponse) UnmarshalJSON

func (v *NullableMaskingFileUploadResponse) UnmarshalJSON(src []byte) error

func (*NullableMaskingFileUploadResponse) Unset

type NullableMaskingJob

type NullableMaskingJob struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingJob

func NewNullableMaskingJob(val *MaskingJob) *NullableMaskingJob

func (NullableMaskingJob) Get

func (v NullableMaskingJob) Get() *MaskingJob

func (NullableMaskingJob) IsSet

func (v NullableMaskingJob) IsSet() bool

func (NullableMaskingJob) MarshalJSON

func (v NullableMaskingJob) MarshalJSON() ([]byte, error)

func (*NullableMaskingJob) Set

func (v *NullableMaskingJob) Set(val *MaskingJob)

func (*NullableMaskingJob) UnmarshalJSON

func (v *NullableMaskingJob) UnmarshalJSON(src []byte) error

func (*NullableMaskingJob) Unset

func (v *NullableMaskingJob) Unset()

type NullableMaskingJobConnectorsResponse

type NullableMaskingJobConnectorsResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaskingJobConnectorsResponse) Get

func (NullableMaskingJobConnectorsResponse) IsSet

func (NullableMaskingJobConnectorsResponse) MarshalJSON

func (v NullableMaskingJobConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableMaskingJobConnectorsResponse) Set

func (*NullableMaskingJobConnectorsResponse) UnmarshalJSON

func (v *NullableMaskingJobConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableMaskingJobConnectorsResponse) Unset

type NullableMaskingJobSourceEngine

type NullableMaskingJobSourceEngine struct {
	// contains filtered or unexported fields
}

func (NullableMaskingJobSourceEngine) Get

func (NullableMaskingJobSourceEngine) IsSet

func (NullableMaskingJobSourceEngine) MarshalJSON

func (v NullableMaskingJobSourceEngine) MarshalJSON() ([]byte, error)

func (*NullableMaskingJobSourceEngine) Set

func (*NullableMaskingJobSourceEngine) UnmarshalJSON

func (v *NullableMaskingJobSourceEngine) UnmarshalJSON(src []byte) error

func (*NullableMaskingJobSourceEngine) Unset

func (v *NullableMaskingJobSourceEngine) Unset()

type NullableMaskingRuleset

type NullableMaskingRuleset struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingRuleset

func NewNullableMaskingRuleset(val *MaskingRuleset) *NullableMaskingRuleset

func (NullableMaskingRuleset) Get

func (NullableMaskingRuleset) IsSet

func (v NullableMaskingRuleset) IsSet() bool

func (NullableMaskingRuleset) MarshalJSON

func (v NullableMaskingRuleset) MarshalJSON() ([]byte, error)

func (*NullableMaskingRuleset) Set

func (*NullableMaskingRuleset) UnmarshalJSON

func (v *NullableMaskingRuleset) UnmarshalJSON(src []byte) error

func (*NullableMaskingRuleset) Unset

func (v *NullableMaskingRuleset) Unset()

type NullableMetadataDbInfo

type NullableMetadataDbInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataDbInfo

func NewNullableMetadataDbInfo(val *MetadataDbInfo) *NullableMetadataDbInfo

func (NullableMetadataDbInfo) Get

func (NullableMetadataDbInfo) IsSet

func (v NullableMetadataDbInfo) IsSet() bool

func (NullableMetadataDbInfo) MarshalJSON

func (v NullableMetadataDbInfo) MarshalJSON() ([]byte, error)

func (*NullableMetadataDbInfo) Set

func (*NullableMetadataDbInfo) UnmarshalJSON

func (v *NullableMetadataDbInfo) UnmarshalJSON(src []byte) error

func (*NullableMetadataDbInfo) Unset

func (v *NullableMetadataDbInfo) Unset()

type NullableMigrateMaskingJobParameters

type NullableMigrateMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func (NullableMigrateMaskingJobParameters) Get

func (NullableMigrateMaskingJobParameters) IsSet

func (NullableMigrateMaskingJobParameters) MarshalJSON

func (v NullableMigrateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableMigrateMaskingJobParameters) Set

func (*NullableMigrateMaskingJobParameters) UnmarshalJSON

func (v *NullableMigrateMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableMigrateMaskingJobParameters) Unset

type NullableMigrateMaskingJobResponse

type NullableMigrateMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableMigrateMaskingJobResponse) Get

func (NullableMigrateMaskingJobResponse) IsSet

func (NullableMigrateMaskingJobResponse) MarshalJSON

func (v NullableMigrateMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableMigrateMaskingJobResponse) Set

func (*NullableMigrateMaskingJobResponse) UnmarshalJSON

func (v *NullableMigrateMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableMigrateMaskingJobResponse) Unset

type NullableObjectPermissionAccessGroups

type NullableObjectPermissionAccessGroups struct {
	// contains filtered or unexported fields
}

func (NullableObjectPermissionAccessGroups) Get

func (NullableObjectPermissionAccessGroups) IsSet

func (NullableObjectPermissionAccessGroups) MarshalJSON

func (v NullableObjectPermissionAccessGroups) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionAccessGroups) Set

func (*NullableObjectPermissionAccessGroups) UnmarshalJSON

func (v *NullableObjectPermissionAccessGroups) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionAccessGroups) Unset

type NullableObjectPermissionAccount

type NullableObjectPermissionAccount struct {
	// contains filtered or unexported fields
}

func (NullableObjectPermissionAccount) Get

func (NullableObjectPermissionAccount) IsSet

func (NullableObjectPermissionAccount) MarshalJSON

func (v NullableObjectPermissionAccount) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionAccount) Set

func (*NullableObjectPermissionAccount) UnmarshalJSON

func (v *NullableObjectPermissionAccount) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionAccount) Unset

type NullableObjectPermissionsResponse

type NullableObjectPermissionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableObjectPermissionsResponse) Get

func (NullableObjectPermissionsResponse) IsSet

func (NullableObjectPermissionsResponse) MarshalJSON

func (v NullableObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionsResponse) Set

func (*NullableObjectPermissionsResponse) UnmarshalJSON

func (v *NullableObjectPermissionsResponse) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionsResponse) Unset

type NullableObjectTypeEnum

type NullableObjectTypeEnum struct {
	// contains filtered or unexported fields
}

func NewNullableObjectTypeEnum

func NewNullableObjectTypeEnum(val *ObjectTypeEnum) *NullableObjectTypeEnum

func (NullableObjectTypeEnum) Get

func (NullableObjectTypeEnum) IsSet

func (v NullableObjectTypeEnum) IsSet() bool

func (NullableObjectTypeEnum) MarshalJSON

func (v NullableObjectTypeEnum) MarshalJSON() ([]byte, error)

func (*NullableObjectTypeEnum) Set

func (*NullableObjectTypeEnum) UnmarshalJSON

func (v *NullableObjectTypeEnum) UnmarshalJSON(src []byte) error

func (*NullableObjectTypeEnum) Unset

func (v *NullableObjectTypeEnum) Unset()

type NullableObjectTypeProperty

type NullableObjectTypeProperty struct {
	// contains filtered or unexported fields
}

func NewNullableObjectTypeProperty

func NewNullableObjectTypeProperty(val *ObjectTypeProperty) *NullableObjectTypeProperty

func (NullableObjectTypeProperty) Get

func (NullableObjectTypeProperty) IsSet

func (v NullableObjectTypeProperty) IsSet() bool

func (NullableObjectTypeProperty) MarshalJSON

func (v NullableObjectTypeProperty) MarshalJSON() ([]byte, error)

func (*NullableObjectTypeProperty) Set

func (*NullableObjectTypeProperty) UnmarshalJSON

func (v *NullableObjectTypeProperty) UnmarshalJSON(src []byte) error

func (*NullableObjectTypeProperty) Unset

func (v *NullableObjectTypeProperty) Unset()

type NullableOracleClusterNodeInstance

type NullableOracleClusterNodeInstance struct {
	// contains filtered or unexported fields
}

func (NullableOracleClusterNodeInstance) Get

func (NullableOracleClusterNodeInstance) IsSet

func (NullableOracleClusterNodeInstance) MarshalJSON

func (v NullableOracleClusterNodeInstance) MarshalJSON() ([]byte, error)

func (*NullableOracleClusterNodeInstance) Set

func (*NullableOracleClusterNodeInstance) UnmarshalJSON

func (v *NullableOracleClusterNodeInstance) UnmarshalJSON(src []byte) error

func (*NullableOracleClusterNodeInstance) Unset

type NullableOracleDSourceLinkSourceParameters

type NullableOracleDSourceLinkSourceParameters struct {
	// contains filtered or unexported fields
}

func (NullableOracleDSourceLinkSourceParameters) Get

func (NullableOracleDSourceLinkSourceParameters) IsSet

func (NullableOracleDSourceLinkSourceParameters) MarshalJSON

func (*NullableOracleDSourceLinkSourceParameters) Set

func (*NullableOracleDSourceLinkSourceParameters) UnmarshalJSON

func (v *NullableOracleDSourceLinkSourceParameters) UnmarshalJSON(src []byte) error

func (*NullableOracleDSourceLinkSourceParameters) Unset

type NullableOracleDSourceLinkSourceParametersAllOf

type NullableOracleDSourceLinkSourceParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableOracleDSourceLinkSourceParametersAllOf) Get

func (NullableOracleDSourceLinkSourceParametersAllOf) IsSet

func (NullableOracleDSourceLinkSourceParametersAllOf) MarshalJSON

func (*NullableOracleDSourceLinkSourceParametersAllOf) Set

func (*NullableOracleDSourceLinkSourceParametersAllOf) UnmarshalJSON

func (*NullableOracleDSourceLinkSourceParametersAllOf) Unset

type NullableOracleListener

type NullableOracleListener struct {
	// contains filtered or unexported fields
}

func NewNullableOracleListener

func NewNullableOracleListener(val *OracleListener) *NullableOracleListener

func (NullableOracleListener) Get

func (NullableOracleListener) IsSet

func (v NullableOracleListener) IsSet() bool

func (NullableOracleListener) MarshalJSON

func (v NullableOracleListener) MarshalJSON() ([]byte, error)

func (*NullableOracleListener) Set

func (*NullableOracleListener) UnmarshalJSON

func (v *NullableOracleListener) UnmarshalJSON(src []byte) error

func (*NullableOracleListener) Unset

func (v *NullableOracleListener) Unset()

type NullableOracleRacCustomEnvFile

type NullableOracleRacCustomEnvFile struct {
	// contains filtered or unexported fields
}

func (NullableOracleRacCustomEnvFile) Get

func (NullableOracleRacCustomEnvFile) IsSet

func (NullableOracleRacCustomEnvFile) MarshalJSON

func (v NullableOracleRacCustomEnvFile) MarshalJSON() ([]byte, error)

func (*NullableOracleRacCustomEnvFile) Set

func (*NullableOracleRacCustomEnvFile) UnmarshalJSON

func (v *NullableOracleRacCustomEnvFile) UnmarshalJSON(src []byte) error

func (*NullableOracleRacCustomEnvFile) Unset

func (v *NullableOracleRacCustomEnvFile) Unset()

type NullableOracleRacCustomEnvVar

type NullableOracleRacCustomEnvVar struct {
	// contains filtered or unexported fields
}

func (NullableOracleRacCustomEnvVar) Get

func (NullableOracleRacCustomEnvVar) IsSet

func (NullableOracleRacCustomEnvVar) MarshalJSON

func (v NullableOracleRacCustomEnvVar) MarshalJSON() ([]byte, error)

func (*NullableOracleRacCustomEnvVar) Set

func (*NullableOracleRacCustomEnvVar) UnmarshalJSON

func (v *NullableOracleRacCustomEnvVar) UnmarshalJSON(src []byte) error

func (*NullableOracleRacCustomEnvVar) Unset

func (v *NullableOracleRacCustomEnvVar) Unset()

type NullableOracleVirtualIP

type NullableOracleVirtualIP struct {
	// contains filtered or unexported fields
}

func NewNullableOracleVirtualIP

func NewNullableOracleVirtualIP(val *OracleVirtualIP) *NullableOracleVirtualIP

func (NullableOracleVirtualIP) Get

func (NullableOracleVirtualIP) IsSet

func (v NullableOracleVirtualIP) IsSet() bool

func (NullableOracleVirtualIP) MarshalJSON

func (v NullableOracleVirtualIP) MarshalJSON() ([]byte, error)

func (*NullableOracleVirtualIP) Set

func (*NullableOracleVirtualIP) UnmarshalJSON

func (v *NullableOracleVirtualIP) UnmarshalJSON(src []byte) error

func (*NullableOracleVirtualIP) Unset

func (v *NullableOracleVirtualIP) Unset()

type NullablePaginatedResponseMetadata

type NullablePaginatedResponseMetadata struct {
	// contains filtered or unexported fields
}

func (NullablePaginatedResponseMetadata) Get

func (NullablePaginatedResponseMetadata) IsSet

func (NullablePaginatedResponseMetadata) MarshalJSON

func (v NullablePaginatedResponseMetadata) MarshalJSON() ([]byte, error)

func (*NullablePaginatedResponseMetadata) Set

func (*NullablePaginatedResponseMetadata) UnmarshalJSON

func (v *NullablePaginatedResponseMetadata) UnmarshalJSON(src []byte) error

func (*NullablePaginatedResponseMetadata) Unset

type NullablePasswordPoliciesParams

type NullablePasswordPoliciesParams struct {
	// contains filtered or unexported fields
}

func (NullablePasswordPoliciesParams) Get

func (NullablePasswordPoliciesParams) IsSet

func (NullablePasswordPoliciesParams) MarshalJSON

func (v NullablePasswordPoliciesParams) MarshalJSON() ([]byte, error)

func (*NullablePasswordPoliciesParams) Set

func (*NullablePasswordPoliciesParams) UnmarshalJSON

func (v *NullablePasswordPoliciesParams) UnmarshalJSON(src []byte) error

func (*NullablePasswordPoliciesParams) Unset

func (v *NullablePasswordPoliciesParams) Unset()

type NullablePasswordVault

type NullablePasswordVault struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordVault

func NewNullablePasswordVault(val *PasswordVault) *NullablePasswordVault

func (NullablePasswordVault) Get

func (NullablePasswordVault) IsSet

func (v NullablePasswordVault) IsSet() bool

func (NullablePasswordVault) MarshalJSON

func (v NullablePasswordVault) MarshalJSON() ([]byte, error)

func (*NullablePasswordVault) Set

func (v *NullablePasswordVault) Set(val *PasswordVault)

func (*NullablePasswordVault) UnmarshalJSON

func (v *NullablePasswordVault) UnmarshalJSON(src []byte) error

func (*NullablePasswordVault) Unset

func (v *NullablePasswordVault) Unset()

type NullablePermissionEnum

type NullablePermissionEnum struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionEnum

func NewNullablePermissionEnum(val *PermissionEnum) *NullablePermissionEnum

func (NullablePermissionEnum) Get

func (NullablePermissionEnum) IsSet

func (v NullablePermissionEnum) IsSet() bool

func (NullablePermissionEnum) MarshalJSON

func (v NullablePermissionEnum) MarshalJSON() ([]byte, error)

func (*NullablePermissionEnum) Set

func (*NullablePermissionEnum) UnmarshalJSON

func (v *NullablePermissionEnum) UnmarshalJSON(src []byte) error

func (*NullablePermissionEnum) Unset

func (v *NullablePermissionEnum) Unset()

type NullablePermissionObject

type NullablePermissionObject struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionObject

func NewNullablePermissionObject(val *PermissionObject) *NullablePermissionObject

func (NullablePermissionObject) Get

func (NullablePermissionObject) IsSet

func (v NullablePermissionObject) IsSet() bool

func (NullablePermissionObject) MarshalJSON

func (v NullablePermissionObject) MarshalJSON() ([]byte, error)

func (*NullablePermissionObject) Set

func (*NullablePermissionObject) UnmarshalJSON

func (v *NullablePermissionObject) UnmarshalJSON(src []byte) error

func (*NullablePermissionObject) Unset

func (v *NullablePermissionObject) Unset()

type NullablePermissionProperty

type NullablePermissionProperty struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionProperty

func NewNullablePermissionProperty(val *PermissionProperty) *NullablePermissionProperty

func (NullablePermissionProperty) Get

func (NullablePermissionProperty) IsSet

func (v NullablePermissionProperty) IsSet() bool

func (NullablePermissionProperty) MarshalJSON

func (v NullablePermissionProperty) MarshalJSON() ([]byte, error)

func (*NullablePermissionProperty) Set

func (*NullablePermissionProperty) UnmarshalJSON

func (v *NullablePermissionProperty) UnmarshalJSON(src []byte) error

func (*NullablePermissionProperty) Unset

func (v *NullablePermissionProperty) Unset()

type NullablePermissionsRequest

type NullablePermissionsRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionsRequest

func NewNullablePermissionsRequest(val *PermissionsRequest) *NullablePermissionsRequest

func (NullablePermissionsRequest) Get

func (NullablePermissionsRequest) IsSet

func (v NullablePermissionsRequest) IsSet() bool

func (NullablePermissionsRequest) MarshalJSON

func (v NullablePermissionsRequest) MarshalJSON() ([]byte, error)

func (*NullablePermissionsRequest) Set

func (*NullablePermissionsRequest) UnmarshalJSON

func (v *NullablePermissionsRequest) UnmarshalJSON(src []byte) error

func (*NullablePermissionsRequest) Unset

func (v *NullablePermissionsRequest) Unset()

type NullablePrimaryEnvironmentUserResponse

type NullablePrimaryEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func (NullablePrimaryEnvironmentUserResponse) Get

func (NullablePrimaryEnvironmentUserResponse) IsSet

func (NullablePrimaryEnvironmentUserResponse) MarshalJSON

func (v NullablePrimaryEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullablePrimaryEnvironmentUserResponse) Set

func (*NullablePrimaryEnvironmentUserResponse) UnmarshalJSON

func (v *NullablePrimaryEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullablePrimaryEnvironmentUserResponse) Unset

type NullableProductHistory

type NullableProductHistory struct {
	// contains filtered or unexported fields
}

func NewNullableProductHistory

func NewNullableProductHistory(val *ProductHistory) *NullableProductHistory

func (NullableProductHistory) Get

func (NullableProductHistory) IsSet

func (v NullableProductHistory) IsSet() bool

func (NullableProductHistory) MarshalJSON

func (v NullableProductHistory) MarshalJSON() ([]byte, error)

func (*NullableProductHistory) Set

func (*NullableProductHistory) UnmarshalJSON

func (v *NullableProductHistory) UnmarshalJSON(src []byte) error

func (*NullableProductHistory) Unset

func (v *NullableProductHistory) Unset()

type NullableProductInfo

type NullableProductInfo struct {
	// contains filtered or unexported fields
}

func NewNullableProductInfo

func NewNullableProductInfo(val *ProductInfo) *NullableProductInfo

func (NullableProductInfo) Get

func (NullableProductInfo) IsSet

func (v NullableProductInfo) IsSet() bool

func (NullableProductInfo) MarshalJSON

func (v NullableProductInfo) MarshalJSON() ([]byte, error)

func (*NullableProductInfo) Set

func (v *NullableProductInfo) Set(val *ProductInfo)

func (*NullableProductInfo) UnmarshalJSON

func (v *NullableProductInfo) UnmarshalJSON(src []byte) error

func (*NullableProductInfo) Unset

func (v *NullableProductInfo) Unset()

type NullableProvisionVDBByLocationDefaultsRequest

type NullableProvisionVDBByLocationDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByLocationDefaultsRequest) Get

func (NullableProvisionVDBByLocationDefaultsRequest) IsSet

func (NullableProvisionVDBByLocationDefaultsRequest) MarshalJSON

func (*NullableProvisionVDBByLocationDefaultsRequest) Set

func (*NullableProvisionVDBByLocationDefaultsRequest) UnmarshalJSON

func (*NullableProvisionVDBByLocationDefaultsRequest) Unset

type NullableProvisionVDBByLocationParameters

type NullableProvisionVDBByLocationParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByLocationParameters) Get

func (NullableProvisionVDBByLocationParameters) IsSet

func (NullableProvisionVDBByLocationParameters) MarshalJSON

func (*NullableProvisionVDBByLocationParameters) Set

func (*NullableProvisionVDBByLocationParameters) UnmarshalJSON

func (v *NullableProvisionVDBByLocationParameters) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBByLocationParameters) Unset

type NullableProvisionVDBByLocationParametersAllOf

type NullableProvisionVDBByLocationParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByLocationParametersAllOf) Get

func (NullableProvisionVDBByLocationParametersAllOf) IsSet

func (NullableProvisionVDBByLocationParametersAllOf) MarshalJSON

func (*NullableProvisionVDBByLocationParametersAllOf) Set

func (*NullableProvisionVDBByLocationParametersAllOf) UnmarshalJSON

func (*NullableProvisionVDBByLocationParametersAllOf) Unset

type NullableProvisionVDBBySnapshotDefaultsRequest

type NullableProvisionVDBBySnapshotDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBBySnapshotDefaultsRequest) Get

func (NullableProvisionVDBBySnapshotDefaultsRequest) IsSet

func (NullableProvisionVDBBySnapshotDefaultsRequest) MarshalJSON

func (*NullableProvisionVDBBySnapshotDefaultsRequest) Set

func (*NullableProvisionVDBBySnapshotDefaultsRequest) UnmarshalJSON

func (*NullableProvisionVDBBySnapshotDefaultsRequest) Unset

type NullableProvisionVDBBySnapshotParameters

type NullableProvisionVDBBySnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBBySnapshotParameters) Get

func (NullableProvisionVDBBySnapshotParameters) IsSet

func (NullableProvisionVDBBySnapshotParameters) MarshalJSON

func (*NullableProvisionVDBBySnapshotParameters) Set

func (*NullableProvisionVDBBySnapshotParameters) UnmarshalJSON

func (v *NullableProvisionVDBBySnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBBySnapshotParameters) Unset

type NullableProvisionVDBBySnapshotParametersAllOf

type NullableProvisionVDBBySnapshotParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBBySnapshotParametersAllOf) Get

func (NullableProvisionVDBBySnapshotParametersAllOf) IsSet

func (NullableProvisionVDBBySnapshotParametersAllOf) MarshalJSON

func (*NullableProvisionVDBBySnapshotParametersAllOf) Set

func (*NullableProvisionVDBBySnapshotParametersAllOf) UnmarshalJSON

func (*NullableProvisionVDBBySnapshotParametersAllOf) Unset

type NullableProvisionVDBByTimestampDefaultsRequest

type NullableProvisionVDBByTimestampDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByTimestampDefaultsRequest) Get

func (NullableProvisionVDBByTimestampDefaultsRequest) IsSet

func (NullableProvisionVDBByTimestampDefaultsRequest) MarshalJSON

func (*NullableProvisionVDBByTimestampDefaultsRequest) Set

func (*NullableProvisionVDBByTimestampDefaultsRequest) UnmarshalJSON

func (*NullableProvisionVDBByTimestampDefaultsRequest) Unset

type NullableProvisionVDBByTimestampParameters

type NullableProvisionVDBByTimestampParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByTimestampParameters) Get

func (NullableProvisionVDBByTimestampParameters) IsSet

func (NullableProvisionVDBByTimestampParameters) MarshalJSON

func (*NullableProvisionVDBByTimestampParameters) Set

func (*NullableProvisionVDBByTimestampParameters) UnmarshalJSON

func (v *NullableProvisionVDBByTimestampParameters) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBByTimestampParameters) Unset

type NullableProvisionVDBByTimestampParametersAllOf

type NullableProvisionVDBByTimestampParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByTimestampParametersAllOf) Get

func (NullableProvisionVDBByTimestampParametersAllOf) IsSet

func (NullableProvisionVDBByTimestampParametersAllOf) MarshalJSON

func (*NullableProvisionVDBByTimestampParametersAllOf) Set

func (*NullableProvisionVDBByTimestampParametersAllOf) UnmarshalJSON

func (*NullableProvisionVDBByTimestampParametersAllOf) Unset

type NullableProvisionVDBFromBookmarkDefaultsRequest

type NullableProvisionVDBFromBookmarkDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBFromBookmarkDefaultsRequest) Get

func (NullableProvisionVDBFromBookmarkDefaultsRequest) IsSet

func (NullableProvisionVDBFromBookmarkDefaultsRequest) MarshalJSON

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) Set

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) UnmarshalJSON

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) Unset

type NullableProvisionVDBFromBookmarkParameters

type NullableProvisionVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBFromBookmarkParameters) Get

func (NullableProvisionVDBFromBookmarkParameters) IsSet

func (NullableProvisionVDBFromBookmarkParameters) MarshalJSON

func (*NullableProvisionVDBFromBookmarkParameters) Set

func (*NullableProvisionVDBFromBookmarkParameters) UnmarshalJSON

func (v *NullableProvisionVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBFromBookmarkParameters) Unset

type NullableProvisionVDBFromBookmarkParametersAllOf

type NullableProvisionVDBFromBookmarkParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBFromBookmarkParametersAllOf) Get

func (NullableProvisionVDBFromBookmarkParametersAllOf) IsSet

func (NullableProvisionVDBFromBookmarkParametersAllOf) MarshalJSON

func (*NullableProvisionVDBFromBookmarkParametersAllOf) Set

func (*NullableProvisionVDBFromBookmarkParametersAllOf) UnmarshalJSON

func (*NullableProvisionVDBFromBookmarkParametersAllOf) Unset

type NullableProvisionVDBGroupFromBookmarkParameters

type NullableProvisionVDBGroupFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBGroupFromBookmarkParameters) Get

func (NullableProvisionVDBGroupFromBookmarkParameters) IsSet

func (NullableProvisionVDBGroupFromBookmarkParameters) MarshalJSON

func (*NullableProvisionVDBGroupFromBookmarkParameters) Set

func (*NullableProvisionVDBGroupFromBookmarkParameters) UnmarshalJSON

func (*NullableProvisionVDBGroupFromBookmarkParameters) Unset

type NullableProvisionVDBGroupFromBookmarkResponse

type NullableProvisionVDBGroupFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBGroupFromBookmarkResponse) Get

func (NullableProvisionVDBGroupFromBookmarkResponse) IsSet

func (NullableProvisionVDBGroupFromBookmarkResponse) MarshalJSON

func (*NullableProvisionVDBGroupFromBookmarkResponse) Set

func (*NullableProvisionVDBGroupFromBookmarkResponse) UnmarshalJSON

func (*NullableProvisionVDBGroupFromBookmarkResponse) Unset

type NullableProvisionVDBResponse

type NullableProvisionVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableProvisionVDBResponse

func NewNullableProvisionVDBResponse(val *ProvisionVDBResponse) *NullableProvisionVDBResponse

func (NullableProvisionVDBResponse) Get

func (NullableProvisionVDBResponse) IsSet

func (NullableProvisionVDBResponse) MarshalJSON

func (v NullableProvisionVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableProvisionVDBResponse) Set

func (*NullableProvisionVDBResponse) UnmarshalJSON

func (v *NullableProvisionVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBResponse) Unset

func (v *NullableProvisionVDBResponse) Unset()

type NullableProxyConfiguration

type NullableProxyConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableProxyConfiguration

func NewNullableProxyConfiguration(val *ProxyConfiguration) *NullableProxyConfiguration

func (NullableProxyConfiguration) Get

func (NullableProxyConfiguration) IsSet

func (v NullableProxyConfiguration) IsSet() bool

func (NullableProxyConfiguration) MarshalJSON

func (v NullableProxyConfiguration) MarshalJSON() ([]byte, error)

func (*NullableProxyConfiguration) Set

func (*NullableProxyConfiguration) UnmarshalJSON

func (v *NullableProxyConfiguration) UnmarshalJSON(src []byte) error

func (*NullableProxyConfiguration) Unset

func (v *NullableProxyConfiguration) Unset()

type NullableRefreshEnvironmentResponse

type NullableRefreshEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshEnvironmentResponse) Get

func (NullableRefreshEnvironmentResponse) IsSet

func (NullableRefreshEnvironmentResponse) MarshalJSON

func (v NullableRefreshEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshEnvironmentResponse) Set

func (*NullableRefreshEnvironmentResponse) UnmarshalJSON

func (v *NullableRefreshEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshEnvironmentResponse) Unset

type NullableRefreshVDBByLocationParameters

type NullableRefreshVDBByLocationParameters struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBByLocationParameters) Get

func (NullableRefreshVDBByLocationParameters) IsSet

func (NullableRefreshVDBByLocationParameters) MarshalJSON

func (v NullableRefreshVDBByLocationParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByLocationParameters) Set

func (*NullableRefreshVDBByLocationParameters) UnmarshalJSON

func (v *NullableRefreshVDBByLocationParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByLocationParameters) Unset

type NullableRefreshVDBByLocationResponse

type NullableRefreshVDBByLocationResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBByLocationResponse) Get

func (NullableRefreshVDBByLocationResponse) IsSet

func (NullableRefreshVDBByLocationResponse) MarshalJSON

func (v NullableRefreshVDBByLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByLocationResponse) Set

func (*NullableRefreshVDBByLocationResponse) UnmarshalJSON

func (v *NullableRefreshVDBByLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByLocationResponse) Unset

type NullableRefreshVDBBySnapshotParameters

type NullableRefreshVDBBySnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBBySnapshotParameters) Get

func (NullableRefreshVDBBySnapshotParameters) IsSet

func (NullableRefreshVDBBySnapshotParameters) MarshalJSON

func (v NullableRefreshVDBBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBBySnapshotParameters) Set

func (*NullableRefreshVDBBySnapshotParameters) UnmarshalJSON

func (v *NullableRefreshVDBBySnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBBySnapshotParameters) Unset

type NullableRefreshVDBBySnapshotResponse

type NullableRefreshVDBBySnapshotResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBBySnapshotResponse) Get

func (NullableRefreshVDBBySnapshotResponse) IsSet

func (NullableRefreshVDBBySnapshotResponse) MarshalJSON

func (v NullableRefreshVDBBySnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBBySnapshotResponse) Set

func (*NullableRefreshVDBBySnapshotResponse) UnmarshalJSON

func (v *NullableRefreshVDBBySnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBBySnapshotResponse) Unset

type NullableRefreshVDBByTimestampParameters

type NullableRefreshVDBByTimestampParameters struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBByTimestampParameters) Get

func (NullableRefreshVDBByTimestampParameters) IsSet

func (NullableRefreshVDBByTimestampParameters) MarshalJSON

func (v NullableRefreshVDBByTimestampParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByTimestampParameters) Set

func (*NullableRefreshVDBByTimestampParameters) UnmarshalJSON

func (v *NullableRefreshVDBByTimestampParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByTimestampParameters) Unset

type NullableRefreshVDBByTimestampParametersAllOf

type NullableRefreshVDBByTimestampParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBByTimestampParametersAllOf) Get

func (NullableRefreshVDBByTimestampParametersAllOf) IsSet

func (NullableRefreshVDBByTimestampParametersAllOf) MarshalJSON

func (*NullableRefreshVDBByTimestampParametersAllOf) Set

func (*NullableRefreshVDBByTimestampParametersAllOf) UnmarshalJSON

func (*NullableRefreshVDBByTimestampParametersAllOf) Unset

type NullableRefreshVDBByTimestampResponse

type NullableRefreshVDBByTimestampResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBByTimestampResponse) Get

func (NullableRefreshVDBByTimestampResponse) IsSet

func (NullableRefreshVDBByTimestampResponse) MarshalJSON

func (v NullableRefreshVDBByTimestampResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByTimestampResponse) Set

func (*NullableRefreshVDBByTimestampResponse) UnmarshalJSON

func (v *NullableRefreshVDBByTimestampResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByTimestampResponse) Unset

type NullableRefreshVDBFromBookmarkParameters

type NullableRefreshVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBFromBookmarkParameters) Get

func (NullableRefreshVDBFromBookmarkParameters) IsSet

func (NullableRefreshVDBFromBookmarkParameters) MarshalJSON

func (*NullableRefreshVDBFromBookmarkParameters) Set

func (*NullableRefreshVDBFromBookmarkParameters) UnmarshalJSON

func (v *NullableRefreshVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBFromBookmarkParameters) Unset

type NullableRefreshVDBFromBookmarkResponse

type NullableRefreshVDBFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBFromBookmarkResponse) Get

func (NullableRefreshVDBFromBookmarkResponse) IsSet

func (NullableRefreshVDBFromBookmarkResponse) MarshalJSON

func (v NullableRefreshVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBFromBookmarkResponse) Set

func (*NullableRefreshVDBFromBookmarkResponse) UnmarshalJSON

func (v *NullableRefreshVDBFromBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBFromBookmarkResponse) Unset

type NullableRefreshVDBGroupParameters

type NullableRefreshVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBGroupParameters) Get

func (NullableRefreshVDBGroupParameters) IsSet

func (NullableRefreshVDBGroupParameters) MarshalJSON

func (v NullableRefreshVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBGroupParameters) Set

func (*NullableRefreshVDBGroupParameters) UnmarshalJSON

func (v *NullableRefreshVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBGroupParameters) Unset

type NullableRefreshVDBGroupResponse

type NullableRefreshVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableRefreshVDBGroupResponse) Get

func (NullableRefreshVDBGroupResponse) IsSet

func (NullableRefreshVDBGroupResponse) MarshalJSON

func (v NullableRefreshVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBGroupResponse) Set

func (*NullableRefreshVDBGroupResponse) UnmarshalJSON

func (v *NullableRefreshVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBGroupResponse) Unset

type NullableRegisteredEngine

type NullableRegisteredEngine struct {
	// contains filtered or unexported fields
}

func NewNullableRegisteredEngine

func NewNullableRegisteredEngine(val *RegisteredEngine) *NullableRegisteredEngine

func (NullableRegisteredEngine) Get

func (NullableRegisteredEngine) IsSet

func (v NullableRegisteredEngine) IsSet() bool

func (NullableRegisteredEngine) MarshalJSON

func (v NullableRegisteredEngine) MarshalJSON() ([]byte, error)

func (*NullableRegisteredEngine) Set

func (*NullableRegisteredEngine) UnmarshalJSON

func (v *NullableRegisteredEngine) UnmarshalJSON(src []byte) error

func (*NullableRegisteredEngine) Unset

func (v *NullableRegisteredEngine) Unset()

type NullableRemoveMaskingJobParameters

type NullableRemoveMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func (NullableRemoveMaskingJobParameters) Get

func (NullableRemoveMaskingJobParameters) IsSet

func (NullableRemoveMaskingJobParameters) MarshalJSON

func (v NullableRemoveMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableRemoveMaskingJobParameters) Set

func (*NullableRemoveMaskingJobParameters) UnmarshalJSON

func (v *NullableRemoveMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableRemoveMaskingJobParameters) Unset

type NullableReportingSchedule

type NullableReportingSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableReportingSchedule

func NewNullableReportingSchedule(val *ReportingSchedule) *NullableReportingSchedule

func (NullableReportingSchedule) Get

func (NullableReportingSchedule) IsSet

func (v NullableReportingSchedule) IsSet() bool

func (NullableReportingSchedule) MarshalJSON

func (v NullableReportingSchedule) MarshalJSON() ([]byte, error)

func (*NullableReportingSchedule) Set

func (*NullableReportingSchedule) UnmarshalJSON

func (v *NullableReportingSchedule) UnmarshalJSON(src []byte) error

func (*NullableReportingSchedule) Unset

func (v *NullableReportingSchedule) Unset()

type NullableReportingScheduleCreateParameters

type NullableReportingScheduleCreateParameters struct {
	// contains filtered or unexported fields
}

func (NullableReportingScheduleCreateParameters) Get

func (NullableReportingScheduleCreateParameters) IsSet

func (NullableReportingScheduleCreateParameters) MarshalJSON

func (*NullableReportingScheduleCreateParameters) Set

func (*NullableReportingScheduleCreateParameters) UnmarshalJSON

func (v *NullableReportingScheduleCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableReportingScheduleCreateParameters) Unset

type NullableRepository

type NullableRepository struct {
	// contains filtered or unexported fields
}

func NewNullableRepository

func NewNullableRepository(val *Repository) *NullableRepository

func (NullableRepository) Get

func (v NullableRepository) Get() *Repository

func (NullableRepository) IsSet

func (v NullableRepository) IsSet() bool

func (NullableRepository) MarshalJSON

func (v NullableRepository) MarshalJSON() ([]byte, error)

func (*NullableRepository) Set

func (v *NullableRepository) Set(val *Repository)

func (*NullableRepository) UnmarshalJSON

func (v *NullableRepository) UnmarshalJSON(src []byte) error

func (*NullableRepository) Unset

func (v *NullableRepository) Unset()

type NullableResetPasswordParameter

type NullableResetPasswordParameter struct {
	// contains filtered or unexported fields
}

func (NullableResetPasswordParameter) Get

func (NullableResetPasswordParameter) IsSet

func (NullableResetPasswordParameter) MarshalJSON

func (v NullableResetPasswordParameter) MarshalJSON() ([]byte, error)

func (*NullableResetPasswordParameter) Set

func (*NullableResetPasswordParameter) UnmarshalJSON

func (v *NullableResetPasswordParameter) UnmarshalJSON(src []byte) error

func (*NullableResetPasswordParameter) Unset

func (v *NullableResetPasswordParameter) Unset()

type NullableRole

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get

func (v NullableRole) Get() *Role

func (NullableRole) IsSet

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset

func (v *NullableRole) Unset()

type NullableRoleAllOf

type NullableRoleAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRoleAllOf

func NewNullableRoleAllOf(val *RoleAllOf) *NullableRoleAllOf

func (NullableRoleAllOf) Get

func (v NullableRoleAllOf) Get() *RoleAllOf

func (NullableRoleAllOf) IsSet

func (v NullableRoleAllOf) IsSet() bool

func (NullableRoleAllOf) MarshalJSON

func (v NullableRoleAllOf) MarshalJSON() ([]byte, error)

func (*NullableRoleAllOf) Set

func (v *NullableRoleAllOf) Set(val *RoleAllOf)

func (*NullableRoleAllOf) UnmarshalJSON

func (v *NullableRoleAllOf) UnmarshalJSON(src []byte) error

func (*NullableRoleAllOf) Unset

func (v *NullableRoleAllOf) Unset()

type NullableRoleUpdateParameters

type NullableRoleUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRoleUpdateParameters

func NewNullableRoleUpdateParameters(val *RoleUpdateParameters) *NullableRoleUpdateParameters

func (NullableRoleUpdateParameters) Get

func (NullableRoleUpdateParameters) IsSet

func (NullableRoleUpdateParameters) MarshalJSON

func (v NullableRoleUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableRoleUpdateParameters) Set

func (*NullableRoleUpdateParameters) UnmarshalJSON

func (v *NullableRoleUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableRoleUpdateParameters) Unset

func (v *NullableRoleUpdateParameters) Unset()

type NullableRollbackVDBBySnapshotParameters

type NullableRollbackVDBBySnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBBySnapshotParameters) Get

func (NullableRollbackVDBBySnapshotParameters) IsSet

func (NullableRollbackVDBBySnapshotParameters) MarshalJSON

func (v NullableRollbackVDBBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBBySnapshotParameters) Set

func (*NullableRollbackVDBBySnapshotParameters) UnmarshalJSON

func (v *NullableRollbackVDBBySnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBBySnapshotParameters) Unset

type NullableRollbackVDBBySnapshotResponse

type NullableRollbackVDBBySnapshotResponse struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBBySnapshotResponse) Get

func (NullableRollbackVDBBySnapshotResponse) IsSet

func (NullableRollbackVDBBySnapshotResponse) MarshalJSON

func (v NullableRollbackVDBBySnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBBySnapshotResponse) Set

func (*NullableRollbackVDBBySnapshotResponse) UnmarshalJSON

func (v *NullableRollbackVDBBySnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBBySnapshotResponse) Unset

type NullableRollbackVDBByTimestampParameters

type NullableRollbackVDBByTimestampParameters struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBByTimestampParameters) Get

func (NullableRollbackVDBByTimestampParameters) IsSet

func (NullableRollbackVDBByTimestampParameters) MarshalJSON

func (*NullableRollbackVDBByTimestampParameters) Set

func (*NullableRollbackVDBByTimestampParameters) UnmarshalJSON

func (v *NullableRollbackVDBByTimestampParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBByTimestampParameters) Unset

type NullableRollbackVDBByTimestampResponse

type NullableRollbackVDBByTimestampResponse struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBByTimestampResponse) Get

func (NullableRollbackVDBByTimestampResponse) IsSet

func (NullableRollbackVDBByTimestampResponse) MarshalJSON

func (v NullableRollbackVDBByTimestampResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBByTimestampResponse) Set

func (*NullableRollbackVDBByTimestampResponse) UnmarshalJSON

func (v *NullableRollbackVDBByTimestampResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBByTimestampResponse) Unset

type NullableRollbackVDBFromBookmarkParameters

type NullableRollbackVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBFromBookmarkParameters) Get

func (NullableRollbackVDBFromBookmarkParameters) IsSet

func (NullableRollbackVDBFromBookmarkParameters) MarshalJSON

func (*NullableRollbackVDBFromBookmarkParameters) Set

func (*NullableRollbackVDBFromBookmarkParameters) UnmarshalJSON

func (v *NullableRollbackVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBFromBookmarkParameters) Unset

type NullableRollbackVDBFromBookmarkResponse

type NullableRollbackVDBFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBFromBookmarkResponse) Get

func (NullableRollbackVDBFromBookmarkResponse) IsSet

func (NullableRollbackVDBFromBookmarkResponse) MarshalJSON

func (v NullableRollbackVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBFromBookmarkResponse) Set

func (*NullableRollbackVDBFromBookmarkResponse) UnmarshalJSON

func (v *NullableRollbackVDBFromBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBFromBookmarkResponse) Unset

type NullableRollbackVDBGroupParameters

type NullableRollbackVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBGroupParameters) Get

func (NullableRollbackVDBGroupParameters) IsSet

func (NullableRollbackVDBGroupParameters) MarshalJSON

func (v NullableRollbackVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBGroupParameters) Set

func (*NullableRollbackVDBGroupParameters) UnmarshalJSON

func (v *NullableRollbackVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBGroupParameters) Unset

type NullableRollbackVDBGroupResponse

type NullableRollbackVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVDBGroupResponse) Get

func (NullableRollbackVDBGroupResponse) IsSet

func (NullableRollbackVDBGroupResponse) MarshalJSON

func (v NullableRollbackVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBGroupResponse) Set

func (*NullableRollbackVDBGroupResponse) UnmarshalJSON

func (v *NullableRollbackVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBGroupResponse) Unset

type NullableSAMLConfigParams

type NullableSAMLConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableSAMLConfigParams

func NewNullableSAMLConfigParams(val *SAMLConfigParams) *NullableSAMLConfigParams

func (NullableSAMLConfigParams) Get

func (NullableSAMLConfigParams) IsSet

func (v NullableSAMLConfigParams) IsSet() bool

func (NullableSAMLConfigParams) MarshalJSON

func (v NullableSAMLConfigParams) MarshalJSON() ([]byte, error)

func (*NullableSAMLConfigParams) Set

func (*NullableSAMLConfigParams) UnmarshalJSON

func (v *NullableSAMLConfigParams) UnmarshalJSON(src []byte) error

func (*NullableSAMLConfigParams) Unset

func (v *NullableSAMLConfigParams) Unset()

type NullableSMTPConfigParams

type NullableSMTPConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableSMTPConfigParams

func NewNullableSMTPConfigParams(val *SMTPConfigParams) *NullableSMTPConfigParams

func (NullableSMTPConfigParams) Get

func (NullableSMTPConfigParams) IsSet

func (v NullableSMTPConfigParams) IsSet() bool

func (NullableSMTPConfigParams) MarshalJSON

func (v NullableSMTPConfigParams) MarshalJSON() ([]byte, error)

func (*NullableSMTPConfigParams) Set

func (*NullableSMTPConfigParams) UnmarshalJSON

func (v *NullableSMTPConfigParams) UnmarshalJSON(src []byte) error

func (*NullableSMTPConfigParams) Unset

func (v *NullableSMTPConfigParams) Unset()

type NullableSMTPConfigValidate

type NullableSMTPConfigValidate struct {
	// contains filtered or unexported fields
}

func NewNullableSMTPConfigValidate

func NewNullableSMTPConfigValidate(val *SMTPConfigValidate) *NullableSMTPConfigValidate

func (NullableSMTPConfigValidate) Get

func (NullableSMTPConfigValidate) IsSet

func (v NullableSMTPConfigValidate) IsSet() bool

func (NullableSMTPConfigValidate) MarshalJSON

func (v NullableSMTPConfigValidate) MarshalJSON() ([]byte, error)

func (*NullableSMTPConfigValidate) Set

func (*NullableSMTPConfigValidate) UnmarshalJSON

func (v *NullableSMTPConfigValidate) UnmarshalJSON(src []byte) error

func (*NullableSMTPConfigValidate) Unset

func (v *NullableSMTPConfigValidate) Unset()

type NullableSSHVerificationStrategy

type NullableSSHVerificationStrategy struct {
	// contains filtered or unexported fields
}

func (NullableSSHVerificationStrategy) Get

func (NullableSSHVerificationStrategy) IsSet

func (NullableSSHVerificationStrategy) MarshalJSON

func (v NullableSSHVerificationStrategy) MarshalJSON() ([]byte, error)

func (*NullableSSHVerificationStrategy) Set

func (*NullableSSHVerificationStrategy) UnmarshalJSON

func (v *NullableSSHVerificationStrategy) UnmarshalJSON(src []byte) error

func (*NullableSSHVerificationStrategy) Unset

type NullableScopeTag

type NullableScopeTag struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTag

func NewNullableScopeTag(val *ScopeTag) *NullableScopeTag

func (NullableScopeTag) Get

func (v NullableScopeTag) Get() *ScopeTag

func (NullableScopeTag) IsSet

func (v NullableScopeTag) IsSet() bool

func (NullableScopeTag) MarshalJSON

func (v NullableScopeTag) MarshalJSON() ([]byte, error)

func (*NullableScopeTag) Set

func (v *NullableScopeTag) Set(val *ScopeTag)

func (*NullableScopeTag) UnmarshalJSON

func (v *NullableScopeTag) UnmarshalJSON(src []byte) error

func (*NullableScopeTag) Unset

func (v *NullableScopeTag) Unset()

type NullableScopeTagsRequest

type NullableScopeTagsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTagsRequest

func NewNullableScopeTagsRequest(val *ScopeTagsRequest) *NullableScopeTagsRequest

func (NullableScopeTagsRequest) Get

func (NullableScopeTagsRequest) IsSet

func (v NullableScopeTagsRequest) IsSet() bool

func (NullableScopeTagsRequest) MarshalJSON

func (v NullableScopeTagsRequest) MarshalJSON() ([]byte, error)

func (*NullableScopeTagsRequest) Set

func (*NullableScopeTagsRequest) UnmarshalJSON

func (v *NullableScopeTagsRequest) UnmarshalJSON(src []byte) error

func (*NullableScopeTagsRequest) Unset

func (v *NullableScopeTagsRequest) Unset()

type NullableScopeTagsResponse

type NullableScopeTagsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTagsResponse

func NewNullableScopeTagsResponse(val *ScopeTagsResponse) *NullableScopeTagsResponse

func (NullableScopeTagsResponse) Get

func (NullableScopeTagsResponse) IsSet

func (v NullableScopeTagsResponse) IsSet() bool

func (NullableScopeTagsResponse) MarshalJSON

func (v NullableScopeTagsResponse) MarshalJSON() ([]byte, error)

func (*NullableScopeTagsResponse) Set

func (*NullableScopeTagsResponse) UnmarshalJSON

func (v *NullableScopeTagsResponse) UnmarshalJSON(src []byte) error

func (*NullableScopeTagsResponse) Unset

func (v *NullableScopeTagsResponse) Unset()

type NullableScopedObjectItem

type NullableScopedObjectItem struct {
	// contains filtered or unexported fields
}

func NewNullableScopedObjectItem

func NewNullableScopedObjectItem(val *ScopedObjectItem) *NullableScopedObjectItem

func (NullableScopedObjectItem) Get

func (NullableScopedObjectItem) IsSet

func (v NullableScopedObjectItem) IsSet() bool

func (NullableScopedObjectItem) MarshalJSON

func (v NullableScopedObjectItem) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectItem) Set

func (*NullableScopedObjectItem) UnmarshalJSON

func (v *NullableScopedObjectItem) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectItem) Unset

func (v *NullableScopedObjectItem) Unset()

type NullableScopedObjectItemsResponse

type NullableScopedObjectItemsResponse struct {
	// contains filtered or unexported fields
}

func (NullableScopedObjectItemsResponse) Get

func (NullableScopedObjectItemsResponse) IsSet

func (NullableScopedObjectItemsResponse) MarshalJSON

func (v NullableScopedObjectItemsResponse) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectItemsResponse) Set

func (*NullableScopedObjectItemsResponse) UnmarshalJSON

func (v *NullableScopedObjectItemsResponse) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectItemsResponse) Unset

type NullableScopedObjectsRequest

type NullableScopedObjectsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableScopedObjectsRequest

func NewNullableScopedObjectsRequest(val *ScopedObjectsRequest) *NullableScopedObjectsRequest

func (NullableScopedObjectsRequest) Get

func (NullableScopedObjectsRequest) IsSet

func (NullableScopedObjectsRequest) MarshalJSON

func (v NullableScopedObjectsRequest) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectsRequest) Set

func (*NullableScopedObjectsRequest) UnmarshalJSON

func (v *NullableScopedObjectsRequest) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectsRequest) Unset

func (v *NullableScopedObjectsRequest) Unset()

type NullableSearchAccessGroupsResponse

type NullableSearchAccessGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchAccessGroupsResponse) Get

func (NullableSearchAccessGroupsResponse) IsSet

func (NullableSearchAccessGroupsResponse) MarshalJSON

func (v NullableSearchAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchAccessGroupsResponse) Set

func (*NullableSearchAccessGroupsResponse) UnmarshalJSON

func (v *NullableSearchAccessGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchAccessGroupsResponse) Unset

type NullableSearchAccountsResponse

type NullableSearchAccountsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchAccountsResponse) Get

func (NullableSearchAccountsResponse) IsSet

func (NullableSearchAccountsResponse) MarshalJSON

func (v NullableSearchAccountsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchAccountsResponse) Set

func (*NullableSearchAccountsResponse) UnmarshalJSON

func (v *NullableSearchAccountsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchAccountsResponse) Unset

func (v *NullableSearchAccountsResponse) Unset()

type NullableSearchAlgorithmsResponse

type NullableSearchAlgorithmsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchAlgorithmsResponse) Get

func (NullableSearchAlgorithmsResponse) IsSet

func (NullableSearchAlgorithmsResponse) MarshalJSON

func (v NullableSearchAlgorithmsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchAlgorithmsResponse) Set

func (*NullableSearchAlgorithmsResponse) UnmarshalJSON

func (v *NullableSearchAlgorithmsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchAlgorithmsResponse) Unset

type NullableSearchBody

type NullableSearchBody struct {
	// contains filtered or unexported fields
}

func NewNullableSearchBody

func NewNullableSearchBody(val *SearchBody) *NullableSearchBody

func (NullableSearchBody) Get

func (v NullableSearchBody) Get() *SearchBody

func (NullableSearchBody) IsSet

func (v NullableSearchBody) IsSet() bool

func (NullableSearchBody) MarshalJSON

func (v NullableSearchBody) MarshalJSON() ([]byte, error)

func (*NullableSearchBody) Set

func (v *NullableSearchBody) Set(val *SearchBody)

func (*NullableSearchBody) UnmarshalJSON

func (v *NullableSearchBody) UnmarshalJSON(src []byte) error

func (*NullableSearchBody) Unset

func (v *NullableSearchBody) Unset()

type NullableSearchBookmarksByVDBGroupsResponse

type NullableSearchBookmarksByVDBGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchBookmarksByVDBGroupsResponse) Get

func (NullableSearchBookmarksByVDBGroupsResponse) IsSet

func (NullableSearchBookmarksByVDBGroupsResponse) MarshalJSON

func (*NullableSearchBookmarksByVDBGroupsResponse) Set

func (*NullableSearchBookmarksByVDBGroupsResponse) UnmarshalJSON

func (v *NullableSearchBookmarksByVDBGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchBookmarksByVDBGroupsResponse) Unset

type NullableSearchBookmarksByVDBResponse

type NullableSearchBookmarksByVDBResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchBookmarksByVDBResponse) Get

func (NullableSearchBookmarksByVDBResponse) IsSet

func (NullableSearchBookmarksByVDBResponse) MarshalJSON

func (v NullableSearchBookmarksByVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchBookmarksByVDBResponse) Set

func (*NullableSearchBookmarksByVDBResponse) UnmarshalJSON

func (v *NullableSearchBookmarksByVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchBookmarksByVDBResponse) Unset

type NullableSearchBookmarksResponse

type NullableSearchBookmarksResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchBookmarksResponse) Get

func (NullableSearchBookmarksResponse) IsSet

func (NullableSearchBookmarksResponse) MarshalJSON

func (v NullableSearchBookmarksResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchBookmarksResponse) Set

func (*NullableSearchBookmarksResponse) UnmarshalJSON

func (v *NullableSearchBookmarksResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchBookmarksResponse) Unset

type NullableSearchCDBsResponse

type NullableSearchCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchCDBsResponse

func NewNullableSearchCDBsResponse(val *SearchCDBsResponse) *NullableSearchCDBsResponse

func (NullableSearchCDBsResponse) Get

func (NullableSearchCDBsResponse) IsSet

func (v NullableSearchCDBsResponse) IsSet() bool

func (NullableSearchCDBsResponse) MarshalJSON

func (v NullableSearchCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchCDBsResponse) Set

func (*NullableSearchCDBsResponse) UnmarshalJSON

func (v *NullableSearchCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchCDBsResponse) Unset

func (v *NullableSearchCDBsResponse) Unset()

type NullableSearchConnectorsResponse

type NullableSearchConnectorsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchConnectorsResponse) Get

func (NullableSearchConnectorsResponse) IsSet

func (NullableSearchConnectorsResponse) MarshalJSON

func (v NullableSearchConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchConnectorsResponse) Set

func (*NullableSearchConnectorsResponse) UnmarshalJSON

func (v *NullableSearchConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchConnectorsResponse) Unset

type NullableSearchDSourcesResponse

type NullableSearchDSourcesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchDSourcesResponse) Get

func (NullableSearchDSourcesResponse) IsSet

func (NullableSearchDSourcesResponse) MarshalJSON

func (v NullableSearchDSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDSourcesResponse) Set

func (*NullableSearchDSourcesResponse) UnmarshalJSON

func (v *NullableSearchDSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDSourcesResponse) Unset

func (v *NullableSearchDSourcesResponse) Unset()

type NullableSearchDatabaseTemplatesResponse

type NullableSearchDatabaseTemplatesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchDatabaseTemplatesResponse) Get

func (NullableSearchDatabaseTemplatesResponse) IsSet

func (NullableSearchDatabaseTemplatesResponse) MarshalJSON

func (v NullableSearchDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDatabaseTemplatesResponse) Set

func (*NullableSearchDatabaseTemplatesResponse) UnmarshalJSON

func (v *NullableSearchDatabaseTemplatesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDatabaseTemplatesResponse) Unset

type NullableSearchDatasetGroupResponse

type NullableSearchDatasetGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchDatasetGroupResponse) Get

func (NullableSearchDatasetGroupResponse) IsSet

func (NullableSearchDatasetGroupResponse) MarshalJSON

func (v NullableSearchDatasetGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDatasetGroupResponse) Set

func (*NullableSearchDatasetGroupResponse) UnmarshalJSON

func (v *NullableSearchDatasetGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDatasetGroupResponse) Unset

type NullableSearchEnginesResponse

type NullableSearchEnginesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchEnginesResponse) Get

func (NullableSearchEnginesResponse) IsSet

func (NullableSearchEnginesResponse) MarshalJSON

func (v NullableSearchEnginesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchEnginesResponse) Set

func (*NullableSearchEnginesResponse) UnmarshalJSON

func (v *NullableSearchEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchEnginesResponse) Unset

func (v *NullableSearchEnginesResponse) Unset()

type NullableSearchEnvironmentsResponse

type NullableSearchEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchEnvironmentsResponse) Get

func (NullableSearchEnvironmentsResponse) IsSet

func (NullableSearchEnvironmentsResponse) MarshalJSON

func (v NullableSearchEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchEnvironmentsResponse) Set

func (*NullableSearchEnvironmentsResponse) UnmarshalJSON

func (v *NullableSearchEnvironmentsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchEnvironmentsResponse) Unset

type NullableSearchExecutionEventsResponse

type NullableSearchExecutionEventsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchExecutionEventsResponse) Get

func (NullableSearchExecutionEventsResponse) IsSet

func (NullableSearchExecutionEventsResponse) MarshalJSON

func (v NullableSearchExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchExecutionEventsResponse) Set

func (*NullableSearchExecutionEventsResponse) UnmarshalJSON

func (v *NullableSearchExecutionEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchExecutionEventsResponse) Unset

type NullableSearchExecutionsResponse

type NullableSearchExecutionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchExecutionsResponse) Get

func (NullableSearchExecutionsResponse) IsSet

func (NullableSearchExecutionsResponse) MarshalJSON

func (v NullableSearchExecutionsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchExecutionsResponse) Set

func (*NullableSearchExecutionsResponse) UnmarshalJSON

func (v *NullableSearchExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchExecutionsResponse) Unset

type NullableSearchHashicorpVaultsResponse

type NullableSearchHashicorpVaultsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHashicorpVaultsResponse) Get

func (NullableSearchHashicorpVaultsResponse) IsSet

func (NullableSearchHashicorpVaultsResponse) MarshalJSON

func (v NullableSearchHashicorpVaultsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchHashicorpVaultsResponse) Set

func (*NullableSearchHashicorpVaultsResponse) UnmarshalJSON

func (v *NullableSearchHashicorpVaultsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchHashicorpVaultsResponse) Unset

type NullableSearchHyperscaleConnectorsResponse

type NullableSearchHyperscaleConnectorsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHyperscaleConnectorsResponse) Get

func (NullableSearchHyperscaleConnectorsResponse) IsSet

func (NullableSearchHyperscaleConnectorsResponse) MarshalJSON

func (*NullableSearchHyperscaleConnectorsResponse) Set

func (*NullableSearchHyperscaleConnectorsResponse) UnmarshalJSON

func (v *NullableSearchHyperscaleConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchHyperscaleConnectorsResponse) Unset

type NullableSearchHyperscaleDatasetTablesOrFilesResponse

type NullableSearchHyperscaleDatasetTablesOrFilesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHyperscaleDatasetTablesOrFilesResponse) Get

func (NullableSearchHyperscaleDatasetTablesOrFilesResponse) IsSet

func (NullableSearchHyperscaleDatasetTablesOrFilesResponse) MarshalJSON

func (*NullableSearchHyperscaleDatasetTablesOrFilesResponse) Set

func (*NullableSearchHyperscaleDatasetTablesOrFilesResponse) UnmarshalJSON

func (*NullableSearchHyperscaleDatasetTablesOrFilesResponse) Unset

type NullableSearchHyperscaleDatasetsResponse

type NullableSearchHyperscaleDatasetsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHyperscaleDatasetsResponse) Get

func (NullableSearchHyperscaleDatasetsResponse) IsSet

func (NullableSearchHyperscaleDatasetsResponse) MarshalJSON

func (*NullableSearchHyperscaleDatasetsResponse) Set

func (*NullableSearchHyperscaleDatasetsResponse) UnmarshalJSON

func (v *NullableSearchHyperscaleDatasetsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchHyperscaleDatasetsResponse) Unset

type NullableSearchHyperscaleInstancesResponse

type NullableSearchHyperscaleInstancesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHyperscaleInstancesResponse) Get

func (NullableSearchHyperscaleInstancesResponse) IsSet

func (NullableSearchHyperscaleInstancesResponse) MarshalJSON

func (*NullableSearchHyperscaleInstancesResponse) Set

func (*NullableSearchHyperscaleInstancesResponse) UnmarshalJSON

func (v *NullableSearchHyperscaleInstancesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchHyperscaleInstancesResponse) Unset

type NullableSearchHyperscaleMountPointsResponse

type NullableSearchHyperscaleMountPointsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchHyperscaleMountPointsResponse) Get

func (NullableSearchHyperscaleMountPointsResponse) IsSet

func (NullableSearchHyperscaleMountPointsResponse) MarshalJSON

func (*NullableSearchHyperscaleMountPointsResponse) Set

func (*NullableSearchHyperscaleMountPointsResponse) UnmarshalJSON

func (v *NullableSearchHyperscaleMountPointsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchHyperscaleMountPointsResponse) Unset

type NullableSearchJobsResponse

type NullableSearchJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchJobsResponse

func NewNullableSearchJobsResponse(val *SearchJobsResponse) *NullableSearchJobsResponse

func (NullableSearchJobsResponse) Get

func (NullableSearchJobsResponse) IsSet

func (v NullableSearchJobsResponse) IsSet() bool

func (NullableSearchJobsResponse) MarshalJSON

func (v NullableSearchJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchJobsResponse) Set

func (*NullableSearchJobsResponse) UnmarshalJSON

func (v *NullableSearchJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchJobsResponse) Unset

func (v *NullableSearchJobsResponse) Unset()

type NullableSearchKerberosConfigsResponse

type NullableSearchKerberosConfigsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchKerberosConfigsResponse) Get

func (NullableSearchKerberosConfigsResponse) IsSet

func (NullableSearchKerberosConfigsResponse) MarshalJSON

func (v NullableSearchKerberosConfigsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchKerberosConfigsResponse) Set

func (*NullableSearchKerberosConfigsResponse) UnmarshalJSON

func (v *NullableSearchKerberosConfigsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchKerberosConfigsResponse) Unset

type NullableSearchMaskingEnvironmentsResponse

type NullableSearchMaskingEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchMaskingEnvironmentsResponse) Get

func (NullableSearchMaskingEnvironmentsResponse) IsSet

func (NullableSearchMaskingEnvironmentsResponse) MarshalJSON

func (*NullableSearchMaskingEnvironmentsResponse) Set

func (*NullableSearchMaskingEnvironmentsResponse) UnmarshalJSON

func (v *NullableSearchMaskingEnvironmentsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchMaskingEnvironmentsResponse) Unset

type NullableSearchMaskingJobSourceEnginesResponse

type NullableSearchMaskingJobSourceEnginesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchMaskingJobSourceEnginesResponse) Get

func (NullableSearchMaskingJobSourceEnginesResponse) IsSet

func (NullableSearchMaskingJobSourceEnginesResponse) MarshalJSON

func (*NullableSearchMaskingJobSourceEnginesResponse) Set

func (*NullableSearchMaskingJobSourceEnginesResponse) UnmarshalJSON

func (*NullableSearchMaskingJobSourceEnginesResponse) Unset

type NullableSearchMaskingJobsResponse

type NullableSearchMaskingJobsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchMaskingJobsResponse) Get

func (NullableSearchMaskingJobsResponse) IsSet

func (NullableSearchMaskingJobsResponse) MarshalJSON

func (v NullableSearchMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchMaskingJobsResponse) Set

func (*NullableSearchMaskingJobsResponse) UnmarshalJSON

func (v *NullableSearchMaskingJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchMaskingJobsResponse) Unset

type NullableSearchPasswordVaultResponse

type NullableSearchPasswordVaultResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchPasswordVaultResponse) Get

func (NullableSearchPasswordVaultResponse) IsSet

func (NullableSearchPasswordVaultResponse) MarshalJSON

func (v NullableSearchPasswordVaultResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchPasswordVaultResponse) Set

func (*NullableSearchPasswordVaultResponse) UnmarshalJSON

func (v *NullableSearchPasswordVaultResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchPasswordVaultResponse) Unset

type NullableSearchReportingScheduleResponse

type NullableSearchReportingScheduleResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchReportingScheduleResponse) Get

func (NullableSearchReportingScheduleResponse) IsSet

func (NullableSearchReportingScheduleResponse) MarshalJSON

func (v NullableSearchReportingScheduleResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchReportingScheduleResponse) Set

func (*NullableSearchReportingScheduleResponse) UnmarshalJSON

func (v *NullableSearchReportingScheduleResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchReportingScheduleResponse) Unset

type NullableSearchRolesResponse

type NullableSearchRolesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchRolesResponse

func NewNullableSearchRolesResponse(val *SearchRolesResponse) *NullableSearchRolesResponse

func (NullableSearchRolesResponse) Get

func (NullableSearchRolesResponse) IsSet

func (NullableSearchRolesResponse) MarshalJSON

func (v NullableSearchRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchRolesResponse) Set

func (*NullableSearchRolesResponse) UnmarshalJSON

func (v *NullableSearchRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchRolesResponse) Unset

func (v *NullableSearchRolesResponse) Unset()

type NullableSearchSnapshotsResponse

type NullableSearchSnapshotsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchSnapshotsResponse) Get

func (NullableSearchSnapshotsResponse) IsSet

func (NullableSearchSnapshotsResponse) MarshalJSON

func (v NullableSearchSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchSnapshotsResponse) Set

func (*NullableSearchSnapshotsResponse) UnmarshalJSON

func (v *NullableSearchSnapshotsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchSnapshotsResponse) Unset

type NullableSearchSourcesResponse

type NullableSearchSourcesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchSourcesResponse) Get

func (NullableSearchSourcesResponse) IsSet

func (NullableSearchSourcesResponse) MarshalJSON

func (v NullableSearchSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchSourcesResponse) Set

func (*NullableSearchSourcesResponse) UnmarshalJSON

func (v *NullableSearchSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchSourcesResponse) Unset

func (v *NullableSearchSourcesResponse) Unset()

type NullableSearchTimeflowsResponse

type NullableSearchTimeflowsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchTimeflowsResponse) Get

func (NullableSearchTimeflowsResponse) IsSet

func (NullableSearchTimeflowsResponse) MarshalJSON

func (v NullableSearchTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchTimeflowsResponse) Set

func (*NullableSearchTimeflowsResponse) UnmarshalJSON

func (v *NullableSearchTimeflowsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchTimeflowsResponse) Unset

type NullableSearchVCDBsResponse

type NullableSearchVCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVCDBsResponse

func NewNullableSearchVCDBsResponse(val *SearchVCDBsResponse) *NullableSearchVCDBsResponse

func (NullableSearchVCDBsResponse) Get

func (NullableSearchVCDBsResponse) IsSet

func (NullableSearchVCDBsResponse) MarshalJSON

func (v NullableSearchVCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVCDBsResponse) Set

func (*NullableSearchVCDBsResponse) UnmarshalJSON

func (v *NullableSearchVCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVCDBsResponse) Unset

func (v *NullableSearchVCDBsResponse) Unset()

type NullableSearchVDBGroupResponse

type NullableSearchVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchVDBGroupResponse) Get

func (NullableSearchVDBGroupResponse) IsSet

func (NullableSearchVDBGroupResponse) MarshalJSON

func (v NullableSearchVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVDBGroupResponse) Set

func (*NullableSearchVDBGroupResponse) UnmarshalJSON

func (v *NullableSearchVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVDBGroupResponse) Unset

func (v *NullableSearchVDBGroupResponse) Unset()

type NullableSearchVDBGroupsByBookmarkResponse

type NullableSearchVDBGroupsByBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchVDBGroupsByBookmarkResponse) Get

func (NullableSearchVDBGroupsByBookmarkResponse) IsSet

func (NullableSearchVDBGroupsByBookmarkResponse) MarshalJSON

func (*NullableSearchVDBGroupsByBookmarkResponse) Set

func (*NullableSearchVDBGroupsByBookmarkResponse) UnmarshalJSON

func (v *NullableSearchVDBGroupsByBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVDBGroupsByBookmarkResponse) Unset

type NullableSearchVDBsResponse

type NullableSearchVDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVDBsResponse

func NewNullableSearchVDBsResponse(val *SearchVDBsResponse) *NullableSearchVDBsResponse

func (NullableSearchVDBsResponse) Get

func (NullableSearchVDBsResponse) IsSet

func (v NullableSearchVDBsResponse) IsSet() bool

func (NullableSearchVDBsResponse) MarshalJSON

func (v NullableSearchVDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVDBsResponse) Set

func (*NullableSearchVDBsResponse) UnmarshalJSON

func (v *NullableSearchVDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVDBsResponse) Unset

func (v *NullableSearchVDBsResponse) Unset()

type NullableSearchVirtualizationPoliciesResponse

type NullableSearchVirtualizationPoliciesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchVirtualizationPoliciesResponse) Get

func (NullableSearchVirtualizationPoliciesResponse) IsSet

func (NullableSearchVirtualizationPoliciesResponse) MarshalJSON

func (*NullableSearchVirtualizationPoliciesResponse) Set

func (*NullableSearchVirtualizationPoliciesResponse) UnmarshalJSON

func (*NullableSearchVirtualizationPoliciesResponse) Unset

type NullableSnapshot

type NullableSnapshot struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshot

func NewNullableSnapshot(val *Snapshot) *NullableSnapshot

func (NullableSnapshot) Get

func (v NullableSnapshot) Get() *Snapshot

func (NullableSnapshot) IsSet

func (v NullableSnapshot) IsSet() bool

func (NullableSnapshot) MarshalJSON

func (v NullableSnapshot) MarshalJSON() ([]byte, error)

func (*NullableSnapshot) Set

func (v *NullableSnapshot) Set(val *Snapshot)

func (*NullableSnapshot) UnmarshalJSON

func (v *NullableSnapshot) UnmarshalJSON(src []byte) error

func (*NullableSnapshot) Unset

func (v *NullableSnapshot) Unset()

type NullableSnapshotCompatibleEnvironmentsResponse

type NullableSnapshotCompatibleEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableSnapshotCompatibleEnvironmentsResponse) Get

func (NullableSnapshotCompatibleEnvironmentsResponse) IsSet

func (NullableSnapshotCompatibleEnvironmentsResponse) MarshalJSON

func (*NullableSnapshotCompatibleEnvironmentsResponse) Set

func (*NullableSnapshotCompatibleEnvironmentsResponse) UnmarshalJSON

func (*NullableSnapshotCompatibleEnvironmentsResponse) Unset

type NullableSnapshotCompatibleRepositoryRequest

type NullableSnapshotCompatibleRepositoryRequest struct {
	// contains filtered or unexported fields
}

func (NullableSnapshotCompatibleRepositoryRequest) Get

func (NullableSnapshotCompatibleRepositoryRequest) IsSet

func (NullableSnapshotCompatibleRepositoryRequest) MarshalJSON

func (*NullableSnapshotCompatibleRepositoryRequest) Set

func (*NullableSnapshotCompatibleRepositoryRequest) UnmarshalJSON

func (v *NullableSnapshotCompatibleRepositoryRequest) UnmarshalJSON(src []byte) error

func (*NullableSnapshotCompatibleRepositoryRequest) Unset

type NullableSnapshotDSourceResponse

type NullableSnapshotDSourceResponse struct {
	// contains filtered or unexported fields
}

func (NullableSnapshotDSourceResponse) Get

func (NullableSnapshotDSourceResponse) IsSet

func (NullableSnapshotDSourceResponse) MarshalJSON

func (v NullableSnapshotDSourceResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotDSourceResponse) Set

func (*NullableSnapshotDSourceResponse) UnmarshalJSON

func (v *NullableSnapshotDSourceResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotDSourceResponse) Unset

type NullableSnapshotDayRange

type NullableSnapshotDayRange struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotDayRange

func NewNullableSnapshotDayRange(val *SnapshotDayRange) *NullableSnapshotDayRange

func (NullableSnapshotDayRange) Get

func (NullableSnapshotDayRange) IsSet

func (v NullableSnapshotDayRange) IsSet() bool

func (NullableSnapshotDayRange) MarshalJSON

func (v NullableSnapshotDayRange) MarshalJSON() ([]byte, error)

func (*NullableSnapshotDayRange) Set

func (*NullableSnapshotDayRange) UnmarshalJSON

func (v *NullableSnapshotDayRange) UnmarshalJSON(src []byte) error

func (*NullableSnapshotDayRange) Unset

func (v *NullableSnapshotDayRange) Unset()

type NullableSnapshotVDBResponse

type NullableSnapshotVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotVDBResponse

func NewNullableSnapshotVDBResponse(val *SnapshotVDBResponse) *NullableSnapshotVDBResponse

func (NullableSnapshotVDBResponse) Get

func (NullableSnapshotVDBResponse) IsSet

func (NullableSnapshotVDBResponse) MarshalJSON

func (v NullableSnapshotVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotVDBResponse) Set

func (*NullableSnapshotVDBResponse) UnmarshalJSON

func (v *NullableSnapshotVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotVDBResponse) Unset

func (v *NullableSnapshotVDBResponse) Unset()

type NullableSnapshotsDayRangesResponse

type NullableSnapshotsDayRangesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSnapshotsDayRangesResponse) Get

func (NullableSnapshotsDayRangesResponse) IsSet

func (NullableSnapshotsDayRangesResponse) MarshalJSON

func (v NullableSnapshotsDayRangesResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotsDayRangesResponse) Set

func (*NullableSnapshotsDayRangesResponse) UnmarshalJSON

func (v *NullableSnapshotsDayRangesResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotsDayRangesResponse) Unset

type NullableSource

type NullableSource struct {
	// contains filtered or unexported fields
}

func NewNullableSource

func NewNullableSource(val *Source) *NullableSource

func (NullableSource) Get

func (v NullableSource) Get() *Source

func (NullableSource) IsSet

func (v NullableSource) IsSet() bool

func (NullableSource) MarshalJSON

func (v NullableSource) MarshalJSON() ([]byte, error)

func (*NullableSource) Set

func (v *NullableSource) Set(val *Source)

func (*NullableSource) UnmarshalJSON

func (v *NullableSource) UnmarshalJSON(src []byte) error

func (*NullableSource) Unset

func (v *NullableSource) Unset()

type NullableSourceOperation

type NullableSourceOperation struct {
	// contains filtered or unexported fields
}

func NewNullableSourceOperation

func NewNullableSourceOperation(val *SourceOperation) *NullableSourceOperation

func (NullableSourceOperation) Get

func (NullableSourceOperation) IsSet

func (v NullableSourceOperation) IsSet() bool

func (NullableSourceOperation) MarshalJSON

func (v NullableSourceOperation) MarshalJSON() ([]byte, error)

func (*NullableSourceOperation) Set

func (*NullableSourceOperation) UnmarshalJSON

func (v *NullableSourceOperation) UnmarshalJSON(src []byte) error

func (*NullableSourceOperation) Unset

func (v *NullableSourceOperation) Unset()

type NullableStagingCompatibleEnvironmentsResponse

type NullableStagingCompatibleEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableStagingCompatibleEnvironmentsResponse) Get

func (NullableStagingCompatibleEnvironmentsResponse) IsSet

func (NullableStagingCompatibleEnvironmentsResponse) MarshalJSON

func (*NullableStagingCompatibleEnvironmentsResponse) Set

func (*NullableStagingCompatibleEnvironmentsResponse) UnmarshalJSON

func (*NullableStagingCompatibleEnvironmentsResponse) Unset

type NullableStartVDBResponse

type NullableStartVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableStartVDBResponse

func NewNullableStartVDBResponse(val *StartVDBResponse) *NullableStartVDBResponse

func (NullableStartVDBResponse) Get

func (NullableStartVDBResponse) IsSet

func (v NullableStartVDBResponse) IsSet() bool

func (NullableStartVDBResponse) MarshalJSON

func (v NullableStartVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableStartVDBResponse) Set

func (*NullableStartVDBResponse) UnmarshalJSON

func (v *NullableStartVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableStartVDBResponse) Unset

func (v *NullableStartVDBResponse) Unset()

type NullableStopVDBResponse

type NullableStopVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableStopVDBResponse

func NewNullableStopVDBResponse(val *StopVDBResponse) *NullableStopVDBResponse

func (NullableStopVDBResponse) Get

func (NullableStopVDBResponse) IsSet

func (v NullableStopVDBResponse) IsSet() bool

func (NullableStopVDBResponse) MarshalJSON

func (v NullableStopVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableStopVDBResponse) Set

func (*NullableStopVDBResponse) UnmarshalJSON

func (v *NullableStopVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableStopVDBResponse) Unset

func (v *NullableStopVDBResponse) 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 NullableSwitchTimeflowParameters

type NullableSwitchTimeflowParameters struct {
	// contains filtered or unexported fields
}

func (NullableSwitchTimeflowParameters) Get

func (NullableSwitchTimeflowParameters) IsSet

func (NullableSwitchTimeflowParameters) MarshalJSON

func (v NullableSwitchTimeflowParameters) MarshalJSON() ([]byte, error)

func (*NullableSwitchTimeflowParameters) Set

func (*NullableSwitchTimeflowParameters) UnmarshalJSON

func (v *NullableSwitchTimeflowParameters) UnmarshalJSON(src []byte) error

func (*NullableSwitchTimeflowParameters) Unset

type NullableSwitchTimeflowResponse

type NullableSwitchTimeflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableSwitchTimeflowResponse) Get

func (NullableSwitchTimeflowResponse) IsSet

func (NullableSwitchTimeflowResponse) MarshalJSON

func (v NullableSwitchTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableSwitchTimeflowResponse) Set

func (*NullableSwitchTimeflowResponse) UnmarshalJSON

func (v *NullableSwitchTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableSwitchTimeflowResponse) Unset

func (v *NullableSwitchTimeflowResponse) 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 NullableTagsRequest

type NullableTagsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTagsRequest

func NewNullableTagsRequest(val *TagsRequest) *NullableTagsRequest

func (NullableTagsRequest) Get

func (NullableTagsRequest) IsSet

func (v NullableTagsRequest) IsSet() bool

func (NullableTagsRequest) MarshalJSON

func (v NullableTagsRequest) MarshalJSON() ([]byte, error)

func (*NullableTagsRequest) Set

func (v *NullableTagsRequest) Set(val *TagsRequest)

func (*NullableTagsRequest) UnmarshalJSON

func (v *NullableTagsRequest) UnmarshalJSON(src []byte) error

func (*NullableTagsRequest) Unset

func (v *NullableTagsRequest) Unset()

type NullableTagsResponse

type NullableTagsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTagsResponse

func NewNullableTagsResponse(val *TagsResponse) *NullableTagsResponse

func (NullableTagsResponse) Get

func (NullableTagsResponse) IsSet

func (v NullableTagsResponse) IsSet() bool

func (NullableTagsResponse) MarshalJSON

func (v NullableTagsResponse) MarshalJSON() ([]byte, error)

func (*NullableTagsResponse) Set

func (v *NullableTagsResponse) Set(val *TagsResponse)

func (*NullableTagsResponse) UnmarshalJSON

func (v *NullableTagsResponse) UnmarshalJSON(src []byte) error

func (*NullableTagsResponse) Unset

func (v *NullableTagsResponse) Unset()

type NullableTaskEvent

type NullableTaskEvent struct {
	// contains filtered or unexported fields
}

func NewNullableTaskEvent

func NewNullableTaskEvent(val *TaskEvent) *NullableTaskEvent

func (NullableTaskEvent) Get

func (v NullableTaskEvent) Get() *TaskEvent

func (NullableTaskEvent) IsSet

func (v NullableTaskEvent) IsSet() bool

func (NullableTaskEvent) MarshalJSON

func (v NullableTaskEvent) MarshalJSON() ([]byte, error)

func (*NullableTaskEvent) Set

func (v *NullableTaskEvent) Set(val *TaskEvent)

func (*NullableTaskEvent) UnmarshalJSON

func (v *NullableTaskEvent) UnmarshalJSON(src []byte) error

func (*NullableTaskEvent) Unset

func (v *NullableTaskEvent) 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 NullableTimeflow

type NullableTimeflow struct {
	// contains filtered or unexported fields
}

func NewNullableTimeflow

func NewNullableTimeflow(val *Timeflow) *NullableTimeflow

func (NullableTimeflow) Get

func (v NullableTimeflow) Get() *Timeflow

func (NullableTimeflow) IsSet

func (v NullableTimeflow) IsSet() bool

func (NullableTimeflow) MarshalJSON

func (v NullableTimeflow) MarshalJSON() ([]byte, error)

func (*NullableTimeflow) Set

func (v *NullableTimeflow) Set(val *Timeflow)

func (*NullableTimeflow) UnmarshalJSON

func (v *NullableTimeflow) UnmarshalJSON(src []byte) error

func (*NullableTimeflow) Unset

func (v *NullableTimeflow) Unset()

type NullableTimeflowRange

type NullableTimeflowRange struct {
	// contains filtered or unexported fields
}

func NewNullableTimeflowRange

func NewNullableTimeflowRange(val *TimeflowRange) *NullableTimeflowRange

func (NullableTimeflowRange) Get

func (NullableTimeflowRange) IsSet

func (v NullableTimeflowRange) IsSet() bool

func (NullableTimeflowRange) MarshalJSON

func (v NullableTimeflowRange) MarshalJSON() ([]byte, error)

func (*NullableTimeflowRange) Set

func (v *NullableTimeflowRange) Set(val *TimeflowRange)

func (*NullableTimeflowRange) UnmarshalJSON

func (v *NullableTimeflowRange) UnmarshalJSON(src []byte) error

func (*NullableTimeflowRange) Unset

func (v *NullableTimeflowRange) Unset()

type NullableTimestampCompatibleEnvironmentsResponse

type NullableTimestampCompatibleEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func (NullableTimestampCompatibleEnvironmentsResponse) Get

func (NullableTimestampCompatibleEnvironmentsResponse) IsSet

func (NullableTimestampCompatibleEnvironmentsResponse) MarshalJSON

func (*NullableTimestampCompatibleEnvironmentsResponse) Set

func (*NullableTimestampCompatibleEnvironmentsResponse) UnmarshalJSON

func (*NullableTimestampCompatibleEnvironmentsResponse) Unset

type NullableTimestampCompatibleRepositoryRequest

type NullableTimestampCompatibleRepositoryRequest struct {
	// contains filtered or unexported fields
}

func (NullableTimestampCompatibleRepositoryRequest) Get

func (NullableTimestampCompatibleRepositoryRequest) IsSet

func (NullableTimestampCompatibleRepositoryRequest) MarshalJSON

func (*NullableTimestampCompatibleRepositoryRequest) Set

func (*NullableTimestampCompatibleRepositoryRequest) UnmarshalJSON

func (*NullableTimestampCompatibleRepositoryRequest) Unset

type NullableTokenInfoRequest

type NullableTokenInfoRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTokenInfoRequest

func NewNullableTokenInfoRequest(val *TokenInfoRequest) *NullableTokenInfoRequest

func (NullableTokenInfoRequest) Get

func (NullableTokenInfoRequest) IsSet

func (v NullableTokenInfoRequest) IsSet() bool

func (NullableTokenInfoRequest) MarshalJSON

func (v NullableTokenInfoRequest) MarshalJSON() ([]byte, error)

func (*NullableTokenInfoRequest) Set

func (*NullableTokenInfoRequest) UnmarshalJSON

func (v *NullableTokenInfoRequest) UnmarshalJSON(src []byte) error

func (*NullableTokenInfoRequest) Unset

func (v *NullableTokenInfoRequest) Unset()

type NullableTokenInfoResponse

type NullableTokenInfoResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTokenInfoResponse

func NewNullableTokenInfoResponse(val *TokenInfoResponse) *NullableTokenInfoResponse

func (NullableTokenInfoResponse) Get

func (NullableTokenInfoResponse) IsSet

func (v NullableTokenInfoResponse) IsSet() bool

func (NullableTokenInfoResponse) MarshalJSON

func (v NullableTokenInfoResponse) MarshalJSON() ([]byte, error)

func (*NullableTokenInfoResponse) Set

func (*NullableTokenInfoResponse) UnmarshalJSON

func (v *NullableTokenInfoResponse) UnmarshalJSON(src []byte) error

func (*NullableTokenInfoResponse) Unset

func (v *NullableTokenInfoResponse) Unset()

type NullableUnregisterHyperscaleInstanceResponse

type NullableUnregisterHyperscaleInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullableUnregisterHyperscaleInstanceResponse) Get

func (NullableUnregisterHyperscaleInstanceResponse) IsSet

func (NullableUnregisterHyperscaleInstanceResponse) MarshalJSON

func (*NullableUnregisterHyperscaleInstanceResponse) Set

func (*NullableUnregisterHyperscaleInstanceResponse) UnmarshalJSON

func (*NullableUnregisterHyperscaleInstanceResponse) Unset

type NullableUnsetSnapshotRetentionResponse

type NullableUnsetSnapshotRetentionResponse struct {
	// contains filtered or unexported fields
}

func (NullableUnsetSnapshotRetentionResponse) Get

func (NullableUnsetSnapshotRetentionResponse) IsSet

func (NullableUnsetSnapshotRetentionResponse) MarshalJSON

func (v NullableUnsetSnapshotRetentionResponse) MarshalJSON() ([]byte, error)

func (*NullableUnsetSnapshotRetentionResponse) Set

func (*NullableUnsetSnapshotRetentionResponse) UnmarshalJSON

func (v *NullableUnsetSnapshotRetentionResponse) UnmarshalJSON(src []byte) error

func (*NullableUnsetSnapshotRetentionResponse) Unset

type NullableUpdateAccessGroupScope

type NullableUpdateAccessGroupScope struct {
	// contains filtered or unexported fields
}

func (NullableUpdateAccessGroupScope) Get

func (NullableUpdateAccessGroupScope) IsSet

func (NullableUpdateAccessGroupScope) MarshalJSON

func (v NullableUpdateAccessGroupScope) MarshalJSON() ([]byte, error)

func (*NullableUpdateAccessGroupScope) Set

func (*NullableUpdateAccessGroupScope) UnmarshalJSON

func (v *NullableUpdateAccessGroupScope) UnmarshalJSON(src []byte) error

func (*NullableUpdateAccessGroupScope) Unset

func (v *NullableUpdateAccessGroupScope) Unset()

type NullableUpdateBookmarkParameters

type NullableUpdateBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateBookmarkParameters) Get

func (NullableUpdateBookmarkParameters) IsSet

func (NullableUpdateBookmarkParameters) MarshalJSON

func (v NullableUpdateBookmarkParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateBookmarkParameters) Set

func (*NullableUpdateBookmarkParameters) UnmarshalJSON

func (v *NullableUpdateBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateBookmarkParameters) Unset

type NullableUpdateBookmarkResponse

type NullableUpdateBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateBookmarkResponse) Get

func (NullableUpdateBookmarkResponse) IsSet

func (NullableUpdateBookmarkResponse) MarshalJSON

func (v NullableUpdateBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateBookmarkResponse) Set

func (*NullableUpdateBookmarkResponse) UnmarshalJSON

func (v *NullableUpdateBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateBookmarkResponse) Unset

func (v *NullableUpdateBookmarkResponse) Unset()

type NullableUpdateConnectorResponse

type NullableUpdateConnectorResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateConnectorResponse) Get

func (NullableUpdateConnectorResponse) IsSet

func (NullableUpdateConnectorResponse) MarshalJSON

func (v NullableUpdateConnectorResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateConnectorResponse) Set

func (*NullableUpdateConnectorResponse) UnmarshalJSON

func (v *NullableUpdateConnectorResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateConnectorResponse) Unset

type NullableUpdateDatabaseTemplateParameters

type NullableUpdateDatabaseTemplateParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDatabaseTemplateParameters) Get

func (NullableUpdateDatabaseTemplateParameters) IsSet

func (NullableUpdateDatabaseTemplateParameters) MarshalJSON

func (*NullableUpdateDatabaseTemplateParameters) Set

func (*NullableUpdateDatabaseTemplateParameters) UnmarshalJSON

func (v *NullableUpdateDatabaseTemplateParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateDatabaseTemplateParameters) Unset

type NullableUpdateDatabaseTemplateResponse

type NullableUpdateDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDatabaseTemplateResponse) Get

func (NullableUpdateDatabaseTemplateResponse) IsSet

func (NullableUpdateDatabaseTemplateResponse) MarshalJSON

func (v NullableUpdateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateDatabaseTemplateResponse) Set

func (*NullableUpdateDatabaseTemplateResponse) UnmarshalJSON

func (v *NullableUpdateDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateDatabaseTemplateResponse) Unset

type NullableUpdateEnvironmentResponse

type NullableUpdateEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironmentResponse) Get

func (NullableUpdateEnvironmentResponse) IsSet

func (NullableUpdateEnvironmentResponse) MarshalJSON

func (v NullableUpdateEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironmentResponse) Set

func (*NullableUpdateEnvironmentResponse) UnmarshalJSON

func (v *NullableUpdateEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironmentResponse) Unset

type NullableUpdateEnvironmentUserResponse

type NullableUpdateEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironmentUserResponse) Get

func (NullableUpdateEnvironmentUserResponse) IsSet

func (NullableUpdateEnvironmentUserResponse) MarshalJSON

func (v NullableUpdateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironmentUserResponse) Set

func (*NullableUpdateEnvironmentUserResponse) UnmarshalJSON

func (v *NullableUpdateEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironmentUserResponse) Unset

type NullableUpdateHostResponse

type NullableUpdateHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateHostResponse

func NewNullableUpdateHostResponse(val *UpdateHostResponse) *NullableUpdateHostResponse

func (NullableUpdateHostResponse) Get

func (NullableUpdateHostResponse) IsSet

func (v NullableUpdateHostResponse) IsSet() bool

func (NullableUpdateHostResponse) MarshalJSON

func (v NullableUpdateHostResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateHostResponse) Set

func (*NullableUpdateHostResponse) UnmarshalJSON

func (v *NullableUpdateHostResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateHostResponse) Unset

func (v *NullableUpdateHostResponse) Unset()

type NullableUpdateMaskingJobParameters

type NullableUpdateMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateMaskingJobParameters) Get

func (NullableUpdateMaskingJobParameters) IsSet

func (NullableUpdateMaskingJobParameters) MarshalJSON

func (v NullableUpdateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateMaskingJobParameters) Set

func (*NullableUpdateMaskingJobParameters) UnmarshalJSON

func (v *NullableUpdateMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateMaskingJobParameters) Unset

type NullableUpdateRepositoryParameters

type NullableUpdateRepositoryParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRepositoryParameters) Get

func (NullableUpdateRepositoryParameters) IsSet

func (NullableUpdateRepositoryParameters) MarshalJSON

func (v NullableUpdateRepositoryParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateRepositoryParameters) Set

func (*NullableUpdateRepositoryParameters) UnmarshalJSON

func (v *NullableUpdateRepositoryParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateRepositoryParameters) Unset

type NullableUpdateRepositoryResponse

type NullableUpdateRepositoryResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRepositoryResponse) Get

func (NullableUpdateRepositoryResponse) IsSet

func (NullableUpdateRepositoryResponse) MarshalJSON

func (v NullableUpdateRepositoryResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateRepositoryResponse) Set

func (*NullableUpdateRepositoryResponse) UnmarshalJSON

func (v *NullableUpdateRepositoryResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateRepositoryResponse) Unset

type NullableUpdateSnapshotParameters

type NullableUpdateSnapshotParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSnapshotParameters) Get

func (NullableUpdateSnapshotParameters) IsSet

func (NullableUpdateSnapshotParameters) MarshalJSON

func (v NullableUpdateSnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateSnapshotParameters) Set

func (*NullableUpdateSnapshotParameters) UnmarshalJSON

func (v *NullableUpdateSnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateSnapshotParameters) Unset

type NullableUpdateSnapshotResponse

type NullableUpdateSnapshotResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSnapshotResponse) Get

func (NullableUpdateSnapshotResponse) IsSet

func (NullableUpdateSnapshotResponse) MarshalJSON

func (v NullableUpdateSnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateSnapshotResponse) Set

func (*NullableUpdateSnapshotResponse) UnmarshalJSON

func (v *NullableUpdateSnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateSnapshotResponse) Unset

func (v *NullableUpdateSnapshotResponse) Unset()

type NullableUpdateTimeflowParameters

type NullableUpdateTimeflowParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateTimeflowParameters) Get

func (NullableUpdateTimeflowParameters) IsSet

func (NullableUpdateTimeflowParameters) MarshalJSON

func (v NullableUpdateTimeflowParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateTimeflowParameters) Set

func (*NullableUpdateTimeflowParameters) UnmarshalJSON

func (v *NullableUpdateTimeflowParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateTimeflowParameters) Unset

type NullableUpdateTimeflowResponse

type NullableUpdateTimeflowResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpdateTimeflowResponse) Get

func (NullableUpdateTimeflowResponse) IsSet

func (NullableUpdateTimeflowResponse) MarshalJSON

func (v NullableUpdateTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateTimeflowResponse) Set

func (*NullableUpdateTimeflowResponse) UnmarshalJSON

func (v *NullableUpdateTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateTimeflowResponse) Unset

func (v *NullableUpdateTimeflowResponse) Unset()

type NullableUpdateVDBGroupParameters

type NullableUpdateVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVDBGroupParameters) Get

func (NullableUpdateVDBGroupParameters) IsSet

func (NullableUpdateVDBGroupParameters) MarshalJSON

func (v NullableUpdateVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateVDBGroupParameters) Set

func (*NullableUpdateVDBGroupParameters) UnmarshalJSON

func (v *NullableUpdateVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateVDBGroupParameters) Unset

type NullableUpdateVDBParameters

type NullableUpdateVDBParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateVDBParameters

func NewNullableUpdateVDBParameters(val *UpdateVDBParameters) *NullableUpdateVDBParameters

func (NullableUpdateVDBParameters) Get

func (NullableUpdateVDBParameters) IsSet

func (NullableUpdateVDBParameters) MarshalJSON

func (v NullableUpdateVDBParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateVDBParameters) Set

func (*NullableUpdateVDBParameters) UnmarshalJSON

func (v *NullableUpdateVDBParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateVDBParameters) Unset

func (v *NullableUpdateVDBParameters) Unset()

type NullableUpdateVDBResponse

type NullableUpdateVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateVDBResponse

func NewNullableUpdateVDBResponse(val *UpdateVDBResponse) *NullableUpdateVDBResponse

func (NullableUpdateVDBResponse) Get

func (NullableUpdateVDBResponse) IsSet

func (v NullableUpdateVDBResponse) IsSet() bool

func (NullableUpdateVDBResponse) MarshalJSON

func (v NullableUpdateVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateVDBResponse) Set

func (*NullableUpdateVDBResponse) UnmarshalJSON

func (v *NullableUpdateVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateVDBResponse) Unset

func (v *NullableUpdateVDBResponse) Unset()

type NullableVCDB

type NullableVCDB struct {
	// contains filtered or unexported fields
}

func NewNullableVCDB

func NewNullableVCDB(val *VCDB) *NullableVCDB

func (NullableVCDB) Get

func (v NullableVCDB) Get() *VCDB

func (NullableVCDB) IsSet

func (v NullableVCDB) IsSet() bool

func (NullableVCDB) MarshalJSON

func (v NullableVCDB) MarshalJSON() ([]byte, error)

func (*NullableVCDB) Set

func (v *NullableVCDB) Set(val *VCDB)

func (*NullableVCDB) UnmarshalJSON

func (v *NullableVCDB) UnmarshalJSON(src []byte) error

func (*NullableVCDB) Unset

func (v *NullableVCDB) Unset()

type NullableVDB

type NullableVDB struct {
	// contains filtered or unexported fields
}

func NewNullableVDB

func NewNullableVDB(val *VDB) *NullableVDB

func (NullableVDB) Get

func (v NullableVDB) Get() *VDB

func (NullableVDB) IsSet

func (v NullableVDB) IsSet() bool

func (NullableVDB) MarshalJSON

func (v NullableVDB) MarshalJSON() ([]byte, error)

func (*NullableVDB) Set

func (v *NullableVDB) Set(val *VDB)

func (*NullableVDB) UnmarshalJSON

func (v *NullableVDB) UnmarshalJSON(src []byte) error

func (*NullableVDB) Unset

func (v *NullableVDB) Unset()

type NullableVDBGroup

type NullableVDBGroup struct {
	// contains filtered or unexported fields
}

func NewNullableVDBGroup

func NewNullableVDBGroup(val *VDBGroup) *NullableVDBGroup

func (NullableVDBGroup) Get

func (v NullableVDBGroup) Get() *VDBGroup

func (NullableVDBGroup) IsSet

func (v NullableVDBGroup) IsSet() bool

func (NullableVDBGroup) MarshalJSON

func (v NullableVDBGroup) MarshalJSON() ([]byte, error)

func (*NullableVDBGroup) Set

func (v *NullableVDBGroup) Set(val *VDBGroup)

func (*NullableVDBGroup) UnmarshalJSON

func (v *NullableVDBGroup) UnmarshalJSON(src []byte) error

func (*NullableVDBGroup) Unset

func (v *NullableVDBGroup) Unset()

type NullableVDBInventoryData

type NullableVDBInventoryData struct {
	// contains filtered or unexported fields
}

func NewNullableVDBInventoryData

func NewNullableVDBInventoryData(val *VDBInventoryData) *NullableVDBInventoryData

func (NullableVDBInventoryData) Get

func (NullableVDBInventoryData) IsSet

func (v NullableVDBInventoryData) IsSet() bool

func (NullableVDBInventoryData) MarshalJSON

func (v NullableVDBInventoryData) MarshalJSON() ([]byte, error)

func (*NullableVDBInventoryData) Set

func (*NullableVDBInventoryData) UnmarshalJSON

func (v *NullableVDBInventoryData) UnmarshalJSON(src []byte) error

func (*NullableVDBInventoryData) Unset

func (v *NullableVDBInventoryData) Unset()

type NullableVDBInventoryReportResponse

type NullableVDBInventoryReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableVDBInventoryReportResponse) Get

func (NullableVDBInventoryReportResponse) IsSet

func (NullableVDBInventoryReportResponse) MarshalJSON

func (v NullableVDBInventoryReportResponse) MarshalJSON() ([]byte, error)

func (*NullableVDBInventoryReportResponse) Set

func (*NullableVDBInventoryReportResponse) UnmarshalJSON

func (v *NullableVDBInventoryReportResponse) UnmarshalJSON(src []byte) error

func (*NullableVDBInventoryReportResponse) Unset

type NullableValidateJavaParameters

type NullableValidateJavaParameters struct {
	// contains filtered or unexported fields
}

func (NullableValidateJavaParameters) Get

func (NullableValidateJavaParameters) IsSet

func (NullableValidateJavaParameters) MarshalJSON

func (v NullableValidateJavaParameters) MarshalJSON() ([]byte, error)

func (*NullableValidateJavaParameters) Set

func (*NullableValidateJavaParameters) UnmarshalJSON

func (v *NullableValidateJavaParameters) UnmarshalJSON(src []byte) error

func (*NullableValidateJavaParameters) Unset

func (v *NullableValidateJavaParameters) Unset()

type NullableValidateJavaResponse

type NullableValidateJavaResponse struct {
	// contains filtered or unexported fields
}

func NewNullableValidateJavaResponse

func NewNullableValidateJavaResponse(val *ValidateJavaResponse) *NullableValidateJavaResponse

func (NullableValidateJavaResponse) Get

func (NullableValidateJavaResponse) IsSet

func (NullableValidateJavaResponse) MarshalJSON

func (v NullableValidateJavaResponse) MarshalJSON() ([]byte, error)

func (*NullableValidateJavaResponse) Set

func (*NullableValidateJavaResponse) UnmarshalJSON

func (v *NullableValidateJavaResponse) UnmarshalJSON(src []byte) error

func (*NullableValidateJavaResponse) Unset

func (v *NullableValidateJavaResponse) Unset()

type NullableVirtualDatasetHooks

type NullableVirtualDatasetHooks struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualDatasetHooks

func NewNullableVirtualDatasetHooks(val *VirtualDatasetHooks) *NullableVirtualDatasetHooks

func (NullableVirtualDatasetHooks) Get

func (NullableVirtualDatasetHooks) IsSet

func (NullableVirtualDatasetHooks) MarshalJSON

func (v NullableVirtualDatasetHooks) MarshalJSON() ([]byte, error)

func (*NullableVirtualDatasetHooks) Set

func (*NullableVirtualDatasetHooks) UnmarshalJSON

func (v *NullableVirtualDatasetHooks) UnmarshalJSON(src []byte) error

func (*NullableVirtualDatasetHooks) Unset

func (v *NullableVirtualDatasetHooks) Unset()

type NullableVirtualizationPolicy

type NullableVirtualizationPolicy struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualizationPolicy

func NewNullableVirtualizationPolicy(val *VirtualizationPolicy) *NullableVirtualizationPolicy

func (NullableVirtualizationPolicy) Get

func (NullableVirtualizationPolicy) IsSet

func (NullableVirtualizationPolicy) MarshalJSON

func (v NullableVirtualizationPolicy) MarshalJSON() ([]byte, error)

func (*NullableVirtualizationPolicy) Set

func (*NullableVirtualizationPolicy) UnmarshalJSON

func (v *NullableVirtualizationPolicy) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationPolicy) Unset

func (v *NullableVirtualizationPolicy) Unset()

type NullableVirtualizationSchedule

type NullableVirtualizationSchedule struct {
	// contains filtered or unexported fields
}

func (NullableVirtualizationSchedule) Get

func (NullableVirtualizationSchedule) IsSet

func (NullableVirtualizationSchedule) MarshalJSON

func (v NullableVirtualizationSchedule) MarshalJSON() ([]byte, error)

func (*NullableVirtualizationSchedule) Set

func (*NullableVirtualizationSchedule) UnmarshalJSON

func (v *NullableVirtualizationSchedule) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationSchedule) Unset

func (v *NullableVirtualizationSchedule) Unset()

type NullableVirtualizationStorageSummaryData

type NullableVirtualizationStorageSummaryData struct {
	// contains filtered or unexported fields
}

func (NullableVirtualizationStorageSummaryData) Get

func (NullableVirtualizationStorageSummaryData) IsSet

func (NullableVirtualizationStorageSummaryData) MarshalJSON

func (*NullableVirtualizationStorageSummaryData) Set

func (*NullableVirtualizationStorageSummaryData) UnmarshalJSON

func (v *NullableVirtualizationStorageSummaryData) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationStorageSummaryData) Unset

type NullableVirtualizationStorageSummaryReportResponse

type NullableVirtualizationStorageSummaryReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableVirtualizationStorageSummaryReportResponse) Get

func (NullableVirtualizationStorageSummaryReportResponse) IsSet

func (NullableVirtualizationStorageSummaryReportResponse) MarshalJSON

func (*NullableVirtualizationStorageSummaryReportResponse) Set

func (*NullableVirtualizationStorageSummaryReportResponse) UnmarshalJSON

func (*NullableVirtualizationStorageSummaryReportResponse) Unset

type ObjectPermissionAccessGroups

type ObjectPermissionAccessGroups struct {
	// ID of the access group.
	Id *string `json:"id,omitempty"`
	// Name of the access group.
	Name *string `json:"name,omitempty"`
	// Permissions for the object in this access group.
	Permissions []string `json:"permissions,omitempty"`
}

ObjectPermissionAccessGroups The account groups for object permission account.

func NewObjectPermissionAccessGroups

func NewObjectPermissionAccessGroups() *ObjectPermissionAccessGroups

NewObjectPermissionAccessGroups instantiates a new ObjectPermissionAccessGroups 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 NewObjectPermissionAccessGroupsWithDefaults

func NewObjectPermissionAccessGroupsWithDefaults() *ObjectPermissionAccessGroups

NewObjectPermissionAccessGroupsWithDefaults instantiates a new ObjectPermissionAccessGroups 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 (*ObjectPermissionAccessGroups) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetIdOk

func (o *ObjectPermissionAccessGroups) 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.

func (*ObjectPermissionAccessGroups) GetName

func (o *ObjectPermissionAccessGroups) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetNameOk

func (o *ObjectPermissionAccessGroups) 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.

func (*ObjectPermissionAccessGroups) GetPermissions

func (o *ObjectPermissionAccessGroups) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetPermissionsOk

func (o *ObjectPermissionAccessGroups) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionAccessGroups) HasId

HasId returns a boolean if a field has been set.

func (*ObjectPermissionAccessGroups) HasName

func (o *ObjectPermissionAccessGroups) HasName() bool

HasName returns a boolean if a field has been set.

func (*ObjectPermissionAccessGroups) HasPermissions

func (o *ObjectPermissionAccessGroups) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (ObjectPermissionAccessGroups) MarshalJSON

func (o ObjectPermissionAccessGroups) MarshalJSON() ([]byte, error)

func (*ObjectPermissionAccessGroups) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*ObjectPermissionAccessGroups) SetName

func (o *ObjectPermissionAccessGroups) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ObjectPermissionAccessGroups) SetPermissions

func (o *ObjectPermissionAccessGroups) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (ObjectPermissionAccessGroups) ToMap

func (o ObjectPermissionAccessGroups) ToMap() (map[string]interface{}, error)

type ObjectPermissionAccount

type ObjectPermissionAccount struct {
	// Numeric ID of the Account.
	Id *int64 `json:"id,omitempty"`
	// First name of the Account.
	FirstName *string `json:"first_name,omitempty"`
	// Last name of the Account.
	LastName *string `json:"last_name,omitempty"`
	// Email of the Account.
	Email *string `json:"email,omitempty"`
	// Access groups of the Account.
	AccessGroups []ObjectPermissionAccessGroups `json:"access_groups,omitempty"`
}

ObjectPermissionAccount The account details for object permission.

func NewObjectPermissionAccount

func NewObjectPermissionAccount() *ObjectPermissionAccount

NewObjectPermissionAccount instantiates a new ObjectPermissionAccount 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 NewObjectPermissionAccountWithDefaults

func NewObjectPermissionAccountWithDefaults() *ObjectPermissionAccount

NewObjectPermissionAccountWithDefaults instantiates a new ObjectPermissionAccount 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 (*ObjectPermissionAccount) GetAccessGroups

GetAccessGroups returns the AccessGroups field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetAccessGroupsOk

func (o *ObjectPermissionAccount) GetAccessGroupsOk() ([]ObjectPermissionAccessGroups, bool)

GetAccessGroupsOk returns a tuple with the AccessGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionAccount) GetEmail

func (o *ObjectPermissionAccount) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetEmailOk

func (o *ObjectPermissionAccount) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionAccount) GetFirstName

func (o *ObjectPermissionAccount) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetFirstNameOk

func (o *ObjectPermissionAccount) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionAccount) GetId

func (o *ObjectPermissionAccount) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetIdOk

func (o *ObjectPermissionAccount) GetIdOk() (*int64, 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.

func (*ObjectPermissionAccount) GetLastName

func (o *ObjectPermissionAccount) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetLastNameOk

func (o *ObjectPermissionAccount) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionAccount) HasAccessGroups

func (o *ObjectPermissionAccount) HasAccessGroups() bool

HasAccessGroups returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasEmail

func (o *ObjectPermissionAccount) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasFirstName

func (o *ObjectPermissionAccount) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasId

func (o *ObjectPermissionAccount) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasLastName

func (o *ObjectPermissionAccount) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (ObjectPermissionAccount) MarshalJSON

func (o ObjectPermissionAccount) MarshalJSON() ([]byte, error)

func (*ObjectPermissionAccount) SetAccessGroups

func (o *ObjectPermissionAccount) SetAccessGroups(v []ObjectPermissionAccessGroups)

SetAccessGroups gets a reference to the given []ObjectPermissionAccessGroups and assigns it to the AccessGroups field.

func (*ObjectPermissionAccount) SetEmail

func (o *ObjectPermissionAccount) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ObjectPermissionAccount) SetFirstName

func (o *ObjectPermissionAccount) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*ObjectPermissionAccount) SetId

func (o *ObjectPermissionAccount) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ObjectPermissionAccount) SetLastName

func (o *ObjectPermissionAccount) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (ObjectPermissionAccount) ToMap

func (o ObjectPermissionAccount) ToMap() (map[string]interface{}, error)

type ObjectPermissionsResponse

type ObjectPermissionsResponse struct {
	// The Accounts permitted for this object.
	Accounts []ObjectPermissionAccount `json:"accounts,omitempty"`
}

ObjectPermissionsResponse The object permissions for a given object in DCT based on object type and object id.

func NewObjectPermissionsResponse

func NewObjectPermissionsResponse() *ObjectPermissionsResponse

NewObjectPermissionsResponse instantiates a new ObjectPermissionsResponse 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 NewObjectPermissionsResponseWithDefaults

func NewObjectPermissionsResponseWithDefaults() *ObjectPermissionsResponse

NewObjectPermissionsResponseWithDefaults instantiates a new ObjectPermissionsResponse 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 (*ObjectPermissionsResponse) GetAccounts

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*ObjectPermissionsResponse) GetAccountsOk

func (o *ObjectPermissionsResponse) GetAccountsOk() ([]ObjectPermissionAccount, bool)

GetAccountsOk returns a tuple with the Accounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectPermissionsResponse) HasAccounts

func (o *ObjectPermissionsResponse) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (ObjectPermissionsResponse) MarshalJSON

func (o ObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*ObjectPermissionsResponse) SetAccounts

SetAccounts gets a reference to the given []ObjectPermissionAccount and assigns it to the Accounts field.

func (ObjectPermissionsResponse) ToMap

func (o ObjectPermissionsResponse) ToMap() (map[string]interface{}, error)

type ObjectTypeEnum

type ObjectTypeEnum string

ObjectTypeEnum Type of the DCT object.

const (
	OBJECTTYPEENUM_ACCESS_GROUP          ObjectTypeEnum = "ACCESS_GROUP"
	OBJECTTYPEENUM_ACCOUNT               ObjectTypeEnum = "ACCOUNT"
	OBJECTTYPEENUM_ROLE                  ObjectTypeEnum = "ROLE"
	OBJECTTYPEENUM_BOOKMARK              ObjectTypeEnum = "BOOKMARK"
	OBJECTTYPEENUM_CDB                   ObjectTypeEnum = "CDB"
	OBJECTTYPEENUM_DATABASE_TEMPLATE     ObjectTypeEnum = "DATABASE_TEMPLATE"
	OBJECTTYPEENUM_DSOURCE               ObjectTypeEnum = "DSOURCE"
	OBJECTTYPEENUM_ENGINE                ObjectTypeEnum = "ENGINE"
	OBJECTTYPEENUM_ENVIRONMENT           ObjectTypeEnum = "ENVIRONMENT"
	OBJECTTYPEENUM_MASKING_ENVIRONMENT   ObjectTypeEnum = "MASKING_ENVIRONMENT"
	OBJECTTYPEENUM_MASKING_JOB           ObjectTypeEnum = "MASKING_JOB"
	OBJECTTYPEENUM_MASKING_JOB_SET       ObjectTypeEnum = "MASKING_JOB_SET"
	OBJECTTYPEENUM_REPORT_SCHEDULE       ObjectTypeEnum = "REPORT_SCHEDULE"
	OBJECTTYPEENUM_SOURCE                ObjectTypeEnum = "SOURCE"
	OBJECTTYPEENUM_VAULT                 ObjectTypeEnum = "VAULT"
	OBJECTTYPEENUM_VCDB                  ObjectTypeEnum = "VCDB"
	OBJECTTYPEENUM_VDB                   ObjectTypeEnum = "VDB"
	OBJECTTYPEENUM_VDB_GROUP             ObjectTypeEnum = "VDB_GROUP"
	OBJECTTYPEENUM_CONNECTOR             ObjectTypeEnum = "CONNECTOR"
	OBJECTTYPEENUM_VIRTUALIZATION_POLICY ObjectTypeEnum = "VIRTUALIZATION_POLICY"
	OBJECTTYPEENUM_DATASET_GROUP         ObjectTypeEnum = "DATASET_GROUP"
	OBJECTTYPEENUM_ENGINE_VAULT          ObjectTypeEnum = "ENGINE_VAULT"
	OBJECTTYPEENUM_KERBEROS_CONFIG       ObjectTypeEnum = "KERBEROS_CONFIG"
	OBJECTTYPEENUM_TIMEFLOW              ObjectTypeEnum = "TIMEFLOW"
	OBJECTTYPEENUM_MASKING_ALGORITHM     ObjectTypeEnum = "MASKING_ALGORITHM"
	OBJECTTYPEENUM_HYPERSCALE_INSTANCE   ObjectTypeEnum = "HYPERSCALE_INSTANCE"
	OBJECTTYPEENUM_HYPERSCALE_CONNECTOR  ObjectTypeEnum = "HYPERSCALE_CONNECTOR"
	OBJECTTYPEENUM_HYPERSCALE_DATASET    ObjectTypeEnum = "HYPERSCALE_DATASET"
)

List of ObjectTypeEnum

func NewObjectTypeEnumFromValue

func NewObjectTypeEnumFromValue(v string) (*ObjectTypeEnum, error)

NewObjectTypeEnumFromValue returns a pointer to a valid ObjectTypeEnum for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ObjectTypeEnum) IsValid

func (v ObjectTypeEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ObjectTypeEnum) Ptr

func (v ObjectTypeEnum) Ptr() *ObjectTypeEnum

Ptr returns reference to ObjectTypeEnum value

func (*ObjectTypeEnum) UnmarshalJSON

func (v *ObjectTypeEnum) UnmarshalJSON(src []byte) error

type ObjectTypeProperty

type ObjectTypeProperty struct {
	// Object type.
	ObjectType string `json:"object_type"`
}

ObjectTypeProperty A DCT object type.

func NewObjectTypeProperty

func NewObjectTypeProperty(objectType string) *ObjectTypeProperty

NewObjectTypeProperty instantiates a new ObjectTypeProperty 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 NewObjectTypePropertyWithDefaults

func NewObjectTypePropertyWithDefaults() *ObjectTypeProperty

NewObjectTypePropertyWithDefaults instantiates a new ObjectTypeProperty 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 (*ObjectTypeProperty) GetObjectType

func (o *ObjectTypeProperty) GetObjectType() string

GetObjectType returns the ObjectType field value

func (*ObjectTypeProperty) GetObjectTypeOk

func (o *ObjectTypeProperty) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value and a boolean to check if the value has been set.

func (ObjectTypeProperty) MarshalJSON

func (o ObjectTypeProperty) MarshalJSON() ([]byte, error)

func (*ObjectTypeProperty) SetObjectType

func (o *ObjectTypeProperty) SetObjectType(v string)

SetObjectType sets field value

func (ObjectTypeProperty) ToMap

func (o ObjectTypeProperty) ToMap() (map[string]interface{}, error)

type OracleClusterNodeInstance

type OracleClusterNodeInstance struct {
	// The name of this instance.
	InstanceName *string `json:"instance_name,omitempty"`
	// The number of this instance.
	InstanceNumber *int32 `json:"instance_number,omitempty"`
}

OracleClusterNodeInstance An oracle cluster node instance.

func NewOracleClusterNodeInstance

func NewOracleClusterNodeInstance() *OracleClusterNodeInstance

NewOracleClusterNodeInstance instantiates a new OracleClusterNodeInstance 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 NewOracleClusterNodeInstanceWithDefaults

func NewOracleClusterNodeInstanceWithDefaults() *OracleClusterNodeInstance

NewOracleClusterNodeInstanceWithDefaults instantiates a new OracleClusterNodeInstance 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 (*OracleClusterNodeInstance) GetInstanceName

func (o *OracleClusterNodeInstance) GetInstanceName() string

GetInstanceName returns the InstanceName field value if set, zero value otherwise.

func (*OracleClusterNodeInstance) GetInstanceNameOk

func (o *OracleClusterNodeInstance) GetInstanceNameOk() (*string, bool)

GetInstanceNameOk returns a tuple with the InstanceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleClusterNodeInstance) GetInstanceNumber

func (o *OracleClusterNodeInstance) GetInstanceNumber() int32

GetInstanceNumber returns the InstanceNumber field value if set, zero value otherwise.

func (*OracleClusterNodeInstance) GetInstanceNumberOk

func (o *OracleClusterNodeInstance) GetInstanceNumberOk() (*int32, bool)

GetInstanceNumberOk returns a tuple with the InstanceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleClusterNodeInstance) HasInstanceName

func (o *OracleClusterNodeInstance) HasInstanceName() bool

HasInstanceName returns a boolean if a field has been set.

func (*OracleClusterNodeInstance) HasInstanceNumber

func (o *OracleClusterNodeInstance) HasInstanceNumber() bool

HasInstanceNumber returns a boolean if a field has been set.

func (OracleClusterNodeInstance) MarshalJSON

func (o OracleClusterNodeInstance) MarshalJSON() ([]byte, error)

func (*OracleClusterNodeInstance) SetInstanceName

func (o *OracleClusterNodeInstance) SetInstanceName(v string)

SetInstanceName gets a reference to the given string and assigns it to the InstanceName field.

func (*OracleClusterNodeInstance) SetInstanceNumber

func (o *OracleClusterNodeInstance) SetInstanceNumber(v int32)

SetInstanceNumber gets a reference to the given int32 and assigns it to the InstanceNumber field.

func (OracleClusterNodeInstance) ToMap

func (o OracleClusterNodeInstance) ToMap() (map[string]interface{}, error)

type OracleDSourceLinkSourceParameters

type OracleDSourceLinkSourceParameters struct {
	// Name of the dSource to be created.
	Name *string `json:"name,omitempty"`
	// Id of the source to link.
	SourceId string `json:"source_id"`
	// Id of the dataset group where this dSource should belong to.
	GroupId *string `json:"group_id,omitempty"`
	// The notes/description for the dSource.
	Description *string `json:"description,omitempty"`
	// True if LogSync should run for this database.
	LogSyncEnabled *bool `json:"log_sync_enabled,omitempty"`
	// Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
	// The tags to be created for dSource.
	Tags []Tag `json:"tags,omitempty"`
	// Operations to perform before syncing the created dSource. These operations can quiesce any data prior to syncing.
	OpsPreSync []SourceOperation `json:"ops_pre_sync,omitempty"`
	// Operations to perform after syncing a created dSource.
	OpsPostSync []SourceOperation `json:"ops_post_sync,omitempty"`
	// External file path.
	ExternalFilePath *string `json:"external_file_path,omitempty"`
	// Id of the environment user to use for linking.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// Boolean value indicates whether LEVEL-based incremental backups can be used on the source database.
	BackupLevelEnabled *bool `json:"backup_level_enabled,omitempty"`
	// Number of parallel channels to use.
	RmanChannels *int32 `json:"rman_channels,omitempty"`
	// Number of data files to include in each RMAN backup set.
	FilesPerSet *int32 `json:"files_per_set,omitempty"`
	// True if extended block checking should be used for this linked database.
	CheckLogical *bool `json:"check_logical,omitempty"`
	// True if SnapSync data from the source should be retrieved through an encrypted connection. Enabling this feature can decrease the performance of SnapSync from the source but has no impact on the performance of VDBs created from the retrieved data.
	EncryptedLinkingEnabled *bool `json:"encrypted_linking_enabled,omitempty"`
	// True if SnapSync data from the source should be compressed over the network. Enabling this feature will reduce network bandwidth consumption and may significantly improve throughput, especially over slow network.
	CompressedLinkingEnabled *bool `json:"compressed_linking_enabled,omitempty"`
	// Bandwidth limit (MB/s) for SnapSync and LogSync network traffic. A value of 0 means no limit.
	BandwidthLimit *int32 `json:"bandwidth_limit,omitempty"`
	// Total number of transport connections to use during SnapSync.
	NumberOfConnections *int32 `json:"number_of_connections,omitempty"`
	// If true, NOLOGGING operations on this container are treated as faults and cannot be resolved manually.
	DiagnoseNoLoggingFaults *bool `json:"diagnose_no_logging_faults,omitempty"`
	// If true, pre-provisioning will be performed after every sync.
	PreProvisioningEnabled *bool `json:"pre_provisioning_enabled,omitempty"`
	// True if initial load should be done immediately.
	LinkNow *bool `json:"link_now,omitempty"`
	// Whether or not to take another full backup of the source database.
	ForceFullBackup *bool `json:"force_full_backup,omitempty"`
	// True if two SnapSyncs should be performed in immediate succession to reduce the number of logs required to provision the snapshot. This may significantly reduce the time necessary to provision from a snapshot.
	DoubleSync *bool `json:"double_sync,omitempty"`
	// Skip check that tests if there is enough space available to store the database in the Delphix Engine. The Delphix Engine estimates how much space a database will occupy after compression and prevents SnapSync if insufficient space is available. This safeguard can be overridden using this option. This may be useful when linking highly compressible databases.
	SkipSpaceCheck *bool `json:"skip_space_check,omitempty"`
	// Indicates whether a fresh SnapSync must be started regardless if it was possible to resume the current SnapSync. If true, we will not resume but instead ignore previous progress and backup all datafiles even if already completed from previous failed SnapSync. This does not force a full backup, if an incremental was in progress this will start a new incremental snapshot.
	DoNotResume *bool `json:"do_not_resume,omitempty"`
	// List of datafiles to take a full backup of. This would be useful in situations where certain datafiles could not be backed up during previous SnapSync due to corruption or because they went offline.
	FilesForFullBackup []int32 `json:"files_for_full_backup,omitempty"`
	// LogSync operation mode for this database.
	LogSyncMode *string `json:"log_sync_mode,omitempty"`
	// Interval between LogSync requests, in seconds.
	LogSyncInterval *int32 `json:"log_sync_interval,omitempty"`
	// Non-SYS database user to access this database. Only required for username-password auth (Single tenant only).
	NonSysUsername *string `json:"non_sys_username,omitempty"`
	// Password for non sys user authentication (Single tenant only).
	NonSysPassword *string `json:"non_sys_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials (Single tenant only).
	NonSysVault *string `json:"non_sys_vault,omitempty"`
	// Vault engine name where the credential is stored (Single tenant only).
	NonSysHashicorpVaultEngine *string `json:"non_sys_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored (Single tenant only).
	NonSysHashicorpVaultSecretPath *string `json:"non_sys_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store (Single tenant only).
	NonSysHashicorpVaultUsernameKey *string `json:"non_sys_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store (Single tenant only).
	NonSysHashicorpVaultSecretKey *string `json:"non_sys_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (Single tenant only).
	NonSysAzureVaultName *string `json:"non_sys_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (Single tenant only).
	NonSysAzureVaultUsernameKey *string `json:"non_sys_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (Single tenant only).
	NonSysAzureVaultSecretKey *string `json:"non_sys_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault (Single tenant only).
	NonSysCyberarkVaultQueryString *string `json:"non_sys_cyberark_vault_query_string,omitempty"`
	// The database fallback username. Optional if bequeath connections are enabled (to be used in case of bequeath connection failures). Only required for username-password auth.
	FallbackUsername *string `json:"fallback_username,omitempty"`
	// Password for fallback username.
	FallbackPassword *string `json:"fallback_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials.
	FallbackVault *string `json:"fallback_vault,omitempty"`
	// Vault engine name where the credential is stored.
	FallbackHashicorpVaultEngine *string `json:"fallback_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	FallbackHashicorpVaultSecretPath *string `json:"fallback_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store.
	FallbackHashicorpVaultUsernameKey *string `json:"fallback_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store.
	FallbackHashicorpVaultSecretKey *string `json:"fallback_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name.
	FallbackAzureVaultName *string `json:"fallback_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store.
	FallbackAzureVaultUsernameKey *string `json:"fallback_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store.
	FallbackAzureVaultSecretKey *string `json:"fallback_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	FallbackCyberarkVaultQueryString *string `json:"fallback_cyberark_vault_query_string,omitempty"`
	// Operations to perform after syncing a created dSource and before running the LogSync.
	OpsPreLogSync []SourceOperation `json:"ops_pre_log_sync,omitempty"`
}

OracleDSourceLinkSourceParameters struct for OracleDSourceLinkSourceParameters

func NewOracleDSourceLinkSourceParameters

func NewOracleDSourceLinkSourceParameters(sourceId string) *OracleDSourceLinkSourceParameters

NewOracleDSourceLinkSourceParameters instantiates a new OracleDSourceLinkSourceParameters 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 NewOracleDSourceLinkSourceParametersWithDefaults

func NewOracleDSourceLinkSourceParametersWithDefaults() *OracleDSourceLinkSourceParameters

NewOracleDSourceLinkSourceParametersWithDefaults instantiates a new OracleDSourceLinkSourceParameters 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 (*OracleDSourceLinkSourceParameters) GetBackupLevelEnabled

func (o *OracleDSourceLinkSourceParameters) GetBackupLevelEnabled() bool

GetBackupLevelEnabled returns the BackupLevelEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetBackupLevelEnabledOk

func (o *OracleDSourceLinkSourceParameters) GetBackupLevelEnabledOk() (*bool, bool)

GetBackupLevelEnabledOk returns a tuple with the BackupLevelEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetBandwidthLimit

func (o *OracleDSourceLinkSourceParameters) GetBandwidthLimit() int32

GetBandwidthLimit returns the BandwidthLimit field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetBandwidthLimitOk

func (o *OracleDSourceLinkSourceParameters) GetBandwidthLimitOk() (*int32, bool)

GetBandwidthLimitOk returns a tuple with the BandwidthLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetCheckLogical

func (o *OracleDSourceLinkSourceParameters) GetCheckLogical() bool

GetCheckLogical returns the CheckLogical field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetCheckLogicalOk

func (o *OracleDSourceLinkSourceParameters) GetCheckLogicalOk() (*bool, bool)

GetCheckLogicalOk returns a tuple with the CheckLogical field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) GetCompressedLinkingEnabled() bool

GetCompressedLinkingEnabled returns the CompressedLinkingEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetCompressedLinkingEnabledOk

func (o *OracleDSourceLinkSourceParameters) GetCompressedLinkingEnabledOk() (*bool, bool)

GetCompressedLinkingEnabledOk returns a tuple with the CompressedLinkingEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetDescription

func (o *OracleDSourceLinkSourceParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetDescriptionOk

func (o *OracleDSourceLinkSourceParameters) 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.

func (*OracleDSourceLinkSourceParameters) GetDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParameters) GetDiagnoseNoLoggingFaults() bool

GetDiagnoseNoLoggingFaults returns the DiagnoseNoLoggingFaults field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetDiagnoseNoLoggingFaultsOk

func (o *OracleDSourceLinkSourceParameters) GetDiagnoseNoLoggingFaultsOk() (*bool, bool)

GetDiagnoseNoLoggingFaultsOk returns a tuple with the DiagnoseNoLoggingFaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetDoNotResume

func (o *OracleDSourceLinkSourceParameters) GetDoNotResume() bool

GetDoNotResume returns the DoNotResume field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetDoNotResumeOk

func (o *OracleDSourceLinkSourceParameters) GetDoNotResumeOk() (*bool, bool)

GetDoNotResumeOk returns a tuple with the DoNotResume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetDoubleSync

func (o *OracleDSourceLinkSourceParameters) GetDoubleSync() bool

GetDoubleSync returns the DoubleSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetDoubleSyncOk

func (o *OracleDSourceLinkSourceParameters) GetDoubleSyncOk() (*bool, bool)

GetDoubleSyncOk returns a tuple with the DoubleSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) GetEncryptedLinkingEnabled() bool

GetEncryptedLinkingEnabled returns the EncryptedLinkingEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetEncryptedLinkingEnabledOk

func (o *OracleDSourceLinkSourceParameters) GetEncryptedLinkingEnabledOk() (*bool, bool)

GetEncryptedLinkingEnabledOk returns a tuple with the EncryptedLinkingEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetEnvironmentUserId

func (o *OracleDSourceLinkSourceParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetEnvironmentUserIdOk

func (o *OracleDSourceLinkSourceParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetExternalFilePath

func (o *OracleDSourceLinkSourceParameters) GetExternalFilePath() string

GetExternalFilePath returns the ExternalFilePath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetExternalFilePathOk

func (o *OracleDSourceLinkSourceParameters) GetExternalFilePathOk() (*string, bool)

GetExternalFilePathOk returns a tuple with the ExternalFilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultName() string

GetFallbackAzureVaultName returns the FallbackAzureVaultName field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultNameOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultNameOk() (*string, bool)

GetFallbackAzureVaultNameOk returns a tuple with the FallbackAzureVaultName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultSecretKey() string

GetFallbackAzureVaultSecretKey returns the FallbackAzureVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultSecretKeyOk() (*string, bool)

GetFallbackAzureVaultSecretKeyOk returns a tuple with the FallbackAzureVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultUsernameKey() string

GetFallbackAzureVaultUsernameKey returns the FallbackAzureVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackAzureVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackAzureVaultUsernameKeyOk() (*string, bool)

GetFallbackAzureVaultUsernameKeyOk returns a tuple with the FallbackAzureVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) GetFallbackCyberarkVaultQueryString() string

GetFallbackCyberarkVaultQueryString returns the FallbackCyberarkVaultQueryString field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackCyberarkVaultQueryStringOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackCyberarkVaultQueryStringOk() (*string, bool)

GetFallbackCyberarkVaultQueryStringOk returns a tuple with the FallbackCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultEngine() string

GetFallbackHashicorpVaultEngine returns the FallbackHashicorpVaultEngine field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultEngineOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultEngineOk() (*string, bool)

GetFallbackHashicorpVaultEngineOk returns a tuple with the FallbackHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretKey() string

GetFallbackHashicorpVaultSecretKey returns the FallbackHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretKeyOk() (*string, bool)

GetFallbackHashicorpVaultSecretKeyOk returns a tuple with the FallbackHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretPath() string

GetFallbackHashicorpVaultSecretPath returns the FallbackHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretPathOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultSecretPathOk() (*string, bool)

GetFallbackHashicorpVaultSecretPathOk returns a tuple with the FallbackHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultUsernameKey() string

GetFallbackHashicorpVaultUsernameKey returns the FallbackHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackHashicorpVaultUsernameKeyOk() (*string, bool)

GetFallbackHashicorpVaultUsernameKeyOk returns a tuple with the FallbackHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackPassword

func (o *OracleDSourceLinkSourceParameters) GetFallbackPassword() string

GetFallbackPassword returns the FallbackPassword field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackPasswordOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackPasswordOk() (*string, bool)

GetFallbackPasswordOk returns a tuple with the FallbackPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackUsername

func (o *OracleDSourceLinkSourceParameters) GetFallbackUsername() string

GetFallbackUsername returns the FallbackUsername field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackUsernameOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackUsernameOk() (*string, bool)

GetFallbackUsernameOk returns a tuple with the FallbackUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFallbackVault

func (o *OracleDSourceLinkSourceParameters) GetFallbackVault() string

GetFallbackVault returns the FallbackVault field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFallbackVaultOk

func (o *OracleDSourceLinkSourceParameters) GetFallbackVaultOk() (*string, bool)

GetFallbackVaultOk returns a tuple with the FallbackVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFilesForFullBackup

func (o *OracleDSourceLinkSourceParameters) GetFilesForFullBackup() []int32

GetFilesForFullBackup returns the FilesForFullBackup field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFilesForFullBackupOk

func (o *OracleDSourceLinkSourceParameters) GetFilesForFullBackupOk() ([]int32, bool)

GetFilesForFullBackupOk returns a tuple with the FilesForFullBackup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetFilesPerSet

func (o *OracleDSourceLinkSourceParameters) GetFilesPerSet() int32

GetFilesPerSet returns the FilesPerSet field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetFilesPerSetOk

func (o *OracleDSourceLinkSourceParameters) GetFilesPerSetOk() (*int32, bool)

GetFilesPerSetOk returns a tuple with the FilesPerSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetForceFullBackup

func (o *OracleDSourceLinkSourceParameters) GetForceFullBackup() bool

GetForceFullBackup returns the ForceFullBackup field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetForceFullBackupOk

func (o *OracleDSourceLinkSourceParameters) GetForceFullBackupOk() (*bool, bool)

GetForceFullBackupOk returns a tuple with the ForceFullBackup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetGroupId

func (o *OracleDSourceLinkSourceParameters) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetGroupIdOk

func (o *OracleDSourceLinkSourceParameters) 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.

func (*OracleDSourceLinkSourceParameters) GetLinkNow

func (o *OracleDSourceLinkSourceParameters) GetLinkNow() bool

GetLinkNow returns the LinkNow field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetLinkNowOk

func (o *OracleDSourceLinkSourceParameters) GetLinkNowOk() (*bool, bool)

GetLinkNowOk returns a tuple with the LinkNow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetLogSyncEnabled

func (o *OracleDSourceLinkSourceParameters) GetLogSyncEnabled() bool

GetLogSyncEnabled returns the LogSyncEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetLogSyncEnabledOk

func (o *OracleDSourceLinkSourceParameters) GetLogSyncEnabledOk() (*bool, bool)

GetLogSyncEnabledOk returns a tuple with the LogSyncEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetLogSyncInterval

func (o *OracleDSourceLinkSourceParameters) GetLogSyncInterval() int32

GetLogSyncInterval returns the LogSyncInterval field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetLogSyncIntervalOk

func (o *OracleDSourceLinkSourceParameters) GetLogSyncIntervalOk() (*int32, bool)

GetLogSyncIntervalOk returns a tuple with the LogSyncInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetLogSyncMode

func (o *OracleDSourceLinkSourceParameters) GetLogSyncMode() string

GetLogSyncMode returns the LogSyncMode field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetLogSyncModeOk

func (o *OracleDSourceLinkSourceParameters) GetLogSyncModeOk() (*string, bool)

GetLogSyncModeOk returns a tuple with the LogSyncMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetMakeCurrentAccountOwner

func (o *OracleDSourceLinkSourceParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk

func (o *OracleDSourceLinkSourceParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNameOk

func (o *OracleDSourceLinkSourceParameters) 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.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultName() string

GetNonSysAzureVaultName returns the NonSysAzureVaultName field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultNameOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultNameOk() (*string, bool)

GetNonSysAzureVaultNameOk returns a tuple with the NonSysAzureVaultName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultSecretKey() string

GetNonSysAzureVaultSecretKey returns the NonSysAzureVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultSecretKeyOk() (*string, bool)

GetNonSysAzureVaultSecretKeyOk returns a tuple with the NonSysAzureVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultUsernameKey() string

GetNonSysAzureVaultUsernameKey returns the NonSysAzureVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysAzureVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysAzureVaultUsernameKeyOk() (*string, bool)

GetNonSysAzureVaultUsernameKeyOk returns a tuple with the NonSysAzureVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) GetNonSysCyberarkVaultQueryString() string

GetNonSysCyberarkVaultQueryString returns the NonSysCyberarkVaultQueryString field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysCyberarkVaultQueryStringOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysCyberarkVaultQueryStringOk() (*string, bool)

GetNonSysCyberarkVaultQueryStringOk returns a tuple with the NonSysCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultEngine() string

GetNonSysHashicorpVaultEngine returns the NonSysHashicorpVaultEngine field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultEngineOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultEngineOk() (*string, bool)

GetNonSysHashicorpVaultEngineOk returns a tuple with the NonSysHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretKey() string

GetNonSysHashicorpVaultSecretKey returns the NonSysHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretKeyOk() (*string, bool)

GetNonSysHashicorpVaultSecretKeyOk returns a tuple with the NonSysHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretPath() string

GetNonSysHashicorpVaultSecretPath returns the NonSysHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretPathOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultSecretPathOk() (*string, bool)

GetNonSysHashicorpVaultSecretPathOk returns a tuple with the NonSysHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultUsernameKey() string

GetNonSysHashicorpVaultUsernameKey returns the NonSysHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysHashicorpVaultUsernameKeyOk() (*string, bool)

GetNonSysHashicorpVaultUsernameKeyOk returns a tuple with the NonSysHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysPassword

func (o *OracleDSourceLinkSourceParameters) GetNonSysPassword() string

GetNonSysPassword returns the NonSysPassword field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysPasswordOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysPasswordOk() (*string, bool)

GetNonSysPasswordOk returns a tuple with the NonSysPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysUsername

func (o *OracleDSourceLinkSourceParameters) GetNonSysUsername() string

GetNonSysUsername returns the NonSysUsername field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysUsernameOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysUsernameOk() (*string, bool)

GetNonSysUsernameOk returns a tuple with the NonSysUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNonSysVault

func (o *OracleDSourceLinkSourceParameters) GetNonSysVault() string

GetNonSysVault returns the NonSysVault field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNonSysVaultOk

func (o *OracleDSourceLinkSourceParameters) GetNonSysVaultOk() (*string, bool)

GetNonSysVaultOk returns a tuple with the NonSysVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetNumberOfConnections

func (o *OracleDSourceLinkSourceParameters) GetNumberOfConnections() int32

GetNumberOfConnections returns the NumberOfConnections field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetNumberOfConnectionsOk

func (o *OracleDSourceLinkSourceParameters) GetNumberOfConnectionsOk() (*int32, bool)

GetNumberOfConnectionsOk returns a tuple with the NumberOfConnections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetOpsPostSync

func (o *OracleDSourceLinkSourceParameters) GetOpsPostSync() []SourceOperation

GetOpsPostSync returns the OpsPostSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetOpsPostSyncOk

func (o *OracleDSourceLinkSourceParameters) GetOpsPostSyncOk() ([]SourceOperation, bool)

GetOpsPostSyncOk returns a tuple with the OpsPostSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetOpsPreLogSync

func (o *OracleDSourceLinkSourceParameters) GetOpsPreLogSync() []SourceOperation

GetOpsPreLogSync returns the OpsPreLogSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetOpsPreLogSyncOk

func (o *OracleDSourceLinkSourceParameters) GetOpsPreLogSyncOk() ([]SourceOperation, bool)

GetOpsPreLogSyncOk returns a tuple with the OpsPreLogSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetOpsPreSync

GetOpsPreSync returns the OpsPreSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetOpsPreSyncOk

func (o *OracleDSourceLinkSourceParameters) GetOpsPreSyncOk() ([]SourceOperation, bool)

GetOpsPreSyncOk returns a tuple with the OpsPreSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParameters) GetPreProvisioningEnabled() bool

GetPreProvisioningEnabled returns the PreProvisioningEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetPreProvisioningEnabledOk

func (o *OracleDSourceLinkSourceParameters) GetPreProvisioningEnabledOk() (*bool, bool)

GetPreProvisioningEnabledOk returns a tuple with the PreProvisioningEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetRmanChannels

func (o *OracleDSourceLinkSourceParameters) GetRmanChannels() int32

GetRmanChannels returns the RmanChannels field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetRmanChannelsOk

func (o *OracleDSourceLinkSourceParameters) GetRmanChannelsOk() (*int32, bool)

GetRmanChannelsOk returns a tuple with the RmanChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetSkipSpaceCheck

func (o *OracleDSourceLinkSourceParameters) GetSkipSpaceCheck() bool

GetSkipSpaceCheck returns the SkipSpaceCheck field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetSkipSpaceCheckOk

func (o *OracleDSourceLinkSourceParameters) GetSkipSpaceCheckOk() (*bool, bool)

GetSkipSpaceCheckOk returns a tuple with the SkipSpaceCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetSourceId

func (o *OracleDSourceLinkSourceParameters) GetSourceId() string

GetSourceId returns the SourceId field value

func (*OracleDSourceLinkSourceParameters) GetSourceIdOk

func (o *OracleDSourceLinkSourceParameters) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParameters) GetTags

func (o *OracleDSourceLinkSourceParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParameters) GetTagsOk

func (o *OracleDSourceLinkSourceParameters) 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.

func (*OracleDSourceLinkSourceParameters) HasBackupLevelEnabled

func (o *OracleDSourceLinkSourceParameters) HasBackupLevelEnabled() bool

HasBackupLevelEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasBandwidthLimit

func (o *OracleDSourceLinkSourceParameters) HasBandwidthLimit() bool

HasBandwidthLimit returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasCheckLogical

func (o *OracleDSourceLinkSourceParameters) HasCheckLogical() bool

HasCheckLogical returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) HasCompressedLinkingEnabled() bool

HasCompressedLinkingEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasDescription

func (o *OracleDSourceLinkSourceParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParameters) HasDiagnoseNoLoggingFaults() bool

HasDiagnoseNoLoggingFaults returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasDoNotResume

func (o *OracleDSourceLinkSourceParameters) HasDoNotResume() bool

HasDoNotResume returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasDoubleSync

func (o *OracleDSourceLinkSourceParameters) HasDoubleSync() bool

HasDoubleSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) HasEncryptedLinkingEnabled() bool

HasEncryptedLinkingEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasEnvironmentUserId

func (o *OracleDSourceLinkSourceParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasExternalFilePath

func (o *OracleDSourceLinkSourceParameters) HasExternalFilePath() bool

HasExternalFilePath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParameters) HasFallbackAzureVaultName() bool

HasFallbackAzureVaultName returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) HasFallbackAzureVaultSecretKey() bool

HasFallbackAzureVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) HasFallbackAzureVaultUsernameKey() bool

HasFallbackAzureVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) HasFallbackCyberarkVaultQueryString() bool

HasFallbackCyberarkVaultQueryString returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultEngine() bool

HasFallbackHashicorpVaultEngine returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultSecretKey() bool

HasFallbackHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultSecretPath() bool

HasFallbackHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) HasFallbackHashicorpVaultUsernameKey() bool

HasFallbackHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackPassword

func (o *OracleDSourceLinkSourceParameters) HasFallbackPassword() bool

HasFallbackPassword returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackUsername

func (o *OracleDSourceLinkSourceParameters) HasFallbackUsername() bool

HasFallbackUsername returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFallbackVault

func (o *OracleDSourceLinkSourceParameters) HasFallbackVault() bool

HasFallbackVault returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFilesForFullBackup

func (o *OracleDSourceLinkSourceParameters) HasFilesForFullBackup() bool

HasFilesForFullBackup returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasFilesPerSet

func (o *OracleDSourceLinkSourceParameters) HasFilesPerSet() bool

HasFilesPerSet returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasForceFullBackup

func (o *OracleDSourceLinkSourceParameters) HasForceFullBackup() bool

HasForceFullBackup returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasGroupId

func (o *OracleDSourceLinkSourceParameters) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasLinkNow

func (o *OracleDSourceLinkSourceParameters) HasLinkNow() bool

HasLinkNow returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasLogSyncEnabled

func (o *OracleDSourceLinkSourceParameters) HasLogSyncEnabled() bool

HasLogSyncEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasLogSyncInterval

func (o *OracleDSourceLinkSourceParameters) HasLogSyncInterval() bool

HasLogSyncInterval returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasLogSyncMode

func (o *OracleDSourceLinkSourceParameters) HasLogSyncMode() bool

HasLogSyncMode returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasMakeCurrentAccountOwner

func (o *OracleDSourceLinkSourceParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasName

HasName returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParameters) HasNonSysAzureVaultName() bool

HasNonSysAzureVaultName returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) HasNonSysAzureVaultSecretKey() bool

HasNonSysAzureVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) HasNonSysAzureVaultUsernameKey() bool

HasNonSysAzureVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) HasNonSysCyberarkVaultQueryString() bool

HasNonSysCyberarkVaultQueryString returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultEngine() bool

HasNonSysHashicorpVaultEngine returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultSecretKey() bool

HasNonSysHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultSecretPath() bool

HasNonSysHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) HasNonSysHashicorpVaultUsernameKey() bool

HasNonSysHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysPassword

func (o *OracleDSourceLinkSourceParameters) HasNonSysPassword() bool

HasNonSysPassword returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysUsername

func (o *OracleDSourceLinkSourceParameters) HasNonSysUsername() bool

HasNonSysUsername returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNonSysVault

func (o *OracleDSourceLinkSourceParameters) HasNonSysVault() bool

HasNonSysVault returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasNumberOfConnections

func (o *OracleDSourceLinkSourceParameters) HasNumberOfConnections() bool

HasNumberOfConnections returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasOpsPostSync

func (o *OracleDSourceLinkSourceParameters) HasOpsPostSync() bool

HasOpsPostSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasOpsPreLogSync

func (o *OracleDSourceLinkSourceParameters) HasOpsPreLogSync() bool

HasOpsPreLogSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasOpsPreSync

func (o *OracleDSourceLinkSourceParameters) HasOpsPreSync() bool

HasOpsPreSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParameters) HasPreProvisioningEnabled() bool

HasPreProvisioningEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasRmanChannels

func (o *OracleDSourceLinkSourceParameters) HasRmanChannels() bool

HasRmanChannels returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasSkipSpaceCheck

func (o *OracleDSourceLinkSourceParameters) HasSkipSpaceCheck() bool

HasSkipSpaceCheck returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParameters) HasTags

HasTags returns a boolean if a field has been set.

func (OracleDSourceLinkSourceParameters) MarshalJSON

func (o OracleDSourceLinkSourceParameters) MarshalJSON() ([]byte, error)

func (*OracleDSourceLinkSourceParameters) SetBackupLevelEnabled

func (o *OracleDSourceLinkSourceParameters) SetBackupLevelEnabled(v bool)

SetBackupLevelEnabled gets a reference to the given bool and assigns it to the BackupLevelEnabled field.

func (*OracleDSourceLinkSourceParameters) SetBandwidthLimit

func (o *OracleDSourceLinkSourceParameters) SetBandwidthLimit(v int32)

SetBandwidthLimit gets a reference to the given int32 and assigns it to the BandwidthLimit field.

func (*OracleDSourceLinkSourceParameters) SetCheckLogical

func (o *OracleDSourceLinkSourceParameters) SetCheckLogical(v bool)

SetCheckLogical gets a reference to the given bool and assigns it to the CheckLogical field.

func (*OracleDSourceLinkSourceParameters) SetCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) SetCompressedLinkingEnabled(v bool)

SetCompressedLinkingEnabled gets a reference to the given bool and assigns it to the CompressedLinkingEnabled field.

func (*OracleDSourceLinkSourceParameters) SetDescription

func (o *OracleDSourceLinkSourceParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OracleDSourceLinkSourceParameters) SetDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParameters) SetDiagnoseNoLoggingFaults(v bool)

SetDiagnoseNoLoggingFaults gets a reference to the given bool and assigns it to the DiagnoseNoLoggingFaults field.

func (*OracleDSourceLinkSourceParameters) SetDoNotResume

func (o *OracleDSourceLinkSourceParameters) SetDoNotResume(v bool)

SetDoNotResume gets a reference to the given bool and assigns it to the DoNotResume field.

func (*OracleDSourceLinkSourceParameters) SetDoubleSync

func (o *OracleDSourceLinkSourceParameters) SetDoubleSync(v bool)

SetDoubleSync gets a reference to the given bool and assigns it to the DoubleSync field.

func (*OracleDSourceLinkSourceParameters) SetEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParameters) SetEncryptedLinkingEnabled(v bool)

SetEncryptedLinkingEnabled gets a reference to the given bool and assigns it to the EncryptedLinkingEnabled field.

func (*OracleDSourceLinkSourceParameters) SetEnvironmentUserId

func (o *OracleDSourceLinkSourceParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*OracleDSourceLinkSourceParameters) SetExternalFilePath

func (o *OracleDSourceLinkSourceParameters) SetExternalFilePath(v string)

SetExternalFilePath gets a reference to the given string and assigns it to the ExternalFilePath field.

func (*OracleDSourceLinkSourceParameters) SetFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParameters) SetFallbackAzureVaultName(v string)

SetFallbackAzureVaultName gets a reference to the given string and assigns it to the FallbackAzureVaultName field.

func (*OracleDSourceLinkSourceParameters) SetFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) SetFallbackAzureVaultSecretKey(v string)

SetFallbackAzureVaultSecretKey gets a reference to the given string and assigns it to the FallbackAzureVaultSecretKey field.

func (*OracleDSourceLinkSourceParameters) SetFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) SetFallbackAzureVaultUsernameKey(v string)

SetFallbackAzureVaultUsernameKey gets a reference to the given string and assigns it to the FallbackAzureVaultUsernameKey field.

func (*OracleDSourceLinkSourceParameters) SetFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) SetFallbackCyberarkVaultQueryString(v string)

SetFallbackCyberarkVaultQueryString gets a reference to the given string and assigns it to the FallbackCyberarkVaultQueryString field.

func (*OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultEngine(v string)

SetFallbackHashicorpVaultEngine gets a reference to the given string and assigns it to the FallbackHashicorpVaultEngine field.

func (*OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultSecretKey(v string)

SetFallbackHashicorpVaultSecretKey gets a reference to the given string and assigns it to the FallbackHashicorpVaultSecretKey field.

func (*OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultSecretPath(v string)

SetFallbackHashicorpVaultSecretPath gets a reference to the given string and assigns it to the FallbackHashicorpVaultSecretPath field.

func (*OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) SetFallbackHashicorpVaultUsernameKey(v string)

SetFallbackHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the FallbackHashicorpVaultUsernameKey field.

func (*OracleDSourceLinkSourceParameters) SetFallbackPassword

func (o *OracleDSourceLinkSourceParameters) SetFallbackPassword(v string)

SetFallbackPassword gets a reference to the given string and assigns it to the FallbackPassword field.

func (*OracleDSourceLinkSourceParameters) SetFallbackUsername

func (o *OracleDSourceLinkSourceParameters) SetFallbackUsername(v string)

SetFallbackUsername gets a reference to the given string and assigns it to the FallbackUsername field.

func (*OracleDSourceLinkSourceParameters) SetFallbackVault

func (o *OracleDSourceLinkSourceParameters) SetFallbackVault(v string)

SetFallbackVault gets a reference to the given string and assigns it to the FallbackVault field.

func (*OracleDSourceLinkSourceParameters) SetFilesForFullBackup

func (o *OracleDSourceLinkSourceParameters) SetFilesForFullBackup(v []int32)

SetFilesForFullBackup gets a reference to the given []int32 and assigns it to the FilesForFullBackup field.

func (*OracleDSourceLinkSourceParameters) SetFilesPerSet

func (o *OracleDSourceLinkSourceParameters) SetFilesPerSet(v int32)

SetFilesPerSet gets a reference to the given int32 and assigns it to the FilesPerSet field.

func (*OracleDSourceLinkSourceParameters) SetForceFullBackup

func (o *OracleDSourceLinkSourceParameters) SetForceFullBackup(v bool)

SetForceFullBackup gets a reference to the given bool and assigns it to the ForceFullBackup field.

func (*OracleDSourceLinkSourceParameters) SetGroupId

func (o *OracleDSourceLinkSourceParameters) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*OracleDSourceLinkSourceParameters) SetLinkNow

func (o *OracleDSourceLinkSourceParameters) SetLinkNow(v bool)

SetLinkNow gets a reference to the given bool and assigns it to the LinkNow field.

func (*OracleDSourceLinkSourceParameters) SetLogSyncEnabled

func (o *OracleDSourceLinkSourceParameters) SetLogSyncEnabled(v bool)

SetLogSyncEnabled gets a reference to the given bool and assigns it to the LogSyncEnabled field.

func (*OracleDSourceLinkSourceParameters) SetLogSyncInterval

func (o *OracleDSourceLinkSourceParameters) SetLogSyncInterval(v int32)

SetLogSyncInterval gets a reference to the given int32 and assigns it to the LogSyncInterval field.

func (*OracleDSourceLinkSourceParameters) SetLogSyncMode

func (o *OracleDSourceLinkSourceParameters) SetLogSyncMode(v string)

SetLogSyncMode gets a reference to the given string and assigns it to the LogSyncMode field.

func (*OracleDSourceLinkSourceParameters) SetMakeCurrentAccountOwner

func (o *OracleDSourceLinkSourceParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*OracleDSourceLinkSourceParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*OracleDSourceLinkSourceParameters) SetNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParameters) SetNonSysAzureVaultName(v string)

SetNonSysAzureVaultName gets a reference to the given string and assigns it to the NonSysAzureVaultName field.

func (*OracleDSourceLinkSourceParameters) SetNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) SetNonSysAzureVaultSecretKey(v string)

SetNonSysAzureVaultSecretKey gets a reference to the given string and assigns it to the NonSysAzureVaultSecretKey field.

func (*OracleDSourceLinkSourceParameters) SetNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) SetNonSysAzureVaultUsernameKey(v string)

SetNonSysAzureVaultUsernameKey gets a reference to the given string and assigns it to the NonSysAzureVaultUsernameKey field.

func (*OracleDSourceLinkSourceParameters) SetNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParameters) SetNonSysCyberarkVaultQueryString(v string)

SetNonSysCyberarkVaultQueryString gets a reference to the given string and assigns it to the NonSysCyberarkVaultQueryString field.

func (*OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultEngine(v string)

SetNonSysHashicorpVaultEngine gets a reference to the given string and assigns it to the NonSysHashicorpVaultEngine field.

func (*OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultSecretKey(v string)

SetNonSysHashicorpVaultSecretKey gets a reference to the given string and assigns it to the NonSysHashicorpVaultSecretKey field.

func (*OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultSecretPath(v string)

SetNonSysHashicorpVaultSecretPath gets a reference to the given string and assigns it to the NonSysHashicorpVaultSecretPath field.

func (*OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParameters) SetNonSysHashicorpVaultUsernameKey(v string)

SetNonSysHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the NonSysHashicorpVaultUsernameKey field.

func (*OracleDSourceLinkSourceParameters) SetNonSysPassword

func (o *OracleDSourceLinkSourceParameters) SetNonSysPassword(v string)

SetNonSysPassword gets a reference to the given string and assigns it to the NonSysPassword field.

func (*OracleDSourceLinkSourceParameters) SetNonSysUsername

func (o *OracleDSourceLinkSourceParameters) SetNonSysUsername(v string)

SetNonSysUsername gets a reference to the given string and assigns it to the NonSysUsername field.

func (*OracleDSourceLinkSourceParameters) SetNonSysVault

func (o *OracleDSourceLinkSourceParameters) SetNonSysVault(v string)

SetNonSysVault gets a reference to the given string and assigns it to the NonSysVault field.

func (*OracleDSourceLinkSourceParameters) SetNumberOfConnections

func (o *OracleDSourceLinkSourceParameters) SetNumberOfConnections(v int32)

SetNumberOfConnections gets a reference to the given int32 and assigns it to the NumberOfConnections field.

func (*OracleDSourceLinkSourceParameters) SetOpsPostSync

func (o *OracleDSourceLinkSourceParameters) SetOpsPostSync(v []SourceOperation)

SetOpsPostSync gets a reference to the given []SourceOperation and assigns it to the OpsPostSync field.

func (*OracleDSourceLinkSourceParameters) SetOpsPreLogSync

func (o *OracleDSourceLinkSourceParameters) SetOpsPreLogSync(v []SourceOperation)

SetOpsPreLogSync gets a reference to the given []SourceOperation and assigns it to the OpsPreLogSync field.

func (*OracleDSourceLinkSourceParameters) SetOpsPreSync

func (o *OracleDSourceLinkSourceParameters) SetOpsPreSync(v []SourceOperation)

SetOpsPreSync gets a reference to the given []SourceOperation and assigns it to the OpsPreSync field.

func (*OracleDSourceLinkSourceParameters) SetPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParameters) SetPreProvisioningEnabled(v bool)

SetPreProvisioningEnabled gets a reference to the given bool and assigns it to the PreProvisioningEnabled field.

func (*OracleDSourceLinkSourceParameters) SetRmanChannels

func (o *OracleDSourceLinkSourceParameters) SetRmanChannels(v int32)

SetRmanChannels gets a reference to the given int32 and assigns it to the RmanChannels field.

func (*OracleDSourceLinkSourceParameters) SetSkipSpaceCheck

func (o *OracleDSourceLinkSourceParameters) SetSkipSpaceCheck(v bool)

SetSkipSpaceCheck gets a reference to the given bool and assigns it to the SkipSpaceCheck field.

func (*OracleDSourceLinkSourceParameters) SetSourceId

func (o *OracleDSourceLinkSourceParameters) SetSourceId(v string)

SetSourceId sets field value

func (*OracleDSourceLinkSourceParameters) SetTags

func (o *OracleDSourceLinkSourceParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (OracleDSourceLinkSourceParameters) ToMap

func (o OracleDSourceLinkSourceParameters) ToMap() (map[string]interface{}, error)

type OracleDSourceLinkSourceParametersAllOf

type OracleDSourceLinkSourceParametersAllOf struct {
	// External file path.
	ExternalFilePath *string `json:"external_file_path,omitempty"`
	// Id of the environment user to use for linking.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// Boolean value indicates whether LEVEL-based incremental backups can be used on the source database.
	BackupLevelEnabled *bool `json:"backup_level_enabled,omitempty"`
	// Number of parallel channels to use.
	RmanChannels *int32 `json:"rman_channels,omitempty"`
	// Number of data files to include in each RMAN backup set.
	FilesPerSet *int32 `json:"files_per_set,omitempty"`
	// True if extended block checking should be used for this linked database.
	CheckLogical *bool `json:"check_logical,omitempty"`
	// True if SnapSync data from the source should be retrieved through an encrypted connection. Enabling this feature can decrease the performance of SnapSync from the source but has no impact on the performance of VDBs created from the retrieved data.
	EncryptedLinkingEnabled *bool `json:"encrypted_linking_enabled,omitempty"`
	// True if SnapSync data from the source should be compressed over the network. Enabling this feature will reduce network bandwidth consumption and may significantly improve throughput, especially over slow network.
	CompressedLinkingEnabled *bool `json:"compressed_linking_enabled,omitempty"`
	// Bandwidth limit (MB/s) for SnapSync and LogSync network traffic. A value of 0 means no limit.
	BandwidthLimit *int32 `json:"bandwidth_limit,omitempty"`
	// Total number of transport connections to use during SnapSync.
	NumberOfConnections *int32 `json:"number_of_connections,omitempty"`
	// If true, NOLOGGING operations on this container are treated as faults and cannot be resolved manually.
	DiagnoseNoLoggingFaults *bool `json:"diagnose_no_logging_faults,omitempty"`
	// If true, pre-provisioning will be performed after every sync.
	PreProvisioningEnabled *bool `json:"pre_provisioning_enabled,omitempty"`
	// True if initial load should be done immediately.
	LinkNow *bool `json:"link_now,omitempty"`
	// Whether or not to take another full backup of the source database.
	ForceFullBackup *bool `json:"force_full_backup,omitempty"`
	// True if two SnapSyncs should be performed in immediate succession to reduce the number of logs required to provision the snapshot. This may significantly reduce the time necessary to provision from a snapshot.
	DoubleSync *bool `json:"double_sync,omitempty"`
	// Skip check that tests if there is enough space available to store the database in the Delphix Engine. The Delphix Engine estimates how much space a database will occupy after compression and prevents SnapSync if insufficient space is available. This safeguard can be overridden using this option. This may be useful when linking highly compressible databases.
	SkipSpaceCheck *bool `json:"skip_space_check,omitempty"`
	// Indicates whether a fresh SnapSync must be started regardless if it was possible to resume the current SnapSync. If true, we will not resume but instead ignore previous progress and backup all datafiles even if already completed from previous failed SnapSync. This does not force a full backup, if an incremental was in progress this will start a new incremental snapshot.
	DoNotResume *bool `json:"do_not_resume,omitempty"`
	// List of datafiles to take a full backup of. This would be useful in situations where certain datafiles could not be backed up during previous SnapSync due to corruption or because they went offline.
	FilesForFullBackup []int32 `json:"files_for_full_backup,omitempty"`
	// LogSync operation mode for this database.
	LogSyncMode *string `json:"log_sync_mode,omitempty"`
	// Interval between LogSync requests, in seconds.
	LogSyncInterval *int32 `json:"log_sync_interval,omitempty"`
	// Non-SYS database user to access this database. Only required for username-password auth (Single tenant only).
	NonSysUsername *string `json:"non_sys_username,omitempty"`
	// Password for non sys user authentication (Single tenant only).
	NonSysPassword *string `json:"non_sys_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials (Single tenant only).
	NonSysVault *string `json:"non_sys_vault,omitempty"`
	// Vault engine name where the credential is stored (Single tenant only).
	NonSysHashicorpVaultEngine *string `json:"non_sys_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored (Single tenant only).
	NonSysHashicorpVaultSecretPath *string `json:"non_sys_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store (Single tenant only).
	NonSysHashicorpVaultUsernameKey *string `json:"non_sys_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store (Single tenant only).
	NonSysHashicorpVaultSecretKey *string `json:"non_sys_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (Single tenant only).
	NonSysAzureVaultName *string `json:"non_sys_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (Single tenant only).
	NonSysAzureVaultUsernameKey *string `json:"non_sys_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (Single tenant only).
	NonSysAzureVaultSecretKey *string `json:"non_sys_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault (Single tenant only).
	NonSysCyberarkVaultQueryString *string `json:"non_sys_cyberark_vault_query_string,omitempty"`
	// The database fallback username. Optional if bequeath connections are enabled (to be used in case of bequeath connection failures). Only required for username-password auth.
	FallbackUsername *string `json:"fallback_username,omitempty"`
	// Password for fallback username.
	FallbackPassword *string `json:"fallback_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials.
	FallbackVault *string `json:"fallback_vault,omitempty"`
	// Vault engine name where the credential is stored.
	FallbackHashicorpVaultEngine *string `json:"fallback_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	FallbackHashicorpVaultSecretPath *string `json:"fallback_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store.
	FallbackHashicorpVaultUsernameKey *string `json:"fallback_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store.
	FallbackHashicorpVaultSecretKey *string `json:"fallback_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name.
	FallbackAzureVaultName *string `json:"fallback_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store.
	FallbackAzureVaultUsernameKey *string `json:"fallback_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store.
	FallbackAzureVaultSecretKey *string `json:"fallback_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	FallbackCyberarkVaultQueryString *string `json:"fallback_cyberark_vault_query_string,omitempty"`
	// Operations to perform after syncing a created dSource and before running the LogSync.
	OpsPreLogSync []SourceOperation `json:"ops_pre_log_sync,omitempty"`
}

OracleDSourceLinkSourceParametersAllOf struct for OracleDSourceLinkSourceParametersAllOf

func NewOracleDSourceLinkSourceParametersAllOf

func NewOracleDSourceLinkSourceParametersAllOf() *OracleDSourceLinkSourceParametersAllOf

NewOracleDSourceLinkSourceParametersAllOf instantiates a new OracleDSourceLinkSourceParametersAllOf 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 NewOracleDSourceLinkSourceParametersAllOfWithDefaults

func NewOracleDSourceLinkSourceParametersAllOfWithDefaults() *OracleDSourceLinkSourceParametersAllOf

NewOracleDSourceLinkSourceParametersAllOfWithDefaults instantiates a new OracleDSourceLinkSourceParametersAllOf 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 (*OracleDSourceLinkSourceParametersAllOf) GetBackupLevelEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) GetBackupLevelEnabled() bool

GetBackupLevelEnabled returns the BackupLevelEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetBackupLevelEnabledOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetBackupLevelEnabledOk() (*bool, bool)

GetBackupLevelEnabledOk returns a tuple with the BackupLevelEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetBandwidthLimit

func (o *OracleDSourceLinkSourceParametersAllOf) GetBandwidthLimit() int32

GetBandwidthLimit returns the BandwidthLimit field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetBandwidthLimitOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetBandwidthLimitOk() (*int32, bool)

GetBandwidthLimitOk returns a tuple with the BandwidthLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetCheckLogical

func (o *OracleDSourceLinkSourceParametersAllOf) GetCheckLogical() bool

GetCheckLogical returns the CheckLogical field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetCheckLogicalOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetCheckLogicalOk() (*bool, bool)

GetCheckLogicalOk returns a tuple with the CheckLogical field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) GetCompressedLinkingEnabled() bool

GetCompressedLinkingEnabled returns the CompressedLinkingEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetCompressedLinkingEnabledOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetCompressedLinkingEnabledOk() (*bool, bool)

GetCompressedLinkingEnabledOk returns a tuple with the CompressedLinkingEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParametersAllOf) GetDiagnoseNoLoggingFaults() bool

GetDiagnoseNoLoggingFaults returns the DiagnoseNoLoggingFaults field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetDiagnoseNoLoggingFaultsOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetDiagnoseNoLoggingFaultsOk() (*bool, bool)

GetDiagnoseNoLoggingFaultsOk returns a tuple with the DiagnoseNoLoggingFaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetDoNotResume

func (o *OracleDSourceLinkSourceParametersAllOf) GetDoNotResume() bool

GetDoNotResume returns the DoNotResume field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetDoNotResumeOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetDoNotResumeOk() (*bool, bool)

GetDoNotResumeOk returns a tuple with the DoNotResume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetDoubleSync

func (o *OracleDSourceLinkSourceParametersAllOf) GetDoubleSync() bool

GetDoubleSync returns the DoubleSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetDoubleSyncOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetDoubleSyncOk() (*bool, bool)

GetDoubleSyncOk returns a tuple with the DoubleSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) GetEncryptedLinkingEnabled() bool

GetEncryptedLinkingEnabled returns the EncryptedLinkingEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetEncryptedLinkingEnabledOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetEncryptedLinkingEnabledOk() (*bool, bool)

GetEncryptedLinkingEnabledOk returns a tuple with the EncryptedLinkingEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetEnvironmentUserId

func (o *OracleDSourceLinkSourceParametersAllOf) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetEnvironmentUserIdOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetExternalFilePath

func (o *OracleDSourceLinkSourceParametersAllOf) GetExternalFilePath() string

GetExternalFilePath returns the ExternalFilePath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetExternalFilePathOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetExternalFilePathOk() (*string, bool)

GetExternalFilePathOk returns a tuple with the ExternalFilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultName() string

GetFallbackAzureVaultName returns the FallbackAzureVaultName field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultNameOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultNameOk() (*string, bool)

GetFallbackAzureVaultNameOk returns a tuple with the FallbackAzureVaultName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultSecretKey() string

GetFallbackAzureVaultSecretKey returns the FallbackAzureVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultSecretKeyOk() (*string, bool)

GetFallbackAzureVaultSecretKeyOk returns a tuple with the FallbackAzureVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultUsernameKey() string

GetFallbackAzureVaultUsernameKey returns the FallbackAzureVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackAzureVaultUsernameKeyOk() (*string, bool)

GetFallbackAzureVaultUsernameKeyOk returns a tuple with the FallbackAzureVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackCyberarkVaultQueryString() string

GetFallbackCyberarkVaultQueryString returns the FallbackCyberarkVaultQueryString field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackCyberarkVaultQueryStringOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackCyberarkVaultQueryStringOk() (*string, bool)

GetFallbackCyberarkVaultQueryStringOk returns a tuple with the FallbackCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultEngine() string

GetFallbackHashicorpVaultEngine returns the FallbackHashicorpVaultEngine field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultEngineOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultEngineOk() (*string, bool)

GetFallbackHashicorpVaultEngineOk returns a tuple with the FallbackHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretKey() string

GetFallbackHashicorpVaultSecretKey returns the FallbackHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretKeyOk() (*string, bool)

GetFallbackHashicorpVaultSecretKeyOk returns a tuple with the FallbackHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretPath() string

GetFallbackHashicorpVaultSecretPath returns the FallbackHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretPathOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultSecretPathOk() (*string, bool)

GetFallbackHashicorpVaultSecretPathOk returns a tuple with the FallbackHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultUsernameKey() string

GetFallbackHashicorpVaultUsernameKey returns the FallbackHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackHashicorpVaultUsernameKeyOk() (*string, bool)

GetFallbackHashicorpVaultUsernameKeyOk returns a tuple with the FallbackHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackPassword

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackPassword() string

GetFallbackPassword returns the FallbackPassword field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackPasswordOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackPasswordOk() (*string, bool)

GetFallbackPasswordOk returns a tuple with the FallbackPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackUsername

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackUsername() string

GetFallbackUsername returns the FallbackUsername field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackUsernameOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackUsernameOk() (*string, bool)

GetFallbackUsernameOk returns a tuple with the FallbackUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackVault

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackVault() string

GetFallbackVault returns the FallbackVault field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFallbackVaultOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFallbackVaultOk() (*string, bool)

GetFallbackVaultOk returns a tuple with the FallbackVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFilesForFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) GetFilesForFullBackup() []int32

GetFilesForFullBackup returns the FilesForFullBackup field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFilesForFullBackupOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFilesForFullBackupOk() ([]int32, bool)

GetFilesForFullBackupOk returns a tuple with the FilesForFullBackup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetFilesPerSet

func (o *OracleDSourceLinkSourceParametersAllOf) GetFilesPerSet() int32

GetFilesPerSet returns the FilesPerSet field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetFilesPerSetOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetFilesPerSetOk() (*int32, bool)

GetFilesPerSetOk returns a tuple with the FilesPerSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetForceFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) GetForceFullBackup() bool

GetForceFullBackup returns the ForceFullBackup field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetForceFullBackupOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetForceFullBackupOk() (*bool, bool)

GetForceFullBackupOk returns a tuple with the ForceFullBackup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetLinkNow

GetLinkNow returns the LinkNow field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetLinkNowOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetLinkNowOk() (*bool, bool)

GetLinkNowOk returns a tuple with the LinkNow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetLogSyncInterval

func (o *OracleDSourceLinkSourceParametersAllOf) GetLogSyncInterval() int32

GetLogSyncInterval returns the LogSyncInterval field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetLogSyncIntervalOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetLogSyncIntervalOk() (*int32, bool)

GetLogSyncIntervalOk returns a tuple with the LogSyncInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetLogSyncMode

func (o *OracleDSourceLinkSourceParametersAllOf) GetLogSyncMode() string

GetLogSyncMode returns the LogSyncMode field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetLogSyncModeOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetLogSyncModeOk() (*string, bool)

GetLogSyncModeOk returns a tuple with the LogSyncMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultName() string

GetNonSysAzureVaultName returns the NonSysAzureVaultName field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultNameOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultNameOk() (*string, bool)

GetNonSysAzureVaultNameOk returns a tuple with the NonSysAzureVaultName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultSecretKey() string

GetNonSysAzureVaultSecretKey returns the NonSysAzureVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultSecretKeyOk() (*string, bool)

GetNonSysAzureVaultSecretKeyOk returns a tuple with the NonSysAzureVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultUsernameKey() string

GetNonSysAzureVaultUsernameKey returns the NonSysAzureVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysAzureVaultUsernameKeyOk() (*string, bool)

GetNonSysAzureVaultUsernameKeyOk returns a tuple with the NonSysAzureVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysCyberarkVaultQueryString() string

GetNonSysCyberarkVaultQueryString returns the NonSysCyberarkVaultQueryString field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysCyberarkVaultQueryStringOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysCyberarkVaultQueryStringOk() (*string, bool)

GetNonSysCyberarkVaultQueryStringOk returns a tuple with the NonSysCyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultEngine() string

GetNonSysHashicorpVaultEngine returns the NonSysHashicorpVaultEngine field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultEngineOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultEngineOk() (*string, bool)

GetNonSysHashicorpVaultEngineOk returns a tuple with the NonSysHashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretKey() string

GetNonSysHashicorpVaultSecretKey returns the NonSysHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretKeyOk() (*string, bool)

GetNonSysHashicorpVaultSecretKeyOk returns a tuple with the NonSysHashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretPath() string

GetNonSysHashicorpVaultSecretPath returns the NonSysHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretPathOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultSecretPathOk() (*string, bool)

GetNonSysHashicorpVaultSecretPathOk returns a tuple with the NonSysHashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultUsernameKey() string

GetNonSysHashicorpVaultUsernameKey returns the NonSysHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultUsernameKeyOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysHashicorpVaultUsernameKeyOk() (*string, bool)

GetNonSysHashicorpVaultUsernameKeyOk returns a tuple with the NonSysHashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysPassword

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysPassword() string

GetNonSysPassword returns the NonSysPassword field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysPasswordOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysPasswordOk() (*string, bool)

GetNonSysPasswordOk returns a tuple with the NonSysPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysUsername

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysUsername() string

GetNonSysUsername returns the NonSysUsername field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysUsernameOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysUsernameOk() (*string, bool)

GetNonSysUsernameOk returns a tuple with the NonSysUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysVault

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysVault() string

GetNonSysVault returns the NonSysVault field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNonSysVaultOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNonSysVaultOk() (*string, bool)

GetNonSysVaultOk returns a tuple with the NonSysVault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetNumberOfConnections

func (o *OracleDSourceLinkSourceParametersAllOf) GetNumberOfConnections() int32

GetNumberOfConnections returns the NumberOfConnections field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetNumberOfConnectionsOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetNumberOfConnectionsOk() (*int32, bool)

GetNumberOfConnectionsOk returns a tuple with the NumberOfConnections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetOpsPreLogSync

GetOpsPreLogSync returns the OpsPreLogSync field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetOpsPreLogSyncOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetOpsPreLogSyncOk() ([]SourceOperation, bool)

GetOpsPreLogSyncOk returns a tuple with the OpsPreLogSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) GetPreProvisioningEnabled() bool

GetPreProvisioningEnabled returns the PreProvisioningEnabled field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetPreProvisioningEnabledOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetPreProvisioningEnabledOk() (*bool, bool)

GetPreProvisioningEnabledOk returns a tuple with the PreProvisioningEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetRmanChannels

func (o *OracleDSourceLinkSourceParametersAllOf) GetRmanChannels() int32

GetRmanChannels returns the RmanChannels field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetRmanChannelsOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetRmanChannelsOk() (*int32, bool)

GetRmanChannelsOk returns a tuple with the RmanChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) GetSkipSpaceCheck

func (o *OracleDSourceLinkSourceParametersAllOf) GetSkipSpaceCheck() bool

GetSkipSpaceCheck returns the SkipSpaceCheck field value if set, zero value otherwise.

func (*OracleDSourceLinkSourceParametersAllOf) GetSkipSpaceCheckOk

func (o *OracleDSourceLinkSourceParametersAllOf) GetSkipSpaceCheckOk() (*bool, bool)

GetSkipSpaceCheckOk returns a tuple with the SkipSpaceCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasBackupLevelEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) HasBackupLevelEnabled() bool

HasBackupLevelEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasBandwidthLimit

func (o *OracleDSourceLinkSourceParametersAllOf) HasBandwidthLimit() bool

HasBandwidthLimit returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasCheckLogical

func (o *OracleDSourceLinkSourceParametersAllOf) HasCheckLogical() bool

HasCheckLogical returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) HasCompressedLinkingEnabled() bool

HasCompressedLinkingEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParametersAllOf) HasDiagnoseNoLoggingFaults() bool

HasDiagnoseNoLoggingFaults returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasDoNotResume

func (o *OracleDSourceLinkSourceParametersAllOf) HasDoNotResume() bool

HasDoNotResume returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasDoubleSync

func (o *OracleDSourceLinkSourceParametersAllOf) HasDoubleSync() bool

HasDoubleSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) HasEncryptedLinkingEnabled() bool

HasEncryptedLinkingEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasEnvironmentUserId

func (o *OracleDSourceLinkSourceParametersAllOf) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasExternalFilePath

func (o *OracleDSourceLinkSourceParametersAllOf) HasExternalFilePath() bool

HasExternalFilePath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultName() bool

HasFallbackAzureVaultName returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultSecretKey() bool

HasFallbackAzureVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackAzureVaultUsernameKey() bool

HasFallbackAzureVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackCyberarkVaultQueryString() bool

HasFallbackCyberarkVaultQueryString returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultEngine() bool

HasFallbackHashicorpVaultEngine returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultSecretKey() bool

HasFallbackHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultSecretPath() bool

HasFallbackHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackHashicorpVaultUsernameKey() bool

HasFallbackHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackPassword

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackPassword() bool

HasFallbackPassword returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackUsername

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackUsername() bool

HasFallbackUsername returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFallbackVault

func (o *OracleDSourceLinkSourceParametersAllOf) HasFallbackVault() bool

HasFallbackVault returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFilesForFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) HasFilesForFullBackup() bool

HasFilesForFullBackup returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasFilesPerSet

func (o *OracleDSourceLinkSourceParametersAllOf) HasFilesPerSet() bool

HasFilesPerSet returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasForceFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) HasForceFullBackup() bool

HasForceFullBackup returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasLinkNow

HasLinkNow returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasLogSyncInterval

func (o *OracleDSourceLinkSourceParametersAllOf) HasLogSyncInterval() bool

HasLogSyncInterval returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasLogSyncMode

func (o *OracleDSourceLinkSourceParametersAllOf) HasLogSyncMode() bool

HasLogSyncMode returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultName() bool

HasNonSysAzureVaultName returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultSecretKey() bool

HasNonSysAzureVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysAzureVaultUsernameKey() bool

HasNonSysAzureVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysCyberarkVaultQueryString() bool

HasNonSysCyberarkVaultQueryString returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultEngine() bool

HasNonSysHashicorpVaultEngine returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultSecretKey() bool

HasNonSysHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultSecretPath() bool

HasNonSysHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysHashicorpVaultUsernameKey() bool

HasNonSysHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysPassword

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysPassword() bool

HasNonSysPassword returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysUsername

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysUsername() bool

HasNonSysUsername returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNonSysVault

func (o *OracleDSourceLinkSourceParametersAllOf) HasNonSysVault() bool

HasNonSysVault returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasNumberOfConnections

func (o *OracleDSourceLinkSourceParametersAllOf) HasNumberOfConnections() bool

HasNumberOfConnections returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasOpsPreLogSync

func (o *OracleDSourceLinkSourceParametersAllOf) HasOpsPreLogSync() bool

HasOpsPreLogSync returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) HasPreProvisioningEnabled() bool

HasPreProvisioningEnabled returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasRmanChannels

func (o *OracleDSourceLinkSourceParametersAllOf) HasRmanChannels() bool

HasRmanChannels returns a boolean if a field has been set.

func (*OracleDSourceLinkSourceParametersAllOf) HasSkipSpaceCheck

func (o *OracleDSourceLinkSourceParametersAllOf) HasSkipSpaceCheck() bool

HasSkipSpaceCheck returns a boolean if a field has been set.

func (OracleDSourceLinkSourceParametersAllOf) MarshalJSON

func (o OracleDSourceLinkSourceParametersAllOf) MarshalJSON() ([]byte, error)

func (*OracleDSourceLinkSourceParametersAllOf) SetBackupLevelEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) SetBackupLevelEnabled(v bool)

SetBackupLevelEnabled gets a reference to the given bool and assigns it to the BackupLevelEnabled field.

func (*OracleDSourceLinkSourceParametersAllOf) SetBandwidthLimit

func (o *OracleDSourceLinkSourceParametersAllOf) SetBandwidthLimit(v int32)

SetBandwidthLimit gets a reference to the given int32 and assigns it to the BandwidthLimit field.

func (*OracleDSourceLinkSourceParametersAllOf) SetCheckLogical

func (o *OracleDSourceLinkSourceParametersAllOf) SetCheckLogical(v bool)

SetCheckLogical gets a reference to the given bool and assigns it to the CheckLogical field.

func (*OracleDSourceLinkSourceParametersAllOf) SetCompressedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) SetCompressedLinkingEnabled(v bool)

SetCompressedLinkingEnabled gets a reference to the given bool and assigns it to the CompressedLinkingEnabled field.

func (*OracleDSourceLinkSourceParametersAllOf) SetDiagnoseNoLoggingFaults

func (o *OracleDSourceLinkSourceParametersAllOf) SetDiagnoseNoLoggingFaults(v bool)

SetDiagnoseNoLoggingFaults gets a reference to the given bool and assigns it to the DiagnoseNoLoggingFaults field.

func (*OracleDSourceLinkSourceParametersAllOf) SetDoNotResume

func (o *OracleDSourceLinkSourceParametersAllOf) SetDoNotResume(v bool)

SetDoNotResume gets a reference to the given bool and assigns it to the DoNotResume field.

func (*OracleDSourceLinkSourceParametersAllOf) SetDoubleSync

func (o *OracleDSourceLinkSourceParametersAllOf) SetDoubleSync(v bool)

SetDoubleSync gets a reference to the given bool and assigns it to the DoubleSync field.

func (*OracleDSourceLinkSourceParametersAllOf) SetEncryptedLinkingEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) SetEncryptedLinkingEnabled(v bool)

SetEncryptedLinkingEnabled gets a reference to the given bool and assigns it to the EncryptedLinkingEnabled field.

func (*OracleDSourceLinkSourceParametersAllOf) SetEnvironmentUserId

func (o *OracleDSourceLinkSourceParametersAllOf) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*OracleDSourceLinkSourceParametersAllOf) SetExternalFilePath

func (o *OracleDSourceLinkSourceParametersAllOf) SetExternalFilePath(v string)

SetExternalFilePath gets a reference to the given string and assigns it to the ExternalFilePath field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultName(v string)

SetFallbackAzureVaultName gets a reference to the given string and assigns it to the FallbackAzureVaultName field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultSecretKey(v string)

SetFallbackAzureVaultSecretKey gets a reference to the given string and assigns it to the FallbackAzureVaultSecretKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackAzureVaultUsernameKey(v string)

SetFallbackAzureVaultUsernameKey gets a reference to the given string and assigns it to the FallbackAzureVaultUsernameKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackCyberarkVaultQueryString(v string)

SetFallbackCyberarkVaultQueryString gets a reference to the given string and assigns it to the FallbackCyberarkVaultQueryString field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultEngine(v string)

SetFallbackHashicorpVaultEngine gets a reference to the given string and assigns it to the FallbackHashicorpVaultEngine field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultSecretKey(v string)

SetFallbackHashicorpVaultSecretKey gets a reference to the given string and assigns it to the FallbackHashicorpVaultSecretKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultSecretPath(v string)

SetFallbackHashicorpVaultSecretPath gets a reference to the given string and assigns it to the FallbackHashicorpVaultSecretPath field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackHashicorpVaultUsernameKey(v string)

SetFallbackHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the FallbackHashicorpVaultUsernameKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackPassword

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackPassword(v string)

SetFallbackPassword gets a reference to the given string and assigns it to the FallbackPassword field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackUsername

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackUsername(v string)

SetFallbackUsername gets a reference to the given string and assigns it to the FallbackUsername field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFallbackVault

func (o *OracleDSourceLinkSourceParametersAllOf) SetFallbackVault(v string)

SetFallbackVault gets a reference to the given string and assigns it to the FallbackVault field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFilesForFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) SetFilesForFullBackup(v []int32)

SetFilesForFullBackup gets a reference to the given []int32 and assigns it to the FilesForFullBackup field.

func (*OracleDSourceLinkSourceParametersAllOf) SetFilesPerSet

func (o *OracleDSourceLinkSourceParametersAllOf) SetFilesPerSet(v int32)

SetFilesPerSet gets a reference to the given int32 and assigns it to the FilesPerSet field.

func (*OracleDSourceLinkSourceParametersAllOf) SetForceFullBackup

func (o *OracleDSourceLinkSourceParametersAllOf) SetForceFullBackup(v bool)

SetForceFullBackup gets a reference to the given bool and assigns it to the ForceFullBackup field.

func (*OracleDSourceLinkSourceParametersAllOf) SetLinkNow

SetLinkNow gets a reference to the given bool and assigns it to the LinkNow field.

func (*OracleDSourceLinkSourceParametersAllOf) SetLogSyncInterval

func (o *OracleDSourceLinkSourceParametersAllOf) SetLogSyncInterval(v int32)

SetLogSyncInterval gets a reference to the given int32 and assigns it to the LogSyncInterval field.

func (*OracleDSourceLinkSourceParametersAllOf) SetLogSyncMode

func (o *OracleDSourceLinkSourceParametersAllOf) SetLogSyncMode(v string)

SetLogSyncMode gets a reference to the given string and assigns it to the LogSyncMode field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultName

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultName(v string)

SetNonSysAzureVaultName gets a reference to the given string and assigns it to the NonSysAzureVaultName field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultSecretKey(v string)

SetNonSysAzureVaultSecretKey gets a reference to the given string and assigns it to the NonSysAzureVaultSecretKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysAzureVaultUsernameKey(v string)

SetNonSysAzureVaultUsernameKey gets a reference to the given string and assigns it to the NonSysAzureVaultUsernameKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysCyberarkVaultQueryString

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysCyberarkVaultQueryString(v string)

SetNonSysCyberarkVaultQueryString gets a reference to the given string and assigns it to the NonSysCyberarkVaultQueryString field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultEngine

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultEngine(v string)

SetNonSysHashicorpVaultEngine gets a reference to the given string and assigns it to the NonSysHashicorpVaultEngine field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultSecretKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultSecretKey(v string)

SetNonSysHashicorpVaultSecretKey gets a reference to the given string and assigns it to the NonSysHashicorpVaultSecretKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultSecretPath

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultSecretPath(v string)

SetNonSysHashicorpVaultSecretPath gets a reference to the given string and assigns it to the NonSysHashicorpVaultSecretPath field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultUsernameKey

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysHashicorpVaultUsernameKey(v string)

SetNonSysHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the NonSysHashicorpVaultUsernameKey field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysPassword

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysPassword(v string)

SetNonSysPassword gets a reference to the given string and assigns it to the NonSysPassword field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysUsername

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysUsername(v string)

SetNonSysUsername gets a reference to the given string and assigns it to the NonSysUsername field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNonSysVault

func (o *OracleDSourceLinkSourceParametersAllOf) SetNonSysVault(v string)

SetNonSysVault gets a reference to the given string and assigns it to the NonSysVault field.

func (*OracleDSourceLinkSourceParametersAllOf) SetNumberOfConnections

func (o *OracleDSourceLinkSourceParametersAllOf) SetNumberOfConnections(v int32)

SetNumberOfConnections gets a reference to the given int32 and assigns it to the NumberOfConnections field.

func (*OracleDSourceLinkSourceParametersAllOf) SetOpsPreLogSync

SetOpsPreLogSync gets a reference to the given []SourceOperation and assigns it to the OpsPreLogSync field.

func (*OracleDSourceLinkSourceParametersAllOf) SetPreProvisioningEnabled

func (o *OracleDSourceLinkSourceParametersAllOf) SetPreProvisioningEnabled(v bool)

SetPreProvisioningEnabled gets a reference to the given bool and assigns it to the PreProvisioningEnabled field.

func (*OracleDSourceLinkSourceParametersAllOf) SetRmanChannels

func (o *OracleDSourceLinkSourceParametersAllOf) SetRmanChannels(v int32)

SetRmanChannels gets a reference to the given int32 and assigns it to the RmanChannels field.

func (*OracleDSourceLinkSourceParametersAllOf) SetSkipSpaceCheck

func (o *OracleDSourceLinkSourceParametersAllOf) SetSkipSpaceCheck(v bool)

SetSkipSpaceCheck gets a reference to the given bool and assigns it to the SkipSpaceCheck field.

func (OracleDSourceLinkSourceParametersAllOf) ToMap

func (o OracleDSourceLinkSourceParametersAllOf) ToMap() (map[string]interface{}, error)

type OracleListener

type OracleListener struct {
	// Id of this listener.
	Id *string `json:"id,omitempty"`
	// Name of this listener.
	Name *string `json:"name,omitempty"`
	// Type of this listener.
	Type *string `json:"type,omitempty"`
	// The list of protocol addresses for this listener.
	ProtocolAddresses []string `json:"protocol_addresses,omitempty"`
	// The list of client endpoints for this listener.
	ClientEndpoints []string `json:"client_endpoints,omitempty"`
	// Whether this listener was automatically discovered or not.
	IsDiscovered *bool `json:"is_discovered,omitempty"`
	// Id to the host this listener is associated with.
	HostId *string `json:"host_id,omitempty"`
}

OracleListener struct for OracleListener

func NewOracleListener

func NewOracleListener() *OracleListener

NewOracleListener instantiates a new OracleListener 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 NewOracleListenerWithDefaults

func NewOracleListenerWithDefaults() *OracleListener

NewOracleListenerWithDefaults instantiates a new OracleListener 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 (*OracleListener) GetClientEndpoints

func (o *OracleListener) GetClientEndpoints() []string

GetClientEndpoints returns the ClientEndpoints field value if set, zero value otherwise.

func (*OracleListener) GetClientEndpointsOk

func (o *OracleListener) GetClientEndpointsOk() ([]string, bool)

GetClientEndpointsOk returns a tuple with the ClientEndpoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleListener) GetHostId

func (o *OracleListener) GetHostId() string

GetHostId returns the HostId field value if set, zero value otherwise.

func (*OracleListener) GetHostIdOk

func (o *OracleListener) GetHostIdOk() (*string, bool)

GetHostIdOk returns a tuple with the HostId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleListener) GetId

func (o *OracleListener) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OracleListener) GetIdOk

func (o *OracleListener) 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.

func (*OracleListener) GetIsDiscovered

func (o *OracleListener) GetIsDiscovered() bool

GetIsDiscovered returns the IsDiscovered field value if set, zero value otherwise.

func (*OracleListener) GetIsDiscoveredOk

func (o *OracleListener) GetIsDiscoveredOk() (*bool, bool)

GetIsDiscoveredOk returns a tuple with the IsDiscovered field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleListener) GetName

func (o *OracleListener) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*OracleListener) GetNameOk

func (o *OracleListener) 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.

func (*OracleListener) GetProtocolAddresses

func (o *OracleListener) GetProtocolAddresses() []string

GetProtocolAddresses returns the ProtocolAddresses field value if set, zero value otherwise.

func (*OracleListener) GetProtocolAddressesOk

func (o *OracleListener) GetProtocolAddressesOk() ([]string, bool)

GetProtocolAddressesOk returns a tuple with the ProtocolAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleListener) GetType

func (o *OracleListener) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OracleListener) GetTypeOk

func (o *OracleListener) 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.

func (*OracleListener) HasClientEndpoints

func (o *OracleListener) HasClientEndpoints() bool

HasClientEndpoints returns a boolean if a field has been set.

func (*OracleListener) HasHostId

func (o *OracleListener) HasHostId() bool

HasHostId returns a boolean if a field has been set.

func (*OracleListener) HasId

func (o *OracleListener) HasId() bool

HasId returns a boolean if a field has been set.

func (*OracleListener) HasIsDiscovered

func (o *OracleListener) HasIsDiscovered() bool

HasIsDiscovered returns a boolean if a field has been set.

func (*OracleListener) HasName

func (o *OracleListener) HasName() bool

HasName returns a boolean if a field has been set.

func (*OracleListener) HasProtocolAddresses

func (o *OracleListener) HasProtocolAddresses() bool

HasProtocolAddresses returns a boolean if a field has been set.

func (*OracleListener) HasType

func (o *OracleListener) HasType() bool

HasType returns a boolean if a field has been set.

func (OracleListener) MarshalJSON

func (o OracleListener) MarshalJSON() ([]byte, error)

func (*OracleListener) SetClientEndpoints

func (o *OracleListener) SetClientEndpoints(v []string)

SetClientEndpoints gets a reference to the given []string and assigns it to the ClientEndpoints field.

func (*OracleListener) SetHostId

func (o *OracleListener) SetHostId(v string)

SetHostId gets a reference to the given string and assigns it to the HostId field.

func (*OracleListener) SetId

func (o *OracleListener) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OracleListener) SetIsDiscovered

func (o *OracleListener) SetIsDiscovered(v bool)

SetIsDiscovered gets a reference to the given bool and assigns it to the IsDiscovered field.

func (*OracleListener) SetName

func (o *OracleListener) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*OracleListener) SetProtocolAddresses

func (o *OracleListener) SetProtocolAddresses(v []string)

SetProtocolAddresses gets a reference to the given []string and assigns it to the ProtocolAddresses field.

func (*OracleListener) SetType

func (o *OracleListener) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (OracleListener) ToMap

func (o OracleListener) ToMap() (map[string]interface{}, error)

type OracleRacCustomEnvFile

type OracleRacCustomEnvFile struct {
	NodeId         *string `json:"node_id,omitempty"`
	PathParameters *string `json:"path_parameters,omitempty"`
}

OracleRacCustomEnvFile struct for OracleRacCustomEnvFile

func NewOracleRacCustomEnvFile

func NewOracleRacCustomEnvFile() *OracleRacCustomEnvFile

NewOracleRacCustomEnvFile instantiates a new OracleRacCustomEnvFile 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 NewOracleRacCustomEnvFileWithDefaults

func NewOracleRacCustomEnvFileWithDefaults() *OracleRacCustomEnvFile

NewOracleRacCustomEnvFileWithDefaults instantiates a new OracleRacCustomEnvFile 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 (*OracleRacCustomEnvFile) GetNodeId

func (o *OracleRacCustomEnvFile) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*OracleRacCustomEnvFile) GetNodeIdOk

func (o *OracleRacCustomEnvFile) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleRacCustomEnvFile) GetPathParameters

func (o *OracleRacCustomEnvFile) GetPathParameters() string

GetPathParameters returns the PathParameters field value if set, zero value otherwise.

func (*OracleRacCustomEnvFile) GetPathParametersOk

func (o *OracleRacCustomEnvFile) GetPathParametersOk() (*string, bool)

GetPathParametersOk returns a tuple with the PathParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleRacCustomEnvFile) HasNodeId

func (o *OracleRacCustomEnvFile) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*OracleRacCustomEnvFile) HasPathParameters

func (o *OracleRacCustomEnvFile) HasPathParameters() bool

HasPathParameters returns a boolean if a field has been set.

func (OracleRacCustomEnvFile) MarshalJSON

func (o OracleRacCustomEnvFile) MarshalJSON() ([]byte, error)

func (*OracleRacCustomEnvFile) SetNodeId

func (o *OracleRacCustomEnvFile) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*OracleRacCustomEnvFile) SetPathParameters

func (o *OracleRacCustomEnvFile) SetPathParameters(v string)

SetPathParameters gets a reference to the given string and assigns it to the PathParameters field.

func (OracleRacCustomEnvFile) ToMap

func (o OracleRacCustomEnvFile) ToMap() (map[string]interface{}, error)

type OracleRacCustomEnvVar

type OracleRacCustomEnvVar struct {
	NodeId *string `json:"node_id,omitempty"`
	Name   *string `json:"name,omitempty"`
	Value  *string `json:"value,omitempty"`
}

OracleRacCustomEnvVar struct for OracleRacCustomEnvVar

func NewOracleRacCustomEnvVar

func NewOracleRacCustomEnvVar() *OracleRacCustomEnvVar

NewOracleRacCustomEnvVar instantiates a new OracleRacCustomEnvVar 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 NewOracleRacCustomEnvVarWithDefaults

func NewOracleRacCustomEnvVarWithDefaults() *OracleRacCustomEnvVar

NewOracleRacCustomEnvVarWithDefaults instantiates a new OracleRacCustomEnvVar 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 (*OracleRacCustomEnvVar) GetName

func (o *OracleRacCustomEnvVar) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetNameOk

func (o *OracleRacCustomEnvVar) 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.

func (*OracleRacCustomEnvVar) GetNodeId

func (o *OracleRacCustomEnvVar) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetNodeIdOk

func (o *OracleRacCustomEnvVar) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleRacCustomEnvVar) GetValue

func (o *OracleRacCustomEnvVar) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetValueOk

func (o *OracleRacCustomEnvVar) 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.

func (*OracleRacCustomEnvVar) HasName

func (o *OracleRacCustomEnvVar) HasName() bool

HasName returns a boolean if a field has been set.

func (*OracleRacCustomEnvVar) HasNodeId

func (o *OracleRacCustomEnvVar) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*OracleRacCustomEnvVar) HasValue

func (o *OracleRacCustomEnvVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OracleRacCustomEnvVar) MarshalJSON

func (o OracleRacCustomEnvVar) MarshalJSON() ([]byte, error)

func (*OracleRacCustomEnvVar) SetName

func (o *OracleRacCustomEnvVar) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*OracleRacCustomEnvVar) SetNodeId

func (o *OracleRacCustomEnvVar) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*OracleRacCustomEnvVar) SetValue

func (o *OracleRacCustomEnvVar) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (OracleRacCustomEnvVar) ToMap

func (o OracleRacCustomEnvVar) ToMap() (map[string]interface{}, error)

type OracleVirtualIP

type OracleVirtualIP struct {
	// The domain name for the VirtualIP.
	DomainName *string `json:"domain_name,omitempty"`
	// The IP address for this VirtualIP.
	Ip *string `json:"ip,omitempty"`
	// Whether this VirtualIP was discovered.
	Discovered *bool `json:"discovered,omitempty"`
}

OracleVirtualIP A virtual IP address.

func NewOracleVirtualIP

func NewOracleVirtualIP() *OracleVirtualIP

NewOracleVirtualIP instantiates a new OracleVirtualIP 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 NewOracleVirtualIPWithDefaults

func NewOracleVirtualIPWithDefaults() *OracleVirtualIP

NewOracleVirtualIPWithDefaults instantiates a new OracleVirtualIP 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 (*OracleVirtualIP) GetDiscovered

func (o *OracleVirtualIP) GetDiscovered() bool

GetDiscovered returns the Discovered field value if set, zero value otherwise.

func (*OracleVirtualIP) GetDiscoveredOk

func (o *OracleVirtualIP) GetDiscoveredOk() (*bool, bool)

GetDiscoveredOk returns a tuple with the Discovered field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleVirtualIP) GetDomainName

func (o *OracleVirtualIP) GetDomainName() string

GetDomainName returns the DomainName field value if set, zero value otherwise.

func (*OracleVirtualIP) GetDomainNameOk

func (o *OracleVirtualIP) GetDomainNameOk() (*string, bool)

GetDomainNameOk returns a tuple with the DomainName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleVirtualIP) GetIp

func (o *OracleVirtualIP) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*OracleVirtualIP) GetIpOk

func (o *OracleVirtualIP) GetIpOk() (*string, bool)

GetIpOk returns a tuple with the Ip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleVirtualIP) HasDiscovered

func (o *OracleVirtualIP) HasDiscovered() bool

HasDiscovered returns a boolean if a field has been set.

func (*OracleVirtualIP) HasDomainName

func (o *OracleVirtualIP) HasDomainName() bool

HasDomainName returns a boolean if a field has been set.

func (*OracleVirtualIP) HasIp

func (o *OracleVirtualIP) HasIp() bool

HasIp returns a boolean if a field has been set.

func (OracleVirtualIP) MarshalJSON

func (o OracleVirtualIP) MarshalJSON() ([]byte, error)

func (*OracleVirtualIP) SetDiscovered

func (o *OracleVirtualIP) SetDiscovered(v bool)

SetDiscovered gets a reference to the given bool and assigns it to the Discovered field.

func (*OracleVirtualIP) SetDomainName

func (o *OracleVirtualIP) SetDomainName(v string)

SetDomainName gets a reference to the given string and assigns it to the DomainName field.

func (*OracleVirtualIP) SetIp

func (o *OracleVirtualIP) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (OracleVirtualIP) ToMap

func (o OracleVirtualIP) ToMap() (map[string]interface{}, error)

type PaginatedResponseMetadata

type PaginatedResponseMetadata struct {
	// Pointer to the previous page of results. Use this value as a cursor query parameter in a subsequent request, along with limit, to navigate through the collection by virtual page.
	PrevCursor *string `json:"prev_cursor,omitempty"`
	// Pointer to the next page of results. Use this value as a cursor query parameter in a subsequent request, along with limit, to navigate through the collection by virtual page.
	NextCursor *string `json:"next_cursor,omitempty"`
	// The total number of results. This value may not be provided.
	Total *int32 `json:"total,omitempty"`
}

PaginatedResponseMetadata struct for PaginatedResponseMetadata

func NewPaginatedResponseMetadata

func NewPaginatedResponseMetadata() *PaginatedResponseMetadata

NewPaginatedResponseMetadata instantiates a new PaginatedResponseMetadata 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 NewPaginatedResponseMetadataWithDefaults

func NewPaginatedResponseMetadataWithDefaults() *PaginatedResponseMetadata

NewPaginatedResponseMetadataWithDefaults instantiates a new PaginatedResponseMetadata 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 (*PaginatedResponseMetadata) GetNextCursor

func (o *PaginatedResponseMetadata) GetNextCursor() string

GetNextCursor returns the NextCursor field value if set, zero value otherwise.

func (*PaginatedResponseMetadata) GetNextCursorOk

func (o *PaginatedResponseMetadata) GetNextCursorOk() (*string, bool)

GetNextCursorOk returns a tuple with the NextCursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginatedResponseMetadata) GetPrevCursor

func (o *PaginatedResponseMetadata) GetPrevCursor() string

GetPrevCursor returns the PrevCursor field value if set, zero value otherwise.

func (*PaginatedResponseMetadata) GetPrevCursorOk

func (o *PaginatedResponseMetadata) GetPrevCursorOk() (*string, bool)

GetPrevCursorOk returns a tuple with the PrevCursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginatedResponseMetadata) GetTotal

func (o *PaginatedResponseMetadata) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*PaginatedResponseMetadata) GetTotalOk

func (o *PaginatedResponseMetadata) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginatedResponseMetadata) HasNextCursor

func (o *PaginatedResponseMetadata) HasNextCursor() bool

HasNextCursor returns a boolean if a field has been set.

func (*PaginatedResponseMetadata) HasPrevCursor

func (o *PaginatedResponseMetadata) HasPrevCursor() bool

HasPrevCursor returns a boolean if a field has been set.

func (*PaginatedResponseMetadata) HasTotal

func (o *PaginatedResponseMetadata) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (PaginatedResponseMetadata) MarshalJSON

func (o PaginatedResponseMetadata) MarshalJSON() ([]byte, error)

func (*PaginatedResponseMetadata) SetNextCursor

func (o *PaginatedResponseMetadata) SetNextCursor(v string)

SetNextCursor gets a reference to the given string and assigns it to the NextCursor field.

func (*PaginatedResponseMetadata) SetPrevCursor

func (o *PaginatedResponseMetadata) SetPrevCursor(v string)

SetPrevCursor gets a reference to the given string and assigns it to the PrevCursor field.

func (*PaginatedResponseMetadata) SetTotal

func (o *PaginatedResponseMetadata) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (PaginatedResponseMetadata) ToMap

func (o PaginatedResponseMetadata) ToMap() (map[string]interface{}, error)

type PasswordPoliciesParams

type PasswordPoliciesParams struct {
	// True if password policies are enforced/enabled.
	Enabled *bool `json:"enabled,omitempty"`
	// Minimum length for password.
	MinLength *int32 `json:"min_length,omitempty"`
	// The password can not be the same as any of the previous n passwords.
	ReuseDisallowLimit *int32 `json:"reuse_disallow_limit,omitempty"`
	// Mandate at least one digit in password.
	Digit *bool `json:"digit,omitempty"`
	// Mandate at least one uppercase letter in password.
	UppercaseLetter *bool `json:"uppercase_letter,omitempty"`
	// Mandate at least one lower letter in password.
	LowercaseLetter *bool `json:"lowercase_letter,omitempty"`
	// Mandate at least one special character in password.
	SpecialCharacter *bool `json:"special_character,omitempty"`
	// Disallows password containing case-insensitive user name or reversed user name.
	DisallowUsernameAsPassword *bool `json:"disallow_username_as_password,omitempty"`
	// The number of allowed attempts for incorrect password, after which the account gets locked.
	MaximumPasswordAttempts *int32 `json:"maximum_password_attempts,omitempty"`
}

PasswordPoliciesParams Parameters to read or update password policies

func NewPasswordPoliciesParams

func NewPasswordPoliciesParams() *PasswordPoliciesParams

NewPasswordPoliciesParams instantiates a new PasswordPoliciesParams 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 NewPasswordPoliciesParamsWithDefaults

func NewPasswordPoliciesParamsWithDefaults() *PasswordPoliciesParams

NewPasswordPoliciesParamsWithDefaults instantiates a new PasswordPoliciesParams 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 (*PasswordPoliciesParams) GetDigit

func (o *PasswordPoliciesParams) GetDigit() bool

GetDigit returns the Digit field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetDigitOk

func (o *PasswordPoliciesParams) GetDigitOk() (*bool, bool)

GetDigitOk returns a tuple with the Digit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetDisallowUsernameAsPassword

func (o *PasswordPoliciesParams) GetDisallowUsernameAsPassword() bool

GetDisallowUsernameAsPassword returns the DisallowUsernameAsPassword field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetDisallowUsernameAsPasswordOk

func (o *PasswordPoliciesParams) GetDisallowUsernameAsPasswordOk() (*bool, bool)

GetDisallowUsernameAsPasswordOk returns a tuple with the DisallowUsernameAsPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetEnabled

func (o *PasswordPoliciesParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetEnabledOk

func (o *PasswordPoliciesParams) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetLowercaseLetter

func (o *PasswordPoliciesParams) GetLowercaseLetter() bool

GetLowercaseLetter returns the LowercaseLetter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetLowercaseLetterOk

func (o *PasswordPoliciesParams) GetLowercaseLetterOk() (*bool, bool)

GetLowercaseLetterOk returns a tuple with the LowercaseLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetMaximumPasswordAttempts

func (o *PasswordPoliciesParams) GetMaximumPasswordAttempts() int32

GetMaximumPasswordAttempts returns the MaximumPasswordAttempts field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetMaximumPasswordAttemptsOk

func (o *PasswordPoliciesParams) GetMaximumPasswordAttemptsOk() (*int32, bool)

GetMaximumPasswordAttemptsOk returns a tuple with the MaximumPasswordAttempts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetMinLength

func (o *PasswordPoliciesParams) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetMinLengthOk

func (o *PasswordPoliciesParams) GetMinLengthOk() (*int32, bool)

GetMinLengthOk returns a tuple with the MinLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetReuseDisallowLimit

func (o *PasswordPoliciesParams) GetReuseDisallowLimit() int32

GetReuseDisallowLimit returns the ReuseDisallowLimit field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetReuseDisallowLimitOk

func (o *PasswordPoliciesParams) GetReuseDisallowLimitOk() (*int32, bool)

GetReuseDisallowLimitOk returns a tuple with the ReuseDisallowLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetSpecialCharacter

func (o *PasswordPoliciesParams) GetSpecialCharacter() bool

GetSpecialCharacter returns the SpecialCharacter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetSpecialCharacterOk

func (o *PasswordPoliciesParams) GetSpecialCharacterOk() (*bool, bool)

GetSpecialCharacterOk returns a tuple with the SpecialCharacter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) GetUppercaseLetter

func (o *PasswordPoliciesParams) GetUppercaseLetter() bool

GetUppercaseLetter returns the UppercaseLetter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetUppercaseLetterOk

func (o *PasswordPoliciesParams) GetUppercaseLetterOk() (*bool, bool)

GetUppercaseLetterOk returns a tuple with the UppercaseLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordPoliciesParams) HasDigit

func (o *PasswordPoliciesParams) HasDigit() bool

HasDigit returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasDisallowUsernameAsPassword

func (o *PasswordPoliciesParams) HasDisallowUsernameAsPassword() bool

HasDisallowUsernameAsPassword returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasEnabled

func (o *PasswordPoliciesParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasLowercaseLetter

func (o *PasswordPoliciesParams) HasLowercaseLetter() bool

HasLowercaseLetter returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasMaximumPasswordAttempts

func (o *PasswordPoliciesParams) HasMaximumPasswordAttempts() bool

HasMaximumPasswordAttempts returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasMinLength

func (o *PasswordPoliciesParams) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasReuseDisallowLimit

func (o *PasswordPoliciesParams) HasReuseDisallowLimit() bool

HasReuseDisallowLimit returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasSpecialCharacter

func (o *PasswordPoliciesParams) HasSpecialCharacter() bool

HasSpecialCharacter returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasUppercaseLetter

func (o *PasswordPoliciesParams) HasUppercaseLetter() bool

HasUppercaseLetter returns a boolean if a field has been set.

func (PasswordPoliciesParams) MarshalJSON

func (o PasswordPoliciesParams) MarshalJSON() ([]byte, error)

func (*PasswordPoliciesParams) SetDigit

func (o *PasswordPoliciesParams) SetDigit(v bool)

SetDigit gets a reference to the given bool and assigns it to the Digit field.

func (*PasswordPoliciesParams) SetDisallowUsernameAsPassword

func (o *PasswordPoliciesParams) SetDisallowUsernameAsPassword(v bool)

SetDisallowUsernameAsPassword gets a reference to the given bool and assigns it to the DisallowUsernameAsPassword field.

func (*PasswordPoliciesParams) SetEnabled

func (o *PasswordPoliciesParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*PasswordPoliciesParams) SetLowercaseLetter

func (o *PasswordPoliciesParams) SetLowercaseLetter(v bool)

SetLowercaseLetter gets a reference to the given bool and assigns it to the LowercaseLetter field.

func (*PasswordPoliciesParams) SetMaximumPasswordAttempts

func (o *PasswordPoliciesParams) SetMaximumPasswordAttempts(v int32)

SetMaximumPasswordAttempts gets a reference to the given int32 and assigns it to the MaximumPasswordAttempts field.

func (*PasswordPoliciesParams) SetMinLength

func (o *PasswordPoliciesParams) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (*PasswordPoliciesParams) SetReuseDisallowLimit

func (o *PasswordPoliciesParams) SetReuseDisallowLimit(v int32)

SetReuseDisallowLimit gets a reference to the given int32 and assigns it to the ReuseDisallowLimit field.

func (*PasswordPoliciesParams) SetSpecialCharacter

func (o *PasswordPoliciesParams) SetSpecialCharacter(v bool)

SetSpecialCharacter gets a reference to the given bool and assigns it to the SpecialCharacter field.

func (*PasswordPoliciesParams) SetUppercaseLetter

func (o *PasswordPoliciesParams) SetUppercaseLetter(v bool)

SetUppercaseLetter gets a reference to the given bool and assigns it to the UppercaseLetter field.

func (PasswordPoliciesParams) ToMap

func (o PasswordPoliciesParams) ToMap() (map[string]interface{}, error)

type PasswordVault

type PasswordVault struct {
	// The password vault ID.
	Id *string `json:"id,omitempty"`
	// The name of this password vault.
	Name *string `json:"name,omitempty"`
	// The namespace id of this password vault.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this password vault.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// Id of the Engine that this password vault belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Name of the Engine that this password vault belongs to.
	EngineName *string `json:"engine_name,omitempty"`
	// The type of this password vault.
	Type *string `json:"type,omitempty"`
	// Host name or IP address of this password vault server.
	Host *string `json:"host,omitempty"`
	// Port of this password vault server.
	Port *int64 `json:"port,omitempty"`
	// The vault is enabled or not.
	Enabled NullableBool `json:"enabled,omitempty"`
	// The namespace of this password vault.
	Namespace *string `json:"namespace,omitempty"`
}

PasswordVault A Delphix engine password vault.

func NewPasswordVault

func NewPasswordVault() *PasswordVault

NewPasswordVault instantiates a new PasswordVault 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 NewPasswordVaultWithDefaults

func NewPasswordVaultWithDefaults() *PasswordVault

NewPasswordVaultWithDefaults instantiates a new PasswordVault 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 (*PasswordVault) GetEnabled

func (o *PasswordVault) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PasswordVault) GetEnabledOk

func (o *PasswordVault) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PasswordVault) GetEngineId

func (o *PasswordVault) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*PasswordVault) GetEngineIdOk

func (o *PasswordVault) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetEngineName

func (o *PasswordVault) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*PasswordVault) GetEngineNameOk

func (o *PasswordVault) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetHost

func (o *PasswordVault) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*PasswordVault) GetHostOk

func (o *PasswordVault) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetId

func (o *PasswordVault) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PasswordVault) GetIdOk

func (o *PasswordVault) 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.

func (*PasswordVault) GetIsReplica

func (o *PasswordVault) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*PasswordVault) GetIsReplicaOk

func (o *PasswordVault) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetName

func (o *PasswordVault) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PasswordVault) GetNameOk

func (o *PasswordVault) 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.

func (*PasswordVault) GetNamespace

func (o *PasswordVault) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*PasswordVault) GetNamespaceId

func (o *PasswordVault) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*PasswordVault) GetNamespaceIdOk

func (o *PasswordVault) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetNamespaceName

func (o *PasswordVault) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*PasswordVault) GetNamespaceNameOk

func (o *PasswordVault) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetNamespaceOk

func (o *PasswordVault) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetPort

func (o *PasswordVault) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*PasswordVault) GetPortOk

func (o *PasswordVault) GetPortOk() (*int64, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordVault) GetType

func (o *PasswordVault) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PasswordVault) GetTypeOk

func (o *PasswordVault) 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.

func (*PasswordVault) HasEnabled

func (o *PasswordVault) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*PasswordVault) HasEngineId

func (o *PasswordVault) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*PasswordVault) HasEngineName

func (o *PasswordVault) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*PasswordVault) HasHost

func (o *PasswordVault) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*PasswordVault) HasId

func (o *PasswordVault) HasId() bool

HasId returns a boolean if a field has been set.

func (*PasswordVault) HasIsReplica

func (o *PasswordVault) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*PasswordVault) HasName

func (o *PasswordVault) HasName() bool

HasName returns a boolean if a field has been set.

func (*PasswordVault) HasNamespace

func (o *PasswordVault) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*PasswordVault) HasNamespaceId

func (o *PasswordVault) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*PasswordVault) HasNamespaceName

func (o *PasswordVault) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*PasswordVault) HasPort

func (o *PasswordVault) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*PasswordVault) HasType

func (o *PasswordVault) HasType() bool

HasType returns a boolean if a field has been set.

func (PasswordVault) MarshalJSON

func (o PasswordVault) MarshalJSON() ([]byte, error)

func (*PasswordVault) SetEnabled

func (o *PasswordVault) SetEnabled(v bool)

SetEnabled gets a reference to the given NullableBool and assigns it to the Enabled field.

func (*PasswordVault) SetEnabledNil

func (o *PasswordVault) SetEnabledNil()

SetEnabledNil sets the value for Enabled to be an explicit nil

func (*PasswordVault) SetEngineId

func (o *PasswordVault) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*PasswordVault) SetEngineName

func (o *PasswordVault) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*PasswordVault) SetHost

func (o *PasswordVault) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*PasswordVault) SetId

func (o *PasswordVault) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PasswordVault) SetIsReplica

func (o *PasswordVault) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*PasswordVault) SetName

func (o *PasswordVault) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PasswordVault) SetNamespace

func (o *PasswordVault) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*PasswordVault) SetNamespaceId

func (o *PasswordVault) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*PasswordVault) SetNamespaceName

func (o *PasswordVault) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*PasswordVault) SetPort

func (o *PasswordVault) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*PasswordVault) SetType

func (o *PasswordVault) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PasswordVault) ToMap

func (o PasswordVault) ToMap() (map[string]interface{}, error)

func (*PasswordVault) UnsetEnabled

func (o *PasswordVault) UnsetEnabled()

UnsetEnabled ensures that no value is present for Enabled, not even an explicit nil

type PasswordVaultsApiService

type PasswordVaultsApiService service

PasswordVaultsApiService PasswordVaultsApi service

func (*PasswordVaultsApiService) GetPasswordVaultById

func (a *PasswordVaultsApiService) GetPasswordVaultById(ctx context.Context, passwordVaultId string) ApiGetPasswordVaultByIdRequest

GetPasswordVaultById Get a password vault by ID or Name.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param passwordVaultId The ID of the password vault.
@return ApiGetPasswordVaultByIdRequest

func (*PasswordVaultsApiService) GetPasswordVaultByIdExecute

Execute executes the request

@return PasswordVault

func (*PasswordVaultsApiService) GetPasswordVaults

GetPasswordVaults List all password vaults.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetPasswordVaultsRequest

func (*PasswordVaultsApiService) GetPasswordVaultsExecute

Execute executes the request

@return ListPasswordVaultsResponse

func (*PasswordVaultsApiService) SearchPasswordVaults

SearchPasswordVaults Search for Password Vaults.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchPasswordVaultsRequest

func (*PasswordVaultsApiService) SearchPasswordVaultsExecute

Execute executes the request

@return SearchPasswordVaultResponse

type PermissionEnum

type PermissionEnum string

PermissionEnum Type of the permission on DCT object.

const (
	PERMISSIONENUM_READ                    PermissionEnum = "READ"
	PERMISSIONENUM_UPDATE                  PermissionEnum = "UPDATE"
	PERMISSIONENUM_DELETE                  PermissionEnum = "DELETE"
	PERMISSIONENUM_EXECUTE                 PermissionEnum = "EXECUTE"
	PERMISSIONENUM_CANCEL                  PermissionEnum = "CANCEL"
	PERMISSIONENUM_MIGRATE                 PermissionEnum = "MIGRATE"
	PERMISSIONENUM_REFRESH                 PermissionEnum = "REFRESH"
	PERMISSIONENUM_DISABLE                 PermissionEnum = "DISABLE"
	PERMISSIONENUM_ENABLE                  PermissionEnum = "ENABLE"
	PERMISSIONENUM_ABANDON                 PermissionEnum = "ABANDON"
	PERMISSIONENUM_VALIDATE                PermissionEnum = "VALIDATE"
	PERMISSIONENUM_START                   PermissionEnum = "START"
	PERMISSIONENUM_STOP                    PermissionEnum = "STOP"
	PERMISSIONENUM_SNAPSHOT                PermissionEnum = "SNAPSHOT"
	PERMISSIONENUM_COPY                    PermissionEnum = "COPY"
	PERMISSIONENUM_REMOVE_JOB              PermissionEnum = "REMOVE_JOB"
	PERMISSIONENUM_PASSWORD_RESET          PermissionEnum = "PASSWORD_RESET"
	PERMISSIONENUM_UNDO_IMPORT             PermissionEnum = "UNDO_IMPORT"
	PERMISSIONENUM_IMPORT                  PermissionEnum = "IMPORT"
	PERMISSIONENUM_PROVISION_FROM_BOOKMARK PermissionEnum = "PROVISION_FROM_BOOKMARK"
	PERMISSIONENUM_PROVISION               PermissionEnum = "PROVISION"
	PERMISSIONENUM_REFRESH_FROM_BOOKMARK   PermissionEnum = "REFRESH_FROM_BOOKMARK"
	PERMISSIONENUM_REFRESH_FROM_SNAPSHOT   PermissionEnum = "REFRESH_FROM_SNAPSHOT"
	PERMISSIONENUM_REFRESH_FROM_TIMESTAMP  PermissionEnum = "REFRESH_FROM_TIMESTAMP"
	PERMISSIONENUM_CREATE_ENVIRONMENT      PermissionEnum = "CREATE_ENVIRONMENT"
	PERMISSIONENUM_CREATE_BOOKMARK         PermissionEnum = "CREATE_BOOKMARK"
	PERMISSIONENUM_CREATE_VDBGROUP         PermissionEnum = "CREATE_VDBGROUP"
	PERMISSIONENUM_MANAGE_TAGS             PermissionEnum = "MANAGE_TAGS"
	PERMISSIONENUM_LINK                    PermissionEnum = "LINK"
)

List of PermissionEnum

func NewPermissionEnumFromValue

func NewPermissionEnumFromValue(v string) (*PermissionEnum, error)

NewPermissionEnumFromValue returns a pointer to a valid PermissionEnum for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PermissionEnum) IsValid

func (v PermissionEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PermissionEnum) Ptr

func (v PermissionEnum) Ptr() *PermissionEnum

Ptr returns reference to PermissionEnum value

func (*PermissionEnum) UnmarshalJSON

func (v *PermissionEnum) UnmarshalJSON(src []byte) error

type PermissionObject

type PermissionObject struct {
	// Object type.
	ObjectType string `json:"object_type"`
	// List of permissions.
	Permissions []string `json:"permissions"`
}

PermissionObject A Permission Object which is mapping between object type and its permissions.

func NewPermissionObject

func NewPermissionObject(objectType string, permissions []string) *PermissionObject

NewPermissionObject instantiates a new PermissionObject 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 NewPermissionObjectWithDefaults

func NewPermissionObjectWithDefaults() *PermissionObject

NewPermissionObjectWithDefaults instantiates a new PermissionObject 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 (*PermissionObject) GetObjectType

func (o *PermissionObject) GetObjectType() string

GetObjectType returns the ObjectType field value

func (*PermissionObject) GetObjectTypeOk

func (o *PermissionObject) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value and a boolean to check if the value has been set.

func (*PermissionObject) GetPermissions

func (o *PermissionObject) GetPermissions() []string

GetPermissions returns the Permissions field value

func (*PermissionObject) GetPermissionsOk

func (o *PermissionObject) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value and a boolean to check if the value has been set.

func (PermissionObject) MarshalJSON

func (o PermissionObject) MarshalJSON() ([]byte, error)

func (*PermissionObject) SetObjectType

func (o *PermissionObject) SetObjectType(v string)

SetObjectType sets field value

func (*PermissionObject) SetPermissions

func (o *PermissionObject) SetPermissions(v []string)

SetPermissions sets field value

func (PermissionObject) ToMap

func (o PermissionObject) ToMap() (map[string]interface{}, error)

type PermissionProperty

type PermissionProperty struct {
	// List of permissions.
	Permissions []string `json:"permissions"`
}

PermissionProperty A Permission object.

func NewPermissionProperty

func NewPermissionProperty(permissions []string) *PermissionProperty

NewPermissionProperty instantiates a new PermissionProperty 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 NewPermissionPropertyWithDefaults

func NewPermissionPropertyWithDefaults() *PermissionProperty

NewPermissionPropertyWithDefaults instantiates a new PermissionProperty 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 (*PermissionProperty) GetPermissions

func (o *PermissionProperty) GetPermissions() []string

GetPermissions returns the Permissions field value

func (*PermissionProperty) GetPermissionsOk

func (o *PermissionProperty) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value and a boolean to check if the value has been set.

func (PermissionProperty) MarshalJSON

func (o PermissionProperty) MarshalJSON() ([]byte, error)

func (*PermissionProperty) SetPermissions

func (o *PermissionProperty) SetPermissions(v []string)

SetPermissions sets field value

func (PermissionProperty) ToMap

func (o PermissionProperty) ToMap() (map[string]interface{}, error)

type PermissionsRequest

type PermissionsRequest struct {
	// Array of permissions with object type and their permission.
	PermissionObjects []PermissionObject `json:"permission_objects"`
}

PermissionsRequest struct for PermissionsRequest

func NewPermissionsRequest

func NewPermissionsRequest(permissionObjects []PermissionObject) *PermissionsRequest

NewPermissionsRequest instantiates a new PermissionsRequest 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 NewPermissionsRequestWithDefaults

func NewPermissionsRequestWithDefaults() *PermissionsRequest

NewPermissionsRequestWithDefaults instantiates a new PermissionsRequest 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 (*PermissionsRequest) GetPermissionObjects

func (o *PermissionsRequest) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*PermissionsRequest) GetPermissionObjectsOk

func (o *PermissionsRequest) GetPermissionObjectsOk() ([]PermissionObject, bool)

GetPermissionObjectsOk returns a tuple with the PermissionObjects field value and a boolean to check if the value has been set.

func (PermissionsRequest) MarshalJSON

func (o PermissionsRequest) MarshalJSON() ([]byte, error)

func (*PermissionsRequest) SetPermissionObjects

func (o *PermissionsRequest) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (PermissionsRequest) ToMap

func (o PermissionsRequest) ToMap() (map[string]interface{}, error)

type PrimaryEnvironmentUserResponse

type PrimaryEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

PrimaryEnvironmentUserResponse struct for PrimaryEnvironmentUserResponse

func NewPrimaryEnvironmentUserResponse

func NewPrimaryEnvironmentUserResponse() *PrimaryEnvironmentUserResponse

NewPrimaryEnvironmentUserResponse instantiates a new PrimaryEnvironmentUserResponse 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 NewPrimaryEnvironmentUserResponseWithDefaults

func NewPrimaryEnvironmentUserResponseWithDefaults() *PrimaryEnvironmentUserResponse

NewPrimaryEnvironmentUserResponseWithDefaults instantiates a new PrimaryEnvironmentUserResponse 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 (*PrimaryEnvironmentUserResponse) GetJob

func (o *PrimaryEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*PrimaryEnvironmentUserResponse) GetJobOk

func (o *PrimaryEnvironmentUserResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrimaryEnvironmentUserResponse) HasJob

HasJob returns a boolean if a field has been set.

func (PrimaryEnvironmentUserResponse) MarshalJSON

func (o PrimaryEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*PrimaryEnvironmentUserResponse) SetJob

func (o *PrimaryEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (PrimaryEnvironmentUserResponse) ToMap

func (o PrimaryEnvironmentUserResponse) ToMap() (map[string]interface{}, error)

type ProductHistory

type ProductHistory struct {
	// Product Version.
	Version *string `json:"version,omitempty"`
	// This version installed on date.
	InstalledOn *time.Time `json:"installed_on,omitempty"`
}

ProductHistory struct for ProductHistory

func NewProductHistory

func NewProductHistory() *ProductHistory

NewProductHistory instantiates a new ProductHistory 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 NewProductHistoryWithDefaults

func NewProductHistoryWithDefaults() *ProductHistory

NewProductHistoryWithDefaults instantiates a new ProductHistory 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 (*ProductHistory) GetInstalledOn

func (o *ProductHistory) GetInstalledOn() time.Time

GetInstalledOn returns the InstalledOn field value if set, zero value otherwise.

func (*ProductHistory) GetInstalledOnOk

func (o *ProductHistory) GetInstalledOnOk() (*time.Time, bool)

GetInstalledOnOk returns a tuple with the InstalledOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductHistory) GetVersion

func (o *ProductHistory) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ProductHistory) GetVersionOk

func (o *ProductHistory) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductHistory) HasInstalledOn

func (o *ProductHistory) HasInstalledOn() bool

HasInstalledOn returns a boolean if a field has been set.

func (*ProductHistory) HasVersion

func (o *ProductHistory) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ProductHistory) MarshalJSON

func (o ProductHistory) MarshalJSON() ([]byte, error)

func (*ProductHistory) SetInstalledOn

func (o *ProductHistory) SetInstalledOn(v time.Time)

SetInstalledOn gets a reference to the given time.Time and assigns it to the InstalledOn field.

func (*ProductHistory) SetVersion

func (o *ProductHistory) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (ProductHistory) ToMap

func (o ProductHistory) ToMap() (map[string]interface{}, error)

type ProductInfo

type ProductInfo struct {
	// Current API version.
	ApiVersion *string `json:"api_version,omitempty"`
	// Current installed product version.
	ProductVersion *string `json:"product_version,omitempty"`
	// System UUID
	SystemUuid *string `json:"system_uuid,omitempty"`
	// Product upgrade history.
	ProductUpgradeHistory []ProductHistory `json:"product_upgrade_history,omitempty"`
	// All the supported API versions.
	SupportedApiVersions []string `json:"supported_api_versions,omitempty"`
}

ProductInfo Product Information Response

func NewProductInfo

func NewProductInfo() *ProductInfo

NewProductInfo instantiates a new ProductInfo 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 NewProductInfoWithDefaults

func NewProductInfoWithDefaults() *ProductInfo

NewProductInfoWithDefaults instantiates a new ProductInfo 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 (*ProductInfo) GetApiVersion

func (o *ProductInfo) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*ProductInfo) GetApiVersionOk

func (o *ProductInfo) GetApiVersionOk() (*string, bool)

GetApiVersionOk returns a tuple with the ApiVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfo) GetProductUpgradeHistory

func (o *ProductInfo) GetProductUpgradeHistory() []ProductHistory

GetProductUpgradeHistory returns the ProductUpgradeHistory field value if set, zero value otherwise.

func (*ProductInfo) GetProductUpgradeHistoryOk

func (o *ProductInfo) GetProductUpgradeHistoryOk() ([]ProductHistory, bool)

GetProductUpgradeHistoryOk returns a tuple with the ProductUpgradeHistory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfo) GetProductVersion

func (o *ProductInfo) GetProductVersion() string

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*ProductInfo) GetProductVersionOk

func (o *ProductInfo) GetProductVersionOk() (*string, bool)

GetProductVersionOk returns a tuple with the ProductVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfo) GetSupportedApiVersions

func (o *ProductInfo) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProductInfo) GetSupportedApiVersionsOk

func (o *ProductInfo) GetSupportedApiVersionsOk() ([]string, bool)

GetSupportedApiVersionsOk returns a tuple with the SupportedApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfo) GetSystemUuid

func (o *ProductInfo) GetSystemUuid() string

GetSystemUuid returns the SystemUuid field value if set, zero value otherwise.

func (*ProductInfo) GetSystemUuidOk

func (o *ProductInfo) GetSystemUuidOk() (*string, bool)

GetSystemUuidOk returns a tuple with the SystemUuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfo) HasApiVersion

func (o *ProductInfo) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*ProductInfo) HasProductUpgradeHistory

func (o *ProductInfo) HasProductUpgradeHistory() bool

HasProductUpgradeHistory returns a boolean if a field has been set.

func (*ProductInfo) HasProductVersion

func (o *ProductInfo) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (*ProductInfo) HasSupportedApiVersions

func (o *ProductInfo) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProductInfo) HasSystemUuid

func (o *ProductInfo) HasSystemUuid() bool

HasSystemUuid returns a boolean if a field has been set.

func (ProductInfo) MarshalJSON

func (o ProductInfo) MarshalJSON() ([]byte, error)

func (*ProductInfo) SetApiVersion

func (o *ProductInfo) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*ProductInfo) SetProductUpgradeHistory

func (o *ProductInfo) SetProductUpgradeHistory(v []ProductHistory)

SetProductUpgradeHistory gets a reference to the given []ProductHistory and assigns it to the ProductUpgradeHistory field.

func (*ProductInfo) SetProductVersion

func (o *ProductInfo) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (*ProductInfo) SetSupportedApiVersions

func (o *ProductInfo) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProductInfo) SetSystemUuid

func (o *ProductInfo) SetSystemUuid(v string)

SetSystemUuid gets a reference to the given string and assigns it to the SystemUuid field.

func (ProductInfo) ToMap

func (o ProductInfo) ToMap() (map[string]interface{}, error)

type ProvisionVDBByLocationDefaultsRequest

type ProvisionVDBByLocationDefaultsRequest struct {
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The location to get the defaults from.
	Location *string `json:"location,omitempty"`
	// ID of the timeflow to provision from.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

ProvisionVDBByLocationDefaultsRequest struct for ProvisionVDBByLocationDefaultsRequest

func NewProvisionVDBByLocationDefaultsRequest

func NewProvisionVDBByLocationDefaultsRequest() *ProvisionVDBByLocationDefaultsRequest

NewProvisionVDBByLocationDefaultsRequest instantiates a new ProvisionVDBByLocationDefaultsRequest 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 NewProvisionVDBByLocationDefaultsRequestWithDefaults

func NewProvisionVDBByLocationDefaultsRequestWithDefaults() *ProvisionVDBByLocationDefaultsRequest

NewProvisionVDBByLocationDefaultsRequestWithDefaults instantiates a new ProvisionVDBByLocationDefaultsRequest 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 (*ProvisionVDBByLocationDefaultsRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationDefaultsRequest) GetEngineIdOk

func (o *ProvisionVDBByLocationDefaultsRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationDefaultsRequest) GetLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*ProvisionVDBByLocationDefaultsRequest) GetLocationOk

func (o *ProvisionVDBByLocationDefaultsRequest) 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.

func (*ProvisionVDBByLocationDefaultsRequest) GetSourceDataId

func (o *ProvisionVDBByLocationDefaultsRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationDefaultsRequest) GetSourceDataIdOk

func (o *ProvisionVDBByLocationDefaultsRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationDefaultsRequest) GetTimeflowId

func (o *ProvisionVDBByLocationDefaultsRequest) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationDefaultsRequest) GetTimeflowIdOk

func (o *ProvisionVDBByLocationDefaultsRequest) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationDefaultsRequest) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationDefaultsRequest) HasLocation

HasLocation returns a boolean if a field has been set.

func (*ProvisionVDBByLocationDefaultsRequest) HasSourceDataId

func (o *ProvisionVDBByLocationDefaultsRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationDefaultsRequest) HasTimeflowId

func (o *ProvisionVDBByLocationDefaultsRequest) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (ProvisionVDBByLocationDefaultsRequest) MarshalJSON

func (o ProvisionVDBByLocationDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByLocationDefaultsRequest) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByLocationDefaultsRequest) SetLocation

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*ProvisionVDBByLocationDefaultsRequest) SetSourceDataId

func (o *ProvisionVDBByLocationDefaultsRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (*ProvisionVDBByLocationDefaultsRequest) SetTimeflowId

func (o *ProvisionVDBByLocationDefaultsRequest) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (ProvisionVDBByLocationDefaultsRequest) ToMap

func (o ProvisionVDBByLocationDefaultsRequest) ToMap() (map[string]interface{}, error)

type ProvisionVDBByLocationParameters

type ProvisionVDBByLocationParameters struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
	// The location to provision from.
	Location *string `json:"location,omitempty"`
	// ID of the timeflow to provision from.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBByLocationParameters struct for ProvisionVDBByLocationParameters

func NewProvisionVDBByLocationParameters

func NewProvisionVDBByLocationParameters() *ProvisionVDBByLocationParameters

NewProvisionVDBByLocationParameters instantiates a new ProvisionVDBByLocationParameters 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 NewProvisionVDBByLocationParametersWithDefaults

func NewProvisionVDBByLocationParametersWithDefaults() *ProvisionVDBByLocationParameters

NewProvisionVDBByLocationParametersWithDefaults instantiates a new ProvisionVDBByLocationParameters 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 (*ProvisionVDBByLocationParameters) GetAdditionalMountPoints

func (o *ProvisionVDBByLocationParameters) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByLocationParameters) GetAdditionalMountPointsOk

func (o *ProvisionVDBByLocationParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByLocationParameters) GetAppdataConfigParams

func (o *ProvisionVDBByLocationParameters) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByLocationParameters) GetAppdataConfigParamsOk

func (o *ProvisionVDBByLocationParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByLocationParameters) GetAppdataSourceParams

func (o *ProvisionVDBByLocationParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetAppdataSourceParamsOk

func (o *ProvisionVDBByLocationParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetArchiveLog

func (o *ProvisionVDBByLocationParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetArchiveLogOk

func (o *ProvisionVDBByLocationParameters) GetArchiveLogOk() (*bool, bool)

GetArchiveLogOk returns a tuple with the ArchiveLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetAutoSelectRepository

func (o *ProvisionVDBByLocationParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetAutoSelectRepositoryOk

func (o *ProvisionVDBByLocationParameters) GetAutoSelectRepositoryOk() (*bool, bool)

GetAutoSelectRepositoryOk returns a tuple with the AutoSelectRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetAuxiliaryTemplateId

func (o *ProvisionVDBByLocationParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetAuxiliaryTemplateIdOk

func (o *ProvisionVDBByLocationParameters) GetAuxiliaryTemplateIdOk() (*string, bool)

GetAuxiliaryTemplateIdOk returns a tuple with the AuxiliaryTemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetCdbId

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetCdbIdOk

func (o *ProvisionVDBByLocationParameters) GetCdbIdOk() (*string, bool)

GetCdbIdOk returns a tuple with the CdbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetCdbTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetCdbTdeKeystorePasswordOk

func (o *ProvisionVDBByLocationParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

GetCdbTdeKeystorePasswordOk returns a tuple with the CdbTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetCdcOnProvision

func (o *ProvisionVDBByLocationParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetCdcOnProvisionOk

func (o *ProvisionVDBByLocationParameters) GetCdcOnProvisionOk() (*bool, bool)

GetCdcOnProvisionOk returns a tuple with the CdcOnProvision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetClusterNodeIds

func (o *ProvisionVDBByLocationParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetClusterNodeIdsOk

func (o *ProvisionVDBByLocationParameters) GetClusterNodeIdsOk() ([]string, bool)

GetClusterNodeIdsOk returns a tuple with the ClusterNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetClusterNodeInstances

func (o *ProvisionVDBByLocationParameters) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetClusterNodeInstancesOk

func (o *ProvisionVDBByLocationParameters) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

GetClusterNodeInstancesOk returns a tuple with the ClusterNodeInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetConfigParams

func (o *ProvisionVDBByLocationParameters) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByLocationParameters) GetConfigParamsOk

func (o *ProvisionVDBByLocationParameters) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByLocationParameters) GetConfigSettingsStg

func (o *ProvisionVDBByLocationParameters) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetConfigSettingsStgOk

func (o *ProvisionVDBByLocationParameters) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

GetConfigSettingsStgOk returns a tuple with the ConfigSettingsStg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetConfigureClone

func (o *ProvisionVDBByLocationParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetConfigureCloneOk

func (o *ProvisionVDBByLocationParameters) GetConfigureCloneOk() ([]Hook, bool)

GetConfigureCloneOk returns a tuple with the ConfigureClone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetCustomEnvFilesOk

func (o *ProvisionVDBByLocationParameters) GetCustomEnvFilesOk() ([]string, bool)

GetCustomEnvFilesOk returns a tuple with the CustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetCustomEnvVars

func (o *ProvisionVDBByLocationParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetCustomEnvVarsOk

func (o *ProvisionVDBByLocationParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

GetCustomEnvVarsOk returns a tuple with the CustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetDatabaseName

func (o *ProvisionVDBByLocationParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetDatabaseNameOk

func (o *ProvisionVDBByLocationParameters) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetEngineId

func (o *ProvisionVDBByLocationParameters) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetEngineIdOk

func (o *ProvisionVDBByLocationParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetEnvironmentId

func (o *ProvisionVDBByLocationParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetEnvironmentIdOk

func (o *ProvisionVDBByLocationParameters) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetEnvironmentUserId

func (o *ProvisionVDBByLocationParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetEnvironmentUserIdOk

func (o *ProvisionVDBByLocationParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetFileMappingRules

func (o *ProvisionVDBByLocationParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetFileMappingRulesOk

func (o *ProvisionVDBByLocationParameters) GetFileMappingRulesOk() (*string, bool)

GetFileMappingRulesOk returns a tuple with the FileMappingRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetListenerIds

func (o *ProvisionVDBByLocationParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetListenerIdsOk

func (o *ProvisionVDBByLocationParameters) GetListenerIdsOk() ([]string, bool)

GetListenerIdsOk returns a tuple with the ListenerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetLocation

func (o *ProvisionVDBByLocationParameters) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetLocationOk

func (o *ProvisionVDBByLocationParameters) 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.

func (*ProvisionVDBByLocationParameters) GetMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBByLocationParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetMountPoint

func (o *ProvisionVDBByLocationParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetMountPointOk

func (o *ProvisionVDBByLocationParameters) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetMssqlFailoverDriveLetter

func (o *ProvisionVDBByLocationParameters) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetMssqlFailoverDriveLetterOk

func (o *ProvisionVDBByLocationParameters) GetMssqlFailoverDriveLetterOk() (*string, bool)

GetMssqlFailoverDriveLetterOk returns a tuple with the MssqlFailoverDriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetNameOk

func (o *ProvisionVDBByLocationParameters) 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.

func (*ProvisionVDBByLocationParameters) GetNewDbid

func (o *ProvisionVDBByLocationParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetNewDbidOk

func (o *ProvisionVDBByLocationParameters) GetNewDbidOk() (*bool, bool)

GetNewDbidOk returns a tuple with the NewDbid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOnlineLogGroups

func (o *ProvisionVDBByLocationParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOnlineLogGroupsOk

func (o *ProvisionVDBByLocationParameters) GetOnlineLogGroupsOk() (*int32, bool)

GetOnlineLogGroupsOk returns a tuple with the OnlineLogGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOnlineLogSize

func (o *ProvisionVDBByLocationParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOnlineLogSizeOk

func (o *ProvisionVDBByLocationParameters) GetOnlineLogSizeOk() (*int32, bool)

GetOnlineLogSizeOk returns a tuple with the OnlineLogSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOpenResetLogs

func (o *ProvisionVDBByLocationParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOpenResetLogsOk

func (o *ProvisionVDBByLocationParameters) GetOpenResetLogsOk() (*bool, bool)

GetOpenResetLogsOk returns a tuple with the OpenResetLogs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOracleInstanceName

func (o *ProvisionVDBByLocationParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOracleInstanceNameOk

func (o *ProvisionVDBByLocationParameters) GetOracleInstanceNameOk() (*string, bool)

GetOracleInstanceNameOk returns a tuple with the OracleInstanceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOracleRacCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOracleRacCustomEnvFilesOk

func (o *ProvisionVDBByLocationParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

GetOracleRacCustomEnvFilesOk returns a tuple with the OracleRacCustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOracleRacCustomEnvVars

func (o *ProvisionVDBByLocationParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOracleRacCustomEnvVarsOk

func (o *ProvisionVDBByLocationParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

GetOracleRacCustomEnvVarsOk returns a tuple with the OracleRacCustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOsPassword

func (o *ProvisionVDBByLocationParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOsPasswordOk

func (o *ProvisionVDBByLocationParameters) GetOsPasswordOk() (*string, bool)

GetOsPasswordOk returns a tuple with the OsPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetOsUsername

func (o *ProvisionVDBByLocationParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetOsUsernameOk

func (o *ProvisionVDBByLocationParameters) GetOsUsernameOk() (*string, bool)

GetOsUsernameOk returns a tuple with the OsUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetParentTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetParentTdeKeystorePasswordOk

func (o *ProvisionVDBByLocationParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

GetParentTdeKeystorePasswordOk returns a tuple with the ParentTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetParentTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetParentTdeKeystorePathOk

func (o *ProvisionVDBByLocationParameters) GetParentTdeKeystorePathOk() (*string, bool)

GetParentTdeKeystorePathOk returns a tuple with the ParentTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostRefresh

func (o *ProvisionVDBByLocationParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostRefreshOk

func (o *ProvisionVDBByLocationParameters) GetPostRefreshOk() ([]Hook, bool)

GetPostRefreshOk returns a tuple with the PostRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostRollback

func (o *ProvisionVDBByLocationParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBByLocationParameters) GetPostRollbackOk

func (o *ProvisionVDBByLocationParameters) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBByLocationParameters) GetPostScript

func (o *ProvisionVDBByLocationParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostScriptOk

func (o *ProvisionVDBByLocationParameters) GetPostScriptOk() (*string, bool)

GetPostScriptOk returns a tuple with the PostScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostSelfRefresh

func (o *ProvisionVDBByLocationParameters) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostSelfRefreshOk

func (o *ProvisionVDBByLocationParameters) GetPostSelfRefreshOk() ([]Hook, bool)

GetPostSelfRefreshOk returns a tuple with the PostSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostSnapshot

func (o *ProvisionVDBByLocationParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostSnapshotOk

func (o *ProvisionVDBByLocationParameters) GetPostSnapshotOk() ([]Hook, bool)

GetPostSnapshotOk returns a tuple with the PostSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostStart

func (o *ProvisionVDBByLocationParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostStartOk

func (o *ProvisionVDBByLocationParameters) GetPostStartOk() ([]Hook, bool)

GetPostStartOk returns a tuple with the PostStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostStop

func (o *ProvisionVDBByLocationParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostStopOk

func (o *ProvisionVDBByLocationParameters) GetPostStopOk() ([]Hook, bool)

GetPostStopOk returns a tuple with the PostStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPostgresPort

func (o *ProvisionVDBByLocationParameters) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPostgresPortOk

func (o *ProvisionVDBByLocationParameters) GetPostgresPortOk() (*int32, bool)

GetPostgresPortOk returns a tuple with the PostgresPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreRefresh

func (o *ProvisionVDBByLocationParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreRefreshOk

func (o *ProvisionVDBByLocationParameters) GetPreRefreshOk() ([]Hook, bool)

GetPreRefreshOk returns a tuple with the PreRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreRollback

func (o *ProvisionVDBByLocationParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBByLocationParameters) GetPreRollbackOk

func (o *ProvisionVDBByLocationParameters) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBByLocationParameters) GetPreScript

func (o *ProvisionVDBByLocationParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreScriptOk

func (o *ProvisionVDBByLocationParameters) GetPreScriptOk() (*string, bool)

GetPreScriptOk returns a tuple with the PreScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreSelfRefresh

func (o *ProvisionVDBByLocationParameters) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreSelfRefreshOk

func (o *ProvisionVDBByLocationParameters) GetPreSelfRefreshOk() ([]Hook, bool)

GetPreSelfRefreshOk returns a tuple with the PreSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreSnapshot

func (o *ProvisionVDBByLocationParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreSnapshotOk

func (o *ProvisionVDBByLocationParameters) GetPreSnapshotOk() ([]Hook, bool)

GetPreSnapshotOk returns a tuple with the PreSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreStart

func (o *ProvisionVDBByLocationParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreStartOk

func (o *ProvisionVDBByLocationParameters) GetPreStartOk() ([]Hook, bool)

GetPreStartOk returns a tuple with the PreStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPreStop

func (o *ProvisionVDBByLocationParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPreStopOk

func (o *ProvisionVDBByLocationParameters) GetPreStopOk() ([]Hook, bool)

GetPreStopOk returns a tuple with the PreStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetPrivilegedOsUser

func (o *ProvisionVDBByLocationParameters) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetPrivilegedOsUserOk

func (o *ProvisionVDBByLocationParameters) GetPrivilegedOsUserOk() (*string, bool)

GetPrivilegedOsUserOk returns a tuple with the PrivilegedOsUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetRecoveryModel

func (o *ProvisionVDBByLocationParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetRecoveryModelOk

func (o *ProvisionVDBByLocationParameters) GetRecoveryModelOk() (*string, bool)

GetRecoveryModelOk returns a tuple with the RecoveryModel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetRepositoryId

func (o *ProvisionVDBByLocationParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetRepositoryIdOk

func (o *ProvisionVDBByLocationParameters) GetRepositoryIdOk() (*string, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetRetentionPolicyId

func (o *ProvisionVDBByLocationParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetRetentionPolicyIdOk

func (o *ProvisionVDBByLocationParameters) GetRetentionPolicyIdOk() (*string, bool)

GetRetentionPolicyIdOk returns a tuple with the RetentionPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetSnapshotPolicyId

func (o *ProvisionVDBByLocationParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetSnapshotPolicyIdOk

func (o *ProvisionVDBByLocationParameters) GetSnapshotPolicyIdOk() (*string, bool)

GetSnapshotPolicyIdOk returns a tuple with the SnapshotPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetSourceDataId

func (o *ProvisionVDBByLocationParameters) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetSourceDataIdOk

func (o *ProvisionVDBByLocationParameters) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTags

func (o *ProvisionVDBByLocationParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTagsOk

func (o *ProvisionVDBByLocationParameters) 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.

func (*ProvisionVDBByLocationParameters) GetTargetGroupId

func (o *ProvisionVDBByLocationParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTargetGroupIdOk

func (o *ProvisionVDBByLocationParameters) GetTargetGroupIdOk() (*string, bool)

GetTargetGroupIdOk returns a tuple with the TargetGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTargetVcdbTdeKeystorePathOk

func (o *ProvisionVDBByLocationParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

GetTargetVcdbTdeKeystorePathOk returns a tuple with the TargetVcdbTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTdeExportedKeyFileSecret

func (o *ProvisionVDBByLocationParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTdeExportedKeyFileSecretOk

func (o *ProvisionVDBByLocationParameters) GetTdeExportedKeyFileSecretOk() (*string, bool)

GetTdeExportedKeyFileSecretOk returns a tuple with the TdeExportedKeyFileSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTdeKeyIdentifierOk

func (o *ProvisionVDBByLocationParameters) GetTdeKeyIdentifierOk() (*string, bool)

GetTdeKeyIdentifierOk returns a tuple with the TdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTemplateId

func (o *ProvisionVDBByLocationParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTemplateIdOk

func (o *ProvisionVDBByLocationParameters) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTimeflowId

func (o *ProvisionVDBByLocationParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTimeflowIdOk

func (o *ProvisionVDBByLocationParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetTruncateLogOnCheckpoint

func (o *ProvisionVDBByLocationParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetTruncateLogOnCheckpointOk

func (o *ProvisionVDBByLocationParameters) GetTruncateLogOnCheckpointOk() (*bool, bool)

GetTruncateLogOnCheckpointOk returns a tuple with the TruncateLogOnCheckpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetUniqueName

func (o *ProvisionVDBByLocationParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetUniqueNameOk

func (o *ProvisionVDBByLocationParameters) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetVcdbDatabaseName

func (o *ProvisionVDBByLocationParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetVcdbDatabaseNameOk

func (o *ProvisionVDBByLocationParameters) GetVcdbDatabaseNameOk() (*string, bool)

GetVcdbDatabaseNameOk returns a tuple with the VcdbDatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetVcdbName

func (o *ProvisionVDBByLocationParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetVcdbNameOk

func (o *ProvisionVDBByLocationParameters) GetVcdbNameOk() (*string, bool)

GetVcdbNameOk returns a tuple with the VcdbName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetVcdbRestart

func (o *ProvisionVDBByLocationParameters) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetVcdbRestartOk

func (o *ProvisionVDBByLocationParameters) GetVcdbRestartOk() (*bool, bool)

GetVcdbRestartOk returns a tuple with the VcdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetVcdbTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetVcdbTdeKeyIdentifierOk

func (o *ProvisionVDBByLocationParameters) GetVcdbTdeKeyIdentifierOk() (*string, bool)

GetVcdbTdeKeyIdentifierOk returns a tuple with the VcdbTdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) GetVdbRestart

func (o *ProvisionVDBByLocationParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParameters) GetVdbRestartOk

func (o *ProvisionVDBByLocationParameters) GetVdbRestartOk() (*bool, bool)

GetVdbRestartOk returns a tuple with the VdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParameters) HasAdditionalMountPoints

func (o *ProvisionVDBByLocationParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasAppdataConfigParams

func (o *ProvisionVDBByLocationParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasAppdataSourceParams

func (o *ProvisionVDBByLocationParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasArchiveLog

func (o *ProvisionVDBByLocationParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasAutoSelectRepository

func (o *ProvisionVDBByLocationParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasAuxiliaryTemplateId

func (o *ProvisionVDBByLocationParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasCdbId

func (o *ProvisionVDBByLocationParameters) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasCdbTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasCdcOnProvision

func (o *ProvisionVDBByLocationParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasClusterNodeIds

func (o *ProvisionVDBByLocationParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasClusterNodeInstances

func (o *ProvisionVDBByLocationParameters) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasConfigParams

func (o *ProvisionVDBByLocationParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasConfigSettingsStg

func (o *ProvisionVDBByLocationParameters) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasConfigureClone

func (o *ProvisionVDBByLocationParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasCustomEnvVars

func (o *ProvisionVDBByLocationParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasDatabaseName

func (o *ProvisionVDBByLocationParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasEngineId

func (o *ProvisionVDBByLocationParameters) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasEnvironmentId

func (o *ProvisionVDBByLocationParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasEnvironmentUserId

func (o *ProvisionVDBByLocationParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasFileMappingRules

func (o *ProvisionVDBByLocationParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasListenerIds

func (o *ProvisionVDBByLocationParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasLocation

func (o *ProvisionVDBByLocationParameters) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasMountPoint

func (o *ProvisionVDBByLocationParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasMssqlFailoverDriveLetter

func (o *ProvisionVDBByLocationParameters) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasName

HasName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasNewDbid

func (o *ProvisionVDBByLocationParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOnlineLogGroups

func (o *ProvisionVDBByLocationParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOnlineLogSize

func (o *ProvisionVDBByLocationParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOpenResetLogs

func (o *ProvisionVDBByLocationParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOracleInstanceName

func (o *ProvisionVDBByLocationParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOracleRacCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOracleRacCustomEnvVars

func (o *ProvisionVDBByLocationParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOsPassword

func (o *ProvisionVDBByLocationParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasOsUsername

func (o *ProvisionVDBByLocationParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasParentTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasParentTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostRefresh

func (o *ProvisionVDBByLocationParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostRollback

func (o *ProvisionVDBByLocationParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostScript

func (o *ProvisionVDBByLocationParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostSelfRefresh

func (o *ProvisionVDBByLocationParameters) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostSnapshot

func (o *ProvisionVDBByLocationParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostStart

func (o *ProvisionVDBByLocationParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostStop

func (o *ProvisionVDBByLocationParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPostgresPort

func (o *ProvisionVDBByLocationParameters) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreRefresh

func (o *ProvisionVDBByLocationParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreRollback

func (o *ProvisionVDBByLocationParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreScript

func (o *ProvisionVDBByLocationParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreSelfRefresh

func (o *ProvisionVDBByLocationParameters) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreSnapshot

func (o *ProvisionVDBByLocationParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreStart

func (o *ProvisionVDBByLocationParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPreStop

func (o *ProvisionVDBByLocationParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasPrivilegedOsUser

func (o *ProvisionVDBByLocationParameters) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasRecoveryModel

func (o *ProvisionVDBByLocationParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasRepositoryId

func (o *ProvisionVDBByLocationParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasRetentionPolicyId

func (o *ProvisionVDBByLocationParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasSnapshotPolicyId

func (o *ProvisionVDBByLocationParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasSourceDataId

func (o *ProvisionVDBByLocationParameters) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTags

HasTags returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTargetGroupId

func (o *ProvisionVDBByLocationParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTdeExportedKeyFileSecret

func (o *ProvisionVDBByLocationParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTemplateId

func (o *ProvisionVDBByLocationParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTimeflowId

func (o *ProvisionVDBByLocationParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasTruncateLogOnCheckpoint

func (o *ProvisionVDBByLocationParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasUniqueName

func (o *ProvisionVDBByLocationParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasVcdbDatabaseName

func (o *ProvisionVDBByLocationParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasVcdbName

func (o *ProvisionVDBByLocationParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasVcdbRestart

func (o *ProvisionVDBByLocationParameters) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasVcdbTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParameters) HasVdbRestart

func (o *ProvisionVDBByLocationParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (ProvisionVDBByLocationParameters) MarshalJSON

func (o ProvisionVDBByLocationParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByLocationParameters) SetAdditionalMountPoints

func (o *ProvisionVDBByLocationParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBByLocationParameters) SetAppdataConfigParams

func (o *ProvisionVDBByLocationParameters) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*ProvisionVDBByLocationParameters) SetAppdataSourceParams

func (o *ProvisionVDBByLocationParameters) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*ProvisionVDBByLocationParameters) SetArchiveLog

func (o *ProvisionVDBByLocationParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*ProvisionVDBByLocationParameters) SetAutoSelectRepository

func (o *ProvisionVDBByLocationParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*ProvisionVDBByLocationParameters) SetAuxiliaryTemplateId

func (o *ProvisionVDBByLocationParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBByLocationParameters) SetCdbId

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBByLocationParameters) SetCdbTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*ProvisionVDBByLocationParameters) SetCdcOnProvision

func (o *ProvisionVDBByLocationParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*ProvisionVDBByLocationParameters) SetClusterNodeIds

func (o *ProvisionVDBByLocationParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBByLocationParameters) SetClusterNodeInstances

func (o *ProvisionVDBByLocationParameters) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*ProvisionVDBByLocationParameters) SetConfigParams

func (o *ProvisionVDBByLocationParameters) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*ProvisionVDBByLocationParameters) SetConfigSettingsStg

func (o *ProvisionVDBByLocationParameters) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*ProvisionVDBByLocationParameters) SetConfigureClone

func (o *ProvisionVDBByLocationParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*ProvisionVDBByLocationParameters) SetCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*ProvisionVDBByLocationParameters) SetCustomEnvVars

func (o *ProvisionVDBByLocationParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*ProvisionVDBByLocationParameters) SetDatabaseName

func (o *ProvisionVDBByLocationParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ProvisionVDBByLocationParameters) SetEngineId

func (o *ProvisionVDBByLocationParameters) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByLocationParameters) SetEnvironmentId

func (o *ProvisionVDBByLocationParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*ProvisionVDBByLocationParameters) SetEnvironmentUserId

func (o *ProvisionVDBByLocationParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*ProvisionVDBByLocationParameters) SetFileMappingRules

func (o *ProvisionVDBByLocationParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*ProvisionVDBByLocationParameters) SetListenerIds

func (o *ProvisionVDBByLocationParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*ProvisionVDBByLocationParameters) SetLocation

func (o *ProvisionVDBByLocationParameters) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*ProvisionVDBByLocationParameters) SetMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBByLocationParameters) SetMountPoint

func (o *ProvisionVDBByLocationParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*ProvisionVDBByLocationParameters) SetMssqlFailoverDriveLetter

func (o *ProvisionVDBByLocationParameters) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*ProvisionVDBByLocationParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProvisionVDBByLocationParameters) SetNewDbid

func (o *ProvisionVDBByLocationParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*ProvisionVDBByLocationParameters) SetOnlineLogGroups

func (o *ProvisionVDBByLocationParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*ProvisionVDBByLocationParameters) SetOnlineLogSize

func (o *ProvisionVDBByLocationParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*ProvisionVDBByLocationParameters) SetOpenResetLogs

func (o *ProvisionVDBByLocationParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*ProvisionVDBByLocationParameters) SetOracleInstanceName

func (o *ProvisionVDBByLocationParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*ProvisionVDBByLocationParameters) SetOracleRacCustomEnvFiles

func (o *ProvisionVDBByLocationParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBByLocationParameters) SetOracleRacCustomEnvVars

func (o *ProvisionVDBByLocationParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBByLocationParameters) SetOsPassword

func (o *ProvisionVDBByLocationParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBByLocationParameters) SetOsUsername

func (o *ProvisionVDBByLocationParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBByLocationParameters) SetParentTdeKeystorePassword

func (o *ProvisionVDBByLocationParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBByLocationParameters) SetParentTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*ProvisionVDBByLocationParameters) SetPostRefresh

func (o *ProvisionVDBByLocationParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*ProvisionVDBByLocationParameters) SetPostRollback

func (o *ProvisionVDBByLocationParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*ProvisionVDBByLocationParameters) SetPostScript

func (o *ProvisionVDBByLocationParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*ProvisionVDBByLocationParameters) SetPostSelfRefresh

func (o *ProvisionVDBByLocationParameters) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*ProvisionVDBByLocationParameters) SetPostSnapshot

func (o *ProvisionVDBByLocationParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*ProvisionVDBByLocationParameters) SetPostStart

func (o *ProvisionVDBByLocationParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*ProvisionVDBByLocationParameters) SetPostStop

func (o *ProvisionVDBByLocationParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*ProvisionVDBByLocationParameters) SetPostgresPort

func (o *ProvisionVDBByLocationParameters) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*ProvisionVDBByLocationParameters) SetPreRefresh

func (o *ProvisionVDBByLocationParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*ProvisionVDBByLocationParameters) SetPreRollback

func (o *ProvisionVDBByLocationParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*ProvisionVDBByLocationParameters) SetPreScript

func (o *ProvisionVDBByLocationParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*ProvisionVDBByLocationParameters) SetPreSelfRefresh

func (o *ProvisionVDBByLocationParameters) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*ProvisionVDBByLocationParameters) SetPreSnapshot

func (o *ProvisionVDBByLocationParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*ProvisionVDBByLocationParameters) SetPreStart

func (o *ProvisionVDBByLocationParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*ProvisionVDBByLocationParameters) SetPreStop

func (o *ProvisionVDBByLocationParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*ProvisionVDBByLocationParameters) SetPrivilegedOsUser

func (o *ProvisionVDBByLocationParameters) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*ProvisionVDBByLocationParameters) SetRecoveryModel

func (o *ProvisionVDBByLocationParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*ProvisionVDBByLocationParameters) SetRepositoryId

func (o *ProvisionVDBByLocationParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*ProvisionVDBByLocationParameters) SetRetentionPolicyId

func (o *ProvisionVDBByLocationParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*ProvisionVDBByLocationParameters) SetSnapshotPolicyId

func (o *ProvisionVDBByLocationParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*ProvisionVDBByLocationParameters) SetSourceDataId

func (o *ProvisionVDBByLocationParameters) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (*ProvisionVDBByLocationParameters) SetTags

func (o *ProvisionVDBByLocationParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ProvisionVDBByLocationParameters) SetTargetGroupId

func (o *ProvisionVDBByLocationParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*ProvisionVDBByLocationParameters) SetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByLocationParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBByLocationParameters) SetTdeExportedKeyFileSecret

func (o *ProvisionVDBByLocationParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBByLocationParameters) SetTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*ProvisionVDBByLocationParameters) SetTemplateId

func (o *ProvisionVDBByLocationParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*ProvisionVDBByLocationParameters) SetTimeflowId

func (o *ProvisionVDBByLocationParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*ProvisionVDBByLocationParameters) SetTruncateLogOnCheckpoint

func (o *ProvisionVDBByLocationParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*ProvisionVDBByLocationParameters) SetUniqueName

func (o *ProvisionVDBByLocationParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*ProvisionVDBByLocationParameters) SetVcdbDatabaseName

func (o *ProvisionVDBByLocationParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBByLocationParameters) SetVcdbName

func (o *ProvisionVDBByLocationParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBByLocationParameters) SetVcdbRestart

func (o *ProvisionVDBByLocationParameters) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*ProvisionVDBByLocationParameters) SetVcdbTdeKeyIdentifier

func (o *ProvisionVDBByLocationParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*ProvisionVDBByLocationParameters) SetVdbRestart

func (o *ProvisionVDBByLocationParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (ProvisionVDBByLocationParameters) ToMap

func (o ProvisionVDBByLocationParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBByLocationParametersAllOf

type ProvisionVDBByLocationParametersAllOf struct {
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBByLocationParametersAllOf struct for ProvisionVDBByLocationParametersAllOf

func NewProvisionVDBByLocationParametersAllOf

func NewProvisionVDBByLocationParametersAllOf() *ProvisionVDBByLocationParametersAllOf

NewProvisionVDBByLocationParametersAllOf instantiates a new ProvisionVDBByLocationParametersAllOf 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 NewProvisionVDBByLocationParametersAllOfWithDefaults

func NewProvisionVDBByLocationParametersAllOfWithDefaults() *ProvisionVDBByLocationParametersAllOf

NewProvisionVDBByLocationParametersAllOfWithDefaults instantiates a new ProvisionVDBByLocationParametersAllOf 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 (*ProvisionVDBByLocationParametersAllOf) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParametersAllOf) GetEngineIdOk

func (o *ProvisionVDBByLocationParametersAllOf) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParametersAllOf) GetMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParametersAllOf) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBByLocationParametersAllOf) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParametersAllOf) GetSourceDataId

func (o *ProvisionVDBByLocationParametersAllOf) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBByLocationParametersAllOf) GetSourceDataIdOk

func (o *ProvisionVDBByLocationParametersAllOf) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByLocationParametersAllOf) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParametersAllOf) HasMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBByLocationParametersAllOf) HasSourceDataId

func (o *ProvisionVDBByLocationParametersAllOf) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (ProvisionVDBByLocationParametersAllOf) MarshalJSON

func (o ProvisionVDBByLocationParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByLocationParametersAllOf) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByLocationParametersAllOf) SetMakeCurrentAccountOwner

func (o *ProvisionVDBByLocationParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBByLocationParametersAllOf) SetSourceDataId

func (o *ProvisionVDBByLocationParametersAllOf) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (ProvisionVDBByLocationParametersAllOf) ToMap

func (o ProvisionVDBByLocationParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBBySnapshotDefaultsRequest

type ProvisionVDBBySnapshotDefaultsRequest struct {
	// The ID of the snapshot from which to execute the operation.
	SnapshotId *string `json:"snapshot_id,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. If this property is not set, the data_source of the snapshot_id will be used.
	SourceDataId *string `json:"source_data_id,omitempty"`
}

ProvisionVDBBySnapshotDefaultsRequest struct for ProvisionVDBBySnapshotDefaultsRequest

func NewProvisionVDBBySnapshotDefaultsRequest

func NewProvisionVDBBySnapshotDefaultsRequest() *ProvisionVDBBySnapshotDefaultsRequest

NewProvisionVDBBySnapshotDefaultsRequest instantiates a new ProvisionVDBBySnapshotDefaultsRequest 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 NewProvisionVDBBySnapshotDefaultsRequestWithDefaults

func NewProvisionVDBBySnapshotDefaultsRequestWithDefaults() *ProvisionVDBBySnapshotDefaultsRequest

NewProvisionVDBBySnapshotDefaultsRequestWithDefaults instantiates a new ProvisionVDBBySnapshotDefaultsRequest 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 (*ProvisionVDBBySnapshotDefaultsRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetEngineIdOk

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotId

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotIdOk

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotIdOk() (*string, bool)

GetSnapshotIdOk returns a tuple with the SnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataId

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataIdOk

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) HasSnapshotId

func (o *ProvisionVDBBySnapshotDefaultsRequest) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) HasSourceDataId

func (o *ProvisionVDBBySnapshotDefaultsRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (ProvisionVDBBySnapshotDefaultsRequest) MarshalJSON

func (o ProvisionVDBBySnapshotDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBBySnapshotDefaultsRequest) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBBySnapshotDefaultsRequest) SetSnapshotId

func (o *ProvisionVDBBySnapshotDefaultsRequest) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (*ProvisionVDBBySnapshotDefaultsRequest) SetSourceDataId

func (o *ProvisionVDBBySnapshotDefaultsRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (ProvisionVDBBySnapshotDefaultsRequest) ToMap

func (o ProvisionVDBBySnapshotDefaultsRequest) ToMap() (map[string]interface{}, error)

type ProvisionVDBBySnapshotParameters

type ProvisionVDBBySnapshotParameters struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
	// The ID of the snapshot from which to execute the operation. If the snapshot_id is not, selects the latest snapshot.
	SnapshotId *string `json:"snapshot_id,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source. If this property is not set, the data_source of the snapshot_id will be used.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBBySnapshotParameters struct for ProvisionVDBBySnapshotParameters

func NewProvisionVDBBySnapshotParameters

func NewProvisionVDBBySnapshotParameters() *ProvisionVDBBySnapshotParameters

NewProvisionVDBBySnapshotParameters instantiates a new ProvisionVDBBySnapshotParameters 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 NewProvisionVDBBySnapshotParametersWithDefaults

func NewProvisionVDBBySnapshotParametersWithDefaults() *ProvisionVDBBySnapshotParameters

NewProvisionVDBBySnapshotParametersWithDefaults instantiates a new ProvisionVDBBySnapshotParameters 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 (*ProvisionVDBBySnapshotParameters) GetAdditionalMountPoints

func (o *ProvisionVDBBySnapshotParameters) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBBySnapshotParameters) GetAdditionalMountPointsOk

func (o *ProvisionVDBBySnapshotParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBBySnapshotParameters) GetAppdataConfigParams

func (o *ProvisionVDBBySnapshotParameters) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBBySnapshotParameters) GetAppdataConfigParamsOk

func (o *ProvisionVDBBySnapshotParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBBySnapshotParameters) GetAppdataSourceParams

func (o *ProvisionVDBBySnapshotParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetAppdataSourceParamsOk

func (o *ProvisionVDBBySnapshotParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetArchiveLog

func (o *ProvisionVDBBySnapshotParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetArchiveLogOk

func (o *ProvisionVDBBySnapshotParameters) GetArchiveLogOk() (*bool, bool)

GetArchiveLogOk returns a tuple with the ArchiveLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetAutoSelectRepository

func (o *ProvisionVDBBySnapshotParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetAutoSelectRepositoryOk

func (o *ProvisionVDBBySnapshotParameters) GetAutoSelectRepositoryOk() (*bool, bool)

GetAutoSelectRepositoryOk returns a tuple with the AutoSelectRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateId

func (o *ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateIdOk

func (o *ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateIdOk() (*string, bool)

GetAuxiliaryTemplateIdOk returns a tuple with the AuxiliaryTemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetCdbId

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCdbIdOk

func (o *ProvisionVDBBySnapshotParameters) GetCdbIdOk() (*string, bool)

GetCdbIdOk returns a tuple with the CdbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePasswordOk

func (o *ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

GetCdbTdeKeystorePasswordOk returns a tuple with the CdbTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetCdcOnProvision

func (o *ProvisionVDBBySnapshotParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCdcOnProvisionOk

func (o *ProvisionVDBBySnapshotParameters) GetCdcOnProvisionOk() (*bool, bool)

GetCdcOnProvisionOk returns a tuple with the CdcOnProvision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetClusterNodeIds

func (o *ProvisionVDBBySnapshotParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetClusterNodeIdsOk

func (o *ProvisionVDBBySnapshotParameters) GetClusterNodeIdsOk() ([]string, bool)

GetClusterNodeIdsOk returns a tuple with the ClusterNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetClusterNodeInstances

func (o *ProvisionVDBBySnapshotParameters) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetClusterNodeInstancesOk

func (o *ProvisionVDBBySnapshotParameters) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

GetClusterNodeInstancesOk returns a tuple with the ClusterNodeInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetConfigParams

func (o *ProvisionVDBBySnapshotParameters) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBBySnapshotParameters) GetConfigParamsOk

func (o *ProvisionVDBBySnapshotParameters) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBBySnapshotParameters) GetConfigSettingsStg

func (o *ProvisionVDBBySnapshotParameters) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetConfigSettingsStgOk

func (o *ProvisionVDBBySnapshotParameters) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

GetConfigSettingsStgOk returns a tuple with the ConfigSettingsStg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetConfigureClone

func (o *ProvisionVDBBySnapshotParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetConfigureCloneOk

func (o *ProvisionVDBBySnapshotParameters) GetConfigureCloneOk() ([]Hook, bool)

GetConfigureCloneOk returns a tuple with the ConfigureClone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCustomEnvFilesOk

func (o *ProvisionVDBBySnapshotParameters) GetCustomEnvFilesOk() ([]string, bool)

GetCustomEnvFilesOk returns a tuple with the CustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCustomEnvVarsOk

func (o *ProvisionVDBBySnapshotParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

GetCustomEnvVarsOk returns a tuple with the CustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetDatabaseName

func (o *ProvisionVDBBySnapshotParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetDatabaseNameOk

func (o *ProvisionVDBBySnapshotParameters) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetEngineId

func (o *ProvisionVDBBySnapshotParameters) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetEngineIdOk

func (o *ProvisionVDBBySnapshotParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetEnvironmentId

func (o *ProvisionVDBBySnapshotParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetEnvironmentIdOk

func (o *ProvisionVDBBySnapshotParameters) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetEnvironmentUserId

func (o *ProvisionVDBBySnapshotParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetEnvironmentUserIdOk

func (o *ProvisionVDBBySnapshotParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetFileMappingRules

func (o *ProvisionVDBBySnapshotParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetFileMappingRulesOk

func (o *ProvisionVDBBySnapshotParameters) GetFileMappingRulesOk() (*string, bool)

GetFileMappingRulesOk returns a tuple with the FileMappingRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetListenerIds

func (o *ProvisionVDBBySnapshotParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetListenerIdsOk

func (o *ProvisionVDBBySnapshotParameters) GetListenerIdsOk() ([]string, bool)

GetListenerIdsOk returns a tuple with the ListenerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetMountPoint

func (o *ProvisionVDBBySnapshotParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetMountPointOk

func (o *ProvisionVDBBySnapshotParameters) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetMssqlFailoverDriveLetter

func (o *ProvisionVDBBySnapshotParameters) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetMssqlFailoverDriveLetterOk

func (o *ProvisionVDBBySnapshotParameters) GetMssqlFailoverDriveLetterOk() (*string, bool)

GetMssqlFailoverDriveLetterOk returns a tuple with the MssqlFailoverDriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetNameOk

func (o *ProvisionVDBBySnapshotParameters) 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.

func (*ProvisionVDBBySnapshotParameters) GetNewDbid

func (o *ProvisionVDBBySnapshotParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetNewDbidOk

func (o *ProvisionVDBBySnapshotParameters) GetNewDbidOk() (*bool, bool)

GetNewDbidOk returns a tuple with the NewDbid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOnlineLogGroups

func (o *ProvisionVDBBySnapshotParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOnlineLogGroupsOk

func (o *ProvisionVDBBySnapshotParameters) GetOnlineLogGroupsOk() (*int32, bool)

GetOnlineLogGroupsOk returns a tuple with the OnlineLogGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOnlineLogSize

func (o *ProvisionVDBBySnapshotParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOnlineLogSizeOk

func (o *ProvisionVDBBySnapshotParameters) GetOnlineLogSizeOk() (*int32, bool)

GetOnlineLogSizeOk returns a tuple with the OnlineLogSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOpenResetLogs

func (o *ProvisionVDBBySnapshotParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOpenResetLogsOk

func (o *ProvisionVDBBySnapshotParameters) GetOpenResetLogsOk() (*bool, bool)

GetOpenResetLogsOk returns a tuple with the OpenResetLogs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOracleInstanceName

func (o *ProvisionVDBBySnapshotParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOracleInstanceNameOk

func (o *ProvisionVDBBySnapshotParameters) GetOracleInstanceNameOk() (*string, bool)

GetOracleInstanceNameOk returns a tuple with the OracleInstanceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFilesOk

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

GetOracleRacCustomEnvFilesOk returns a tuple with the OracleRacCustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVarsOk

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

GetOracleRacCustomEnvVarsOk returns a tuple with the OracleRacCustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOsPassword

func (o *ProvisionVDBBySnapshotParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOsPasswordOk

func (o *ProvisionVDBBySnapshotParameters) GetOsPasswordOk() (*string, bool)

GetOsPasswordOk returns a tuple with the OsPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetOsUsername

func (o *ProvisionVDBBySnapshotParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOsUsernameOk

func (o *ProvisionVDBBySnapshotParameters) GetOsUsernameOk() (*string, bool)

GetOsUsernameOk returns a tuple with the OsUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePasswordOk

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

GetParentTdeKeystorePasswordOk returns a tuple with the ParentTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePathOk

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePathOk() (*string, bool)

GetParentTdeKeystorePathOk returns a tuple with the ParentTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostRefresh

func (o *ProvisionVDBBySnapshotParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostRefreshOk

func (o *ProvisionVDBBySnapshotParameters) GetPostRefreshOk() ([]Hook, bool)

GetPostRefreshOk returns a tuple with the PostRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostRollback

func (o *ProvisionVDBBySnapshotParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBBySnapshotParameters) GetPostRollbackOk

func (o *ProvisionVDBBySnapshotParameters) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBBySnapshotParameters) GetPostScript

func (o *ProvisionVDBBySnapshotParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostScriptOk

func (o *ProvisionVDBBySnapshotParameters) GetPostScriptOk() (*string, bool)

GetPostScriptOk returns a tuple with the PostScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostSelfRefreshOk

func (o *ProvisionVDBBySnapshotParameters) GetPostSelfRefreshOk() ([]Hook, bool)

GetPostSelfRefreshOk returns a tuple with the PostSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostSnapshot

func (o *ProvisionVDBBySnapshotParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostSnapshotOk

func (o *ProvisionVDBBySnapshotParameters) GetPostSnapshotOk() ([]Hook, bool)

GetPostSnapshotOk returns a tuple with the PostSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostStart

func (o *ProvisionVDBBySnapshotParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostStartOk

func (o *ProvisionVDBBySnapshotParameters) GetPostStartOk() ([]Hook, bool)

GetPostStartOk returns a tuple with the PostStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostStop

func (o *ProvisionVDBBySnapshotParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostStopOk

func (o *ProvisionVDBBySnapshotParameters) GetPostStopOk() ([]Hook, bool)

GetPostStopOk returns a tuple with the PostStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPostgresPort

func (o *ProvisionVDBBySnapshotParameters) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPostgresPortOk

func (o *ProvisionVDBBySnapshotParameters) GetPostgresPortOk() (*int32, bool)

GetPostgresPortOk returns a tuple with the PostgresPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreRefresh

func (o *ProvisionVDBBySnapshotParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreRefreshOk

func (o *ProvisionVDBBySnapshotParameters) GetPreRefreshOk() ([]Hook, bool)

GetPreRefreshOk returns a tuple with the PreRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreRollback

func (o *ProvisionVDBBySnapshotParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBBySnapshotParameters) GetPreRollbackOk

func (o *ProvisionVDBBySnapshotParameters) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBBySnapshotParameters) GetPreScript

func (o *ProvisionVDBBySnapshotParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreScriptOk

func (o *ProvisionVDBBySnapshotParameters) GetPreScriptOk() (*string, bool)

GetPreScriptOk returns a tuple with the PreScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreSelfRefreshOk

func (o *ProvisionVDBBySnapshotParameters) GetPreSelfRefreshOk() ([]Hook, bool)

GetPreSelfRefreshOk returns a tuple with the PreSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreSnapshot

func (o *ProvisionVDBBySnapshotParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreSnapshotOk

func (o *ProvisionVDBBySnapshotParameters) GetPreSnapshotOk() ([]Hook, bool)

GetPreSnapshotOk returns a tuple with the PreSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreStart

func (o *ProvisionVDBBySnapshotParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreStartOk

func (o *ProvisionVDBBySnapshotParameters) GetPreStartOk() ([]Hook, bool)

GetPreStartOk returns a tuple with the PreStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPreStop

func (o *ProvisionVDBBySnapshotParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPreStopOk

func (o *ProvisionVDBBySnapshotParameters) GetPreStopOk() ([]Hook, bool)

GetPreStopOk returns a tuple with the PreStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetPrivilegedOsUser

func (o *ProvisionVDBBySnapshotParameters) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetPrivilegedOsUserOk

func (o *ProvisionVDBBySnapshotParameters) GetPrivilegedOsUserOk() (*string, bool)

GetPrivilegedOsUserOk returns a tuple with the PrivilegedOsUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetRecoveryModel

func (o *ProvisionVDBBySnapshotParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetRecoveryModelOk

func (o *ProvisionVDBBySnapshotParameters) GetRecoveryModelOk() (*string, bool)

GetRecoveryModelOk returns a tuple with the RecoveryModel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetRepositoryId

func (o *ProvisionVDBBySnapshotParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetRepositoryIdOk

func (o *ProvisionVDBBySnapshotParameters) GetRepositoryIdOk() (*string, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetRetentionPolicyId

func (o *ProvisionVDBBySnapshotParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetRetentionPolicyIdOk

func (o *ProvisionVDBBySnapshotParameters) GetRetentionPolicyIdOk() (*string, bool)

GetRetentionPolicyIdOk returns a tuple with the RetentionPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetSnapshotId

func (o *ProvisionVDBBySnapshotParameters) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetSnapshotIdOk

func (o *ProvisionVDBBySnapshotParameters) GetSnapshotIdOk() (*string, bool)

GetSnapshotIdOk returns a tuple with the SnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetSnapshotPolicyId

func (o *ProvisionVDBBySnapshotParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetSnapshotPolicyIdOk

func (o *ProvisionVDBBySnapshotParameters) GetSnapshotPolicyIdOk() (*string, bool)

GetSnapshotPolicyIdOk returns a tuple with the SnapshotPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetSourceDataId

func (o *ProvisionVDBBySnapshotParameters) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetSourceDataIdOk

func (o *ProvisionVDBBySnapshotParameters) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTags

func (o *ProvisionVDBBySnapshotParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTagsOk

func (o *ProvisionVDBBySnapshotParameters) 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.

func (*ProvisionVDBBySnapshotParameters) GetTargetGroupId

func (o *ProvisionVDBBySnapshotParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTargetGroupIdOk

func (o *ProvisionVDBBySnapshotParameters) GetTargetGroupIdOk() (*string, bool)

GetTargetGroupIdOk returns a tuple with the TargetGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePathOk

func (o *ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

GetTargetVcdbTdeKeystorePathOk returns a tuple with the TargetVcdbTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecret

func (o *ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecretOk

func (o *ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecretOk() (*string, bool)

GetTdeExportedKeyFileSecretOk returns a tuple with the TdeExportedKeyFileSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifierOk

func (o *ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifierOk() (*string, bool)

GetTdeKeyIdentifierOk returns a tuple with the TdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTemplateId

func (o *ProvisionVDBBySnapshotParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTemplateIdOk

func (o *ProvisionVDBBySnapshotParameters) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetTruncateLogOnCheckpoint

func (o *ProvisionVDBBySnapshotParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTruncateLogOnCheckpointOk

func (o *ProvisionVDBBySnapshotParameters) GetTruncateLogOnCheckpointOk() (*bool, bool)

GetTruncateLogOnCheckpointOk returns a tuple with the TruncateLogOnCheckpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetUniqueName

func (o *ProvisionVDBBySnapshotParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetUniqueNameOk

func (o *ProvisionVDBBySnapshotParameters) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetVcdbDatabaseName

func (o *ProvisionVDBBySnapshotParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbDatabaseNameOk

func (o *ProvisionVDBBySnapshotParameters) GetVcdbDatabaseNameOk() (*string, bool)

GetVcdbDatabaseNameOk returns a tuple with the VcdbDatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetVcdbName

func (o *ProvisionVDBBySnapshotParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbNameOk

func (o *ProvisionVDBBySnapshotParameters) GetVcdbNameOk() (*string, bool)

GetVcdbNameOk returns a tuple with the VcdbName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetVcdbRestart

func (o *ProvisionVDBBySnapshotParameters) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbRestartOk

func (o *ProvisionVDBBySnapshotParameters) GetVcdbRestartOk() (*bool, bool)

GetVcdbRestartOk returns a tuple with the VcdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifierOk

func (o *ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifierOk() (*string, bool)

GetVcdbTdeKeyIdentifierOk returns a tuple with the VcdbTdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) GetVdbRestart

func (o *ProvisionVDBBySnapshotParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVdbRestartOk

func (o *ProvisionVDBBySnapshotParameters) GetVdbRestartOk() (*bool, bool)

GetVdbRestartOk returns a tuple with the VdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParameters) HasAdditionalMountPoints

func (o *ProvisionVDBBySnapshotParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAppdataConfigParams

func (o *ProvisionVDBBySnapshotParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAppdataSourceParams

func (o *ProvisionVDBBySnapshotParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasArchiveLog

func (o *ProvisionVDBBySnapshotParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAutoSelectRepository

func (o *ProvisionVDBBySnapshotParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAuxiliaryTemplateId

func (o *ProvisionVDBBySnapshotParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCdbId

func (o *ProvisionVDBBySnapshotParameters) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCdbTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCdcOnProvision

func (o *ProvisionVDBBySnapshotParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasClusterNodeIds

func (o *ProvisionVDBBySnapshotParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasClusterNodeInstances

func (o *ProvisionVDBBySnapshotParameters) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasConfigParams

func (o *ProvisionVDBBySnapshotParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasConfigSettingsStg

func (o *ProvisionVDBBySnapshotParameters) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasConfigureClone

func (o *ProvisionVDBBySnapshotParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasDatabaseName

func (o *ProvisionVDBBySnapshotParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasEngineId

func (o *ProvisionVDBBySnapshotParameters) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasEnvironmentId

func (o *ProvisionVDBBySnapshotParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasEnvironmentUserId

func (o *ProvisionVDBBySnapshotParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasFileMappingRules

func (o *ProvisionVDBBySnapshotParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasListenerIds

func (o *ProvisionVDBBySnapshotParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasMountPoint

func (o *ProvisionVDBBySnapshotParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasMssqlFailoverDriveLetter

func (o *ProvisionVDBBySnapshotParameters) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasName

HasName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasNewDbid

func (o *ProvisionVDBBySnapshotParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOnlineLogGroups

func (o *ProvisionVDBBySnapshotParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOnlineLogSize

func (o *ProvisionVDBBySnapshotParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOpenResetLogs

func (o *ProvisionVDBBySnapshotParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOracleInstanceName

func (o *ProvisionVDBBySnapshotParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOsPassword

func (o *ProvisionVDBBySnapshotParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOsUsername

func (o *ProvisionVDBBySnapshotParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostRefresh

func (o *ProvisionVDBBySnapshotParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostRollback

func (o *ProvisionVDBBySnapshotParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostScript

func (o *ProvisionVDBBySnapshotParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostSnapshot

func (o *ProvisionVDBBySnapshotParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostStart

func (o *ProvisionVDBBySnapshotParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostStop

func (o *ProvisionVDBBySnapshotParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPostgresPort

func (o *ProvisionVDBBySnapshotParameters) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreRefresh

func (o *ProvisionVDBBySnapshotParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreRollback

func (o *ProvisionVDBBySnapshotParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreScript

func (o *ProvisionVDBBySnapshotParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreSnapshot

func (o *ProvisionVDBBySnapshotParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreStart

func (o *ProvisionVDBBySnapshotParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPreStop

func (o *ProvisionVDBBySnapshotParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasPrivilegedOsUser

func (o *ProvisionVDBBySnapshotParameters) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasRecoveryModel

func (o *ProvisionVDBBySnapshotParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasRepositoryId

func (o *ProvisionVDBBySnapshotParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasRetentionPolicyId

func (o *ProvisionVDBBySnapshotParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasSnapshotId

func (o *ProvisionVDBBySnapshotParameters) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasSnapshotPolicyId

func (o *ProvisionVDBBySnapshotParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasSourceDataId

func (o *ProvisionVDBBySnapshotParameters) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTags

HasTags returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTargetGroupId

func (o *ProvisionVDBBySnapshotParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTargetVcdbTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTdeExportedKeyFileSecret

func (o *ProvisionVDBBySnapshotParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTemplateId

func (o *ProvisionVDBBySnapshotParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTruncateLogOnCheckpoint

func (o *ProvisionVDBBySnapshotParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasUniqueName

func (o *ProvisionVDBBySnapshotParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbDatabaseName

func (o *ProvisionVDBBySnapshotParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbName

func (o *ProvisionVDBBySnapshotParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbRestart

func (o *ProvisionVDBBySnapshotParameters) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVdbRestart

func (o *ProvisionVDBBySnapshotParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (ProvisionVDBBySnapshotParameters) MarshalJSON

func (o ProvisionVDBBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBBySnapshotParameters) SetAdditionalMountPoints

func (o *ProvisionVDBBySnapshotParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBBySnapshotParameters) SetAppdataConfigParams

func (o *ProvisionVDBBySnapshotParameters) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*ProvisionVDBBySnapshotParameters) SetAppdataSourceParams

func (o *ProvisionVDBBySnapshotParameters) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*ProvisionVDBBySnapshotParameters) SetArchiveLog

func (o *ProvisionVDBBySnapshotParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*ProvisionVDBBySnapshotParameters) SetAutoSelectRepository

func (o *ProvisionVDBBySnapshotParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*ProvisionVDBBySnapshotParameters) SetAuxiliaryTemplateId

func (o *ProvisionVDBBySnapshotParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBBySnapshotParameters) SetCdbId

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBBySnapshotParameters) SetCdbTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*ProvisionVDBBySnapshotParameters) SetCdcOnProvision

func (o *ProvisionVDBBySnapshotParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*ProvisionVDBBySnapshotParameters) SetClusterNodeIds

func (o *ProvisionVDBBySnapshotParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBBySnapshotParameters) SetClusterNodeInstances

func (o *ProvisionVDBBySnapshotParameters) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*ProvisionVDBBySnapshotParameters) SetConfigParams

func (o *ProvisionVDBBySnapshotParameters) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*ProvisionVDBBySnapshotParameters) SetConfigSettingsStg

func (o *ProvisionVDBBySnapshotParameters) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*ProvisionVDBBySnapshotParameters) SetConfigureClone

func (o *ProvisionVDBBySnapshotParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*ProvisionVDBBySnapshotParameters) SetCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*ProvisionVDBBySnapshotParameters) SetCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*ProvisionVDBBySnapshotParameters) SetDatabaseName

func (o *ProvisionVDBBySnapshotParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ProvisionVDBBySnapshotParameters) SetEngineId

func (o *ProvisionVDBBySnapshotParameters) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBBySnapshotParameters) SetEnvironmentId

func (o *ProvisionVDBBySnapshotParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*ProvisionVDBBySnapshotParameters) SetEnvironmentUserId

func (o *ProvisionVDBBySnapshotParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*ProvisionVDBBySnapshotParameters) SetFileMappingRules

func (o *ProvisionVDBBySnapshotParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*ProvisionVDBBySnapshotParameters) SetListenerIds

func (o *ProvisionVDBBySnapshotParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*ProvisionVDBBySnapshotParameters) SetMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBBySnapshotParameters) SetMountPoint

func (o *ProvisionVDBBySnapshotParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*ProvisionVDBBySnapshotParameters) SetMssqlFailoverDriveLetter

func (o *ProvisionVDBBySnapshotParameters) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*ProvisionVDBBySnapshotParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProvisionVDBBySnapshotParameters) SetNewDbid

func (o *ProvisionVDBBySnapshotParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*ProvisionVDBBySnapshotParameters) SetOnlineLogGroups

func (o *ProvisionVDBBySnapshotParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*ProvisionVDBBySnapshotParameters) SetOnlineLogSize

func (o *ProvisionVDBBySnapshotParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*ProvisionVDBBySnapshotParameters) SetOpenResetLogs

func (o *ProvisionVDBBySnapshotParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*ProvisionVDBBySnapshotParameters) SetOracleInstanceName

func (o *ProvisionVDBBySnapshotParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvFiles

func (o *ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvVars

func (o *ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBBySnapshotParameters) SetOsPassword

func (o *ProvisionVDBBySnapshotParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBBySnapshotParameters) SetOsUsername

func (o *ProvisionVDBBySnapshotParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePassword

func (o *ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*ProvisionVDBBySnapshotParameters) SetPostRefresh

func (o *ProvisionVDBBySnapshotParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*ProvisionVDBBySnapshotParameters) SetPostRollback

func (o *ProvisionVDBBySnapshotParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*ProvisionVDBBySnapshotParameters) SetPostScript

func (o *ProvisionVDBBySnapshotParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*ProvisionVDBBySnapshotParameters) SetPostSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*ProvisionVDBBySnapshotParameters) SetPostSnapshot

func (o *ProvisionVDBBySnapshotParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*ProvisionVDBBySnapshotParameters) SetPostStart

func (o *ProvisionVDBBySnapshotParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*ProvisionVDBBySnapshotParameters) SetPostStop

func (o *ProvisionVDBBySnapshotParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*ProvisionVDBBySnapshotParameters) SetPostgresPort

func (o *ProvisionVDBBySnapshotParameters) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*ProvisionVDBBySnapshotParameters) SetPreRefresh

func (o *ProvisionVDBBySnapshotParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*ProvisionVDBBySnapshotParameters) SetPreRollback

func (o *ProvisionVDBBySnapshotParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*ProvisionVDBBySnapshotParameters) SetPreScript

func (o *ProvisionVDBBySnapshotParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*ProvisionVDBBySnapshotParameters) SetPreSelfRefresh

func (o *ProvisionVDBBySnapshotParameters) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*ProvisionVDBBySnapshotParameters) SetPreSnapshot

func (o *ProvisionVDBBySnapshotParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*ProvisionVDBBySnapshotParameters) SetPreStart

func (o *ProvisionVDBBySnapshotParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*ProvisionVDBBySnapshotParameters) SetPreStop

func (o *ProvisionVDBBySnapshotParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*ProvisionVDBBySnapshotParameters) SetPrivilegedOsUser

func (o *ProvisionVDBBySnapshotParameters) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*ProvisionVDBBySnapshotParameters) SetRecoveryModel

func (o *ProvisionVDBBySnapshotParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*ProvisionVDBBySnapshotParameters) SetRepositoryId

func (o *ProvisionVDBBySnapshotParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*ProvisionVDBBySnapshotParameters) SetRetentionPolicyId

func (o *ProvisionVDBBySnapshotParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*ProvisionVDBBySnapshotParameters) SetSnapshotId

func (o *ProvisionVDBBySnapshotParameters) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (*ProvisionVDBBySnapshotParameters) SetSnapshotPolicyId

func (o *ProvisionVDBBySnapshotParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*ProvisionVDBBySnapshotParameters) SetSourceDataId

func (o *ProvisionVDBBySnapshotParameters) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (*ProvisionVDBBySnapshotParameters) SetTags

func (o *ProvisionVDBBySnapshotParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ProvisionVDBBySnapshotParameters) SetTargetGroupId

func (o *ProvisionVDBBySnapshotParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*ProvisionVDBBySnapshotParameters) SetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBBySnapshotParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBBySnapshotParameters) SetTdeExportedKeyFileSecret

func (o *ProvisionVDBBySnapshotParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBBySnapshotParameters) SetTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*ProvisionVDBBySnapshotParameters) SetTemplateId

func (o *ProvisionVDBBySnapshotParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*ProvisionVDBBySnapshotParameters) SetTruncateLogOnCheckpoint

func (o *ProvisionVDBBySnapshotParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*ProvisionVDBBySnapshotParameters) SetUniqueName

func (o *ProvisionVDBBySnapshotParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbDatabaseName

func (o *ProvisionVDBBySnapshotParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbName

func (o *ProvisionVDBBySnapshotParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbRestart

func (o *ProvisionVDBBySnapshotParameters) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbTdeKeyIdentifier

func (o *ProvisionVDBBySnapshotParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*ProvisionVDBBySnapshotParameters) SetVdbRestart

func (o *ProvisionVDBBySnapshotParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (ProvisionVDBBySnapshotParameters) ToMap

func (o ProvisionVDBBySnapshotParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBBySnapshotParametersAllOf

type ProvisionVDBBySnapshotParametersAllOf struct {
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source. If this property is not set, the data_source of the snapshot_id will be used.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBBySnapshotParametersAllOf struct for ProvisionVDBBySnapshotParametersAllOf

func NewProvisionVDBBySnapshotParametersAllOf

func NewProvisionVDBBySnapshotParametersAllOf() *ProvisionVDBBySnapshotParametersAllOf

NewProvisionVDBBySnapshotParametersAllOf instantiates a new ProvisionVDBBySnapshotParametersAllOf 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 NewProvisionVDBBySnapshotParametersAllOfWithDefaults

func NewProvisionVDBBySnapshotParametersAllOfWithDefaults() *ProvisionVDBBySnapshotParametersAllOf

NewProvisionVDBBySnapshotParametersAllOfWithDefaults instantiates a new ProvisionVDBBySnapshotParametersAllOf 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 (*ProvisionVDBBySnapshotParametersAllOf) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetEngineIdOk

func (o *ProvisionVDBBySnapshotParametersAllOf) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) GetSourceDataId

func (o *ProvisionVDBBySnapshotParametersAllOf) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetSourceDataIdOk

func (o *ProvisionVDBBySnapshotParametersAllOf) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) HasMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) HasSourceDataId

func (o *ProvisionVDBBySnapshotParametersAllOf) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (ProvisionVDBBySnapshotParametersAllOf) MarshalJSON

func (o ProvisionVDBBySnapshotParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBBySnapshotParametersAllOf) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBBySnapshotParametersAllOf) SetMakeCurrentAccountOwner

func (o *ProvisionVDBBySnapshotParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBBySnapshotParametersAllOf) SetSourceDataId

func (o *ProvisionVDBBySnapshotParametersAllOf) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (ProvisionVDBBySnapshotParametersAllOf) ToMap

func (o ProvisionVDBBySnapshotParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBByTimestampDefaultsRequest

type ProvisionVDBByTimestampDefaultsRequest struct {
	// The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId string `json:"source_data_id"`
	// The Timeflow ID.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

ProvisionVDBByTimestampDefaultsRequest struct for ProvisionVDBByTimestampDefaultsRequest

func NewProvisionVDBByTimestampDefaultsRequest

func NewProvisionVDBByTimestampDefaultsRequest(sourceDataId string) *ProvisionVDBByTimestampDefaultsRequest

NewProvisionVDBByTimestampDefaultsRequest instantiates a new ProvisionVDBByTimestampDefaultsRequest 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 NewProvisionVDBByTimestampDefaultsRequestWithDefaults

func NewProvisionVDBByTimestampDefaultsRequestWithDefaults() *ProvisionVDBByTimestampDefaultsRequest

NewProvisionVDBByTimestampDefaultsRequestWithDefaults instantiates a new ProvisionVDBByTimestampDefaultsRequest 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 (*ProvisionVDBByTimestampDefaultsRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetEngineIdOk

func (o *ProvisionVDBByTimestampDefaultsRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) GetSourceDataId

func (o *ProvisionVDBByTimestampDefaultsRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value

func (*ProvisionVDBByTimestampDefaultsRequest) GetSourceDataIdOk

func (o *ProvisionVDBByTimestampDefaultsRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimeflowId

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimeflowIdOk

func (o *ProvisionVDBByTimestampDefaultsRequest) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezoneOk

func (o *ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezoneOk() (*string, bool)

GetTimestampInDatabaseTimezoneOk returns a tuple with the TimestampInDatabaseTimezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestampOk

func (o *ProvisionVDBByTimestampDefaultsRequest) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasTimeflowId

func (o *ProvisionVDBByTimestampDefaultsRequest) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasTimestamp

func (o *ProvisionVDBByTimestampDefaultsRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampDefaultsRequest) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (ProvisionVDBByTimestampDefaultsRequest) MarshalJSON

func (o ProvisionVDBByTimestampDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByTimestampDefaultsRequest) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByTimestampDefaultsRequest) SetSourceDataId

func (o *ProvisionVDBByTimestampDefaultsRequest) SetSourceDataId(v string)

SetSourceDataId sets field value

func (*ProvisionVDBByTimestampDefaultsRequest) SetTimeflowId

func (o *ProvisionVDBByTimestampDefaultsRequest) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*ProvisionVDBByTimestampDefaultsRequest) SetTimestamp

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*ProvisionVDBByTimestampDefaultsRequest) SetTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampDefaultsRequest) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (ProvisionVDBByTimestampDefaultsRequest) ToMap

func (o ProvisionVDBByTimestampDefaultsRequest) ToMap() (map[string]interface{}, error)

type ProvisionVDBByTimestampParameters

type ProvisionVDBByTimestampParameters struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
	// The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// The Timeflow ID.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId string `json:"source_data_id"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBByTimestampParameters struct for ProvisionVDBByTimestampParameters

func NewProvisionVDBByTimestampParameters

func NewProvisionVDBByTimestampParameters(sourceDataId string) *ProvisionVDBByTimestampParameters

NewProvisionVDBByTimestampParameters instantiates a new ProvisionVDBByTimestampParameters 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 NewProvisionVDBByTimestampParametersWithDefaults

func NewProvisionVDBByTimestampParametersWithDefaults() *ProvisionVDBByTimestampParameters

NewProvisionVDBByTimestampParametersWithDefaults instantiates a new ProvisionVDBByTimestampParameters 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 (*ProvisionVDBByTimestampParameters) GetAdditionalMountPoints

func (o *ProvisionVDBByTimestampParameters) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByTimestampParameters) GetAdditionalMountPointsOk

func (o *ProvisionVDBByTimestampParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByTimestampParameters) GetAppdataConfigParams

func (o *ProvisionVDBByTimestampParameters) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByTimestampParameters) GetAppdataConfigParamsOk

func (o *ProvisionVDBByTimestampParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByTimestampParameters) GetAppdataSourceParams

func (o *ProvisionVDBByTimestampParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetAppdataSourceParamsOk

func (o *ProvisionVDBByTimestampParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetArchiveLog

func (o *ProvisionVDBByTimestampParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetArchiveLogOk

func (o *ProvisionVDBByTimestampParameters) GetArchiveLogOk() (*bool, bool)

GetArchiveLogOk returns a tuple with the ArchiveLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetAutoSelectRepository

func (o *ProvisionVDBByTimestampParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetAutoSelectRepositoryOk

func (o *ProvisionVDBByTimestampParameters) GetAutoSelectRepositoryOk() (*bool, bool)

GetAutoSelectRepositoryOk returns a tuple with the AutoSelectRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateId

func (o *ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateIdOk

func (o *ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateIdOk() (*string, bool)

GetAuxiliaryTemplateIdOk returns a tuple with the AuxiliaryTemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetCdbId

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCdbIdOk

func (o *ProvisionVDBByTimestampParameters) GetCdbIdOk() (*string, bool)

GetCdbIdOk returns a tuple with the CdbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePasswordOk

func (o *ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

GetCdbTdeKeystorePasswordOk returns a tuple with the CdbTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetCdcOnProvision

func (o *ProvisionVDBByTimestampParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCdcOnProvisionOk

func (o *ProvisionVDBByTimestampParameters) GetCdcOnProvisionOk() (*bool, bool)

GetCdcOnProvisionOk returns a tuple with the CdcOnProvision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetClusterNodeIds

func (o *ProvisionVDBByTimestampParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetClusterNodeIdsOk

func (o *ProvisionVDBByTimestampParameters) GetClusterNodeIdsOk() ([]string, bool)

GetClusterNodeIdsOk returns a tuple with the ClusterNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetClusterNodeInstances

func (o *ProvisionVDBByTimestampParameters) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetClusterNodeInstancesOk

func (o *ProvisionVDBByTimestampParameters) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

GetClusterNodeInstancesOk returns a tuple with the ClusterNodeInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetConfigParams

func (o *ProvisionVDBByTimestampParameters) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBByTimestampParameters) GetConfigParamsOk

func (o *ProvisionVDBByTimestampParameters) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBByTimestampParameters) GetConfigSettingsStg

func (o *ProvisionVDBByTimestampParameters) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetConfigSettingsStgOk

func (o *ProvisionVDBByTimestampParameters) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

GetConfigSettingsStgOk returns a tuple with the ConfigSettingsStg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetConfigureClone

func (o *ProvisionVDBByTimestampParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetConfigureCloneOk

func (o *ProvisionVDBByTimestampParameters) GetConfigureCloneOk() ([]Hook, bool)

GetConfigureCloneOk returns a tuple with the ConfigureClone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCustomEnvFilesOk

func (o *ProvisionVDBByTimestampParameters) GetCustomEnvFilesOk() ([]string, bool)

GetCustomEnvFilesOk returns a tuple with the CustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCustomEnvVarsOk

func (o *ProvisionVDBByTimestampParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

GetCustomEnvVarsOk returns a tuple with the CustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetDatabaseName

func (o *ProvisionVDBByTimestampParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetDatabaseNameOk

func (o *ProvisionVDBByTimestampParameters) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetEngineId

func (o *ProvisionVDBByTimestampParameters) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetEngineIdOk

func (o *ProvisionVDBByTimestampParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetEnvironmentId

func (o *ProvisionVDBByTimestampParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetEnvironmentIdOk

func (o *ProvisionVDBByTimestampParameters) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetEnvironmentUserId

func (o *ProvisionVDBByTimestampParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetEnvironmentUserIdOk

func (o *ProvisionVDBByTimestampParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetFileMappingRules

func (o *ProvisionVDBByTimestampParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetFileMappingRulesOk

func (o *ProvisionVDBByTimestampParameters) GetFileMappingRulesOk() (*string, bool)

GetFileMappingRulesOk returns a tuple with the FileMappingRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetListenerIds

func (o *ProvisionVDBByTimestampParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetListenerIdsOk

func (o *ProvisionVDBByTimestampParameters) GetListenerIdsOk() ([]string, bool)

GetListenerIdsOk returns a tuple with the ListenerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetMountPoint

func (o *ProvisionVDBByTimestampParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetMountPointOk

func (o *ProvisionVDBByTimestampParameters) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetMssqlFailoverDriveLetter

func (o *ProvisionVDBByTimestampParameters) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetMssqlFailoverDriveLetterOk

func (o *ProvisionVDBByTimestampParameters) GetMssqlFailoverDriveLetterOk() (*string, bool)

GetMssqlFailoverDriveLetterOk returns a tuple with the MssqlFailoverDriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetNameOk

func (o *ProvisionVDBByTimestampParameters) 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.

func (*ProvisionVDBByTimestampParameters) GetNewDbid

func (o *ProvisionVDBByTimestampParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetNewDbidOk

func (o *ProvisionVDBByTimestampParameters) GetNewDbidOk() (*bool, bool)

GetNewDbidOk returns a tuple with the NewDbid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOnlineLogGroups

func (o *ProvisionVDBByTimestampParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOnlineLogGroupsOk

func (o *ProvisionVDBByTimestampParameters) GetOnlineLogGroupsOk() (*int32, bool)

GetOnlineLogGroupsOk returns a tuple with the OnlineLogGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOnlineLogSize

func (o *ProvisionVDBByTimestampParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOnlineLogSizeOk

func (o *ProvisionVDBByTimestampParameters) GetOnlineLogSizeOk() (*int32, bool)

GetOnlineLogSizeOk returns a tuple with the OnlineLogSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOpenResetLogs

func (o *ProvisionVDBByTimestampParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOpenResetLogsOk

func (o *ProvisionVDBByTimestampParameters) GetOpenResetLogsOk() (*bool, bool)

GetOpenResetLogsOk returns a tuple with the OpenResetLogs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOracleInstanceName

func (o *ProvisionVDBByTimestampParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOracleInstanceNameOk

func (o *ProvisionVDBByTimestampParameters) GetOracleInstanceNameOk() (*string, bool)

GetOracleInstanceNameOk returns a tuple with the OracleInstanceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFilesOk

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

GetOracleRacCustomEnvFilesOk returns a tuple with the OracleRacCustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVarsOk

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

GetOracleRacCustomEnvVarsOk returns a tuple with the OracleRacCustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOsPassword

func (o *ProvisionVDBByTimestampParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOsPasswordOk

func (o *ProvisionVDBByTimestampParameters) GetOsPasswordOk() (*string, bool)

GetOsPasswordOk returns a tuple with the OsPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetOsUsername

func (o *ProvisionVDBByTimestampParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOsUsernameOk

func (o *ProvisionVDBByTimestampParameters) GetOsUsernameOk() (*string, bool)

GetOsUsernameOk returns a tuple with the OsUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePasswordOk

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

GetParentTdeKeystorePasswordOk returns a tuple with the ParentTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePathOk

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePathOk() (*string, bool)

GetParentTdeKeystorePathOk returns a tuple with the ParentTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostRefresh

func (o *ProvisionVDBByTimestampParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostRefreshOk

func (o *ProvisionVDBByTimestampParameters) GetPostRefreshOk() ([]Hook, bool)

GetPostRefreshOk returns a tuple with the PostRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostRollback

func (o *ProvisionVDBByTimestampParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBByTimestampParameters) GetPostRollbackOk

func (o *ProvisionVDBByTimestampParameters) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBByTimestampParameters) GetPostScript

func (o *ProvisionVDBByTimestampParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostScriptOk

func (o *ProvisionVDBByTimestampParameters) GetPostScriptOk() (*string, bool)

GetPostScriptOk returns a tuple with the PostScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostSelfRefresh

func (o *ProvisionVDBByTimestampParameters) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostSelfRefreshOk

func (o *ProvisionVDBByTimestampParameters) GetPostSelfRefreshOk() ([]Hook, bool)

GetPostSelfRefreshOk returns a tuple with the PostSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostSnapshot

func (o *ProvisionVDBByTimestampParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostSnapshotOk

func (o *ProvisionVDBByTimestampParameters) GetPostSnapshotOk() ([]Hook, bool)

GetPostSnapshotOk returns a tuple with the PostSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostStart

func (o *ProvisionVDBByTimestampParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostStartOk

func (o *ProvisionVDBByTimestampParameters) GetPostStartOk() ([]Hook, bool)

GetPostStartOk returns a tuple with the PostStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostStop

func (o *ProvisionVDBByTimestampParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostStopOk

func (o *ProvisionVDBByTimestampParameters) GetPostStopOk() ([]Hook, bool)

GetPostStopOk returns a tuple with the PostStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPostgresPort

func (o *ProvisionVDBByTimestampParameters) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPostgresPortOk

func (o *ProvisionVDBByTimestampParameters) GetPostgresPortOk() (*int32, bool)

GetPostgresPortOk returns a tuple with the PostgresPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreRefresh

func (o *ProvisionVDBByTimestampParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreRefreshOk

func (o *ProvisionVDBByTimestampParameters) GetPreRefreshOk() ([]Hook, bool)

GetPreRefreshOk returns a tuple with the PreRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreRollback

func (o *ProvisionVDBByTimestampParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBByTimestampParameters) GetPreRollbackOk

func (o *ProvisionVDBByTimestampParameters) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBByTimestampParameters) GetPreScript

func (o *ProvisionVDBByTimestampParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreScriptOk

func (o *ProvisionVDBByTimestampParameters) GetPreScriptOk() (*string, bool)

GetPreScriptOk returns a tuple with the PreScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreSelfRefresh

func (o *ProvisionVDBByTimestampParameters) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreSelfRefreshOk

func (o *ProvisionVDBByTimestampParameters) GetPreSelfRefreshOk() ([]Hook, bool)

GetPreSelfRefreshOk returns a tuple with the PreSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreSnapshot

func (o *ProvisionVDBByTimestampParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreSnapshotOk

func (o *ProvisionVDBByTimestampParameters) GetPreSnapshotOk() ([]Hook, bool)

GetPreSnapshotOk returns a tuple with the PreSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreStart

func (o *ProvisionVDBByTimestampParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreStartOk

func (o *ProvisionVDBByTimestampParameters) GetPreStartOk() ([]Hook, bool)

GetPreStartOk returns a tuple with the PreStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPreStop

func (o *ProvisionVDBByTimestampParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPreStopOk

func (o *ProvisionVDBByTimestampParameters) GetPreStopOk() ([]Hook, bool)

GetPreStopOk returns a tuple with the PreStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetPrivilegedOsUser

func (o *ProvisionVDBByTimestampParameters) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetPrivilegedOsUserOk

func (o *ProvisionVDBByTimestampParameters) GetPrivilegedOsUserOk() (*string, bool)

GetPrivilegedOsUserOk returns a tuple with the PrivilegedOsUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetRecoveryModel

func (o *ProvisionVDBByTimestampParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetRecoveryModelOk

func (o *ProvisionVDBByTimestampParameters) GetRecoveryModelOk() (*string, bool)

GetRecoveryModelOk returns a tuple with the RecoveryModel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetRepositoryId

func (o *ProvisionVDBByTimestampParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetRepositoryIdOk

func (o *ProvisionVDBByTimestampParameters) GetRepositoryIdOk() (*string, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetRetentionPolicyId

func (o *ProvisionVDBByTimestampParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetRetentionPolicyIdOk

func (o *ProvisionVDBByTimestampParameters) GetRetentionPolicyIdOk() (*string, bool)

GetRetentionPolicyIdOk returns a tuple with the RetentionPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetSnapshotPolicyId

func (o *ProvisionVDBByTimestampParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetSnapshotPolicyIdOk

func (o *ProvisionVDBByTimestampParameters) GetSnapshotPolicyIdOk() (*string, bool)

GetSnapshotPolicyIdOk returns a tuple with the SnapshotPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetSourceDataId

func (o *ProvisionVDBByTimestampParameters) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value

func (*ProvisionVDBByTimestampParameters) GetSourceDataIdOk

func (o *ProvisionVDBByTimestampParameters) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTags

func (o *ProvisionVDBByTimestampParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTagsOk

func (o *ProvisionVDBByTimestampParameters) 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.

func (*ProvisionVDBByTimestampParameters) GetTargetGroupId

func (o *ProvisionVDBByTimestampParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTargetGroupIdOk

func (o *ProvisionVDBByTimestampParameters) GetTargetGroupIdOk() (*string, bool)

GetTargetGroupIdOk returns a tuple with the TargetGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePathOk

func (o *ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

GetTargetVcdbTdeKeystorePathOk returns a tuple with the TargetVcdbTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecret

func (o *ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecretOk

func (o *ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecretOk() (*string, bool)

GetTdeExportedKeyFileSecretOk returns a tuple with the TdeExportedKeyFileSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTdeKeyIdentifierOk

func (o *ProvisionVDBByTimestampParameters) GetTdeKeyIdentifierOk() (*string, bool)

GetTdeKeyIdentifierOk returns a tuple with the TdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTemplateId

func (o *ProvisionVDBByTimestampParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTemplateIdOk

func (o *ProvisionVDBByTimestampParameters) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTimeflowId

func (o *ProvisionVDBByTimestampParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTimeflowIdOk

func (o *ProvisionVDBByTimestampParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTimestamp

func (o *ProvisionVDBByTimestampParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk

func (o *ProvisionVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

GetTimestampInDatabaseTimezoneOk returns a tuple with the TimestampInDatabaseTimezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTimestampOk

func (o *ProvisionVDBByTimestampParameters) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetTruncateLogOnCheckpoint

func (o *ProvisionVDBByTimestampParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTruncateLogOnCheckpointOk

func (o *ProvisionVDBByTimestampParameters) GetTruncateLogOnCheckpointOk() (*bool, bool)

GetTruncateLogOnCheckpointOk returns a tuple with the TruncateLogOnCheckpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetUniqueName

func (o *ProvisionVDBByTimestampParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetUniqueNameOk

func (o *ProvisionVDBByTimestampParameters) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetVcdbDatabaseName

func (o *ProvisionVDBByTimestampParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbDatabaseNameOk

func (o *ProvisionVDBByTimestampParameters) GetVcdbDatabaseNameOk() (*string, bool)

GetVcdbDatabaseNameOk returns a tuple with the VcdbDatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetVcdbName

func (o *ProvisionVDBByTimestampParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbNameOk

func (o *ProvisionVDBByTimestampParameters) GetVcdbNameOk() (*string, bool)

GetVcdbNameOk returns a tuple with the VcdbName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetVcdbRestart

func (o *ProvisionVDBByTimestampParameters) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbRestartOk

func (o *ProvisionVDBByTimestampParameters) GetVcdbRestartOk() (*bool, bool)

GetVcdbRestartOk returns a tuple with the VcdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifierOk

func (o *ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifierOk() (*string, bool)

GetVcdbTdeKeyIdentifierOk returns a tuple with the VcdbTdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) GetVdbRestart

func (o *ProvisionVDBByTimestampParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVdbRestartOk

func (o *ProvisionVDBByTimestampParameters) GetVdbRestartOk() (*bool, bool)

GetVdbRestartOk returns a tuple with the VdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParameters) HasAdditionalMountPoints

func (o *ProvisionVDBByTimestampParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAppdataConfigParams

func (o *ProvisionVDBByTimestampParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAppdataSourceParams

func (o *ProvisionVDBByTimestampParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasArchiveLog

func (o *ProvisionVDBByTimestampParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAutoSelectRepository

func (o *ProvisionVDBByTimestampParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAuxiliaryTemplateId

func (o *ProvisionVDBByTimestampParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCdbId

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCdbTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCdcOnProvision

func (o *ProvisionVDBByTimestampParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasClusterNodeIds

func (o *ProvisionVDBByTimestampParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasClusterNodeInstances

func (o *ProvisionVDBByTimestampParameters) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasConfigParams

func (o *ProvisionVDBByTimestampParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasConfigSettingsStg

func (o *ProvisionVDBByTimestampParameters) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasConfigureClone

func (o *ProvisionVDBByTimestampParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasDatabaseName

func (o *ProvisionVDBByTimestampParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasEngineId

func (o *ProvisionVDBByTimestampParameters) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasEnvironmentId

func (o *ProvisionVDBByTimestampParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasEnvironmentUserId

func (o *ProvisionVDBByTimestampParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasFileMappingRules

func (o *ProvisionVDBByTimestampParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasListenerIds

func (o *ProvisionVDBByTimestampParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasMountPoint

func (o *ProvisionVDBByTimestampParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasMssqlFailoverDriveLetter

func (o *ProvisionVDBByTimestampParameters) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasName

HasName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasNewDbid

func (o *ProvisionVDBByTimestampParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOnlineLogGroups

func (o *ProvisionVDBByTimestampParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOnlineLogSize

func (o *ProvisionVDBByTimestampParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOpenResetLogs

func (o *ProvisionVDBByTimestampParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOracleInstanceName

func (o *ProvisionVDBByTimestampParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOsPassword

func (o *ProvisionVDBByTimestampParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOsUsername

func (o *ProvisionVDBByTimestampParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasParentTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasParentTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostRefresh

func (o *ProvisionVDBByTimestampParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostRollback

func (o *ProvisionVDBByTimestampParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostScript

func (o *ProvisionVDBByTimestampParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostSelfRefresh

func (o *ProvisionVDBByTimestampParameters) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostSnapshot

func (o *ProvisionVDBByTimestampParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostStart

func (o *ProvisionVDBByTimestampParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostStop

func (o *ProvisionVDBByTimestampParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPostgresPort

func (o *ProvisionVDBByTimestampParameters) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreRefresh

func (o *ProvisionVDBByTimestampParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreRollback

func (o *ProvisionVDBByTimestampParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreScript

func (o *ProvisionVDBByTimestampParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreSelfRefresh

func (o *ProvisionVDBByTimestampParameters) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreSnapshot

func (o *ProvisionVDBByTimestampParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreStart

func (o *ProvisionVDBByTimestampParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPreStop

func (o *ProvisionVDBByTimestampParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasPrivilegedOsUser

func (o *ProvisionVDBByTimestampParameters) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasRecoveryModel

func (o *ProvisionVDBByTimestampParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasRepositoryId

func (o *ProvisionVDBByTimestampParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasRetentionPolicyId

func (o *ProvisionVDBByTimestampParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasSnapshotPolicyId

func (o *ProvisionVDBByTimestampParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTags

HasTags returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTargetGroupId

func (o *ProvisionVDBByTimestampParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTdeExportedKeyFileSecret

func (o *ProvisionVDBByTimestampParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTemplateId

func (o *ProvisionVDBByTimestampParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTimeflowId

func (o *ProvisionVDBByTimestampParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTimestamp

func (o *ProvisionVDBByTimestampParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTruncateLogOnCheckpoint

func (o *ProvisionVDBByTimestampParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasUniqueName

func (o *ProvisionVDBByTimestampParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbDatabaseName

func (o *ProvisionVDBByTimestampParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbName

func (o *ProvisionVDBByTimestampParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbRestart

func (o *ProvisionVDBByTimestampParameters) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVdbRestart

func (o *ProvisionVDBByTimestampParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (ProvisionVDBByTimestampParameters) MarshalJSON

func (o ProvisionVDBByTimestampParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByTimestampParameters) SetAdditionalMountPoints

func (o *ProvisionVDBByTimestampParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBByTimestampParameters) SetAppdataConfigParams

func (o *ProvisionVDBByTimestampParameters) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*ProvisionVDBByTimestampParameters) SetAppdataSourceParams

func (o *ProvisionVDBByTimestampParameters) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*ProvisionVDBByTimestampParameters) SetArchiveLog

func (o *ProvisionVDBByTimestampParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*ProvisionVDBByTimestampParameters) SetAutoSelectRepository

func (o *ProvisionVDBByTimestampParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*ProvisionVDBByTimestampParameters) SetAuxiliaryTemplateId

func (o *ProvisionVDBByTimestampParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBByTimestampParameters) SetCdbId

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBByTimestampParameters) SetCdbTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*ProvisionVDBByTimestampParameters) SetCdcOnProvision

func (o *ProvisionVDBByTimestampParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*ProvisionVDBByTimestampParameters) SetClusterNodeIds

func (o *ProvisionVDBByTimestampParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBByTimestampParameters) SetClusterNodeInstances

func (o *ProvisionVDBByTimestampParameters) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*ProvisionVDBByTimestampParameters) SetConfigParams

func (o *ProvisionVDBByTimestampParameters) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*ProvisionVDBByTimestampParameters) SetConfigSettingsStg

func (o *ProvisionVDBByTimestampParameters) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*ProvisionVDBByTimestampParameters) SetConfigureClone

func (o *ProvisionVDBByTimestampParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*ProvisionVDBByTimestampParameters) SetCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*ProvisionVDBByTimestampParameters) SetCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*ProvisionVDBByTimestampParameters) SetDatabaseName

func (o *ProvisionVDBByTimestampParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ProvisionVDBByTimestampParameters) SetEngineId

func (o *ProvisionVDBByTimestampParameters) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByTimestampParameters) SetEnvironmentId

func (o *ProvisionVDBByTimestampParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*ProvisionVDBByTimestampParameters) SetEnvironmentUserId

func (o *ProvisionVDBByTimestampParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*ProvisionVDBByTimestampParameters) SetFileMappingRules

func (o *ProvisionVDBByTimestampParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*ProvisionVDBByTimestampParameters) SetListenerIds

func (o *ProvisionVDBByTimestampParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*ProvisionVDBByTimestampParameters) SetMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBByTimestampParameters) SetMountPoint

func (o *ProvisionVDBByTimestampParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*ProvisionVDBByTimestampParameters) SetMssqlFailoverDriveLetter

func (o *ProvisionVDBByTimestampParameters) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*ProvisionVDBByTimestampParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProvisionVDBByTimestampParameters) SetNewDbid

func (o *ProvisionVDBByTimestampParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*ProvisionVDBByTimestampParameters) SetOnlineLogGroups

func (o *ProvisionVDBByTimestampParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*ProvisionVDBByTimestampParameters) SetOnlineLogSize

func (o *ProvisionVDBByTimestampParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*ProvisionVDBByTimestampParameters) SetOpenResetLogs

func (o *ProvisionVDBByTimestampParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*ProvisionVDBByTimestampParameters) SetOracleInstanceName

func (o *ProvisionVDBByTimestampParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvFiles

func (o *ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvVars

func (o *ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBByTimestampParameters) SetOsPassword

func (o *ProvisionVDBByTimestampParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBByTimestampParameters) SetOsUsername

func (o *ProvisionVDBByTimestampParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBByTimestampParameters) SetParentTdeKeystorePassword

func (o *ProvisionVDBByTimestampParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBByTimestampParameters) SetParentTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*ProvisionVDBByTimestampParameters) SetPostRefresh

func (o *ProvisionVDBByTimestampParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*ProvisionVDBByTimestampParameters) SetPostRollback

func (o *ProvisionVDBByTimestampParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*ProvisionVDBByTimestampParameters) SetPostScript

func (o *ProvisionVDBByTimestampParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*ProvisionVDBByTimestampParameters) SetPostSelfRefresh

func (o *ProvisionVDBByTimestampParameters) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*ProvisionVDBByTimestampParameters) SetPostSnapshot

func (o *ProvisionVDBByTimestampParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*ProvisionVDBByTimestampParameters) SetPostStart

func (o *ProvisionVDBByTimestampParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*ProvisionVDBByTimestampParameters) SetPostStop

func (o *ProvisionVDBByTimestampParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*ProvisionVDBByTimestampParameters) SetPostgresPort

func (o *ProvisionVDBByTimestampParameters) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*ProvisionVDBByTimestampParameters) SetPreRefresh

func (o *ProvisionVDBByTimestampParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*ProvisionVDBByTimestampParameters) SetPreRollback

func (o *ProvisionVDBByTimestampParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*ProvisionVDBByTimestampParameters) SetPreScript

func (o *ProvisionVDBByTimestampParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*ProvisionVDBByTimestampParameters) SetPreSelfRefresh

func (o *ProvisionVDBByTimestampParameters) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*ProvisionVDBByTimestampParameters) SetPreSnapshot

func (o *ProvisionVDBByTimestampParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*ProvisionVDBByTimestampParameters) SetPreStart

func (o *ProvisionVDBByTimestampParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*ProvisionVDBByTimestampParameters) SetPreStop

func (o *ProvisionVDBByTimestampParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*ProvisionVDBByTimestampParameters) SetPrivilegedOsUser

func (o *ProvisionVDBByTimestampParameters) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*ProvisionVDBByTimestampParameters) SetRecoveryModel

func (o *ProvisionVDBByTimestampParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*ProvisionVDBByTimestampParameters) SetRepositoryId

func (o *ProvisionVDBByTimestampParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*ProvisionVDBByTimestampParameters) SetRetentionPolicyId

func (o *ProvisionVDBByTimestampParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*ProvisionVDBByTimestampParameters) SetSnapshotPolicyId

func (o *ProvisionVDBByTimestampParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*ProvisionVDBByTimestampParameters) SetSourceDataId

func (o *ProvisionVDBByTimestampParameters) SetSourceDataId(v string)

SetSourceDataId sets field value

func (*ProvisionVDBByTimestampParameters) SetTags

func (o *ProvisionVDBByTimestampParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ProvisionVDBByTimestampParameters) SetTargetGroupId

func (o *ProvisionVDBByTimestampParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*ProvisionVDBByTimestampParameters) SetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBByTimestampParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBByTimestampParameters) SetTdeExportedKeyFileSecret

func (o *ProvisionVDBByTimestampParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBByTimestampParameters) SetTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*ProvisionVDBByTimestampParameters) SetTemplateId

func (o *ProvisionVDBByTimestampParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*ProvisionVDBByTimestampParameters) SetTimeflowId

func (o *ProvisionVDBByTimestampParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*ProvisionVDBByTimestampParameters) SetTimestamp

func (o *ProvisionVDBByTimestampParameters) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*ProvisionVDBByTimestampParameters) SetTimestampInDatabaseTimezone

func (o *ProvisionVDBByTimestampParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (*ProvisionVDBByTimestampParameters) SetTruncateLogOnCheckpoint

func (o *ProvisionVDBByTimestampParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*ProvisionVDBByTimestampParameters) SetUniqueName

func (o *ProvisionVDBByTimestampParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*ProvisionVDBByTimestampParameters) SetVcdbDatabaseName

func (o *ProvisionVDBByTimestampParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBByTimestampParameters) SetVcdbName

func (o *ProvisionVDBByTimestampParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBByTimestampParameters) SetVcdbRestart

func (o *ProvisionVDBByTimestampParameters) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*ProvisionVDBByTimestampParameters) SetVcdbTdeKeyIdentifier

func (o *ProvisionVDBByTimestampParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*ProvisionVDBByTimestampParameters) SetVdbRestart

func (o *ProvisionVDBByTimestampParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (ProvisionVDBByTimestampParameters) ToMap

func (o ProvisionVDBByTimestampParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBByTimestampParametersAllOf

type ProvisionVDBByTimestampParametersAllOf struct {
	// The ID of the Engine onto which to provision. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the source object (dSource or VDB) to provision from. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId string `json:"source_data_id"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBByTimestampParametersAllOf struct for ProvisionVDBByTimestampParametersAllOf

func NewProvisionVDBByTimestampParametersAllOf

func NewProvisionVDBByTimestampParametersAllOf(sourceDataId string) *ProvisionVDBByTimestampParametersAllOf

NewProvisionVDBByTimestampParametersAllOf instantiates a new ProvisionVDBByTimestampParametersAllOf 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 NewProvisionVDBByTimestampParametersAllOfWithDefaults

func NewProvisionVDBByTimestampParametersAllOfWithDefaults() *ProvisionVDBByTimestampParametersAllOf

NewProvisionVDBByTimestampParametersAllOfWithDefaults instantiates a new ProvisionVDBByTimestampParametersAllOf 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 (*ProvisionVDBByTimestampParametersAllOf) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParametersAllOf) GetEngineIdOk

func (o *ProvisionVDBByTimestampParametersAllOf) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParametersAllOf) GetSourceDataId

func (o *ProvisionVDBByTimestampParametersAllOf) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value

func (*ProvisionVDBByTimestampParametersAllOf) GetSourceDataIdOk

func (o *ProvisionVDBByTimestampParametersAllOf) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value and a boolean to check if the value has been set.

func (*ProvisionVDBByTimestampParametersAllOf) HasEngineId

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParametersAllOf) HasMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (ProvisionVDBByTimestampParametersAllOf) MarshalJSON

func (o ProvisionVDBByTimestampParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByTimestampParametersAllOf) SetEngineId

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByTimestampParametersAllOf) SetMakeCurrentAccountOwner

func (o *ProvisionVDBByTimestampParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBByTimestampParametersAllOf) SetSourceDataId

func (o *ProvisionVDBByTimestampParametersAllOf) SetSourceDataId(v string)

SetSourceDataId sets field value

func (ProvisionVDBByTimestampParametersAllOf) ToMap

func (o ProvisionVDBByTimestampParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkDefaultsRequest

type ProvisionVDBFromBookmarkDefaultsRequest struct {
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
}

ProvisionVDBFromBookmarkDefaultsRequest struct for ProvisionVDBFromBookmarkDefaultsRequest

func NewProvisionVDBFromBookmarkDefaultsRequest

func NewProvisionVDBFromBookmarkDefaultsRequest(bookmarkId string) *ProvisionVDBFromBookmarkDefaultsRequest

NewProvisionVDBFromBookmarkDefaultsRequest instantiates a new ProvisionVDBFromBookmarkDefaultsRequest 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 NewProvisionVDBFromBookmarkDefaultsRequestWithDefaults

func NewProvisionVDBFromBookmarkDefaultsRequestWithDefaults() *ProvisionVDBFromBookmarkDefaultsRequest

NewProvisionVDBFromBookmarkDefaultsRequestWithDefaults instantiates a new ProvisionVDBFromBookmarkDefaultsRequest 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 (*ProvisionVDBFromBookmarkDefaultsRequest) GetBookmarkId

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBFromBookmarkDefaultsRequest) GetBookmarkIdOk

func (o *ProvisionVDBFromBookmarkDefaultsRequest) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (ProvisionVDBFromBookmarkDefaultsRequest) MarshalJSON

func (o ProvisionVDBFromBookmarkDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkDefaultsRequest) SetBookmarkId

func (o *ProvisionVDBFromBookmarkDefaultsRequest) SetBookmarkId(v string)

SetBookmarkId sets field value

func (ProvisionVDBFromBookmarkDefaultsRequest) ToMap

func (o ProvisionVDBFromBookmarkDefaultsRequest) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkParameters

type ProvisionVDBFromBookmarkParameters struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
	// The ID of the group into which the VDB will be provisioned. If unset, a group is selected randomly on the Engine.
	TargetGroupId *string `json:"target_group_id,omitempty"`
	// The unique name of the provisioned VDB within a group. If unset, a name is randomly generated.
	Name *string `json:"name,omitempty"`
	// The name of the database on the target environment. Defaults to the value of the name property.
	DatabaseName *string `json:"database_name,omitempty"`
	// The ID of the container database (CDB) to provision an Oracle Multitenant database into. This corresponds to a CDB or VCDB API object. When this is not set, a new vCDB will be provisioned.
	CdbId *string `json:"cdb_id,omitempty"`
	// The cluster node ids, name or addresses for this provision operation (Oracle RAC Only).
	ClusterNodeIds []string `json:"cluster_node_ids,omitempty"`
	// The cluster node instances details for this provision operation(Oracle RAC Only).This property is mutually exclusive with cluster_node_ids.
	ClusterNodeInstances []ClusterNodeInstance `json:"cluster_node_instances,omitempty"`
	// Whether to truncate log on checkpoint (ASE only).
	TruncateLogOnCheckpoint *bool `json:"truncate_log_on_checkpoint,omitempty"`
	// The name of the privileged user to run the provision operation (Oracle Only).
	OsUsername *string `json:"os_username,omitempty"`
	// The password of the privileged user to run the provision operation (Oracle Only).
	OsPassword *string `json:"os_password,omitempty"`
	// The ID of the target environment where to provision the VDB. If repository_id unambigously identifies a repository, this is unnecessary and ignored. Otherwise, a compatible repository is randomly selected on the environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target repository where to provision the VDB. A repository typically corresponds to a database installation (Oracle home, database instance, ...). Setting this attribute implicitly determines the environment where to provision the VDB.
	RepositoryId *string `json:"repository_id,omitempty"`
	// Option to automatically select a compatible environment and repository. Mutually exclusive with repository_id.
	AutoSelectRepository *bool `json:"auto_select_repository,omitempty"`
	// Indicates whether the Engine should automatically restart this virtual source when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The ID of the configuration template to apply to the auxiliary container database. This is only relevant when provisioning a Multitenant pluggable database into an existing CDB, i.e when the cdb_id property is set.(Oracle Only)
	AuxiliaryTemplateId *string `json:"auxiliary_template_id,omitempty"`
	// Target VDB file mapping rules (Oracle Only). Rules must be line separated (\\n or \\r) and each line must have the format \"pattern:replacement\". Lines are applied in order.
	FileMappingRules *string `json:"file_mapping_rules,omitempty"`
	// Target VDB SID name (Oracle Only).
	OracleInstanceName *string `json:"oracle_instance_name,omitempty"`
	// Target VDB db_unique_name (Oracle Only).
	UniqueName *string `json:"unique_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the name of the provisioned vCDB (Oracle Multitenant Only).
	VcdbName *string `json:"vcdb_name,omitempty"`
	// When provisioning an Oracle Multitenant vCDB (when the cdb_id property is not set), the database name of the provisioned vCDB. Defaults to the value of the vcdb_name property. (Oracle Multitenant Only).
	VcdbDatabaseName *string `json:"vcdb_database_name,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// Whether to open the database after provision (Oracle Only).
	OpenResetLogs *bool `json:"open_reset_logs,omitempty"`
	// The ID of the snapshot policy for the VDB.
	SnapshotPolicyId *string `json:"snapshot_policy_id,omitempty"`
	// The ID of the retention policy for the VDB.
	RetentionPolicyId *string `json:"retention_policy_id,omitempty"`
	// Recovery model of the source database (MSSql Only).
	RecoveryModel *string `json:"recovery_model,omitempty"`
	// PowerShell script or executable to run prior to provisioning (MSSql Only).
	PreScript *string `json:"pre_script,omitempty"`
	// PowerShell script or executable to run after provisioning (MSSql Only).
	PostScript *string `json:"post_script,omitempty"`
	// Option to enable change data capture (CDC) on both the provisioned VDB and subsequent snapshot-related operations (e.g. refresh, rewind) (MSSql Only).
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Online log size in MB (Oracle Only).
	OnlineLogSize *int32 `json:"online_log_size,omitempty"`
	// Number of online log groups (Oracle Only).
	OnlineLogGroups *int32 `json:"online_log_groups,omitempty"`
	// Option to create a VDB in archivelog mode (Oracle Only).
	ArchiveLog *bool `json:"archive_log,omitempty"`
	// Option to generate a new DB ID for the created VDB (Oracle Only).
	NewDbid *bool `json:"new_dbid,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Environment variable to be set when the engine creates a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine creates a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine creates an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine creates an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parentTdeKeystorePath,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// Secret to be used while exporting and importing vPDB encryption keys if Transparent Data Encryption is enabled on the vPDB. (Oracle Multitenant Only)
	TdeExportedKeyFileSecret *string `json:"tde_exported_key_file_secret,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	VcdbTdeKeyIdentifier *string `json:"vcdb_tde_key_identifier,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The list of parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// This privileged unix username will be used to create the VDB. Leave this field blank if you do not want to use privilege elevation. The unix privileged username should begin with a letter or an underscore, followed by letters, digits, underscores, or dashes. They can end with a dollar sign (postgres only).
	PrivilegedOsUser *string `json:"privileged_os_user,omitempty"`
	// Port number for Postgres target database (postgres only).
	PostgresPort *int32 `json:"postgres_port,omitempty"`
	// Custom Database-Level config settings (postgres only).
	ConfigSettingsStg []ConfigSettingsStg `json:"config_settings_stg,omitempty"`
	// Indicates whether the Engine should automatically restart this vCDB when target host reboot is detected. If vdb_restart property value is not explicitly set and vcdb_restart is set as false - the vdb_restart property is defaulted to false.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	// Base drive letter location for mount points. (MSSql Only).
	MssqlFailoverDriveLetter *string `json:"mssql_failover_drive_letter,omitempty"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBFromBookmarkParameters struct for ProvisionVDBFromBookmarkParameters

func NewProvisionVDBFromBookmarkParameters

func NewProvisionVDBFromBookmarkParameters(bookmarkId string) *ProvisionVDBFromBookmarkParameters

NewProvisionVDBFromBookmarkParameters instantiates a new ProvisionVDBFromBookmarkParameters 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 NewProvisionVDBFromBookmarkParametersWithDefaults

func NewProvisionVDBFromBookmarkParametersWithDefaults() *ProvisionVDBFromBookmarkParameters

NewProvisionVDBFromBookmarkParametersWithDefaults instantiates a new ProvisionVDBFromBookmarkParameters 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 (*ProvisionVDBFromBookmarkParameters) GetAdditionalMountPoints

func (o *ProvisionVDBFromBookmarkParameters) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBFromBookmarkParameters) GetAdditionalMountPointsOk

func (o *ProvisionVDBFromBookmarkParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBFromBookmarkParameters) GetAppdataConfigParams

func (o *ProvisionVDBFromBookmarkParameters) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBFromBookmarkParameters) GetAppdataConfigParamsOk

func (o *ProvisionVDBFromBookmarkParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBFromBookmarkParameters) GetAppdataSourceParams

func (o *ProvisionVDBFromBookmarkParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAppdataSourceParamsOk

func (o *ProvisionVDBFromBookmarkParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetArchiveLog

func (o *ProvisionVDBFromBookmarkParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetArchiveLogOk

func (o *ProvisionVDBFromBookmarkParameters) GetArchiveLogOk() (*bool, bool)

GetArchiveLogOk returns a tuple with the ArchiveLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetAutoSelectRepository

func (o *ProvisionVDBFromBookmarkParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAutoSelectRepositoryOk

func (o *ProvisionVDBFromBookmarkParameters) GetAutoSelectRepositoryOk() (*bool, bool)

GetAutoSelectRepositoryOk returns a tuple with the AutoSelectRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateId

func (o *ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateIdOk() (*string, bool)

GetAuxiliaryTemplateIdOk returns a tuple with the AuxiliaryTemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetBookmarkId

func (o *ProvisionVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBFromBookmarkParameters) GetBookmarkIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetCdbId

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdbIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetCdbIdOk() (*string, bool)

GetCdbIdOk returns a tuple with the CdbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePasswordOk

func (o *ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

GetCdbTdeKeystorePasswordOk returns a tuple with the CdbTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetCdcOnProvision

func (o *ProvisionVDBFromBookmarkParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdcOnProvisionOk

func (o *ProvisionVDBFromBookmarkParameters) GetCdcOnProvisionOk() (*bool, bool)

GetCdcOnProvisionOk returns a tuple with the CdcOnProvision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetClusterNodeIds

func (o *ProvisionVDBFromBookmarkParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetClusterNodeIdsOk

func (o *ProvisionVDBFromBookmarkParameters) GetClusterNodeIdsOk() ([]string, bool)

GetClusterNodeIdsOk returns a tuple with the ClusterNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetClusterNodeInstances

func (o *ProvisionVDBFromBookmarkParameters) GetClusterNodeInstances() []ClusterNodeInstance

GetClusterNodeInstances returns the ClusterNodeInstances field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetClusterNodeInstancesOk

func (o *ProvisionVDBFromBookmarkParameters) GetClusterNodeInstancesOk() ([]ClusterNodeInstance, bool)

GetClusterNodeInstancesOk returns a tuple with the ClusterNodeInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetConfigParams

func (o *ProvisionVDBFromBookmarkParameters) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProvisionVDBFromBookmarkParameters) GetConfigParamsOk

func (o *ProvisionVDBFromBookmarkParameters) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProvisionVDBFromBookmarkParameters) GetConfigSettingsStg

func (o *ProvisionVDBFromBookmarkParameters) GetConfigSettingsStg() []ConfigSettingsStg

GetConfigSettingsStg returns the ConfigSettingsStg field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetConfigSettingsStgOk

func (o *ProvisionVDBFromBookmarkParameters) GetConfigSettingsStgOk() ([]ConfigSettingsStg, bool)

GetConfigSettingsStgOk returns a tuple with the ConfigSettingsStg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetConfigureClone

func (o *ProvisionVDBFromBookmarkParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetConfigureCloneOk

func (o *ProvisionVDBFromBookmarkParameters) GetConfigureCloneOk() ([]Hook, bool)

GetConfigureCloneOk returns a tuple with the ConfigureClone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvFilesOk

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvFilesOk() ([]string, bool)

GetCustomEnvFilesOk returns a tuple with the CustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvVarsOk

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

GetCustomEnvVarsOk returns a tuple with the CustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetDatabaseNameOk

func (o *ProvisionVDBFromBookmarkParameters) GetDatabaseNameOk() (*string, bool)

GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentId

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentUserId

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentUserIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetFileMappingRules

func (o *ProvisionVDBFromBookmarkParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetFileMappingRulesOk

func (o *ProvisionVDBFromBookmarkParameters) GetFileMappingRulesOk() (*string, bool)

GetFileMappingRulesOk returns a tuple with the FileMappingRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetListenerIds

func (o *ProvisionVDBFromBookmarkParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetListenerIdsOk

func (o *ProvisionVDBFromBookmarkParameters) GetListenerIdsOk() ([]string, bool)

GetListenerIdsOk returns a tuple with the ListenerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetMountPoint

func (o *ProvisionVDBFromBookmarkParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetMountPointOk

func (o *ProvisionVDBFromBookmarkParameters) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetMssqlFailoverDriveLetter

func (o *ProvisionVDBFromBookmarkParameters) GetMssqlFailoverDriveLetter() string

GetMssqlFailoverDriveLetter returns the MssqlFailoverDriveLetter field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetMssqlFailoverDriveLetterOk

func (o *ProvisionVDBFromBookmarkParameters) GetMssqlFailoverDriveLetterOk() (*string, bool)

GetMssqlFailoverDriveLetterOk returns a tuple with the MssqlFailoverDriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetNameOk

func (o *ProvisionVDBFromBookmarkParameters) 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.

func (*ProvisionVDBFromBookmarkParameters) GetNewDbid

func (o *ProvisionVDBFromBookmarkParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetNewDbidOk

func (o *ProvisionVDBFromBookmarkParameters) GetNewDbidOk() (*bool, bool)

GetNewDbidOk returns a tuple with the NewDbid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogGroups

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogGroupsOk

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogGroupsOk() (*int32, bool)

GetOnlineLogGroupsOk returns a tuple with the OnlineLogGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogSize

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogSizeOk

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogSizeOk() (*int32, bool)

GetOnlineLogSizeOk returns a tuple with the OnlineLogSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOpenResetLogs

func (o *ProvisionVDBFromBookmarkParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOpenResetLogsOk

func (o *ProvisionVDBFromBookmarkParameters) GetOpenResetLogsOk() (*bool, bool)

GetOpenResetLogsOk returns a tuple with the OpenResetLogs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOracleInstanceName

func (o *ProvisionVDBFromBookmarkParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleInstanceNameOk

func (o *ProvisionVDBFromBookmarkParameters) GetOracleInstanceNameOk() (*string, bool)

GetOracleInstanceNameOk returns a tuple with the OracleInstanceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFilesOk

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

GetOracleRacCustomEnvFilesOk returns a tuple with the OracleRacCustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVarsOk

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

GetOracleRacCustomEnvVarsOk returns a tuple with the OracleRacCustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOsPassword

func (o *ProvisionVDBFromBookmarkParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOsPasswordOk

func (o *ProvisionVDBFromBookmarkParameters) GetOsPasswordOk() (*string, bool)

GetOsPasswordOk returns a tuple with the OsPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetOsUsername

func (o *ProvisionVDBFromBookmarkParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOsUsernameOk

func (o *ProvisionVDBFromBookmarkParameters) GetOsUsernameOk() (*string, bool)

GetOsUsernameOk returns a tuple with the OsUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePasswordOk

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

GetParentTdeKeystorePasswordOk returns a tuple with the ParentTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePathOk

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePathOk() (*string, bool)

GetParentTdeKeystorePathOk returns a tuple with the ParentTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostRefresh

func (o *ProvisionVDBFromBookmarkParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostRefreshOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostRefreshOk() ([]Hook, bool)

GetPostRefreshOk returns a tuple with the PostRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostRollback

func (o *ProvisionVDBFromBookmarkParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBFromBookmarkParameters) GetPostRollbackOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBFromBookmarkParameters) GetPostScript

func (o *ProvisionVDBFromBookmarkParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostScriptOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostScriptOk() (*string, bool)

GetPostScriptOk returns a tuple with the PostScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostSelfRefreshOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostSelfRefreshOk() ([]Hook, bool)

GetPostSelfRefreshOk returns a tuple with the PostSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostSnapshot

func (o *ProvisionVDBFromBookmarkParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostSnapshotOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostSnapshotOk() ([]Hook, bool)

GetPostSnapshotOk returns a tuple with the PostSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostStart

func (o *ProvisionVDBFromBookmarkParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostStartOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostStartOk() ([]Hook, bool)

GetPostStartOk returns a tuple with the PostStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostStop

func (o *ProvisionVDBFromBookmarkParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostStopOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostStopOk() ([]Hook, bool)

GetPostStopOk returns a tuple with the PostStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPostgresPort

func (o *ProvisionVDBFromBookmarkParameters) GetPostgresPort() int32

GetPostgresPort returns the PostgresPort field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostgresPortOk

func (o *ProvisionVDBFromBookmarkParameters) GetPostgresPortOk() (*int32, bool)

GetPostgresPortOk returns a tuple with the PostgresPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreRefresh

func (o *ProvisionVDBFromBookmarkParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreRefreshOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreRefreshOk() ([]Hook, bool)

GetPreRefreshOk returns a tuple with the PreRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreRollback

func (o *ProvisionVDBFromBookmarkParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*ProvisionVDBFromBookmarkParameters) GetPreRollbackOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ProvisionVDBFromBookmarkParameters) GetPreScript

func (o *ProvisionVDBFromBookmarkParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreScriptOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreScriptOk() (*string, bool)

GetPreScriptOk returns a tuple with the PreScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreSelfRefreshOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreSelfRefreshOk() ([]Hook, bool)

GetPreSelfRefreshOk returns a tuple with the PreSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreSnapshot

func (o *ProvisionVDBFromBookmarkParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreSnapshotOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreSnapshotOk() ([]Hook, bool)

GetPreSnapshotOk returns a tuple with the PreSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreStart

func (o *ProvisionVDBFromBookmarkParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreStartOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreStartOk() ([]Hook, bool)

GetPreStartOk returns a tuple with the PreStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPreStop

func (o *ProvisionVDBFromBookmarkParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreStopOk

func (o *ProvisionVDBFromBookmarkParameters) GetPreStopOk() ([]Hook, bool)

GetPreStopOk returns a tuple with the PreStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetPrivilegedOsUser

func (o *ProvisionVDBFromBookmarkParameters) GetPrivilegedOsUser() string

GetPrivilegedOsUser returns the PrivilegedOsUser field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPrivilegedOsUserOk

func (o *ProvisionVDBFromBookmarkParameters) GetPrivilegedOsUserOk() (*string, bool)

GetPrivilegedOsUserOk returns a tuple with the PrivilegedOsUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetRecoveryModel

func (o *ProvisionVDBFromBookmarkParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRecoveryModelOk

func (o *ProvisionVDBFromBookmarkParameters) GetRecoveryModelOk() (*string, bool)

GetRecoveryModelOk returns a tuple with the RecoveryModel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetRepositoryId

func (o *ProvisionVDBFromBookmarkParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRepositoryIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetRepositoryIdOk() (*string, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetRetentionPolicyId

func (o *ProvisionVDBFromBookmarkParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRetentionPolicyIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetRetentionPolicyIdOk() (*string, bool)

GetRetentionPolicyIdOk returns a tuple with the RetentionPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyId

func (o *ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyIdOk() (*string, bool)

GetSnapshotPolicyIdOk returns a tuple with the SnapshotPolicyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTags

func (o *ProvisionVDBFromBookmarkParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTagsOk

func (o *ProvisionVDBFromBookmarkParameters) 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.

func (*ProvisionVDBFromBookmarkParameters) GetTargetGroupId

func (o *ProvisionVDBFromBookmarkParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTargetGroupIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetTargetGroupIdOk() (*string, bool)

GetTargetGroupIdOk returns a tuple with the TargetGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePathOk

func (o *ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

GetTargetVcdbTdeKeystorePathOk returns a tuple with the TargetVcdbTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecret

func (o *ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecretOk

func (o *ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecretOk() (*string, bool)

GetTdeExportedKeyFileSecretOk returns a tuple with the TdeExportedKeyFileSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifierOk

func (o *ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifierOk() (*string, bool)

GetTdeKeyIdentifierOk returns a tuple with the TdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTemplateId

func (o *ProvisionVDBFromBookmarkParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTemplateIdOk

func (o *ProvisionVDBFromBookmarkParameters) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpoint

func (o *ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpointOk

func (o *ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpointOk() (*bool, bool)

GetTruncateLogOnCheckpointOk returns a tuple with the TruncateLogOnCheckpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetUniqueName

func (o *ProvisionVDBFromBookmarkParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetUniqueNameOk

func (o *ProvisionVDBFromBookmarkParameters) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseNameOk

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseNameOk() (*string, bool)

GetVcdbDatabaseNameOk returns a tuple with the VcdbDatabaseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbName

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbNameOk

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbNameOk() (*string, bool)

GetVcdbNameOk returns a tuple with the VcdbName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbRestart

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbRestartOk

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbRestartOk() (*bool, bool)

GetVcdbRestartOk returns a tuple with the VcdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifierOk

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifierOk() (*string, bool)

GetVcdbTdeKeyIdentifierOk returns a tuple with the VcdbTdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) GetVdbRestart

func (o *ProvisionVDBFromBookmarkParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVdbRestartOk

func (o *ProvisionVDBFromBookmarkParameters) GetVdbRestartOk() (*bool, bool)

GetVdbRestartOk returns a tuple with the VdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAdditionalMountPoints

func (o *ProvisionVDBFromBookmarkParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAppdataConfigParams

func (o *ProvisionVDBFromBookmarkParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAppdataSourceParams

func (o *ProvisionVDBFromBookmarkParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasArchiveLog

func (o *ProvisionVDBFromBookmarkParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAutoSelectRepository

func (o *ProvisionVDBFromBookmarkParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAuxiliaryTemplateId

func (o *ProvisionVDBFromBookmarkParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdbId

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdbTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdcOnProvision

func (o *ProvisionVDBFromBookmarkParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasClusterNodeIds

func (o *ProvisionVDBFromBookmarkParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasClusterNodeInstances

func (o *ProvisionVDBFromBookmarkParameters) HasClusterNodeInstances() bool

HasClusterNodeInstances returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasConfigParams

func (o *ProvisionVDBFromBookmarkParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasConfigSettingsStg

func (o *ProvisionVDBFromBookmarkParameters) HasConfigSettingsStg() bool

HasConfigSettingsStg returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasConfigureClone

func (o *ProvisionVDBFromBookmarkParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasEnvironmentId

func (o *ProvisionVDBFromBookmarkParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasEnvironmentUserId

func (o *ProvisionVDBFromBookmarkParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasFileMappingRules

func (o *ProvisionVDBFromBookmarkParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasListenerIds

func (o *ProvisionVDBFromBookmarkParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasMountPoint

func (o *ProvisionVDBFromBookmarkParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasMssqlFailoverDriveLetter

func (o *ProvisionVDBFromBookmarkParameters) HasMssqlFailoverDriveLetter() bool

HasMssqlFailoverDriveLetter returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasName

HasName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasNewDbid

func (o *ProvisionVDBFromBookmarkParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOnlineLogGroups

func (o *ProvisionVDBFromBookmarkParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOnlineLogSize

func (o *ProvisionVDBFromBookmarkParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOpenResetLogs

func (o *ProvisionVDBFromBookmarkParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleInstanceName

func (o *ProvisionVDBFromBookmarkParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOsPassword

func (o *ProvisionVDBFromBookmarkParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOsUsername

func (o *ProvisionVDBFromBookmarkParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostRefresh

func (o *ProvisionVDBFromBookmarkParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostRollback

func (o *ProvisionVDBFromBookmarkParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostScript

func (o *ProvisionVDBFromBookmarkParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostSnapshot

func (o *ProvisionVDBFromBookmarkParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostStart

func (o *ProvisionVDBFromBookmarkParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostStop

func (o *ProvisionVDBFromBookmarkParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostgresPort

func (o *ProvisionVDBFromBookmarkParameters) HasPostgresPort() bool

HasPostgresPort returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreRefresh

func (o *ProvisionVDBFromBookmarkParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreRollback

func (o *ProvisionVDBFromBookmarkParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreScript

func (o *ProvisionVDBFromBookmarkParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreSnapshot

func (o *ProvisionVDBFromBookmarkParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreStart

func (o *ProvisionVDBFromBookmarkParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreStop

func (o *ProvisionVDBFromBookmarkParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPrivilegedOsUser

func (o *ProvisionVDBFromBookmarkParameters) HasPrivilegedOsUser() bool

HasPrivilegedOsUser returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRecoveryModel

func (o *ProvisionVDBFromBookmarkParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRepositoryId

func (o *ProvisionVDBFromBookmarkParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRetentionPolicyId

func (o *ProvisionVDBFromBookmarkParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasSnapshotPolicyId

func (o *ProvisionVDBFromBookmarkParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTags

HasTags returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTargetGroupId

func (o *ProvisionVDBFromBookmarkParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTargetVcdbTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTdeExportedKeyFileSecret

func (o *ProvisionVDBFromBookmarkParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTemplateId

func (o *ProvisionVDBFromBookmarkParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTruncateLogOnCheckpoint

func (o *ProvisionVDBFromBookmarkParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasUniqueName

func (o *ProvisionVDBFromBookmarkParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbName

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbRestart

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVdbRestart

func (o *ProvisionVDBFromBookmarkParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (ProvisionVDBFromBookmarkParameters) MarshalJSON

func (o ProvisionVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkParameters) SetAdditionalMountPoints

func (o *ProvisionVDBFromBookmarkParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBFromBookmarkParameters) SetAppdataConfigParams

func (o *ProvisionVDBFromBookmarkParameters) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*ProvisionVDBFromBookmarkParameters) SetAppdataSourceParams

func (o *ProvisionVDBFromBookmarkParameters) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*ProvisionVDBFromBookmarkParameters) SetArchiveLog

func (o *ProvisionVDBFromBookmarkParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*ProvisionVDBFromBookmarkParameters) SetAutoSelectRepository

func (o *ProvisionVDBFromBookmarkParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*ProvisionVDBFromBookmarkParameters) SetAuxiliaryTemplateId

func (o *ProvisionVDBFromBookmarkParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBFromBookmarkParameters) SetBookmarkId

func (o *ProvisionVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (*ProvisionVDBFromBookmarkParameters) SetCdbId

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBFromBookmarkParameters) SetCdbTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*ProvisionVDBFromBookmarkParameters) SetCdcOnProvision

func (o *ProvisionVDBFromBookmarkParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*ProvisionVDBFromBookmarkParameters) SetClusterNodeIds

func (o *ProvisionVDBFromBookmarkParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBFromBookmarkParameters) SetClusterNodeInstances

func (o *ProvisionVDBFromBookmarkParameters) SetClusterNodeInstances(v []ClusterNodeInstance)

SetClusterNodeInstances gets a reference to the given []ClusterNodeInstance and assigns it to the ClusterNodeInstances field.

func (*ProvisionVDBFromBookmarkParameters) SetConfigParams

func (o *ProvisionVDBFromBookmarkParameters) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*ProvisionVDBFromBookmarkParameters) SetConfigSettingsStg

func (o *ProvisionVDBFromBookmarkParameters) SetConfigSettingsStg(v []ConfigSettingsStg)

SetConfigSettingsStg gets a reference to the given []ConfigSettingsStg and assigns it to the ConfigSettingsStg field.

func (*ProvisionVDBFromBookmarkParameters) SetConfigureClone

func (o *ProvisionVDBFromBookmarkParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*ProvisionVDBFromBookmarkParameters) SetCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*ProvisionVDBFromBookmarkParameters) SetCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*ProvisionVDBFromBookmarkParameters) SetDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ProvisionVDBFromBookmarkParameters) SetEnvironmentId

func (o *ProvisionVDBFromBookmarkParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*ProvisionVDBFromBookmarkParameters) SetEnvironmentUserId

func (o *ProvisionVDBFromBookmarkParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*ProvisionVDBFromBookmarkParameters) SetFileMappingRules

func (o *ProvisionVDBFromBookmarkParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*ProvisionVDBFromBookmarkParameters) SetListenerIds

func (o *ProvisionVDBFromBookmarkParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*ProvisionVDBFromBookmarkParameters) SetMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBFromBookmarkParameters) SetMountPoint

func (o *ProvisionVDBFromBookmarkParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*ProvisionVDBFromBookmarkParameters) SetMssqlFailoverDriveLetter

func (o *ProvisionVDBFromBookmarkParameters) SetMssqlFailoverDriveLetter(v string)

SetMssqlFailoverDriveLetter gets a reference to the given string and assigns it to the MssqlFailoverDriveLetter field.

func (*ProvisionVDBFromBookmarkParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProvisionVDBFromBookmarkParameters) SetNewDbid

func (o *ProvisionVDBFromBookmarkParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*ProvisionVDBFromBookmarkParameters) SetOnlineLogGroups

func (o *ProvisionVDBFromBookmarkParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*ProvisionVDBFromBookmarkParameters) SetOnlineLogSize

func (o *ProvisionVDBFromBookmarkParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*ProvisionVDBFromBookmarkParameters) SetOpenResetLogs

func (o *ProvisionVDBFromBookmarkParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleInstanceName

func (o *ProvisionVDBFromBookmarkParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvFiles

func (o *ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvVars

func (o *ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBFromBookmarkParameters) SetOsPassword

func (o *ProvisionVDBFromBookmarkParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBFromBookmarkParameters) SetOsUsername

func (o *ProvisionVDBFromBookmarkParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePassword

func (o *ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*ProvisionVDBFromBookmarkParameters) SetPostRefresh

func (o *ProvisionVDBFromBookmarkParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPostRollback

func (o *ProvisionVDBFromBookmarkParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*ProvisionVDBFromBookmarkParameters) SetPostScript

func (o *ProvisionVDBFromBookmarkParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*ProvisionVDBFromBookmarkParameters) SetPostSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPostSnapshot

func (o *ProvisionVDBFromBookmarkParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*ProvisionVDBFromBookmarkParameters) SetPostStart

func (o *ProvisionVDBFromBookmarkParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*ProvisionVDBFromBookmarkParameters) SetPostStop

func (o *ProvisionVDBFromBookmarkParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*ProvisionVDBFromBookmarkParameters) SetPostgresPort

func (o *ProvisionVDBFromBookmarkParameters) SetPostgresPort(v int32)

SetPostgresPort gets a reference to the given int32 and assigns it to the PostgresPort field.

func (*ProvisionVDBFromBookmarkParameters) SetPreRefresh

func (o *ProvisionVDBFromBookmarkParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPreRollback

func (o *ProvisionVDBFromBookmarkParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*ProvisionVDBFromBookmarkParameters) SetPreScript

func (o *ProvisionVDBFromBookmarkParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*ProvisionVDBFromBookmarkParameters) SetPreSelfRefresh

func (o *ProvisionVDBFromBookmarkParameters) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPreSnapshot

func (o *ProvisionVDBFromBookmarkParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*ProvisionVDBFromBookmarkParameters) SetPreStart

func (o *ProvisionVDBFromBookmarkParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*ProvisionVDBFromBookmarkParameters) SetPreStop

func (o *ProvisionVDBFromBookmarkParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*ProvisionVDBFromBookmarkParameters) SetPrivilegedOsUser

func (o *ProvisionVDBFromBookmarkParameters) SetPrivilegedOsUser(v string)

SetPrivilegedOsUser gets a reference to the given string and assigns it to the PrivilegedOsUser field.

func (*ProvisionVDBFromBookmarkParameters) SetRecoveryModel

func (o *ProvisionVDBFromBookmarkParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*ProvisionVDBFromBookmarkParameters) SetRepositoryId

func (o *ProvisionVDBFromBookmarkParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*ProvisionVDBFromBookmarkParameters) SetRetentionPolicyId

func (o *ProvisionVDBFromBookmarkParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*ProvisionVDBFromBookmarkParameters) SetSnapshotPolicyId

func (o *ProvisionVDBFromBookmarkParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*ProvisionVDBFromBookmarkParameters) SetTags

func (o *ProvisionVDBFromBookmarkParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ProvisionVDBFromBookmarkParameters) SetTargetGroupId

func (o *ProvisionVDBFromBookmarkParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*ProvisionVDBFromBookmarkParameters) SetTargetVcdbTdeKeystorePath

func (o *ProvisionVDBFromBookmarkParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBFromBookmarkParameters) SetTdeExportedKeyFileSecret

func (o *ProvisionVDBFromBookmarkParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBFromBookmarkParameters) SetTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*ProvisionVDBFromBookmarkParameters) SetTemplateId

func (o *ProvisionVDBFromBookmarkParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*ProvisionVDBFromBookmarkParameters) SetTruncateLogOnCheckpoint

func (o *ProvisionVDBFromBookmarkParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*ProvisionVDBFromBookmarkParameters) SetUniqueName

func (o *ProvisionVDBFromBookmarkParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbDatabaseName

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbName

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbRestart

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbTdeKeyIdentifier

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*ProvisionVDBFromBookmarkParameters) SetVdbRestart

func (o *ProvisionVDBFromBookmarkParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (ProvisionVDBFromBookmarkParameters) ToMap

func (o ProvisionVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkParametersAllOf

type ProvisionVDBFromBookmarkParametersAllOf struct {
	// Whether the account provisioning this VDB must be configured as owner of the VDB.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBFromBookmarkParametersAllOf struct for ProvisionVDBFromBookmarkParametersAllOf

func NewProvisionVDBFromBookmarkParametersAllOf

func NewProvisionVDBFromBookmarkParametersAllOf() *ProvisionVDBFromBookmarkParametersAllOf

NewProvisionVDBFromBookmarkParametersAllOf instantiates a new ProvisionVDBFromBookmarkParametersAllOf 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 NewProvisionVDBFromBookmarkParametersAllOfWithDefaults

func NewProvisionVDBFromBookmarkParametersAllOfWithDefaults() *ProvisionVDBFromBookmarkParametersAllOf

NewProvisionVDBFromBookmarkParametersAllOfWithDefaults instantiates a new ProvisionVDBFromBookmarkParametersAllOf 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 (*ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBFromBookmarkParametersAllOf) HasMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (ProvisionVDBFromBookmarkParametersAllOf) MarshalJSON

func (o ProvisionVDBFromBookmarkParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkParametersAllOf) SetMakeCurrentAccountOwner

func (o *ProvisionVDBFromBookmarkParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (ProvisionVDBFromBookmarkParametersAllOf) ToMap

func (o ProvisionVDBFromBookmarkParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBGroupFromBookmarkParameters

type ProvisionVDBGroupFromBookmarkParameters struct {
	// Name of the created VDB group name.
	Name string `json:"name"`
	// ID of a bookmark to provision this VDB Group from.
	BookmarkId string `json:"bookmark_id"`
	// Provision parameters for each of the VDBs which will need to be provisioned. The key must be the vdb_id of the corresponding entry from the bookmark, and the value the provision parameters for the VDB which will be cloned from the bookmark.
	ProvisionParameters map[string]BaseProvisionVDBParameters `json:"provision_parameters"`
	// The tags to be created for VDB Group.
	Tags []Tag `json:"tags,omitempty"`
	// Whether the account provisioning this VDB group must be configured as owner of the VDB group.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ProvisionVDBGroupFromBookmarkParameters struct for ProvisionVDBGroupFromBookmarkParameters

func NewProvisionVDBGroupFromBookmarkParameters

func NewProvisionVDBGroupFromBookmarkParameters(name string, bookmarkId string, provisionParameters map[string]BaseProvisionVDBParameters) *ProvisionVDBGroupFromBookmarkParameters

NewProvisionVDBGroupFromBookmarkParameters instantiates a new ProvisionVDBGroupFromBookmarkParameters 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 NewProvisionVDBGroupFromBookmarkParametersWithDefaults

func NewProvisionVDBGroupFromBookmarkParametersWithDefaults() *ProvisionVDBGroupFromBookmarkParameters

NewProvisionVDBGroupFromBookmarkParametersWithDefaults instantiates a new ProvisionVDBGroupFromBookmarkParameters 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 (*ProvisionVDBGroupFromBookmarkParameters) GetBookmarkId

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetBookmarkIdOk

func (o *ProvisionVDBGroupFromBookmarkParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwner

func (o *ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwnerOk

func (o *ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) GetName

GetName returns the Name field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetNameOk

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) GetProvisionParameters

GetProvisionParameters returns the ProvisionParameters field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetProvisionParametersOk

func (o *ProvisionVDBGroupFromBookmarkParameters) GetProvisionParametersOk() (*map[string]BaseProvisionVDBParameters, bool)

GetProvisionParametersOk returns a tuple with the ProvisionParameters field value and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkParameters) GetTagsOk

func (o *ProvisionVDBGroupFromBookmarkParameters) 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.

func (*ProvisionVDBGroupFromBookmarkParameters) HasMakeCurrentAccountOwner

func (o *ProvisionVDBGroupFromBookmarkParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) HasTags

HasTags returns a boolean if a field has been set.

func (ProvisionVDBGroupFromBookmarkParameters) MarshalJSON

func (o ProvisionVDBGroupFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBGroupFromBookmarkParameters) SetBookmarkId

func (o *ProvisionVDBGroupFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetMakeCurrentAccountOwner

func (o *ProvisionVDBGroupFromBookmarkParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBGroupFromBookmarkParameters) SetName

SetName sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetProvisionParameters

SetProvisionParameters sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetTags

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (ProvisionVDBGroupFromBookmarkParameters) ToMap

func (o ProvisionVDBGroupFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBGroupFromBookmarkResponse

type ProvisionVDBGroupFromBookmarkResponse struct {
	VdbGroup *VDBGroup `json:"vdb_group,omitempty"`
	Job      *Job      `json:"job,omitempty"`
}

ProvisionVDBGroupFromBookmarkResponse struct for ProvisionVDBGroupFromBookmarkResponse

func NewProvisionVDBGroupFromBookmarkResponse

func NewProvisionVDBGroupFromBookmarkResponse() *ProvisionVDBGroupFromBookmarkResponse

NewProvisionVDBGroupFromBookmarkResponse instantiates a new ProvisionVDBGroupFromBookmarkResponse 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 NewProvisionVDBGroupFromBookmarkResponseWithDefaults

func NewProvisionVDBGroupFromBookmarkResponseWithDefaults() *ProvisionVDBGroupFromBookmarkResponse

NewProvisionVDBGroupFromBookmarkResponseWithDefaults instantiates a new ProvisionVDBGroupFromBookmarkResponse 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 (*ProvisionVDBGroupFromBookmarkResponse) GetJob

GetJob returns the Job field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkResponse) GetJobOk

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkResponse) GetVdbGroup

GetVdbGroup returns the VdbGroup field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkResponse) GetVdbGroupOk

func (o *ProvisionVDBGroupFromBookmarkResponse) GetVdbGroupOk() (*VDBGroup, bool)

GetVdbGroupOk returns a tuple with the VdbGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkResponse) HasJob

HasJob returns a boolean if a field has been set.

func (*ProvisionVDBGroupFromBookmarkResponse) HasVdbGroup

HasVdbGroup returns a boolean if a field has been set.

func (ProvisionVDBGroupFromBookmarkResponse) MarshalJSON

func (o ProvisionVDBGroupFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*ProvisionVDBGroupFromBookmarkResponse) SetJob

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*ProvisionVDBGroupFromBookmarkResponse) SetVdbGroup

SetVdbGroup gets a reference to the given VDBGroup and assigns it to the VdbGroup field.

func (ProvisionVDBGroupFromBookmarkResponse) ToMap

func (o ProvisionVDBGroupFromBookmarkResponse) ToMap() (map[string]interface{}, error)

type ProvisionVDBResponse

type ProvisionVDBResponse struct {
	Job *Job `json:"job,omitempty"`
	// The ID of the provisioned vdb.
	VdbId *string `json:"vdb_id,omitempty"`
}

ProvisionVDBResponse struct for ProvisionVDBResponse

func NewProvisionVDBResponse

func NewProvisionVDBResponse() *ProvisionVDBResponse

NewProvisionVDBResponse instantiates a new ProvisionVDBResponse 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 NewProvisionVDBResponseWithDefaults

func NewProvisionVDBResponseWithDefaults() *ProvisionVDBResponse

NewProvisionVDBResponseWithDefaults instantiates a new ProvisionVDBResponse 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 (*ProvisionVDBResponse) GetJob

func (o *ProvisionVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*ProvisionVDBResponse) GetJobOk

func (o *ProvisionVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBResponse) GetVdbId

func (o *ProvisionVDBResponse) GetVdbId() string

GetVdbId returns the VdbId field value if set, zero value otherwise.

func (*ProvisionVDBResponse) GetVdbIdOk

func (o *ProvisionVDBResponse) GetVdbIdOk() (*string, bool)

GetVdbIdOk returns a tuple with the VdbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvisionVDBResponse) HasJob

func (o *ProvisionVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*ProvisionVDBResponse) HasVdbId

func (o *ProvisionVDBResponse) HasVdbId() bool

HasVdbId returns a boolean if a field has been set.

func (ProvisionVDBResponse) MarshalJSON

func (o ProvisionVDBResponse) MarshalJSON() ([]byte, error)

func (*ProvisionVDBResponse) SetJob

func (o *ProvisionVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*ProvisionVDBResponse) SetVdbId

func (o *ProvisionVDBResponse) SetVdbId(v string)

SetVdbId gets a reference to the given string and assigns it to the VdbId field.

func (ProvisionVDBResponse) ToMap

func (o ProvisionVDBResponse) ToMap() (map[string]interface{}, error)

type ProxyConfiguration

type ProxyConfiguration struct {
	// The host name or IP address of the proxy server.
	Host string `json:"host"`
	// The port number of the proxy server.
	Port int32 `json:"port"`
	// The username to use when authenticating with the proxy server.
	Username *string `json:"username,omitempty"`
	// The password to use when authenticating with the proxy server.
	Password *string `json:"password,omitempty"`
	// When set, these settings are enabled. True by default.
	Enabled bool `json:"enabled"`
	// File name of a truststore which can be used to validate the TLS certificate of the proxy server. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename *string `json:"truststore_filename,omitempty"`
	// Password for reading trustStore file provided in 'truststore_filename' property
	TruststorePassword *string `json:"truststore_password,omitempty"`
}

ProxyConfiguration Web proxy configuration that is used to communicate with Delphix Corp. for support, troubleshooting, upgrades, updates, and patches.

func NewProxyConfiguration

func NewProxyConfiguration(host string, port int32, enabled bool) *ProxyConfiguration

NewProxyConfiguration instantiates a new ProxyConfiguration 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 NewProxyConfigurationWithDefaults

func NewProxyConfigurationWithDefaults() *ProxyConfiguration

NewProxyConfigurationWithDefaults instantiates a new ProxyConfiguration 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 (*ProxyConfiguration) GetEnabled

func (o *ProxyConfiguration) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ProxyConfiguration) GetEnabledOk

func (o *ProxyConfiguration) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetHost

func (o *ProxyConfiguration) GetHost() string

GetHost returns the Host field value

func (*ProxyConfiguration) GetHostOk

func (o *ProxyConfiguration) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetPassword

func (o *ProxyConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ProxyConfiguration) GetPasswordOk

func (o *ProxyConfiguration) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetPort

func (o *ProxyConfiguration) GetPort() int32

GetPort returns the Port field value

func (*ProxyConfiguration) GetPortOk

func (o *ProxyConfiguration) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetTruststoreFilename

func (o *ProxyConfiguration) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise.

func (*ProxyConfiguration) GetTruststoreFilenameOk

func (o *ProxyConfiguration) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetTruststorePassword

func (o *ProxyConfiguration) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise.

func (*ProxyConfiguration) GetTruststorePasswordOk

func (o *ProxyConfiguration) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProxyConfiguration) GetUsername

func (o *ProxyConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ProxyConfiguration) GetUsernameOk

func (o *ProxyConfiguration) 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.

func (*ProxyConfiguration) HasPassword

func (o *ProxyConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ProxyConfiguration) HasTruststoreFilename

func (o *ProxyConfiguration) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*ProxyConfiguration) HasTruststorePassword

func (o *ProxyConfiguration) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*ProxyConfiguration) HasUsername

func (o *ProxyConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ProxyConfiguration) MarshalJSON

func (o ProxyConfiguration) MarshalJSON() ([]byte, error)

func (*ProxyConfiguration) SetEnabled

func (o *ProxyConfiguration) SetEnabled(v bool)

SetEnabled sets field value

func (*ProxyConfiguration) SetHost

func (o *ProxyConfiguration) SetHost(v string)

SetHost sets field value

func (*ProxyConfiguration) SetPassword

func (o *ProxyConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ProxyConfiguration) SetPort

func (o *ProxyConfiguration) SetPort(v int32)

SetPort sets field value

func (*ProxyConfiguration) SetTruststoreFilename

func (o *ProxyConfiguration) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given string and assigns it to the TruststoreFilename field.

func (*ProxyConfiguration) SetTruststorePassword

func (o *ProxyConfiguration) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given string and assigns it to the TruststorePassword field.

func (*ProxyConfiguration) SetUsername

func (o *ProxyConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ProxyConfiguration) ToMap

func (o ProxyConfiguration) ToMap() (map[string]interface{}, error)

type RefreshEnvironmentResponse

type RefreshEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshEnvironmentResponse struct for RefreshEnvironmentResponse

func NewRefreshEnvironmentResponse

func NewRefreshEnvironmentResponse() *RefreshEnvironmentResponse

NewRefreshEnvironmentResponse instantiates a new RefreshEnvironmentResponse 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 NewRefreshEnvironmentResponseWithDefaults

func NewRefreshEnvironmentResponseWithDefaults() *RefreshEnvironmentResponse

NewRefreshEnvironmentResponseWithDefaults instantiates a new RefreshEnvironmentResponse 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 (*RefreshEnvironmentResponse) GetJob

func (o *RefreshEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshEnvironmentResponse) GetJobOk

func (o *RefreshEnvironmentResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshEnvironmentResponse) HasJob

func (o *RefreshEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshEnvironmentResponse) MarshalJSON

func (o RefreshEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*RefreshEnvironmentResponse) SetJob

func (o *RefreshEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshEnvironmentResponse) ToMap

func (o RefreshEnvironmentResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBByLocationParameters

type RefreshVDBByLocationParameters struct {
	// The database specific identifier for tracking transactions (SCN, LSN, etc).
	Location *string `json:"location,omitempty"`
	// ID of the dataset to refresh to, mutually exclusive with timeflow_id.
	DatasetId *string `json:"dataset_id,omitempty"`
	// ID of the timeflow to refresh to, mutually exclusive with dataset_id.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

RefreshVDBByLocationParameters Parameters to refresh by a database-specific identifier (SCN, LSN, etc).

func NewRefreshVDBByLocationParameters

func NewRefreshVDBByLocationParameters() *RefreshVDBByLocationParameters

NewRefreshVDBByLocationParameters instantiates a new RefreshVDBByLocationParameters 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 NewRefreshVDBByLocationParametersWithDefaults

func NewRefreshVDBByLocationParametersWithDefaults() *RefreshVDBByLocationParameters

NewRefreshVDBByLocationParametersWithDefaults instantiates a new RefreshVDBByLocationParameters 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 (*RefreshVDBByLocationParameters) GetDatasetId

func (o *RefreshVDBByLocationParameters) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByLocationParameters) GetDatasetIdOk

func (o *RefreshVDBByLocationParameters) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByLocationParameters) GetLocation

func (o *RefreshVDBByLocationParameters) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*RefreshVDBByLocationParameters) GetLocationOk

func (o *RefreshVDBByLocationParameters) 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.

func (*RefreshVDBByLocationParameters) GetTimeflowId

func (o *RefreshVDBByLocationParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByLocationParameters) GetTimeflowIdOk

func (o *RefreshVDBByLocationParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByLocationParameters) HasDatasetId

func (o *RefreshVDBByLocationParameters) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByLocationParameters) HasLocation

func (o *RefreshVDBByLocationParameters) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*RefreshVDBByLocationParameters) HasTimeflowId

func (o *RefreshVDBByLocationParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (RefreshVDBByLocationParameters) MarshalJSON

func (o RefreshVDBByLocationParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBByLocationParameters) SetDatasetId

func (o *RefreshVDBByLocationParameters) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByLocationParameters) SetLocation

func (o *RefreshVDBByLocationParameters) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*RefreshVDBByLocationParameters) SetTimeflowId

func (o *RefreshVDBByLocationParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (RefreshVDBByLocationParameters) ToMap

func (o RefreshVDBByLocationParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBByLocationResponse

type RefreshVDBByLocationResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBByLocationResponse struct for RefreshVDBByLocationResponse

func NewRefreshVDBByLocationResponse

func NewRefreshVDBByLocationResponse() *RefreshVDBByLocationResponse

NewRefreshVDBByLocationResponse instantiates a new RefreshVDBByLocationResponse 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 NewRefreshVDBByLocationResponseWithDefaults

func NewRefreshVDBByLocationResponseWithDefaults() *RefreshVDBByLocationResponse

NewRefreshVDBByLocationResponseWithDefaults instantiates a new RefreshVDBByLocationResponse 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 (*RefreshVDBByLocationResponse) GetJob

func (o *RefreshVDBByLocationResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBByLocationResponse) GetJobOk

func (o *RefreshVDBByLocationResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByLocationResponse) HasJob

func (o *RefreshVDBByLocationResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBByLocationResponse) MarshalJSON

func (o RefreshVDBByLocationResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBByLocationResponse) SetJob

func (o *RefreshVDBByLocationResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBByLocationResponse) ToMap

func (o RefreshVDBByLocationResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBBySnapshotParameters

type RefreshVDBBySnapshotParameters struct {
	// The ID of the snapshot from which to execute the operation. If the snapshot_id is not, selects the latest snapshot.
	SnapshotId *string `json:"snapshot_id,omitempty"`
}

RefreshVDBBySnapshotParameters struct for RefreshVDBBySnapshotParameters

func NewRefreshVDBBySnapshotParameters

func NewRefreshVDBBySnapshotParameters() *RefreshVDBBySnapshotParameters

NewRefreshVDBBySnapshotParameters instantiates a new RefreshVDBBySnapshotParameters 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 NewRefreshVDBBySnapshotParametersWithDefaults

func NewRefreshVDBBySnapshotParametersWithDefaults() *RefreshVDBBySnapshotParameters

NewRefreshVDBBySnapshotParametersWithDefaults instantiates a new RefreshVDBBySnapshotParameters 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 (*RefreshVDBBySnapshotParameters) GetSnapshotId

func (o *RefreshVDBBySnapshotParameters) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*RefreshVDBBySnapshotParameters) GetSnapshotIdOk

func (o *RefreshVDBBySnapshotParameters) GetSnapshotIdOk() (*string, bool)

GetSnapshotIdOk returns a tuple with the SnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBBySnapshotParameters) HasSnapshotId

func (o *RefreshVDBBySnapshotParameters) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (RefreshVDBBySnapshotParameters) MarshalJSON

func (o RefreshVDBBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBBySnapshotParameters) SetSnapshotId

func (o *RefreshVDBBySnapshotParameters) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (RefreshVDBBySnapshotParameters) ToMap

func (o RefreshVDBBySnapshotParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBBySnapshotResponse

type RefreshVDBBySnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBBySnapshotResponse struct for RefreshVDBBySnapshotResponse

func NewRefreshVDBBySnapshotResponse

func NewRefreshVDBBySnapshotResponse() *RefreshVDBBySnapshotResponse

NewRefreshVDBBySnapshotResponse instantiates a new RefreshVDBBySnapshotResponse 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 NewRefreshVDBBySnapshotResponseWithDefaults

func NewRefreshVDBBySnapshotResponseWithDefaults() *RefreshVDBBySnapshotResponse

NewRefreshVDBBySnapshotResponseWithDefaults instantiates a new RefreshVDBBySnapshotResponse 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 (*RefreshVDBBySnapshotResponse) GetJob

func (o *RefreshVDBBySnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBBySnapshotResponse) GetJobOk

func (o *RefreshVDBBySnapshotResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBBySnapshotResponse) HasJob

func (o *RefreshVDBBySnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBBySnapshotResponse) MarshalJSON

func (o RefreshVDBBySnapshotResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBBySnapshotResponse) SetJob

func (o *RefreshVDBBySnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBBySnapshotResponse) ToMap

func (o RefreshVDBBySnapshotResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBByTimestampParameters

type RefreshVDBByTimestampParameters struct {
	// The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// ID of the timeflow to refresh to, mutually exclusive with dataset_id.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// ID of the dataset to refresh to, mutually exclusive with timeflow_id.
	DatasetId *string `json:"dataset_id,omitempty"`
}

RefreshVDBByTimestampParameters struct for RefreshVDBByTimestampParameters

func NewRefreshVDBByTimestampParameters

func NewRefreshVDBByTimestampParameters() *RefreshVDBByTimestampParameters

NewRefreshVDBByTimestampParameters instantiates a new RefreshVDBByTimestampParameters 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 NewRefreshVDBByTimestampParametersWithDefaults

func NewRefreshVDBByTimestampParametersWithDefaults() *RefreshVDBByTimestampParameters

NewRefreshVDBByTimestampParametersWithDefaults instantiates a new RefreshVDBByTimestampParameters 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 (*RefreshVDBByTimestampParameters) GetDatasetId

func (o *RefreshVDBByTimestampParameters) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetDatasetIdOk

func (o *RefreshVDBByTimestampParameters) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParameters) GetTimeflowId

func (o *RefreshVDBByTimestampParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetTimeflowIdOk

func (o *RefreshVDBByTimestampParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParameters) GetTimestamp

func (o *RefreshVDBByTimestampParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetTimestampInDatabaseTimezone

func (o *RefreshVDBByTimestampParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk

func (o *RefreshVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

GetTimestampInDatabaseTimezoneOk returns a tuple with the TimestampInDatabaseTimezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParameters) GetTimestampOk

func (o *RefreshVDBByTimestampParameters) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParameters) HasDatasetId

func (o *RefreshVDBByTimestampParameters) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParameters) HasTimeflowId

func (o *RefreshVDBByTimestampParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParameters) HasTimestamp

func (o *RefreshVDBByTimestampParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParameters) HasTimestampInDatabaseTimezone

func (o *RefreshVDBByTimestampParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (RefreshVDBByTimestampParameters) MarshalJSON

func (o RefreshVDBByTimestampParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBByTimestampParameters) SetDatasetId

func (o *RefreshVDBByTimestampParameters) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByTimestampParameters) SetTimeflowId

func (o *RefreshVDBByTimestampParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*RefreshVDBByTimestampParameters) SetTimestamp

func (o *RefreshVDBByTimestampParameters) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*RefreshVDBByTimestampParameters) SetTimestampInDatabaseTimezone

func (o *RefreshVDBByTimestampParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (RefreshVDBByTimestampParameters) ToMap

func (o RefreshVDBByTimestampParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBByTimestampParametersAllOf

type RefreshVDBByTimestampParametersAllOf struct {
	// ID of the dataset to refresh to, mutually exclusive with timeflow_id.
	DatasetId *string `json:"dataset_id,omitempty"`
	// ID of the timeflow to refresh to, mutually exclusive with dataset_id.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

RefreshVDBByTimestampParametersAllOf struct for RefreshVDBByTimestampParametersAllOf

func NewRefreshVDBByTimestampParametersAllOf

func NewRefreshVDBByTimestampParametersAllOf() *RefreshVDBByTimestampParametersAllOf

NewRefreshVDBByTimestampParametersAllOf instantiates a new RefreshVDBByTimestampParametersAllOf 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 NewRefreshVDBByTimestampParametersAllOfWithDefaults

func NewRefreshVDBByTimestampParametersAllOfWithDefaults() *RefreshVDBByTimestampParametersAllOf

NewRefreshVDBByTimestampParametersAllOfWithDefaults instantiates a new RefreshVDBByTimestampParametersAllOf 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 (*RefreshVDBByTimestampParametersAllOf) GetDatasetId

func (o *RefreshVDBByTimestampParametersAllOf) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParametersAllOf) GetDatasetIdOk

func (o *RefreshVDBByTimestampParametersAllOf) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParametersAllOf) GetTimeflowId

func (o *RefreshVDBByTimestampParametersAllOf) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParametersAllOf) GetTimeflowIdOk

func (o *RefreshVDBByTimestampParametersAllOf) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampParametersAllOf) HasDatasetId

func (o *RefreshVDBByTimestampParametersAllOf) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParametersAllOf) HasTimeflowId

func (o *RefreshVDBByTimestampParametersAllOf) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (RefreshVDBByTimestampParametersAllOf) MarshalJSON

func (o RefreshVDBByTimestampParametersAllOf) MarshalJSON() ([]byte, error)

func (*RefreshVDBByTimestampParametersAllOf) SetDatasetId

func (o *RefreshVDBByTimestampParametersAllOf) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByTimestampParametersAllOf) SetTimeflowId

func (o *RefreshVDBByTimestampParametersAllOf) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (RefreshVDBByTimestampParametersAllOf) ToMap

func (o RefreshVDBByTimestampParametersAllOf) ToMap() (map[string]interface{}, error)

type RefreshVDBByTimestampResponse

type RefreshVDBByTimestampResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBByTimestampResponse struct for RefreshVDBByTimestampResponse

func NewRefreshVDBByTimestampResponse

func NewRefreshVDBByTimestampResponse() *RefreshVDBByTimestampResponse

NewRefreshVDBByTimestampResponse instantiates a new RefreshVDBByTimestampResponse 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 NewRefreshVDBByTimestampResponseWithDefaults

func NewRefreshVDBByTimestampResponseWithDefaults() *RefreshVDBByTimestampResponse

NewRefreshVDBByTimestampResponseWithDefaults instantiates a new RefreshVDBByTimestampResponse 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 (*RefreshVDBByTimestampResponse) GetJob

func (o *RefreshVDBByTimestampResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBByTimestampResponse) GetJobOk

func (o *RefreshVDBByTimestampResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBByTimestampResponse) HasJob

func (o *RefreshVDBByTimestampResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBByTimestampResponse) MarshalJSON

func (o RefreshVDBByTimestampResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBByTimestampResponse) SetJob

func (o *RefreshVDBByTimestampResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBByTimestampResponse) ToMap

func (o RefreshVDBByTimestampResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBFromBookmarkParameters

type RefreshVDBFromBookmarkParameters struct {
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
}

RefreshVDBFromBookmarkParameters struct for RefreshVDBFromBookmarkParameters

func NewRefreshVDBFromBookmarkParameters

func NewRefreshVDBFromBookmarkParameters(bookmarkId string) *RefreshVDBFromBookmarkParameters

NewRefreshVDBFromBookmarkParameters instantiates a new RefreshVDBFromBookmarkParameters 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 NewRefreshVDBFromBookmarkParametersWithDefaults

func NewRefreshVDBFromBookmarkParametersWithDefaults() *RefreshVDBFromBookmarkParameters

NewRefreshVDBFromBookmarkParametersWithDefaults instantiates a new RefreshVDBFromBookmarkParameters 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 (*RefreshVDBFromBookmarkParameters) GetBookmarkId

func (o *RefreshVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RefreshVDBFromBookmarkParameters) GetBookmarkIdOk

func (o *RefreshVDBFromBookmarkParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (RefreshVDBFromBookmarkParameters) MarshalJSON

func (o RefreshVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBFromBookmarkParameters) SetBookmarkId

func (o *RefreshVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RefreshVDBFromBookmarkParameters) ToMap

func (o RefreshVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBFromBookmarkResponse

type RefreshVDBFromBookmarkResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBFromBookmarkResponse struct for RefreshVDBFromBookmarkResponse

func NewRefreshVDBFromBookmarkResponse

func NewRefreshVDBFromBookmarkResponse() *RefreshVDBFromBookmarkResponse

NewRefreshVDBFromBookmarkResponse instantiates a new RefreshVDBFromBookmarkResponse 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 NewRefreshVDBFromBookmarkResponseWithDefaults

func NewRefreshVDBFromBookmarkResponseWithDefaults() *RefreshVDBFromBookmarkResponse

NewRefreshVDBFromBookmarkResponseWithDefaults instantiates a new RefreshVDBFromBookmarkResponse 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 (*RefreshVDBFromBookmarkResponse) GetJob

func (o *RefreshVDBFromBookmarkResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBFromBookmarkResponse) GetJobOk

func (o *RefreshVDBFromBookmarkResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBFromBookmarkResponse) HasJob

HasJob returns a boolean if a field has been set.

func (RefreshVDBFromBookmarkResponse) MarshalJSON

func (o RefreshVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBFromBookmarkResponse) SetJob

func (o *RefreshVDBFromBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBFromBookmarkResponse) ToMap

func (o RefreshVDBFromBookmarkResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBGroupParameters

type RefreshVDBGroupParameters struct {
	// ID of a bookmark to refresh this VDB Group to.
	BookmarkId string `json:"bookmark_id"`
}

RefreshVDBGroupParameters Parameters to refresh a VDB Group.

func NewRefreshVDBGroupParameters

func NewRefreshVDBGroupParameters(bookmarkId string) *RefreshVDBGroupParameters

NewRefreshVDBGroupParameters instantiates a new RefreshVDBGroupParameters 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 NewRefreshVDBGroupParametersWithDefaults

func NewRefreshVDBGroupParametersWithDefaults() *RefreshVDBGroupParameters

NewRefreshVDBGroupParametersWithDefaults instantiates a new RefreshVDBGroupParameters 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 (*RefreshVDBGroupParameters) GetBookmarkId

func (o *RefreshVDBGroupParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RefreshVDBGroupParameters) GetBookmarkIdOk

func (o *RefreshVDBGroupParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (RefreshVDBGroupParameters) MarshalJSON

func (o RefreshVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBGroupParameters) SetBookmarkId

func (o *RefreshVDBGroupParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RefreshVDBGroupParameters) ToMap

func (o RefreshVDBGroupParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBGroupResponse

type RefreshVDBGroupResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBGroupResponse struct for RefreshVDBGroupResponse

func NewRefreshVDBGroupResponse

func NewRefreshVDBGroupResponse() *RefreshVDBGroupResponse

NewRefreshVDBGroupResponse instantiates a new RefreshVDBGroupResponse 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 NewRefreshVDBGroupResponseWithDefaults

func NewRefreshVDBGroupResponseWithDefaults() *RefreshVDBGroupResponse

NewRefreshVDBGroupResponseWithDefaults instantiates a new RefreshVDBGroupResponse 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 (*RefreshVDBGroupResponse) GetJob

func (o *RefreshVDBGroupResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBGroupResponse) GetJobOk

func (o *RefreshVDBGroupResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshVDBGroupResponse) HasJob

func (o *RefreshVDBGroupResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBGroupResponse) MarshalJSON

func (o RefreshVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBGroupResponse) SetJob

func (o *RefreshVDBGroupResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBGroupResponse) ToMap

func (o RefreshVDBGroupResponse) ToMap() (map[string]interface{}, error)

type RegisteredEngine

type RegisteredEngine struct {
	// The Engine object entity ID.
	Id *string `json:"id,omitempty"`
	// The unique identifier generated by this engine.
	Uuid NullableString `json:"uuid,omitempty"`
	// The type of this engine.
	Type NullableString `json:"type,omitempty"`
	// The engine version.
	Version NullableString `json:"version,omitempty"`
	// The name of this engine.
	Name string `json:"name"`
	// The ssh public key of this engine.
	SshPublicKey *string `json:"ssh_public_key,omitempty"`
	// The hostname of this engine.
	Hostname string `json:"hostname"`
	// The total number of CPU cores on this engine.
	CpuCoreCount NullableInt32 `json:"cpu_core_count,omitempty"`
	// The total amount of memory on this engine, in bytes.
	MemorySize NullableInt64 `json:"memory_size,omitempty"`
	// The total amount of storage allocated for engine objects and system metadata, in bytes.
	DataStorageCapacity NullableInt64 `json:"data_storage_capacity,omitempty"`
	// The amount of storage used by engine objects and system metadata, in bytes.
	DataStorageUsed NullableInt64 `json:"data_storage_used,omitempty"`
	// Allow connections to the engine over HTTPs without validating the TLS certificate. Even though the connection to the engine might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the engine's certificate, and set the truststore_filename property.
	InsecureSsl *bool `json:"insecure_ssl,omitempty"`
	// Ignore validation of the name associated to the TLS certificate when connecting to the engine over HTTPs. Setting this value must only be done if the TLS certificate of the engine does not match the hostname, and the TLS configuration of the engine cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this engine. This is ignored if insecure_ssl is set.
	UnsafeSslHostnameCheck *bool `json:"unsafe_ssl_hostname_check,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the engine. The truststore must be available at /etc/config/certs/<truststore_filename>
	TruststoreFilename NullableString `json:"truststore_filename,omitempty"`
	// Password to read the truststore.
	TruststorePassword NullableString `json:"truststore_password,omitempty"`
	// the status of the engine
	Status NullableString `json:"status,omitempty"`
	// The status of the connection to the engine.
	ConnectionStatus NullableString `json:"connection_status,omitempty"`
	// If set, details about the status of the connection to the engine.
	ConnectionStatusDetails NullableString `json:"connection_status_details,omitempty"`
	// The virtualization domain admin username.
	Username NullableString `json:"username,omitempty"`
	// The virtualization domain admin password.
	Password NullableString `json:"password,omitempty"`
	// The masking admin username.
	MaskingUsername NullableString `json:"masking_username,omitempty"`
	// The masking admin password.
	MaskingPassword NullableString `json:"masking_password,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the virtualization username for the engine.
	HashicorpVaultUsernameCommandArgs []string `json:"hashicorp_vault_username_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the masking username for the engine.
	HashicorpVaultMaskingUsernameCommandArgs []string `json:"hashicorp_vault_masking_username_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the virtualization password for the engine.
	HashicorpVaultPasswordCommandArgs []string `json:"hashicorp_vault_password_command_args,omitempty"`
	// Arguments to pass to the Vault CLI tool to retrieve the masking password for the engine.
	HashicorpVaultMaskingPasswordCommandArgs []string `json:"hashicorp_vault_masking_password_command_args,omitempty"`
	// Reference to the Hashicorp vault to use to retrieve masking engine credentials.
	MaskingHashicorpVaultId NullableInt64 `json:"masking_hashicorp_vault_id,omitempty"`
	// Reference to the Hashicorp vault to use to retrieve virtualization engine credentials.
	HashicorpVaultId NullableInt64 `json:"hashicorp_vault_id,omitempty"`
	// The tags to be created for this engine.
	Tags []Tag `json:"tags,omitempty"`
	// The current amount of memory used by running masking jobs in bytes.
	MaskingMemoryUsed NullableInt64 `json:"masking_memory_used,omitempty"`
	// The maximum amount of memory available for running masking jobs in bytes.
	MaskingAllocatedMemory NullableInt64 `json:"masking_allocated_memory,omitempty"`
	// The number of masking jobs currently running.
	MaskingJobsRunning NullableInt32 `json:"masking_jobs_running,omitempty"`
	// The maximum number of masking jobs that can be running at the same time.
	MaskingMaxConcurrentJobs NullableInt32 `json:"masking_max_concurrent_jobs,omitempty"`
	// The number of CPU cores available to the masking engine.
	MaskingAvailableCores NullableInt32 `json:"masking_available_cores,omitempty"`
	// List of Hyperscale Instances that this engine is connected to.
	HyperscaleInstanceIds []string `json:"hyperscale_instance_ids,omitempty"`
	// File name of a truststore which can be used to validate the TLS certificate of the engine as expected by associated hyperscale instances.
	HyperscaleTruststoreFilename NullableString `json:"hyperscale_truststore_filename,omitempty"`
	// Password to read the truststore as expected by associated hyperscale instances.
	HyperscaleTruststorePassword NullableString `json:"hyperscale_truststore_password,omitempty"`
}

RegisteredEngine A registered engine's connection and authentication settings.

func NewRegisteredEngine

func NewRegisteredEngine(name string, hostname string) *RegisteredEngine

NewRegisteredEngine instantiates a new RegisteredEngine 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 NewRegisteredEngineWithDefaults

func NewRegisteredEngineWithDefaults() *RegisteredEngine

NewRegisteredEngineWithDefaults instantiates a new RegisteredEngine 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 (*RegisteredEngine) GetConnectionStatus

func (o *RegisteredEngine) GetConnectionStatus() string

GetConnectionStatus returns the ConnectionStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetConnectionStatusDetails

func (o *RegisteredEngine) GetConnectionStatusDetails() string

GetConnectionStatusDetails returns the ConnectionStatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetConnectionStatusDetailsOk

func (o *RegisteredEngine) GetConnectionStatusDetailsOk() (*string, bool)

GetConnectionStatusDetailsOk returns a tuple with the ConnectionStatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetConnectionStatusOk

func (o *RegisteredEngine) GetConnectionStatusOk() (*string, bool)

GetConnectionStatusOk returns a tuple with the ConnectionStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetCpuCoreCount

func (o *RegisteredEngine) GetCpuCoreCount() int32

GetCpuCoreCount returns the CpuCoreCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetCpuCoreCountOk

func (o *RegisteredEngine) GetCpuCoreCountOk() (*int32, bool)

GetCpuCoreCountOk returns a tuple with the CpuCoreCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetDataStorageCapacity

func (o *RegisteredEngine) GetDataStorageCapacity() int64

GetDataStorageCapacity returns the DataStorageCapacity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetDataStorageCapacityOk

func (o *RegisteredEngine) GetDataStorageCapacityOk() (*int64, bool)

GetDataStorageCapacityOk returns a tuple with the DataStorageCapacity field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetDataStorageUsed

func (o *RegisteredEngine) GetDataStorageUsed() int64

GetDataStorageUsed returns the DataStorageUsed field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetDataStorageUsedOk

func (o *RegisteredEngine) GetDataStorageUsedOk() (*int64, bool)

GetDataStorageUsedOk returns a tuple with the DataStorageUsed field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHashicorpVaultId

func (o *RegisteredEngine) GetHashicorpVaultId() int64

GetHashicorpVaultId returns the HashicorpVaultId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHashicorpVaultIdOk

func (o *RegisteredEngine) GetHashicorpVaultIdOk() (*int64, bool)

GetHashicorpVaultIdOk returns a tuple with the HashicorpVaultId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHashicorpVaultMaskingPasswordCommandArgs

func (o *RegisteredEngine) GetHashicorpVaultMaskingPasswordCommandArgs() []string

GetHashicorpVaultMaskingPasswordCommandArgs returns the HashicorpVaultMaskingPasswordCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHashicorpVaultMaskingPasswordCommandArgsOk

func (o *RegisteredEngine) GetHashicorpVaultMaskingPasswordCommandArgsOk() ([]string, bool)

GetHashicorpVaultMaskingPasswordCommandArgsOk returns a tuple with the HashicorpVaultMaskingPasswordCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHashicorpVaultMaskingUsernameCommandArgs

func (o *RegisteredEngine) GetHashicorpVaultMaskingUsernameCommandArgs() []string

GetHashicorpVaultMaskingUsernameCommandArgs returns the HashicorpVaultMaskingUsernameCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHashicorpVaultMaskingUsernameCommandArgsOk

func (o *RegisteredEngine) GetHashicorpVaultMaskingUsernameCommandArgsOk() ([]string, bool)

GetHashicorpVaultMaskingUsernameCommandArgsOk returns a tuple with the HashicorpVaultMaskingUsernameCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHashicorpVaultPasswordCommandArgs

func (o *RegisteredEngine) GetHashicorpVaultPasswordCommandArgs() []string

GetHashicorpVaultPasswordCommandArgs returns the HashicorpVaultPasswordCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHashicorpVaultPasswordCommandArgsOk

func (o *RegisteredEngine) GetHashicorpVaultPasswordCommandArgsOk() ([]string, bool)

GetHashicorpVaultPasswordCommandArgsOk returns a tuple with the HashicorpVaultPasswordCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHashicorpVaultUsernameCommandArgs

func (o *RegisteredEngine) GetHashicorpVaultUsernameCommandArgs() []string

GetHashicorpVaultUsernameCommandArgs returns the HashicorpVaultUsernameCommandArgs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHashicorpVaultUsernameCommandArgsOk

func (o *RegisteredEngine) GetHashicorpVaultUsernameCommandArgsOk() ([]string, bool)

GetHashicorpVaultUsernameCommandArgsOk returns a tuple with the HashicorpVaultUsernameCommandArgs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHostname

func (o *RegisteredEngine) GetHostname() string

GetHostname returns the Hostname field value

func (*RegisteredEngine) GetHostnameOk

func (o *RegisteredEngine) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*RegisteredEngine) GetHyperscaleInstanceIds

func (o *RegisteredEngine) GetHyperscaleInstanceIds() []string

GetHyperscaleInstanceIds returns the HyperscaleInstanceIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHyperscaleInstanceIdsOk

func (o *RegisteredEngine) GetHyperscaleInstanceIdsOk() ([]string, bool)

GetHyperscaleInstanceIdsOk returns a tuple with the HyperscaleInstanceIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHyperscaleTruststoreFilename

func (o *RegisteredEngine) GetHyperscaleTruststoreFilename() string

GetHyperscaleTruststoreFilename returns the HyperscaleTruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHyperscaleTruststoreFilenameOk

func (o *RegisteredEngine) GetHyperscaleTruststoreFilenameOk() (*string, bool)

GetHyperscaleTruststoreFilenameOk returns a tuple with the HyperscaleTruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetHyperscaleTruststorePassword

func (o *RegisteredEngine) GetHyperscaleTruststorePassword() string

GetHyperscaleTruststorePassword returns the HyperscaleTruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetHyperscaleTruststorePasswordOk

func (o *RegisteredEngine) GetHyperscaleTruststorePasswordOk() (*string, bool)

GetHyperscaleTruststorePasswordOk returns a tuple with the HyperscaleTruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetId

func (o *RegisteredEngine) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegisteredEngine) GetIdOk

func (o *RegisteredEngine) 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.

func (*RegisteredEngine) GetInsecureSsl

func (o *RegisteredEngine) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*RegisteredEngine) GetInsecureSslOk

func (o *RegisteredEngine) GetInsecureSslOk() (*bool, bool)

GetInsecureSslOk returns a tuple with the InsecureSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredEngine) GetMaskingAllocatedMemory

func (o *RegisteredEngine) GetMaskingAllocatedMemory() int64

GetMaskingAllocatedMemory returns the MaskingAllocatedMemory field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingAllocatedMemoryOk

func (o *RegisteredEngine) GetMaskingAllocatedMemoryOk() (*int64, bool)

GetMaskingAllocatedMemoryOk returns a tuple with the MaskingAllocatedMemory field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingAvailableCores

func (o *RegisteredEngine) GetMaskingAvailableCores() int32

GetMaskingAvailableCores returns the MaskingAvailableCores field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingAvailableCoresOk

func (o *RegisteredEngine) GetMaskingAvailableCoresOk() (*int32, bool)

GetMaskingAvailableCoresOk returns a tuple with the MaskingAvailableCores field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingHashicorpVaultId

func (o *RegisteredEngine) GetMaskingHashicorpVaultId() int64

GetMaskingHashicorpVaultId returns the MaskingHashicorpVaultId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingHashicorpVaultIdOk

func (o *RegisteredEngine) GetMaskingHashicorpVaultIdOk() (*int64, bool)

GetMaskingHashicorpVaultIdOk returns a tuple with the MaskingHashicorpVaultId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingJobsRunning

func (o *RegisteredEngine) GetMaskingJobsRunning() int32

GetMaskingJobsRunning returns the MaskingJobsRunning field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingJobsRunningOk

func (o *RegisteredEngine) GetMaskingJobsRunningOk() (*int32, bool)

GetMaskingJobsRunningOk returns a tuple with the MaskingJobsRunning field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingMaxConcurrentJobs

func (o *RegisteredEngine) GetMaskingMaxConcurrentJobs() int32

GetMaskingMaxConcurrentJobs returns the MaskingMaxConcurrentJobs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingMaxConcurrentJobsOk

func (o *RegisteredEngine) GetMaskingMaxConcurrentJobsOk() (*int32, bool)

GetMaskingMaxConcurrentJobsOk returns a tuple with the MaskingMaxConcurrentJobs field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingMemoryUsed

func (o *RegisteredEngine) GetMaskingMemoryUsed() int64

GetMaskingMemoryUsed returns the MaskingMemoryUsed field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingMemoryUsedOk

func (o *RegisteredEngine) GetMaskingMemoryUsedOk() (*int64, bool)

GetMaskingMemoryUsedOk returns a tuple with the MaskingMemoryUsed field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingPassword

func (o *RegisteredEngine) GetMaskingPassword() string

GetMaskingPassword returns the MaskingPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingPasswordOk

func (o *RegisteredEngine) GetMaskingPasswordOk() (*string, bool)

GetMaskingPasswordOk returns a tuple with the MaskingPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMaskingUsername

func (o *RegisteredEngine) GetMaskingUsername() string

GetMaskingUsername returns the MaskingUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMaskingUsernameOk

func (o *RegisteredEngine) GetMaskingUsernameOk() (*string, bool)

GetMaskingUsernameOk returns a tuple with the MaskingUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetMemorySize

func (o *RegisteredEngine) GetMemorySize() int64

GetMemorySize returns the MemorySize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetMemorySizeOk

func (o *RegisteredEngine) GetMemorySizeOk() (*int64, bool)

GetMemorySizeOk returns a tuple with the MemorySize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetName

func (o *RegisteredEngine) GetName() string

GetName returns the Name field value

func (*RegisteredEngine) GetNameOk

func (o *RegisteredEngine) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*RegisteredEngine) GetPassword

func (o *RegisteredEngine) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetPasswordOk

func (o *RegisteredEngine) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetSshPublicKey

func (o *RegisteredEngine) GetSshPublicKey() string

GetSshPublicKey returns the SshPublicKey field value if set, zero value otherwise.

func (*RegisteredEngine) GetSshPublicKeyOk

func (o *RegisteredEngine) GetSshPublicKeyOk() (*string, bool)

GetSshPublicKeyOk returns a tuple with the SshPublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredEngine) GetStatus

func (o *RegisteredEngine) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetStatusOk

func (o *RegisteredEngine) 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 (*RegisteredEngine) GetTags

func (o *RegisteredEngine) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*RegisteredEngine) GetTagsOk

func (o *RegisteredEngine) 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.

func (*RegisteredEngine) GetTruststoreFilename

func (o *RegisteredEngine) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetTruststoreFilenameOk

func (o *RegisteredEngine) GetTruststoreFilenameOk() (*string, bool)

GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetTruststorePassword

func (o *RegisteredEngine) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetTruststorePasswordOk

func (o *RegisteredEngine) GetTruststorePasswordOk() (*string, bool)

GetTruststorePasswordOk returns a tuple with the TruststorePassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetType

func (o *RegisteredEngine) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetTypeOk

func (o *RegisteredEngine) 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 (*RegisteredEngine) GetUnsafeSslHostnameCheck

func (o *RegisteredEngine) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*RegisteredEngine) GetUnsafeSslHostnameCheckOk

func (o *RegisteredEngine) GetUnsafeSslHostnameCheckOk() (*bool, bool)

GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredEngine) GetUsername

func (o *RegisteredEngine) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetUsernameOk

func (o *RegisteredEngine) 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 (*RegisteredEngine) GetUuid

func (o *RegisteredEngine) GetUuid() string

GetUuid returns the Uuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetUuidOk

func (o *RegisteredEngine) GetUuidOk() (*string, bool)

GetUuidOk returns a tuple with the Uuid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) GetVersion

func (o *RegisteredEngine) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegisteredEngine) GetVersionOk

func (o *RegisteredEngine) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegisteredEngine) HasConnectionStatus

func (o *RegisteredEngine) HasConnectionStatus() bool

HasConnectionStatus returns a boolean if a field has been set.

func (*RegisteredEngine) HasConnectionStatusDetails

func (o *RegisteredEngine) HasConnectionStatusDetails() bool

HasConnectionStatusDetails returns a boolean if a field has been set.

func (*RegisteredEngine) HasCpuCoreCount

func (o *RegisteredEngine) HasCpuCoreCount() bool

HasCpuCoreCount returns a boolean if a field has been set.

func (*RegisteredEngine) HasDataStorageCapacity

func (o *RegisteredEngine) HasDataStorageCapacity() bool

HasDataStorageCapacity returns a boolean if a field has been set.

func (*RegisteredEngine) HasDataStorageUsed

func (o *RegisteredEngine) HasDataStorageUsed() bool

HasDataStorageUsed returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultId

func (o *RegisteredEngine) HasHashicorpVaultId() bool

HasHashicorpVaultId returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultMaskingPasswordCommandArgs

func (o *RegisteredEngine) HasHashicorpVaultMaskingPasswordCommandArgs() bool

HasHashicorpVaultMaskingPasswordCommandArgs returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultMaskingUsernameCommandArgs

func (o *RegisteredEngine) HasHashicorpVaultMaskingUsernameCommandArgs() bool

HasHashicorpVaultMaskingUsernameCommandArgs returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultPasswordCommandArgs

func (o *RegisteredEngine) HasHashicorpVaultPasswordCommandArgs() bool

HasHashicorpVaultPasswordCommandArgs returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultUsernameCommandArgs

func (o *RegisteredEngine) HasHashicorpVaultUsernameCommandArgs() bool

HasHashicorpVaultUsernameCommandArgs returns a boolean if a field has been set.

func (*RegisteredEngine) HasHyperscaleInstanceIds

func (o *RegisteredEngine) HasHyperscaleInstanceIds() bool

HasHyperscaleInstanceIds returns a boolean if a field has been set.

func (*RegisteredEngine) HasHyperscaleTruststoreFilename

func (o *RegisteredEngine) HasHyperscaleTruststoreFilename() bool

HasHyperscaleTruststoreFilename returns a boolean if a field has been set.

func (*RegisteredEngine) HasHyperscaleTruststorePassword

func (o *RegisteredEngine) HasHyperscaleTruststorePassword() bool

HasHyperscaleTruststorePassword returns a boolean if a field has been set.

func (*RegisteredEngine) HasId

func (o *RegisteredEngine) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegisteredEngine) HasInsecureSsl

func (o *RegisteredEngine) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingAllocatedMemory

func (o *RegisteredEngine) HasMaskingAllocatedMemory() bool

HasMaskingAllocatedMemory returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingAvailableCores

func (o *RegisteredEngine) HasMaskingAvailableCores() bool

HasMaskingAvailableCores returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingHashicorpVaultId

func (o *RegisteredEngine) HasMaskingHashicorpVaultId() bool

HasMaskingHashicorpVaultId returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingJobsRunning

func (o *RegisteredEngine) HasMaskingJobsRunning() bool

HasMaskingJobsRunning returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingMaxConcurrentJobs

func (o *RegisteredEngine) HasMaskingMaxConcurrentJobs() bool

HasMaskingMaxConcurrentJobs returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingMemoryUsed

func (o *RegisteredEngine) HasMaskingMemoryUsed() bool

HasMaskingMemoryUsed returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingPassword

func (o *RegisteredEngine) HasMaskingPassword() bool

HasMaskingPassword returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingUsername

func (o *RegisteredEngine) HasMaskingUsername() bool

HasMaskingUsername returns a boolean if a field has been set.

func (*RegisteredEngine) HasMemorySize

func (o *RegisteredEngine) HasMemorySize() bool

HasMemorySize returns a boolean if a field has been set.

func (*RegisteredEngine) HasPassword

func (o *RegisteredEngine) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*RegisteredEngine) HasSshPublicKey

func (o *RegisteredEngine) HasSshPublicKey() bool

HasSshPublicKey returns a boolean if a field has been set.

func (*RegisteredEngine) HasStatus

func (o *RegisteredEngine) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RegisteredEngine) HasTags

func (o *RegisteredEngine) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*RegisteredEngine) HasTruststoreFilename

func (o *RegisteredEngine) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*RegisteredEngine) HasTruststorePassword

func (o *RegisteredEngine) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*RegisteredEngine) HasType

func (o *RegisteredEngine) HasType() bool

HasType returns a boolean if a field has been set.

func (*RegisteredEngine) HasUnsafeSslHostnameCheck

func (o *RegisteredEngine) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (*RegisteredEngine) HasUsername

func (o *RegisteredEngine) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*RegisteredEngine) HasUuid

func (o *RegisteredEngine) HasUuid() bool

HasUuid returns a boolean if a field has been set.

func (*RegisteredEngine) HasVersion

func (o *RegisteredEngine) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RegisteredEngine) MarshalJSON

func (o RegisteredEngine) MarshalJSON() ([]byte, error)

func (*RegisteredEngine) SetConnectionStatus

func (o *RegisteredEngine) SetConnectionStatus(v string)

SetConnectionStatus gets a reference to the given NullableString and assigns it to the ConnectionStatus field.

func (*RegisteredEngine) SetConnectionStatusDetails

func (o *RegisteredEngine) SetConnectionStatusDetails(v string)

SetConnectionStatusDetails gets a reference to the given NullableString and assigns it to the ConnectionStatusDetails field.

func (*RegisteredEngine) SetConnectionStatusDetailsNil

func (o *RegisteredEngine) SetConnectionStatusDetailsNil()

SetConnectionStatusDetailsNil sets the value for ConnectionStatusDetails to be an explicit nil

func (*RegisteredEngine) SetConnectionStatusNil

func (o *RegisteredEngine) SetConnectionStatusNil()

SetConnectionStatusNil sets the value for ConnectionStatus to be an explicit nil

func (*RegisteredEngine) SetCpuCoreCount

func (o *RegisteredEngine) SetCpuCoreCount(v int32)

SetCpuCoreCount gets a reference to the given NullableInt32 and assigns it to the CpuCoreCount field.

func (*RegisteredEngine) SetCpuCoreCountNil

func (o *RegisteredEngine) SetCpuCoreCountNil()

SetCpuCoreCountNil sets the value for CpuCoreCount to be an explicit nil

func (*RegisteredEngine) SetDataStorageCapacity

func (o *RegisteredEngine) SetDataStorageCapacity(v int64)

SetDataStorageCapacity gets a reference to the given NullableInt64 and assigns it to the DataStorageCapacity field.

func (*RegisteredEngine) SetDataStorageCapacityNil

func (o *RegisteredEngine) SetDataStorageCapacityNil()

SetDataStorageCapacityNil sets the value for DataStorageCapacity to be an explicit nil

func (*RegisteredEngine) SetDataStorageUsed

func (o *RegisteredEngine) SetDataStorageUsed(v int64)

SetDataStorageUsed gets a reference to the given NullableInt64 and assigns it to the DataStorageUsed field.

func (*RegisteredEngine) SetDataStorageUsedNil

func (o *RegisteredEngine) SetDataStorageUsedNil()

SetDataStorageUsedNil sets the value for DataStorageUsed to be an explicit nil

func (*RegisteredEngine) SetHashicorpVaultId

func (o *RegisteredEngine) SetHashicorpVaultId(v int64)

SetHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the HashicorpVaultId field.

func (*RegisteredEngine) SetHashicorpVaultIdNil

func (o *RegisteredEngine) SetHashicorpVaultIdNil()

SetHashicorpVaultIdNil sets the value for HashicorpVaultId to be an explicit nil

func (*RegisteredEngine) SetHashicorpVaultMaskingPasswordCommandArgs

func (o *RegisteredEngine) SetHashicorpVaultMaskingPasswordCommandArgs(v []string)

SetHashicorpVaultMaskingPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingPasswordCommandArgs field.

func (*RegisteredEngine) SetHashicorpVaultMaskingUsernameCommandArgs

func (o *RegisteredEngine) SetHashicorpVaultMaskingUsernameCommandArgs(v []string)

SetHashicorpVaultMaskingUsernameCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingUsernameCommandArgs field.

func (*RegisteredEngine) SetHashicorpVaultPasswordCommandArgs

func (o *RegisteredEngine) SetHashicorpVaultPasswordCommandArgs(v []string)

SetHashicorpVaultPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultPasswordCommandArgs field.

func (*RegisteredEngine) SetHashicorpVaultUsernameCommandArgs

func (o *RegisteredEngine) SetHashicorpVaultUsernameCommandArgs(v []string)

SetHashicorpVaultUsernameCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultUsernameCommandArgs field.

func (*RegisteredEngine) SetHostname

func (o *RegisteredEngine) SetHostname(v string)

SetHostname sets field value

func (*RegisteredEngine) SetHyperscaleInstanceIds

func (o *RegisteredEngine) SetHyperscaleInstanceIds(v []string)

SetHyperscaleInstanceIds gets a reference to the given []string and assigns it to the HyperscaleInstanceIds field.

func (*RegisteredEngine) SetHyperscaleTruststoreFilename

func (o *RegisteredEngine) SetHyperscaleTruststoreFilename(v string)

SetHyperscaleTruststoreFilename gets a reference to the given NullableString and assigns it to the HyperscaleTruststoreFilename field.

func (*RegisteredEngine) SetHyperscaleTruststoreFilenameNil

func (o *RegisteredEngine) SetHyperscaleTruststoreFilenameNil()

SetHyperscaleTruststoreFilenameNil sets the value for HyperscaleTruststoreFilename to be an explicit nil

func (*RegisteredEngine) SetHyperscaleTruststorePassword

func (o *RegisteredEngine) SetHyperscaleTruststorePassword(v string)

SetHyperscaleTruststorePassword gets a reference to the given NullableString and assigns it to the HyperscaleTruststorePassword field.

func (*RegisteredEngine) SetHyperscaleTruststorePasswordNil

func (o *RegisteredEngine) SetHyperscaleTruststorePasswordNil()

SetHyperscaleTruststorePasswordNil sets the value for HyperscaleTruststorePassword to be an explicit nil

func (*RegisteredEngine) SetId

func (o *RegisteredEngine) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegisteredEngine) SetInsecureSsl

func (o *RegisteredEngine) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*RegisteredEngine) SetMaskingAllocatedMemory

func (o *RegisteredEngine) SetMaskingAllocatedMemory(v int64)

SetMaskingAllocatedMemory gets a reference to the given NullableInt64 and assigns it to the MaskingAllocatedMemory field.

func (*RegisteredEngine) SetMaskingAllocatedMemoryNil

func (o *RegisteredEngine) SetMaskingAllocatedMemoryNil()

SetMaskingAllocatedMemoryNil sets the value for MaskingAllocatedMemory to be an explicit nil

func (*RegisteredEngine) SetMaskingAvailableCores

func (o *RegisteredEngine) SetMaskingAvailableCores(v int32)

SetMaskingAvailableCores gets a reference to the given NullableInt32 and assigns it to the MaskingAvailableCores field.

func (*RegisteredEngine) SetMaskingAvailableCoresNil

func (o *RegisteredEngine) SetMaskingAvailableCoresNil()

SetMaskingAvailableCoresNil sets the value for MaskingAvailableCores to be an explicit nil

func (*RegisteredEngine) SetMaskingHashicorpVaultId

func (o *RegisteredEngine) SetMaskingHashicorpVaultId(v int64)

SetMaskingHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the MaskingHashicorpVaultId field.

func (*RegisteredEngine) SetMaskingHashicorpVaultIdNil

func (o *RegisteredEngine) SetMaskingHashicorpVaultIdNil()

SetMaskingHashicorpVaultIdNil sets the value for MaskingHashicorpVaultId to be an explicit nil

func (*RegisteredEngine) SetMaskingJobsRunning

func (o *RegisteredEngine) SetMaskingJobsRunning(v int32)

SetMaskingJobsRunning gets a reference to the given NullableInt32 and assigns it to the MaskingJobsRunning field.

func (*RegisteredEngine) SetMaskingJobsRunningNil

func (o *RegisteredEngine) SetMaskingJobsRunningNil()

SetMaskingJobsRunningNil sets the value for MaskingJobsRunning to be an explicit nil

func (*RegisteredEngine) SetMaskingMaxConcurrentJobs

func (o *RegisteredEngine) SetMaskingMaxConcurrentJobs(v int32)

SetMaskingMaxConcurrentJobs gets a reference to the given NullableInt32 and assigns it to the MaskingMaxConcurrentJobs field.

func (*RegisteredEngine) SetMaskingMaxConcurrentJobsNil

func (o *RegisteredEngine) SetMaskingMaxConcurrentJobsNil()

SetMaskingMaxConcurrentJobsNil sets the value for MaskingMaxConcurrentJobs to be an explicit nil

func (*RegisteredEngine) SetMaskingMemoryUsed

func (o *RegisteredEngine) SetMaskingMemoryUsed(v int64)

SetMaskingMemoryUsed gets a reference to the given NullableInt64 and assigns it to the MaskingMemoryUsed field.

func (*RegisteredEngine) SetMaskingMemoryUsedNil

func (o *RegisteredEngine) SetMaskingMemoryUsedNil()

SetMaskingMemoryUsedNil sets the value for MaskingMemoryUsed to be an explicit nil

func (*RegisteredEngine) SetMaskingPassword

func (o *RegisteredEngine) SetMaskingPassword(v string)

SetMaskingPassword gets a reference to the given NullableString and assigns it to the MaskingPassword field.

func (*RegisteredEngine) SetMaskingPasswordNil

func (o *RegisteredEngine) SetMaskingPasswordNil()

SetMaskingPasswordNil sets the value for MaskingPassword to be an explicit nil

func (*RegisteredEngine) SetMaskingUsername

func (o *RegisteredEngine) SetMaskingUsername(v string)

SetMaskingUsername gets a reference to the given NullableString and assigns it to the MaskingUsername field.

func (*RegisteredEngine) SetMaskingUsernameNil

func (o *RegisteredEngine) SetMaskingUsernameNil()

SetMaskingUsernameNil sets the value for MaskingUsername to be an explicit nil

func (*RegisteredEngine) SetMemorySize

func (o *RegisteredEngine) SetMemorySize(v int64)

SetMemorySize gets a reference to the given NullableInt64 and assigns it to the MemorySize field.

func (*RegisteredEngine) SetMemorySizeNil

func (o *RegisteredEngine) SetMemorySizeNil()

SetMemorySizeNil sets the value for MemorySize to be an explicit nil

func (*RegisteredEngine) SetName

func (o *RegisteredEngine) SetName(v string)

SetName sets field value

func (*RegisteredEngine) SetPassword

func (o *RegisteredEngine) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*RegisteredEngine) SetPasswordNil

func (o *RegisteredEngine) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*RegisteredEngine) SetSshPublicKey

func (o *RegisteredEngine) SetSshPublicKey(v string)

SetSshPublicKey gets a reference to the given string and assigns it to the SshPublicKey field.

func (*RegisteredEngine) SetStatus

func (o *RegisteredEngine) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*RegisteredEngine) SetStatusNil

func (o *RegisteredEngine) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*RegisteredEngine) SetTags

func (o *RegisteredEngine) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*RegisteredEngine) SetTruststoreFilename

func (o *RegisteredEngine) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given NullableString and assigns it to the TruststoreFilename field.

func (*RegisteredEngine) SetTruststoreFilenameNil

func (o *RegisteredEngine) SetTruststoreFilenameNil()

SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil

func (*RegisteredEngine) SetTruststorePassword

func (o *RegisteredEngine) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given NullableString and assigns it to the TruststorePassword field.

func (*RegisteredEngine) SetTruststorePasswordNil

func (o *RegisteredEngine) SetTruststorePasswordNil()

SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil

func (*RegisteredEngine) SetType

func (o *RegisteredEngine) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*RegisteredEngine) SetTypeNil

func (o *RegisteredEngine) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*RegisteredEngine) SetUnsafeSslHostnameCheck

func (o *RegisteredEngine) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (*RegisteredEngine) SetUsername

func (o *RegisteredEngine) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*RegisteredEngine) SetUsernameNil

func (o *RegisteredEngine) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (*RegisteredEngine) SetUuid

func (o *RegisteredEngine) SetUuid(v string)

SetUuid gets a reference to the given NullableString and assigns it to the Uuid field.

func (*RegisteredEngine) SetUuidNil

func (o *RegisteredEngine) SetUuidNil()

SetUuidNil sets the value for Uuid to be an explicit nil

func (*RegisteredEngine) SetVersion

func (o *RegisteredEngine) SetVersion(v string)

SetVersion gets a reference to the given NullableString and assigns it to the Version field.

func (*RegisteredEngine) SetVersionNil

func (o *RegisteredEngine) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (RegisteredEngine) ToMap

func (o RegisteredEngine) ToMap() (map[string]interface{}, error)

func (*RegisteredEngine) UnsetConnectionStatus

func (o *RegisteredEngine) UnsetConnectionStatus()

UnsetConnectionStatus ensures that no value is present for ConnectionStatus, not even an explicit nil

func (*RegisteredEngine) UnsetConnectionStatusDetails

func (o *RegisteredEngine) UnsetConnectionStatusDetails()

UnsetConnectionStatusDetails ensures that no value is present for ConnectionStatusDetails, not even an explicit nil

func (*RegisteredEngine) UnsetCpuCoreCount

func (o *RegisteredEngine) UnsetCpuCoreCount()

UnsetCpuCoreCount ensures that no value is present for CpuCoreCount, not even an explicit nil

func (*RegisteredEngine) UnsetDataStorageCapacity

func (o *RegisteredEngine) UnsetDataStorageCapacity()

UnsetDataStorageCapacity ensures that no value is present for DataStorageCapacity, not even an explicit nil

func (*RegisteredEngine) UnsetDataStorageUsed

func (o *RegisteredEngine) UnsetDataStorageUsed()

UnsetDataStorageUsed ensures that no value is present for DataStorageUsed, not even an explicit nil

func (*RegisteredEngine) UnsetHashicorpVaultId

func (o *RegisteredEngine) UnsetHashicorpVaultId()

UnsetHashicorpVaultId ensures that no value is present for HashicorpVaultId, not even an explicit nil

func (*RegisteredEngine) UnsetHyperscaleTruststoreFilename

func (o *RegisteredEngine) UnsetHyperscaleTruststoreFilename()

UnsetHyperscaleTruststoreFilename ensures that no value is present for HyperscaleTruststoreFilename, not even an explicit nil

func (*RegisteredEngine) UnsetHyperscaleTruststorePassword

func (o *RegisteredEngine) UnsetHyperscaleTruststorePassword()

UnsetHyperscaleTruststorePassword ensures that no value is present for HyperscaleTruststorePassword, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingAllocatedMemory

func (o *RegisteredEngine) UnsetMaskingAllocatedMemory()

UnsetMaskingAllocatedMemory ensures that no value is present for MaskingAllocatedMemory, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingAvailableCores

func (o *RegisteredEngine) UnsetMaskingAvailableCores()

UnsetMaskingAvailableCores ensures that no value is present for MaskingAvailableCores, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingHashicorpVaultId

func (o *RegisteredEngine) UnsetMaskingHashicorpVaultId()

UnsetMaskingHashicorpVaultId ensures that no value is present for MaskingHashicorpVaultId, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingJobsRunning

func (o *RegisteredEngine) UnsetMaskingJobsRunning()

UnsetMaskingJobsRunning ensures that no value is present for MaskingJobsRunning, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingMaxConcurrentJobs

func (o *RegisteredEngine) UnsetMaskingMaxConcurrentJobs()

UnsetMaskingMaxConcurrentJobs ensures that no value is present for MaskingMaxConcurrentJobs, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingMemoryUsed

func (o *RegisteredEngine) UnsetMaskingMemoryUsed()

UnsetMaskingMemoryUsed ensures that no value is present for MaskingMemoryUsed, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingPassword

func (o *RegisteredEngine) UnsetMaskingPassword()

UnsetMaskingPassword ensures that no value is present for MaskingPassword, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingUsername

func (o *RegisteredEngine) UnsetMaskingUsername()

UnsetMaskingUsername ensures that no value is present for MaskingUsername, not even an explicit nil

func (*RegisteredEngine) UnsetMemorySize

func (o *RegisteredEngine) UnsetMemorySize()

UnsetMemorySize ensures that no value is present for MemorySize, not even an explicit nil

func (*RegisteredEngine) UnsetPassword

func (o *RegisteredEngine) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*RegisteredEngine) UnsetStatus

func (o *RegisteredEngine) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*RegisteredEngine) UnsetTruststoreFilename

func (o *RegisteredEngine) UnsetTruststoreFilename()

UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil

func (*RegisteredEngine) UnsetTruststorePassword

func (o *RegisteredEngine) UnsetTruststorePassword()

UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil

func (*RegisteredEngine) UnsetType

func (o *RegisteredEngine) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*RegisteredEngine) UnsetUsername

func (o *RegisteredEngine) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

func (*RegisteredEngine) UnsetUuid

func (o *RegisteredEngine) UnsetUuid()

UnsetUuid ensures that no value is present for Uuid, not even an explicit nil

func (*RegisteredEngine) UnsetVersion

func (o *RegisteredEngine) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type RemoveMaskingJobParameters

type RemoveMaskingJobParameters struct {
	// The ID of the engine to remove the masking job from.
	EngineId string `json:"engine_id"`
}

RemoveMaskingJobParameters Parameters to remove a masking job from a masking job set.

func NewRemoveMaskingJobParameters

func NewRemoveMaskingJobParameters(engineId string) *RemoveMaskingJobParameters

NewRemoveMaskingJobParameters instantiates a new RemoveMaskingJobParameters 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 NewRemoveMaskingJobParametersWithDefaults

func NewRemoveMaskingJobParametersWithDefaults() *RemoveMaskingJobParameters

NewRemoveMaskingJobParametersWithDefaults instantiates a new RemoveMaskingJobParameters 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 (*RemoveMaskingJobParameters) GetEngineId

func (o *RemoveMaskingJobParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*RemoveMaskingJobParameters) GetEngineIdOk

func (o *RemoveMaskingJobParameters) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (RemoveMaskingJobParameters) MarshalJSON

func (o RemoveMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*RemoveMaskingJobParameters) SetEngineId

func (o *RemoveMaskingJobParameters) SetEngineId(v string)

SetEngineId sets field value

func (RemoveMaskingJobParameters) ToMap

func (o RemoveMaskingJobParameters) ToMap() (map[string]interface{}, error)

type ReportingApiService

type ReportingApiService service

ReportingApiService ReportingApi service

func (*ReportingApiService) CreateReportingSchedule

func (a *ReportingApiService) CreateReportingSchedule(ctx context.Context) ApiCreateReportingScheduleRequest

CreateReportingSchedule Create a new report schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateReportingScheduleRequest

func (*ReportingApiService) CreateReportingScheduleExecute

Execute executes the request

@return ReportingSchedule

func (*ReportingApiService) CreateReportingScheduleTags

func (a *ReportingApiService) CreateReportingScheduleTags(ctx context.Context, reportId int32) ApiCreateReportingScheduleTagsRequest

CreateReportingScheduleTags Create tags for a report schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiCreateReportingScheduleTagsRequest

func (*ReportingApiService) CreateReportingScheduleTagsExecute

func (a *ReportingApiService) CreateReportingScheduleTagsExecute(r ApiCreateReportingScheduleTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ReportingApiService) DeleteReportingSchedule

func (a *ReportingApiService) DeleteReportingSchedule(ctx context.Context, reportId int32) ApiDeleteReportingScheduleRequest

DeleteReportingSchedule Delete report schedule by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiDeleteReportingScheduleRequest

func (*ReportingApiService) DeleteReportingScheduleExecute

func (a *ReportingApiService) DeleteReportingScheduleExecute(r ApiDeleteReportingScheduleRequest) (*http.Response, error)

Execute executes the request

func (*ReportingApiService) DeleteReportingScheduleTag

func (a *ReportingApiService) DeleteReportingScheduleTag(ctx context.Context, reportId int32) ApiDeleteReportingScheduleTagRequest

DeleteReportingScheduleTag Delete tags for a report schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiDeleteReportingScheduleTagRequest

func (*ReportingApiService) DeleteReportingScheduleTagExecute

func (a *ReportingApiService) DeleteReportingScheduleTagExecute(r ApiDeleteReportingScheduleTagRequest) (*http.Response, error)

Execute executes the request

func (*ReportingApiService) GetApiUsageReport

GetApiUsageReport Gets the report of API usage metrics over a given time period. This API returns at the most 10000 results in the response to protect against the server running out of memory. Users might not hit this limit with the default report without any 'apiUsageReportGroupByParam' param but can hit this limit if the groupBy is by too granular like by 'client_name' or 'user_agent' only. Hence it is advisable to use startDate and endDate to 'limit' the scope of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetApiUsageReportRequest

func (*ReportingApiService) GetApiUsageReportExecute

Execute executes the request

@return ApiUsageReportResponse

func (*ReportingApiService) GetAuditLogsSummaryReport

func (a *ReportingApiService) GetAuditLogsSummaryReport(ctx context.Context) ApiGetAuditLogsSummaryReportRequest

GetAuditLogsSummaryReport Gets the audit log summary report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAuditLogsSummaryReportRequest

func (*ReportingApiService) GetAuditLogsSummaryReportExecute

Execute executes the request

@return AuditLogsSummaryReportResponse

func (*ReportingApiService) GetDsourceConsumptionReport

func (a *ReportingApiService) GetDsourceConsumptionReport(ctx context.Context) ApiGetDsourceConsumptionReportRequest

GetDsourceConsumptionReport Gets the consumption report for virtualization engine dSources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetDsourceConsumptionReportRequest

func (*ReportingApiService) GetDsourceConsumptionReportExecute

Execute executes the request

@return DSourceConsumptionReportResponse

func (*ReportingApiService) GetDsourceUsageReport

GetDsourceUsageReport Gets the usage report for virtualization engine dSources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetDsourceUsageReportRequest

func (*ReportingApiService) GetDsourceUsageReportExecute

Execute executes the request

@return DSourceUsageReportResponse

func (*ReportingApiService) GetMaskingExecutionMetricsReport

func (a *ReportingApiService) GetMaskingExecutionMetricsReport(ctx context.Context) ApiGetMaskingExecutionMetricsReportRequest

GetMaskingExecutionMetricsReport Get the masking execution metrics report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMaskingExecutionMetricsReportRequest

func (*ReportingApiService) GetMaskingExecutionMetricsReportExecute

Execute executes the request

@return MaskingExecutionMetricsReportResponse

func (*ReportingApiService) GetProductInfo

GetProductInfo Returns the DCT Product Information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetProductInfoRequest

func (*ReportingApiService) GetProductInfoExecute

func (a *ReportingApiService) GetProductInfoExecute(r ApiGetProductInfoRequest) (*ProductInfo, *http.Response, error)

Execute executes the request

@return ProductInfo

func (*ReportingApiService) GetReportingScheduleById

func (a *ReportingApiService) GetReportingScheduleById(ctx context.Context, reportId int32) ApiGetReportingScheduleByIdRequest

GetReportingScheduleById Returns a report schedule by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiGetReportingScheduleByIdRequest

func (*ReportingApiService) GetReportingScheduleByIdExecute

func (a *ReportingApiService) GetReportingScheduleByIdExecute(r ApiGetReportingScheduleByIdRequest) (*ReportingSchedule, *http.Response, error)

Execute executes the request

@return ReportingSchedule

func (*ReportingApiService) GetReportingScheduleTags

func (a *ReportingApiService) GetReportingScheduleTags(ctx context.Context, reportId int32) ApiGetReportingScheduleTagsRequest

GetReportingScheduleTags Get tags for a report schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiGetReportingScheduleTagsRequest

func (*ReportingApiService) GetReportingScheduleTagsExecute

func (a *ReportingApiService) GetReportingScheduleTagsExecute(r ApiGetReportingScheduleTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ReportingApiService) GetReportingSchedules

GetReportingSchedules List all report schedules.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetReportingSchedulesRequest

func (*ReportingApiService) GetReportingSchedulesExecute

Execute executes the request

@return ListReportingScheduleResponse

func (*ReportingApiService) GetVdbInventoryReport

GetVdbInventoryReport Gets the inventory report for virtualization engine VDBs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVdbInventoryReportRequest

func (*ReportingApiService) GetVdbInventoryReportExecute

Execute executes the request

@return VDBInventoryReportResponse

func (*ReportingApiService) GetVirtualizationStorageSummaryReport

func (a *ReportingApiService) GetVirtualizationStorageSummaryReport(ctx context.Context) ApiGetVirtualizationStorageSummaryReportRequest

GetVirtualizationStorageSummaryReport Gets the storage summary report for virtualization engines.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVirtualizationStorageSummaryReportRequest

func (*ReportingApiService) GetVirtualizationStorageSummaryReportExecute

Execute executes the request

@return VirtualizationStorageSummaryReportResponse

func (*ReportingApiService) SearchDsourceConsumptionReport

func (a *ReportingApiService) SearchDsourceConsumptionReport(ctx context.Context) ApiSearchDsourceConsumptionReportRequest

SearchDsourceConsumptionReport Search the consumption report for virtualization engine DSources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchDsourceConsumptionReportRequest

func (*ReportingApiService) SearchDsourceConsumptionReportExecute

Execute executes the request

@return DSourceConsumptionReportResponse

func (*ReportingApiService) SearchDsourceUsageReport

func (a *ReportingApiService) SearchDsourceUsageReport(ctx context.Context) ApiSearchDsourceUsageReportRequest

SearchDsourceUsageReport Search the usage report for virtualization engine dSources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchDsourceUsageReportRequest

func (*ReportingApiService) SearchDsourceUsageReportExecute

Execute executes the request

@return DSourceUsageReportResponse

func (*ReportingApiService) SearchMaskingExecutionMetricsReport

func (a *ReportingApiService) SearchMaskingExecutionMetricsReport(ctx context.Context) ApiSearchMaskingExecutionMetricsReportRequest

SearchMaskingExecutionMetricsReport Search the Masking execution metrics report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchMaskingExecutionMetricsReportRequest

func (*ReportingApiService) SearchMaskingExecutionMetricsReportExecute

Execute executes the request

@return MaskingExecutionMetricsReportResponse

func (*ReportingApiService) SearchReportingSchedules

func (a *ReportingApiService) SearchReportingSchedules(ctx context.Context) ApiSearchReportingSchedulesRequest

SearchReportingSchedules Search for report schedules.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchReportingSchedulesRequest

func (*ReportingApiService) SearchReportingSchedulesExecute

Execute executes the request

@return SearchReportingScheduleResponse

func (*ReportingApiService) SearchVdbInventoryReport

func (a *ReportingApiService) SearchVdbInventoryReport(ctx context.Context) ApiSearchVdbInventoryReportRequest

SearchVdbInventoryReport Search the inventory report for virtualization engine VDBs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVdbInventoryReportRequest

func (*ReportingApiService) SearchVdbInventoryReportExecute

Execute executes the request

@return VDBInventoryReportResponse

func (*ReportingApiService) SearchVirtualizationStorageSummaryReport

func (a *ReportingApiService) SearchVirtualizationStorageSummaryReport(ctx context.Context) ApiSearchVirtualizationStorageSummaryReportRequest

SearchVirtualizationStorageSummaryReport Search the storage summary report for virtualization engines.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVirtualizationStorageSummaryReportRequest

func (*ReportingApiService) SearchVirtualizationStorageSummaryReportExecute

Execute executes the request

@return VirtualizationStorageSummaryReportResponse

func (*ReportingApiService) UpdateReportingSchedule

func (a *ReportingApiService) UpdateReportingSchedule(ctx context.Context, reportId int32) ApiUpdateReportingScheduleRequest

UpdateReportingSchedule Update a reporting schedule by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId The ID of the report schedule.
@return ApiUpdateReportingScheduleRequest

func (*ReportingApiService) UpdateReportingScheduleExecute

Execute executes the request

@return ReportingSchedule

type ReportingSchedule

type ReportingSchedule struct {
	ReportId   *int32 `json:"report_id,omitempty"`
	ReportType string `json:"report_type"`
	// Standard cron expressions are supported e.g. 0 15 10 L * ?  - Schedule at 10:15 AM on the last day of every month, 0 0 2 ? * Mon-Fri - Schedule at 2:00 AM every Monday, Tuesday, Wednesday, Thursday and Friday. For more details kindly refer- \"http://www.quartz-scheduler.org/documentation/\"
	CronExpression string `json:"cron_expression"`
	// Timezones are specified according to the Olson tzinfo database - \"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\".
	TimeZone   *string  `json:"time_zone,omitempty"`
	Message    *string  `json:"message,omitempty"`
	FileFormat string   `json:"file_format"`
	Enabled    bool     `json:"enabled"`
	Recipients []string `json:"recipients"`
	Tags       []Tag    `json:"tags,omitempty"`
	SortColumn *string  `json:"sort_column,omitempty"`
	RowCount   *int32   `json:"row_count,omitempty"`
}

ReportingSchedule struct for ReportingSchedule

func NewReportingSchedule

func NewReportingSchedule(reportType string, cronExpression string, fileFormat string, enabled bool, recipients []string) *ReportingSchedule

NewReportingSchedule instantiates a new ReportingSchedule 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 NewReportingScheduleWithDefaults

func NewReportingScheduleWithDefaults() *ReportingSchedule

NewReportingScheduleWithDefaults instantiates a new ReportingSchedule 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 (*ReportingSchedule) GetCronExpression

func (o *ReportingSchedule) GetCronExpression() string

GetCronExpression returns the CronExpression field value

func (*ReportingSchedule) GetCronExpressionOk

func (o *ReportingSchedule) GetCronExpressionOk() (*string, bool)

GetCronExpressionOk returns a tuple with the CronExpression field value and a boolean to check if the value has been set.

func (*ReportingSchedule) GetEnabled

func (o *ReportingSchedule) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ReportingSchedule) GetEnabledOk

func (o *ReportingSchedule) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value and a boolean to check if the value has been set.

func (*ReportingSchedule) GetFileFormat

func (o *ReportingSchedule) GetFileFormat() string

GetFileFormat returns the FileFormat field value

func (*ReportingSchedule) GetFileFormatOk

func (o *ReportingSchedule) GetFileFormatOk() (*string, bool)

GetFileFormatOk returns a tuple with the FileFormat field value and a boolean to check if the value has been set.

func (*ReportingSchedule) GetMessage

func (o *ReportingSchedule) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReportingSchedule) GetMessageOk

func (o *ReportingSchedule) 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.

func (*ReportingSchedule) GetRecipients

func (o *ReportingSchedule) GetRecipients() []string

GetRecipients returns the Recipients field value

func (*ReportingSchedule) GetRecipientsOk

func (o *ReportingSchedule) GetRecipientsOk() ([]string, bool)

GetRecipientsOk returns a tuple with the Recipients field value and a boolean to check if the value has been set.

func (*ReportingSchedule) GetReportId

func (o *ReportingSchedule) GetReportId() int32

GetReportId returns the ReportId field value if set, zero value otherwise.

func (*ReportingSchedule) GetReportIdOk

func (o *ReportingSchedule) GetReportIdOk() (*int32, bool)

GetReportIdOk returns a tuple with the ReportId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingSchedule) GetReportType

func (o *ReportingSchedule) GetReportType() string

GetReportType returns the ReportType field value

func (*ReportingSchedule) GetReportTypeOk

func (o *ReportingSchedule) GetReportTypeOk() (*string, bool)

GetReportTypeOk returns a tuple with the ReportType field value and a boolean to check if the value has been set.

func (*ReportingSchedule) GetRowCount

func (o *ReportingSchedule) GetRowCount() int32

GetRowCount returns the RowCount field value if set, zero value otherwise.

func (*ReportingSchedule) GetRowCountOk

func (o *ReportingSchedule) GetRowCountOk() (*int32, bool)

GetRowCountOk returns a tuple with the RowCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingSchedule) GetSortColumn

func (o *ReportingSchedule) GetSortColumn() string

GetSortColumn returns the SortColumn field value if set, zero value otherwise.

func (*ReportingSchedule) GetSortColumnOk

func (o *ReportingSchedule) GetSortColumnOk() (*string, bool)

GetSortColumnOk returns a tuple with the SortColumn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingSchedule) GetTags

func (o *ReportingSchedule) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ReportingSchedule) GetTagsOk

func (o *ReportingSchedule) 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.

func (*ReportingSchedule) GetTimeZone

func (o *ReportingSchedule) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*ReportingSchedule) GetTimeZoneOk

func (o *ReportingSchedule) 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.

func (*ReportingSchedule) HasMessage

func (o *ReportingSchedule) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReportingSchedule) HasReportId

func (o *ReportingSchedule) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*ReportingSchedule) HasRowCount

func (o *ReportingSchedule) HasRowCount() bool

HasRowCount returns a boolean if a field has been set.

func (*ReportingSchedule) HasSortColumn

func (o *ReportingSchedule) HasSortColumn() bool

HasSortColumn returns a boolean if a field has been set.

func (*ReportingSchedule) HasTags

func (o *ReportingSchedule) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*ReportingSchedule) HasTimeZone

func (o *ReportingSchedule) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (ReportingSchedule) MarshalJSON

func (o ReportingSchedule) MarshalJSON() ([]byte, error)

func (*ReportingSchedule) SetCronExpression

func (o *ReportingSchedule) SetCronExpression(v string)

SetCronExpression sets field value

func (*ReportingSchedule) SetEnabled

func (o *ReportingSchedule) SetEnabled(v bool)

SetEnabled sets field value

func (*ReportingSchedule) SetFileFormat

func (o *ReportingSchedule) SetFileFormat(v string)

SetFileFormat sets field value

func (*ReportingSchedule) SetMessage

func (o *ReportingSchedule) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReportingSchedule) SetRecipients

func (o *ReportingSchedule) SetRecipients(v []string)

SetRecipients sets field value

func (*ReportingSchedule) SetReportId

func (o *ReportingSchedule) SetReportId(v int32)

SetReportId gets a reference to the given int32 and assigns it to the ReportId field.

func (*ReportingSchedule) SetReportType

func (o *ReportingSchedule) SetReportType(v string)

SetReportType sets field value

func (*ReportingSchedule) SetRowCount

func (o *ReportingSchedule) SetRowCount(v int32)

SetRowCount gets a reference to the given int32 and assigns it to the RowCount field.

func (*ReportingSchedule) SetSortColumn

func (o *ReportingSchedule) SetSortColumn(v string)

SetSortColumn gets a reference to the given string and assigns it to the SortColumn field.

func (*ReportingSchedule) SetTags

func (o *ReportingSchedule) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ReportingSchedule) SetTimeZone

func (o *ReportingSchedule) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (ReportingSchedule) ToMap

func (o ReportingSchedule) ToMap() (map[string]interface{}, error)

type ReportingScheduleCreateParameters

type ReportingScheduleCreateParameters struct {
	ReportType string `json:"report_type"`
	// Standard cron expressions are supported e.g. 0 15 10 L * ?  - Schedule at 10:15 AM on the last day of every month, 0 0 2 ? * Mon-Fri - Schedule at 2:00 AM every Monday, Tuesday, Wednesday, Thursday and Friday. For more details kindly refer- \"http://www.quartz-scheduler.org/documentation/\"
	CronExpression string `json:"cron_expression"`
	// Timezones are specified according to the Olson tzinfo database - \"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\".
	TimeZone   *string  `json:"time_zone,omitempty"`
	Message    *string  `json:"message,omitempty"`
	FileFormat string   `json:"file_format"`
	Enabled    bool     `json:"enabled"`
	Recipients []string `json:"recipients"`
	SortColumn *string  `json:"sort_column,omitempty"`
	RowCount   *int32   `json:"row_count,omitempty"`
	// Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
	MakeCurrentAccountOwner *bool `json:"make_current_account_owner,omitempty"`
}

ReportingScheduleCreateParameters struct for ReportingScheduleCreateParameters

func NewReportingScheduleCreateParameters

func NewReportingScheduleCreateParameters(reportType string, cronExpression string, fileFormat string, enabled bool, recipients []string) *ReportingScheduleCreateParameters

NewReportingScheduleCreateParameters instantiates a new ReportingScheduleCreateParameters 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 NewReportingScheduleCreateParametersWithDefaults

func NewReportingScheduleCreateParametersWithDefaults() *ReportingScheduleCreateParameters

NewReportingScheduleCreateParametersWithDefaults instantiates a new ReportingScheduleCreateParameters 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 (*ReportingScheduleCreateParameters) GetCronExpression

func (o *ReportingScheduleCreateParameters) GetCronExpression() string

GetCronExpression returns the CronExpression field value

func (*ReportingScheduleCreateParameters) GetCronExpressionOk

func (o *ReportingScheduleCreateParameters) GetCronExpressionOk() (*string, bool)

GetCronExpressionOk returns a tuple with the CronExpression field value and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetEnabled

func (o *ReportingScheduleCreateParameters) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ReportingScheduleCreateParameters) GetEnabledOk

func (o *ReportingScheduleCreateParameters) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetFileFormat

func (o *ReportingScheduleCreateParameters) GetFileFormat() string

GetFileFormat returns the FileFormat field value

func (*ReportingScheduleCreateParameters) GetFileFormatOk

func (o *ReportingScheduleCreateParameters) GetFileFormatOk() (*string, bool)

GetFileFormatOk returns a tuple with the FileFormat field value and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetMakeCurrentAccountOwner

func (o *ReportingScheduleCreateParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetMakeCurrentAccountOwnerOk

func (o *ReportingScheduleCreateParameters) GetMakeCurrentAccountOwnerOk() (*bool, bool)

GetMakeCurrentAccountOwnerOk returns a tuple with the MakeCurrentAccountOwner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetMessage

func (o *ReportingScheduleCreateParameters) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetMessageOk

func (o *ReportingScheduleCreateParameters) 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.

func (*ReportingScheduleCreateParameters) GetRecipients

func (o *ReportingScheduleCreateParameters) GetRecipients() []string

GetRecipients returns the Recipients field value

func (*ReportingScheduleCreateParameters) GetRecipientsOk

func (o *ReportingScheduleCreateParameters) GetRecipientsOk() ([]string, bool)

GetRecipientsOk returns a tuple with the Recipients field value and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetReportType

func (o *ReportingScheduleCreateParameters) GetReportType() string

GetReportType returns the ReportType field value

func (*ReportingScheduleCreateParameters) GetReportTypeOk

func (o *ReportingScheduleCreateParameters) GetReportTypeOk() (*string, bool)

GetReportTypeOk returns a tuple with the ReportType field value and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetRowCount

func (o *ReportingScheduleCreateParameters) GetRowCount() int32

GetRowCount returns the RowCount field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetRowCountOk

func (o *ReportingScheduleCreateParameters) GetRowCountOk() (*int32, bool)

GetRowCountOk returns a tuple with the RowCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetSortColumn

func (o *ReportingScheduleCreateParameters) GetSortColumn() string

GetSortColumn returns the SortColumn field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetSortColumnOk

func (o *ReportingScheduleCreateParameters) GetSortColumnOk() (*string, bool)

GetSortColumnOk returns a tuple with the SortColumn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingScheduleCreateParameters) GetTimeZone

func (o *ReportingScheduleCreateParameters) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetTimeZoneOk

func (o *ReportingScheduleCreateParameters) 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.

func (*ReportingScheduleCreateParameters) HasMakeCurrentAccountOwner

func (o *ReportingScheduleCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasMessage

func (o *ReportingScheduleCreateParameters) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasRowCount

func (o *ReportingScheduleCreateParameters) HasRowCount() bool

HasRowCount returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasSortColumn

func (o *ReportingScheduleCreateParameters) HasSortColumn() bool

HasSortColumn returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasTimeZone

func (o *ReportingScheduleCreateParameters) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (ReportingScheduleCreateParameters) MarshalJSON

func (o ReportingScheduleCreateParameters) MarshalJSON() ([]byte, error)

func (*ReportingScheduleCreateParameters) SetCronExpression

func (o *ReportingScheduleCreateParameters) SetCronExpression(v string)

SetCronExpression sets field value

func (*ReportingScheduleCreateParameters) SetEnabled

func (o *ReportingScheduleCreateParameters) SetEnabled(v bool)

SetEnabled sets field value

func (*ReportingScheduleCreateParameters) SetFileFormat

func (o *ReportingScheduleCreateParameters) SetFileFormat(v string)

SetFileFormat sets field value

func (*ReportingScheduleCreateParameters) SetMakeCurrentAccountOwner

func (o *ReportingScheduleCreateParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ReportingScheduleCreateParameters) SetMessage

func (o *ReportingScheduleCreateParameters) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReportingScheduleCreateParameters) SetRecipients

func (o *ReportingScheduleCreateParameters) SetRecipients(v []string)

SetRecipients sets field value

func (*ReportingScheduleCreateParameters) SetReportType

func (o *ReportingScheduleCreateParameters) SetReportType(v string)

SetReportType sets field value

func (*ReportingScheduleCreateParameters) SetRowCount

func (o *ReportingScheduleCreateParameters) SetRowCount(v int32)

SetRowCount gets a reference to the given int32 and assigns it to the RowCount field.

func (*ReportingScheduleCreateParameters) SetSortColumn

func (o *ReportingScheduleCreateParameters) SetSortColumn(v string)

SetSortColumn gets a reference to the given string and assigns it to the SortColumn field.

func (*ReportingScheduleCreateParameters) SetTimeZone

func (o *ReportingScheduleCreateParameters) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (ReportingScheduleCreateParameters) ToMap

func (o ReportingScheduleCreateParameters) ToMap() (map[string]interface{}, error)

type Repository

type Repository struct {
	// Entity id of the repository.
	Id *string `json:"id,omitempty"`
	// Name of the repository.
	Name *string `json:"name,omitempty"`
	// The database type of this repository.
	DatabaseType *string `json:"database_type,omitempty"`
	// Flag indicating whether the repository should be used for provisioning.
	AllowProvisioning *bool `json:"allow_provisioning,omitempty"`
	// Flag indicating whether this repository can be used by the Delphix Engine for internal processing.
	IsStaging *bool `json:"is_staging,omitempty"`
	// The Oracle base where database binaries are located.
	OracleBase *string `json:"oracle_base,omitempty"`
	// Version of the repository.
	Version *string `json:"version,omitempty"`
	// 32 or 64 bits.
	Bits *int32 `json:"bits,omitempty"`
	// Group name of the user that owns the install.
	InstallGroup *string `json:"install_group,omitempty"`
	// User name of the user that owns the install.
	InstallUser *string `json:"install_user,omitempty"`
	// Flag indicating whether the install supports Oracle RAC.
	Rac *bool `json:"rac,omitempty"`
	// The network ports for connecting to the database instance.
	Ports []int64 `json:"ports,omitempty"`
	// Fully qualified name of the dump history file.
	DumpHistoryFile *string `json:"dump_history_file,omitempty"`
	// Database page size for the SAP ASE instance.
	PageSize *int64 `json:"page_size,omitempty"`
	// Account the database server instance is running as.
	Owner *string `json:"owner,omitempty"`
	// Directory path where the installation is located.
	InstallationPath *string `json:"installation_path,omitempty"`
	// This property determines if the full-text search and semantic search is installed or not.
	FulltextInstalled *bool `json:"fulltext_installed,omitempty"`
	// The internal version is tied to the data format of a database and is used to detect compatibility.
	InternalVersion *int64 `json:"internal_version,omitempty"`
	// MSSQL cluster instances name.
	MssqlClusterInstancesName []string `json:"mssql_cluster_instances_name,omitempty"`
	// MSSQL cluster instances version.
	MssqlClusterInstancesVersion []string `json:"mssql_cluster_instances_version,omitempty"`
	// Directory where the installation home is located.
	InstallationHome *string `json:"installation_home,omitempty"`
	// MSSQL failover cluster drive letter.
	DriveLetter []string `json:"drive_letter,omitempty"`
}

Repository struct for Repository

func NewRepository

func NewRepository() *Repository

NewRepository instantiates a new Repository 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 NewRepositoryWithDefaults

func NewRepositoryWithDefaults() *Repository

NewRepositoryWithDefaults instantiates a new Repository 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 (*Repository) GetAllowProvisioning

func (o *Repository) GetAllowProvisioning() bool

GetAllowProvisioning returns the AllowProvisioning field value if set, zero value otherwise.

func (*Repository) GetAllowProvisioningOk

func (o *Repository) GetAllowProvisioningOk() (*bool, bool)

GetAllowProvisioningOk returns a tuple with the AllowProvisioning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetBits

func (o *Repository) GetBits() int32

GetBits returns the Bits field value if set, zero value otherwise.

func (*Repository) GetBitsOk

func (o *Repository) GetBitsOk() (*int32, bool)

GetBitsOk returns a tuple with the Bits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetDatabaseType

func (o *Repository) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*Repository) GetDatabaseTypeOk

func (o *Repository) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetDriveLetter

func (o *Repository) GetDriveLetter() []string

GetDriveLetter returns the DriveLetter field value if set, zero value otherwise.

func (*Repository) GetDriveLetterOk

func (o *Repository) GetDriveLetterOk() ([]string, bool)

GetDriveLetterOk returns a tuple with the DriveLetter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetDumpHistoryFile

func (o *Repository) GetDumpHistoryFile() string

GetDumpHistoryFile returns the DumpHistoryFile field value if set, zero value otherwise.

func (*Repository) GetDumpHistoryFileOk

func (o *Repository) GetDumpHistoryFileOk() (*string, bool)

GetDumpHistoryFileOk returns a tuple with the DumpHistoryFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetFulltextInstalled

func (o *Repository) GetFulltextInstalled() bool

GetFulltextInstalled returns the FulltextInstalled field value if set, zero value otherwise.

func (*Repository) GetFulltextInstalledOk

func (o *Repository) GetFulltextInstalledOk() (*bool, bool)

GetFulltextInstalledOk returns a tuple with the FulltextInstalled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetId

func (o *Repository) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Repository) GetIdOk

func (o *Repository) 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.

func (*Repository) GetInstallGroup

func (o *Repository) GetInstallGroup() string

GetInstallGroup returns the InstallGroup field value if set, zero value otherwise.

func (*Repository) GetInstallGroupOk

func (o *Repository) GetInstallGroupOk() (*string, bool)

GetInstallGroupOk returns a tuple with the InstallGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetInstallUser

func (o *Repository) GetInstallUser() string

GetInstallUser returns the InstallUser field value if set, zero value otherwise.

func (*Repository) GetInstallUserOk

func (o *Repository) GetInstallUserOk() (*string, bool)

GetInstallUserOk returns a tuple with the InstallUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetInstallationHome

func (o *Repository) GetInstallationHome() string

GetInstallationHome returns the InstallationHome field value if set, zero value otherwise.

func (*Repository) GetInstallationHomeOk

func (o *Repository) GetInstallationHomeOk() (*string, bool)

GetInstallationHomeOk returns a tuple with the InstallationHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetInstallationPath

func (o *Repository) GetInstallationPath() string

GetInstallationPath returns the InstallationPath field value if set, zero value otherwise.

func (*Repository) GetInstallationPathOk

func (o *Repository) GetInstallationPathOk() (*string, bool)

GetInstallationPathOk returns a tuple with the InstallationPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetInternalVersion

func (o *Repository) GetInternalVersion() int64

GetInternalVersion returns the InternalVersion field value if set, zero value otherwise.

func (*Repository) GetInternalVersionOk

func (o *Repository) GetInternalVersionOk() (*int64, bool)

GetInternalVersionOk returns a tuple with the InternalVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetIsStaging

func (o *Repository) GetIsStaging() bool

GetIsStaging returns the IsStaging field value if set, zero value otherwise.

func (*Repository) GetIsStagingOk

func (o *Repository) GetIsStagingOk() (*bool, bool)

GetIsStagingOk returns a tuple with the IsStaging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetMssqlClusterInstancesName

func (o *Repository) GetMssqlClusterInstancesName() []string

GetMssqlClusterInstancesName returns the MssqlClusterInstancesName field value if set, zero value otherwise.

func (*Repository) GetMssqlClusterInstancesNameOk

func (o *Repository) GetMssqlClusterInstancesNameOk() ([]string, bool)

GetMssqlClusterInstancesNameOk returns a tuple with the MssqlClusterInstancesName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetMssqlClusterInstancesVersion

func (o *Repository) GetMssqlClusterInstancesVersion() []string

GetMssqlClusterInstancesVersion returns the MssqlClusterInstancesVersion field value if set, zero value otherwise.

func (*Repository) GetMssqlClusterInstancesVersionOk

func (o *Repository) GetMssqlClusterInstancesVersionOk() ([]string, bool)

GetMssqlClusterInstancesVersionOk returns a tuple with the MssqlClusterInstancesVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetName

func (o *Repository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Repository) GetNameOk

func (o *Repository) 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.

func (*Repository) GetOracleBase

func (o *Repository) GetOracleBase() string

GetOracleBase returns the OracleBase field value if set, zero value otherwise.

func (*Repository) GetOracleBaseOk

func (o *Repository) GetOracleBaseOk() (*string, bool)

GetOracleBaseOk returns a tuple with the OracleBase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetOwner

func (o *Repository) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Repository) GetOwnerOk

func (o *Repository) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetPageSize

func (o *Repository) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*Repository) GetPageSizeOk

func (o *Repository) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetPorts

func (o *Repository) GetPorts() []int64

GetPorts returns the Ports field value if set, zero value otherwise.

func (*Repository) GetPortsOk

func (o *Repository) GetPortsOk() ([]int64, bool)

GetPortsOk returns a tuple with the Ports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetRac

func (o *Repository) GetRac() bool

GetRac returns the Rac field value if set, zero value otherwise.

func (*Repository) GetRacOk

func (o *Repository) GetRacOk() (*bool, bool)

GetRacOk returns a tuple with the Rac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) GetVersion

func (o *Repository) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Repository) GetVersionOk

func (o *Repository) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Repository) HasAllowProvisioning

func (o *Repository) HasAllowProvisioning() bool

HasAllowProvisioning returns a boolean if a field has been set.

func (*Repository) HasBits

func (o *Repository) HasBits() bool

HasBits returns a boolean if a field has been set.

func (*Repository) HasDatabaseType

func (o *Repository) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*Repository) HasDriveLetter

func (o *Repository) HasDriveLetter() bool

HasDriveLetter returns a boolean if a field has been set.

func (*Repository) HasDumpHistoryFile

func (o *Repository) HasDumpHistoryFile() bool

HasDumpHistoryFile returns a boolean if a field has been set.

func (*Repository) HasFulltextInstalled

func (o *Repository) HasFulltextInstalled() bool

HasFulltextInstalled returns a boolean if a field has been set.

func (*Repository) HasId

func (o *Repository) HasId() bool

HasId returns a boolean if a field has been set.

func (*Repository) HasInstallGroup

func (o *Repository) HasInstallGroup() bool

HasInstallGroup returns a boolean if a field has been set.

func (*Repository) HasInstallUser

func (o *Repository) HasInstallUser() bool

HasInstallUser returns a boolean if a field has been set.

func (*Repository) HasInstallationHome

func (o *Repository) HasInstallationHome() bool

HasInstallationHome returns a boolean if a field has been set.

func (*Repository) HasInstallationPath

func (o *Repository) HasInstallationPath() bool

HasInstallationPath returns a boolean if a field has been set.

func (*Repository) HasInternalVersion

func (o *Repository) HasInternalVersion() bool

HasInternalVersion returns a boolean if a field has been set.

func (*Repository) HasIsStaging

func (o *Repository) HasIsStaging() bool

HasIsStaging returns a boolean if a field has been set.

func (*Repository) HasMssqlClusterInstancesName

func (o *Repository) HasMssqlClusterInstancesName() bool

HasMssqlClusterInstancesName returns a boolean if a field has been set.

func (*Repository) HasMssqlClusterInstancesVersion

func (o *Repository) HasMssqlClusterInstancesVersion() bool

HasMssqlClusterInstancesVersion returns a boolean if a field has been set.

func (*Repository) HasName

func (o *Repository) HasName() bool

HasName returns a boolean if a field has been set.

func (*Repository) HasOracleBase

func (o *Repository) HasOracleBase() bool

HasOracleBase returns a boolean if a field has been set.

func (*Repository) HasOwner

func (o *Repository) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Repository) HasPageSize

func (o *Repository) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*Repository) HasPorts

func (o *Repository) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*Repository) HasRac

func (o *Repository) HasRac() bool

HasRac returns a boolean if a field has been set.

func (*Repository) HasVersion

func (o *Repository) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Repository) MarshalJSON

func (o Repository) MarshalJSON() ([]byte, error)

func (*Repository) SetAllowProvisioning

func (o *Repository) SetAllowProvisioning(v bool)

SetAllowProvisioning gets a reference to the given bool and assigns it to the AllowProvisioning field.

func (*Repository) SetBits

func (o *Repository) SetBits(v int32)

SetBits gets a reference to the given int32 and assigns it to the Bits field.

func (*Repository) SetDatabaseType

func (o *Repository) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*Repository) SetDriveLetter

func (o *Repository) SetDriveLetter(v []string)

SetDriveLetter gets a reference to the given []string and assigns it to the DriveLetter field.

func (*Repository) SetDumpHistoryFile

func (o *Repository) SetDumpHistoryFile(v string)

SetDumpHistoryFile gets a reference to the given string and assigns it to the DumpHistoryFile field.

func (*Repository) SetFulltextInstalled

func (o *Repository) SetFulltextInstalled(v bool)

SetFulltextInstalled gets a reference to the given bool and assigns it to the FulltextInstalled field.

func (*Repository) SetId

func (o *Repository) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Repository) SetInstallGroup

func (o *Repository) SetInstallGroup(v string)

SetInstallGroup gets a reference to the given string and assigns it to the InstallGroup field.

func (*Repository) SetInstallUser

func (o *Repository) SetInstallUser(v string)

SetInstallUser gets a reference to the given string and assigns it to the InstallUser field.

func (*Repository) SetInstallationHome

func (o *Repository) SetInstallationHome(v string)

SetInstallationHome gets a reference to the given string and assigns it to the InstallationHome field.

func (*Repository) SetInstallationPath

func (o *Repository) SetInstallationPath(v string)

SetInstallationPath gets a reference to the given string and assigns it to the InstallationPath field.

func (*Repository) SetInternalVersion

func (o *Repository) SetInternalVersion(v int64)

SetInternalVersion gets a reference to the given int64 and assigns it to the InternalVersion field.

func (*Repository) SetIsStaging

func (o *Repository) SetIsStaging(v bool)

SetIsStaging gets a reference to the given bool and assigns it to the IsStaging field.

func (*Repository) SetMssqlClusterInstancesName

func (o *Repository) SetMssqlClusterInstancesName(v []string)

SetMssqlClusterInstancesName gets a reference to the given []string and assigns it to the MssqlClusterInstancesName field.

func (*Repository) SetMssqlClusterInstancesVersion

func (o *Repository) SetMssqlClusterInstancesVersion(v []string)

SetMssqlClusterInstancesVersion gets a reference to the given []string and assigns it to the MssqlClusterInstancesVersion field.

func (*Repository) SetName

func (o *Repository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Repository) SetOracleBase

func (o *Repository) SetOracleBase(v string)

SetOracleBase gets a reference to the given string and assigns it to the OracleBase field.

func (*Repository) SetOwner

func (o *Repository) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Repository) SetPageSize

func (o *Repository) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*Repository) SetPorts

func (o *Repository) SetPorts(v []int64)

SetPorts gets a reference to the given []int64 and assigns it to the Ports field.

func (*Repository) SetRac

func (o *Repository) SetRac(v bool)

SetRac gets a reference to the given bool and assigns it to the Rac field.

func (*Repository) SetVersion

func (o *Repository) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Repository) ToMap

func (o Repository) ToMap() (map[string]interface{}, error)

type ResetPasswordParameter

type ResetPasswordParameter struct {
	// New password that needs to be set for the Account. Set this to null for unsetting the current password. Not including this property also results in unsetting of the current password.
	NewPassword *string `json:"new_password,omitempty"`
}

ResetPasswordParameter struct for ResetPasswordParameter

func NewResetPasswordParameter

func NewResetPasswordParameter() *ResetPasswordParameter

NewResetPasswordParameter instantiates a new ResetPasswordParameter 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 NewResetPasswordParameterWithDefaults

func NewResetPasswordParameterWithDefaults() *ResetPasswordParameter

NewResetPasswordParameterWithDefaults instantiates a new ResetPasswordParameter 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 (*ResetPasswordParameter) GetNewPassword

func (o *ResetPasswordParameter) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*ResetPasswordParameter) GetNewPasswordOk

func (o *ResetPasswordParameter) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResetPasswordParameter) HasNewPassword

func (o *ResetPasswordParameter) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (ResetPasswordParameter) MarshalJSON

func (o ResetPasswordParameter) MarshalJSON() ([]byte, error)

func (*ResetPasswordParameter) SetNewPassword

func (o *ResetPasswordParameter) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (ResetPasswordParameter) ToMap

func (o ResetPasswordParameter) ToMap() (map[string]interface{}, error)

type Role

type Role struct {
	// The Role name.
	Name string `json:"name"`
	// Role description.
	Description *string `json:"description,omitempty"`
	// The list of permissions granted by this role.
	PermissionObjects []PermissionObject `json:"permission_objects"`
	Tags              []Tag              `json:"tags,omitempty"`
	// The Role ID.
	Id *string `json:"id,omitempty"`
	// System role are pre defined roles. System roles cannot be modified.
	SystemRole *bool `json:"system_role,omitempty"`
}

Role A role is a named collection of permissions on DCT objects.

func NewRole

func NewRole(name string, permissionObjects []PermissionObject) *Role

NewRole instantiates a new Role 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 NewRoleWithDefaults

func NewRoleWithDefaults() *Role

NewRoleWithDefaults instantiates a new Role 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 (*Role) GetDescription

func (o *Role) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Role) GetDescriptionOk

func (o *Role) 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.

func (*Role) GetId

func (o *Role) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Role) GetIdOk

func (o *Role) 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.

func (*Role) GetName

func (o *Role) GetName() string

GetName returns the Name field value

func (*Role) GetNameOk

func (o *Role) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Role) GetPermissionObjects

func (o *Role) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*Role) GetPermissionObjectsOk

func (o *Role) GetPermissionObjectsOk() ([]PermissionObject, bool)

GetPermissionObjectsOk returns a tuple with the PermissionObjects field value and a boolean to check if the value has been set.

func (*Role) GetSystemRole

func (o *Role) GetSystemRole() bool

GetSystemRole returns the SystemRole field value if set, zero value otherwise.

func (*Role) GetSystemRoleOk

func (o *Role) GetSystemRoleOk() (*bool, bool)

GetSystemRoleOk returns a tuple with the SystemRole field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetTags

func (o *Role) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Role) GetTagsOk

func (o *Role) 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.

func (*Role) HasDescription

func (o *Role) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Role) HasId

func (o *Role) HasId() bool

HasId returns a boolean if a field has been set.

func (*Role) HasSystemRole

func (o *Role) HasSystemRole() bool

HasSystemRole returns a boolean if a field has been set.

func (*Role) HasTags

func (o *Role) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Role) MarshalJSON

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetDescription

func (o *Role) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Role) SetId

func (o *Role) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Role) SetName

func (o *Role) SetName(v string)

SetName sets field value

func (*Role) SetPermissionObjects

func (o *Role) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (*Role) SetSystemRole

func (o *Role) SetSystemRole(v bool)

SetSystemRole gets a reference to the given bool and assigns it to the SystemRole field.

func (*Role) SetTags

func (o *Role) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Role) ToMap

func (o Role) ToMap() (map[string]interface{}, error)

type RoleAllOf

type RoleAllOf struct {
	// The Role ID.
	Id *string `json:"id,omitempty"`
	// System role are pre defined roles. System roles cannot be modified.
	SystemRole *bool `json:"system_role,omitempty"`
}

RoleAllOf struct for RoleAllOf

func NewRoleAllOf

func NewRoleAllOf() *RoleAllOf

NewRoleAllOf instantiates a new RoleAllOf 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 NewRoleAllOfWithDefaults

func NewRoleAllOfWithDefaults() *RoleAllOf

NewRoleAllOfWithDefaults instantiates a new RoleAllOf 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 (*RoleAllOf) GetId

func (o *RoleAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RoleAllOf) GetIdOk

func (o *RoleAllOf) 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.

func (*RoleAllOf) GetSystemRole

func (o *RoleAllOf) GetSystemRole() bool

GetSystemRole returns the SystemRole field value if set, zero value otherwise.

func (*RoleAllOf) GetSystemRoleOk

func (o *RoleAllOf) GetSystemRoleOk() (*bool, bool)

GetSystemRoleOk returns a tuple with the SystemRole field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAllOf) HasId

func (o *RoleAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*RoleAllOf) HasSystemRole

func (o *RoleAllOf) HasSystemRole() bool

HasSystemRole returns a boolean if a field has been set.

func (RoleAllOf) MarshalJSON

func (o RoleAllOf) MarshalJSON() ([]byte, error)

func (*RoleAllOf) SetId

func (o *RoleAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RoleAllOf) SetSystemRole

func (o *RoleAllOf) SetSystemRole(v bool)

SetSystemRole gets a reference to the given bool and assigns it to the SystemRole field.

func (RoleAllOf) ToMap

func (o RoleAllOf) ToMap() (map[string]interface{}, error)

type RoleUpdateParameters

type RoleUpdateParameters struct {
	// The role name
	Name *string `json:"name,omitempty"`
	// The role description
	Description *string `json:"description,omitempty"`
}

RoleUpdateParameters struct for RoleUpdateParameters

func NewRoleUpdateParameters

func NewRoleUpdateParameters() *RoleUpdateParameters

NewRoleUpdateParameters instantiates a new RoleUpdateParameters 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 NewRoleUpdateParametersWithDefaults

func NewRoleUpdateParametersWithDefaults() *RoleUpdateParameters

NewRoleUpdateParametersWithDefaults instantiates a new RoleUpdateParameters 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 (*RoleUpdateParameters) GetDescription

func (o *RoleUpdateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RoleUpdateParameters) GetDescriptionOk

func (o *RoleUpdateParameters) 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.

func (*RoleUpdateParameters) GetName

func (o *RoleUpdateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RoleUpdateParameters) GetNameOk

func (o *RoleUpdateParameters) 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.

func (*RoleUpdateParameters) HasDescription

func (o *RoleUpdateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RoleUpdateParameters) HasName

func (o *RoleUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (RoleUpdateParameters) MarshalJSON

func (o RoleUpdateParameters) MarshalJSON() ([]byte, error)

func (*RoleUpdateParameters) SetDescription

func (o *RoleUpdateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RoleUpdateParameters) SetName

func (o *RoleUpdateParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RoleUpdateParameters) ToMap

func (o RoleUpdateParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBBySnapshotParameters

type RollbackVDBBySnapshotParameters struct {
	// The ID of the snapshot from which to execute the operation. If the snapshot_id is not, selects the latest snapshot.
	SnapshotId *string `json:"snapshot_id,omitempty"`
}

RollbackVDBBySnapshotParameters struct for RollbackVDBBySnapshotParameters

func NewRollbackVDBBySnapshotParameters

func NewRollbackVDBBySnapshotParameters() *RollbackVDBBySnapshotParameters

NewRollbackVDBBySnapshotParameters instantiates a new RollbackVDBBySnapshotParameters 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 NewRollbackVDBBySnapshotParametersWithDefaults

func NewRollbackVDBBySnapshotParametersWithDefaults() *RollbackVDBBySnapshotParameters

NewRollbackVDBBySnapshotParametersWithDefaults instantiates a new RollbackVDBBySnapshotParameters 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 (*RollbackVDBBySnapshotParameters) GetSnapshotId

func (o *RollbackVDBBySnapshotParameters) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*RollbackVDBBySnapshotParameters) GetSnapshotIdOk

func (o *RollbackVDBBySnapshotParameters) GetSnapshotIdOk() (*string, bool)

GetSnapshotIdOk returns a tuple with the SnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBBySnapshotParameters) HasSnapshotId

func (o *RollbackVDBBySnapshotParameters) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (RollbackVDBBySnapshotParameters) MarshalJSON

func (o RollbackVDBBySnapshotParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBBySnapshotParameters) SetSnapshotId

func (o *RollbackVDBBySnapshotParameters) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (RollbackVDBBySnapshotParameters) ToMap

func (o RollbackVDBBySnapshotParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBBySnapshotResponse

type RollbackVDBBySnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBBySnapshotResponse struct for RollbackVDBBySnapshotResponse

func NewRollbackVDBBySnapshotResponse

func NewRollbackVDBBySnapshotResponse() *RollbackVDBBySnapshotResponse

NewRollbackVDBBySnapshotResponse instantiates a new RollbackVDBBySnapshotResponse 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 NewRollbackVDBBySnapshotResponseWithDefaults

func NewRollbackVDBBySnapshotResponseWithDefaults() *RollbackVDBBySnapshotResponse

NewRollbackVDBBySnapshotResponseWithDefaults instantiates a new RollbackVDBBySnapshotResponse 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 (*RollbackVDBBySnapshotResponse) GetJob

func (o *RollbackVDBBySnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBBySnapshotResponse) GetJobOk

func (o *RollbackVDBBySnapshotResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBBySnapshotResponse) HasJob

func (o *RollbackVDBBySnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RollbackVDBBySnapshotResponse) MarshalJSON

func (o RollbackVDBBySnapshotResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBBySnapshotResponse) SetJob

func (o *RollbackVDBBySnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBBySnapshotResponse) ToMap

func (o RollbackVDBBySnapshotResponse) ToMap() (map[string]interface{}, error)

type RollbackVDBByTimestampParameters

type RollbackVDBByTimestampParameters struct {
	// The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp.
	TimestampInDatabaseTimezone *string `json:"timestamp_in_database_timezone,omitempty"`
	// The Timeflow ID.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

RollbackVDBByTimestampParameters struct for RollbackVDBByTimestampParameters

func NewRollbackVDBByTimestampParameters

func NewRollbackVDBByTimestampParameters() *RollbackVDBByTimestampParameters

NewRollbackVDBByTimestampParameters instantiates a new RollbackVDBByTimestampParameters 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 NewRollbackVDBByTimestampParametersWithDefaults

func NewRollbackVDBByTimestampParametersWithDefaults() *RollbackVDBByTimestampParameters

NewRollbackVDBByTimestampParametersWithDefaults instantiates a new RollbackVDBByTimestampParameters 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 (*RollbackVDBByTimestampParameters) GetTimeflowId

func (o *RollbackVDBByTimestampParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RollbackVDBByTimestampParameters) GetTimeflowIdOk

func (o *RollbackVDBByTimestampParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBByTimestampParameters) GetTimestamp

func (o *RollbackVDBByTimestampParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*RollbackVDBByTimestampParameters) GetTimestampInDatabaseTimezone

func (o *RollbackVDBByTimestampParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*RollbackVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk

func (o *RollbackVDBByTimestampParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

GetTimestampInDatabaseTimezoneOk returns a tuple with the TimestampInDatabaseTimezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBByTimestampParameters) GetTimestampOk

func (o *RollbackVDBByTimestampParameters) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBByTimestampParameters) HasTimeflowId

func (o *RollbackVDBByTimestampParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*RollbackVDBByTimestampParameters) HasTimestamp

func (o *RollbackVDBByTimestampParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*RollbackVDBByTimestampParameters) HasTimestampInDatabaseTimezone

func (o *RollbackVDBByTimestampParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (RollbackVDBByTimestampParameters) MarshalJSON

func (o RollbackVDBByTimestampParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBByTimestampParameters) SetTimeflowId

func (o *RollbackVDBByTimestampParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*RollbackVDBByTimestampParameters) SetTimestamp

func (o *RollbackVDBByTimestampParameters) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*RollbackVDBByTimestampParameters) SetTimestampInDatabaseTimezone

func (o *RollbackVDBByTimestampParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (RollbackVDBByTimestampParameters) ToMap

func (o RollbackVDBByTimestampParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBByTimestampResponse

type RollbackVDBByTimestampResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBByTimestampResponse struct for RollbackVDBByTimestampResponse

func NewRollbackVDBByTimestampResponse

func NewRollbackVDBByTimestampResponse() *RollbackVDBByTimestampResponse

NewRollbackVDBByTimestampResponse instantiates a new RollbackVDBByTimestampResponse 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 NewRollbackVDBByTimestampResponseWithDefaults

func NewRollbackVDBByTimestampResponseWithDefaults() *RollbackVDBByTimestampResponse

NewRollbackVDBByTimestampResponseWithDefaults instantiates a new RollbackVDBByTimestampResponse 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 (*RollbackVDBByTimestampResponse) GetJob

func (o *RollbackVDBByTimestampResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBByTimestampResponse) GetJobOk

func (o *RollbackVDBByTimestampResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBByTimestampResponse) HasJob

HasJob returns a boolean if a field has been set.

func (RollbackVDBByTimestampResponse) MarshalJSON

func (o RollbackVDBByTimestampResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBByTimestampResponse) SetJob

func (o *RollbackVDBByTimestampResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBByTimestampResponse) ToMap

func (o RollbackVDBByTimestampResponse) ToMap() (map[string]interface{}, error)

type RollbackVDBFromBookmarkParameters

type RollbackVDBFromBookmarkParameters struct {
	// The ID of the bookmark from which to execute the operation. The bookmark must contain only one VDB.
	BookmarkId string `json:"bookmark_id"`
}

RollbackVDBFromBookmarkParameters struct for RollbackVDBFromBookmarkParameters

func NewRollbackVDBFromBookmarkParameters

func NewRollbackVDBFromBookmarkParameters(bookmarkId string) *RollbackVDBFromBookmarkParameters

NewRollbackVDBFromBookmarkParameters instantiates a new RollbackVDBFromBookmarkParameters 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 NewRollbackVDBFromBookmarkParametersWithDefaults

func NewRollbackVDBFromBookmarkParametersWithDefaults() *RollbackVDBFromBookmarkParameters

NewRollbackVDBFromBookmarkParametersWithDefaults instantiates a new RollbackVDBFromBookmarkParameters 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 (*RollbackVDBFromBookmarkParameters) GetBookmarkId

func (o *RollbackVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RollbackVDBFromBookmarkParameters) GetBookmarkIdOk

func (o *RollbackVDBFromBookmarkParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (RollbackVDBFromBookmarkParameters) MarshalJSON

func (o RollbackVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBFromBookmarkParameters) SetBookmarkId

func (o *RollbackVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RollbackVDBFromBookmarkParameters) ToMap

func (o RollbackVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBFromBookmarkResponse

type RollbackVDBFromBookmarkResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBFromBookmarkResponse struct for RollbackVDBFromBookmarkResponse

func NewRollbackVDBFromBookmarkResponse

func NewRollbackVDBFromBookmarkResponse() *RollbackVDBFromBookmarkResponse

NewRollbackVDBFromBookmarkResponse instantiates a new RollbackVDBFromBookmarkResponse 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 NewRollbackVDBFromBookmarkResponseWithDefaults

func NewRollbackVDBFromBookmarkResponseWithDefaults() *RollbackVDBFromBookmarkResponse

NewRollbackVDBFromBookmarkResponseWithDefaults instantiates a new RollbackVDBFromBookmarkResponse 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 (*RollbackVDBFromBookmarkResponse) GetJob

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBFromBookmarkResponse) GetJobOk

func (o *RollbackVDBFromBookmarkResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBFromBookmarkResponse) HasJob

HasJob returns a boolean if a field has been set.

func (RollbackVDBFromBookmarkResponse) MarshalJSON

func (o RollbackVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBFromBookmarkResponse) SetJob

func (o *RollbackVDBFromBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBFromBookmarkResponse) ToMap

func (o RollbackVDBFromBookmarkResponse) ToMap() (map[string]interface{}, error)

type RollbackVDBGroupParameters

type RollbackVDBGroupParameters struct {
	// ID of a bookmark to rollback this VDB Group to.
	BookmarkId string `json:"bookmark_id"`
}

RollbackVDBGroupParameters Parameters to rollback a VDB Group.

func NewRollbackVDBGroupParameters

func NewRollbackVDBGroupParameters(bookmarkId string) *RollbackVDBGroupParameters

NewRollbackVDBGroupParameters instantiates a new RollbackVDBGroupParameters 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 NewRollbackVDBGroupParametersWithDefaults

func NewRollbackVDBGroupParametersWithDefaults() *RollbackVDBGroupParameters

NewRollbackVDBGroupParametersWithDefaults instantiates a new RollbackVDBGroupParameters 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 (*RollbackVDBGroupParameters) GetBookmarkId

func (o *RollbackVDBGroupParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RollbackVDBGroupParameters) GetBookmarkIdOk

func (o *RollbackVDBGroupParameters) GetBookmarkIdOk() (*string, bool)

GetBookmarkIdOk returns a tuple with the BookmarkId field value and a boolean to check if the value has been set.

func (RollbackVDBGroupParameters) MarshalJSON

func (o RollbackVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBGroupParameters) SetBookmarkId

func (o *RollbackVDBGroupParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RollbackVDBGroupParameters) ToMap

func (o RollbackVDBGroupParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBGroupResponse

type RollbackVDBGroupResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBGroupResponse struct for RollbackVDBGroupResponse

func NewRollbackVDBGroupResponse

func NewRollbackVDBGroupResponse() *RollbackVDBGroupResponse

NewRollbackVDBGroupResponse instantiates a new RollbackVDBGroupResponse 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 NewRollbackVDBGroupResponseWithDefaults

func NewRollbackVDBGroupResponseWithDefaults() *RollbackVDBGroupResponse

NewRollbackVDBGroupResponseWithDefaults instantiates a new RollbackVDBGroupResponse 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 (*RollbackVDBGroupResponse) GetJob

func (o *RollbackVDBGroupResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBGroupResponse) GetJobOk

func (o *RollbackVDBGroupResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVDBGroupResponse) HasJob

func (o *RollbackVDBGroupResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RollbackVDBGroupResponse) MarshalJSON

func (o RollbackVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBGroupResponse) SetJob

func (o *RollbackVDBGroupResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBGroupResponse) ToMap

func (o RollbackVDBGroupResponse) ToMap() (map[string]interface{}, error)

type SAMLConfigParams

type SAMLConfigParams struct {
	// When set, SAML settings are enabled. False by default.
	Enabled *bool `json:"enabled,omitempty"`
	// When set, the system will automatically create new Accounts for those who have logged in using SAML. This must be true if SAML user is not already registered in system. True by default.
	AutoCreateUsers *bool `json:"auto_create_users,omitempty"`
	// IdP metadata for this service provider. This is a required property for successful SAML authentication.
	Metadata *string `json:"metadata,omitempty"`
	// Unique identifier of this instance as a SAML/SSO service provider.
	EntityId *string `json:"entity_id,omitempty"`
	// Maximum time difference allowed between a SAML response and the DCT's current time, in seconds. If not set, it defaults to 120 seconds.
	ResponseSkew *int32 `json:"response_skew,omitempty"`
	// Group mapped attribute on SAML to create account tags in DCT.
	GroupAttr *string `json:"group_attr,omitempty"`
	// First name attribute mapped on SAML used for mapping on DCT account.
	FirstNameAttr *string `json:"first_name_attr,omitempty"`
	// Last name attribute mapped on SAML used for mapping on DCT account.
	LastNameAttr *string `json:"last_name_attr,omitempty"`
}

SAMLConfigParams Parameters to read or update SAML Config

func NewSAMLConfigParams

func NewSAMLConfigParams() *SAMLConfigParams

NewSAMLConfigParams instantiates a new SAMLConfigParams 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 NewSAMLConfigParamsWithDefaults

func NewSAMLConfigParamsWithDefaults() *SAMLConfigParams

NewSAMLConfigParamsWithDefaults instantiates a new SAMLConfigParams 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 (*SAMLConfigParams) GetAutoCreateUsers

func (o *SAMLConfigParams) GetAutoCreateUsers() bool

GetAutoCreateUsers returns the AutoCreateUsers field value if set, zero value otherwise.

func (*SAMLConfigParams) GetAutoCreateUsersOk

func (o *SAMLConfigParams) GetAutoCreateUsersOk() (*bool, bool)

GetAutoCreateUsersOk returns a tuple with the AutoCreateUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetEnabled

func (o *SAMLConfigParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*SAMLConfigParams) GetEnabledOk

func (o *SAMLConfigParams) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetEntityId

func (o *SAMLConfigParams) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*SAMLConfigParams) GetEntityIdOk

func (o *SAMLConfigParams) GetEntityIdOk() (*string, bool)

GetEntityIdOk returns a tuple with the EntityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetFirstNameAttr

func (o *SAMLConfigParams) GetFirstNameAttr() string

GetFirstNameAttr returns the FirstNameAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetFirstNameAttrOk

func (o *SAMLConfigParams) GetFirstNameAttrOk() (*string, bool)

GetFirstNameAttrOk returns a tuple with the FirstNameAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetGroupAttr

func (o *SAMLConfigParams) GetGroupAttr() string

GetGroupAttr returns the GroupAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetGroupAttrOk

func (o *SAMLConfigParams) GetGroupAttrOk() (*string, bool)

GetGroupAttrOk returns a tuple with the GroupAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetLastNameAttr

func (o *SAMLConfigParams) GetLastNameAttr() string

GetLastNameAttr returns the LastNameAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetLastNameAttrOk

func (o *SAMLConfigParams) GetLastNameAttrOk() (*string, bool)

GetLastNameAttrOk returns a tuple with the LastNameAttr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetMetadata

func (o *SAMLConfigParams) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SAMLConfigParams) GetMetadataOk

func (o *SAMLConfigParams) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) GetResponseSkew

func (o *SAMLConfigParams) GetResponseSkew() int32

GetResponseSkew returns the ResponseSkew field value if set, zero value otherwise.

func (*SAMLConfigParams) GetResponseSkewOk

func (o *SAMLConfigParams) GetResponseSkewOk() (*int32, bool)

GetResponseSkewOk returns a tuple with the ResponseSkew field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SAMLConfigParams) HasAutoCreateUsers

func (o *SAMLConfigParams) HasAutoCreateUsers() bool

HasAutoCreateUsers returns a boolean if a field has been set.

func (*SAMLConfigParams) HasEnabled

func (o *SAMLConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*SAMLConfigParams) HasEntityId

func (o *SAMLConfigParams) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*SAMLConfigParams) HasFirstNameAttr

func (o *SAMLConfigParams) HasFirstNameAttr() bool

HasFirstNameAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasGroupAttr

func (o *SAMLConfigParams) HasGroupAttr() bool

HasGroupAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasLastNameAttr

func (o *SAMLConfigParams) HasLastNameAttr() bool

HasLastNameAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasMetadata

func (o *SAMLConfigParams) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SAMLConfigParams) HasResponseSkew

func (o *SAMLConfigParams) HasResponseSkew() bool

HasResponseSkew returns a boolean if a field has been set.

func (SAMLConfigParams) MarshalJSON

func (o SAMLConfigParams) MarshalJSON() ([]byte, error)

func (*SAMLConfigParams) SetAutoCreateUsers

func (o *SAMLConfigParams) SetAutoCreateUsers(v bool)

SetAutoCreateUsers gets a reference to the given bool and assigns it to the AutoCreateUsers field.

func (*SAMLConfigParams) SetEnabled

func (o *SAMLConfigParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*SAMLConfigParams) SetEntityId

func (o *SAMLConfigParams) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*SAMLConfigParams) SetFirstNameAttr

func (o *SAMLConfigParams) SetFirstNameAttr(v string)

SetFirstNameAttr gets a reference to the given string and assigns it to the FirstNameAttr field.

func (*SAMLConfigParams) SetGroupAttr

func (o *SAMLConfigParams) SetGroupAttr(v string)

SetGroupAttr gets a reference to the given string and assigns it to the GroupAttr field.

func (*SAMLConfigParams) SetLastNameAttr

func (o *SAMLConfigParams) SetLastNameAttr(v string)

SetLastNameAttr gets a reference to the given string and assigns it to the LastNameAttr field.

func (*SAMLConfigParams) SetMetadata

func (o *SAMLConfigParams) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*SAMLConfigParams) SetResponseSkew

func (o *SAMLConfigParams) SetResponseSkew(v int32)

SetResponseSkew gets a reference to the given int32 and assigns it to the ResponseSkew field.

func (SAMLConfigParams) ToMap

func (o SAMLConfigParams) ToMap() (map[string]interface{}, error)

type SMTPConfigParams

type SMTPConfigParams struct {
	// True if outbound email is enabled.
	Enabled *bool `json:"enabled,omitempty"`
	// IP address or hostname of SMTP relay server.
	Server NullableString `json:"server,omitempty"`
	// Port number to use. A value of -1 indicates the default (25 or 587 for TLS).
	Port NullableInt32 `json:"port,omitempty"`
	// True if username/password authentication should be used.
	AuthenticationEnabled *bool `json:"authentication_enabled,omitempty"`
	// True if TLS (transport layer security) should be used.
	TlsEnabled *bool `json:"tls_enabled,omitempty"`
	// If authentication is enabled, username to use when authenticating to the server.
	Username NullableString `json:"username,omitempty"`
	// If authentication is enabled, password to use when authenticating to the server.
	Password NullableString `json:"password,omitempty"`
	// From address to use when sending mail. If unspecified, 'noreply@delphix.com' is used.
	FromAddress NullableString `json:"from_address,omitempty"`
	// Maximum timeout to wait, in seconds, when sending mail.
	SendTimeout NullableInt32 `json:"send_timeout,omitempty"`
}

SMTPConfigParams Parameters to read or update SMTP Config

func NewSMTPConfigParams

func NewSMTPConfigParams() *SMTPConfigParams

NewSMTPConfigParams instantiates a new SMTPConfigParams 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 NewSMTPConfigParamsWithDefaults

func NewSMTPConfigParamsWithDefaults() *SMTPConfigParams

NewSMTPConfigParamsWithDefaults instantiates a new SMTPConfigParams 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 (*SMTPConfigParams) GetAuthenticationEnabled

func (o *SMTPConfigParams) GetAuthenticationEnabled() bool

GetAuthenticationEnabled returns the AuthenticationEnabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetAuthenticationEnabledOk

func (o *SMTPConfigParams) GetAuthenticationEnabledOk() (*bool, bool)

GetAuthenticationEnabledOk returns a tuple with the AuthenticationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SMTPConfigParams) GetEnabled

func (o *SMTPConfigParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetEnabledOk

func (o *SMTPConfigParams) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SMTPConfigParams) GetFromAddress

func (o *SMTPConfigParams) GetFromAddress() string

GetFromAddress returns the FromAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetFromAddressOk

func (o *SMTPConfigParams) GetFromAddressOk() (*string, bool)

GetFromAddressOk returns a tuple with the FromAddress field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SMTPConfigParams) GetPassword

func (o *SMTPConfigParams) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetPasswordOk

func (o *SMTPConfigParams) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SMTPConfigParams) GetPort

func (o *SMTPConfigParams) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetPortOk

func (o *SMTPConfigParams) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SMTPConfigParams) GetSendTimeout

func (o *SMTPConfigParams) GetSendTimeout() int32

GetSendTimeout returns the SendTimeout field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetSendTimeoutOk

func (o *SMTPConfigParams) GetSendTimeoutOk() (*int32, bool)

GetSendTimeoutOk returns a tuple with the SendTimeout field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SMTPConfigParams) GetServer

func (o *SMTPConfigParams) GetServer() string

GetServer returns the Server field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetServerOk

func (o *SMTPConfigParams) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SMTPConfigParams) GetTlsEnabled

func (o *SMTPConfigParams) GetTlsEnabled() bool

GetTlsEnabled returns the TlsEnabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetTlsEnabledOk

func (o *SMTPConfigParams) GetTlsEnabledOk() (*bool, bool)

GetTlsEnabledOk returns a tuple with the TlsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SMTPConfigParams) GetUsername

func (o *SMTPConfigParams) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SMTPConfigParams) GetUsernameOk

func (o *SMTPConfigParams) 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 (*SMTPConfigParams) HasAuthenticationEnabled

func (o *SMTPConfigParams) HasAuthenticationEnabled() bool

HasAuthenticationEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasEnabled

func (o *SMTPConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasFromAddress

func (o *SMTPConfigParams) HasFromAddress() bool

HasFromAddress returns a boolean if a field has been set.

func (*SMTPConfigParams) HasPassword

func (o *SMTPConfigParams) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*SMTPConfigParams) HasPort

func (o *SMTPConfigParams) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SMTPConfigParams) HasSendTimeout

func (o *SMTPConfigParams) HasSendTimeout() bool

HasSendTimeout returns a boolean if a field has been set.

func (*SMTPConfigParams) HasServer

func (o *SMTPConfigParams) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*SMTPConfigParams) HasTlsEnabled

func (o *SMTPConfigParams) HasTlsEnabled() bool

HasTlsEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasUsername

func (o *SMTPConfigParams) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SMTPConfigParams) MarshalJSON

func (o SMTPConfigParams) MarshalJSON() ([]byte, error)

func (*SMTPConfigParams) SetAuthenticationEnabled

func (o *SMTPConfigParams) SetAuthenticationEnabled(v bool)

SetAuthenticationEnabled gets a reference to the given bool and assigns it to the AuthenticationEnabled field.

func (*SMTPConfigParams) SetEnabled

func (o *SMTPConfigParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*SMTPConfigParams) SetFromAddress

func (o *SMTPConfigParams) SetFromAddress(v string)

SetFromAddress gets a reference to the given NullableString and assigns it to the FromAddress field.

func (*SMTPConfigParams) SetFromAddressNil

func (o *SMTPConfigParams) SetFromAddressNil()

SetFromAddressNil sets the value for FromAddress to be an explicit nil

func (*SMTPConfigParams) SetPassword

func (o *SMTPConfigParams) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*SMTPConfigParams) SetPasswordNil

func (o *SMTPConfigParams) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*SMTPConfigParams) SetPort

func (o *SMTPConfigParams) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*SMTPConfigParams) SetPortNil

func (o *SMTPConfigParams) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*SMTPConfigParams) SetSendTimeout

func (o *SMTPConfigParams) SetSendTimeout(v int32)

SetSendTimeout gets a reference to the given NullableInt32 and assigns it to the SendTimeout field.

func (*SMTPConfigParams) SetSendTimeoutNil

func (o *SMTPConfigParams) SetSendTimeoutNil()

SetSendTimeoutNil sets the value for SendTimeout to be an explicit nil

func (*SMTPConfigParams) SetServer

func (o *SMTPConfigParams) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*SMTPConfigParams) SetServerNil

func (o *SMTPConfigParams) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*SMTPConfigParams) SetTlsEnabled

func (o *SMTPConfigParams) SetTlsEnabled(v bool)

SetTlsEnabled gets a reference to the given bool and assigns it to the TlsEnabled field.

func (*SMTPConfigParams) SetUsername

func (o *SMTPConfigParams) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*SMTPConfigParams) SetUsernameNil

func (o *SMTPConfigParams) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (SMTPConfigParams) ToMap

func (o SMTPConfigParams) ToMap() (map[string]interface{}, error)

func (*SMTPConfigParams) UnsetFromAddress

func (o *SMTPConfigParams) UnsetFromAddress()

UnsetFromAddress ensures that no value is present for FromAddress, not even an explicit nil

func (*SMTPConfigParams) UnsetPassword

func (o *SMTPConfigParams) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*SMTPConfigParams) UnsetPort

func (o *SMTPConfigParams) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*SMTPConfigParams) UnsetSendTimeout

func (o *SMTPConfigParams) UnsetSendTimeout()

UnsetSendTimeout ensures that no value is present for SendTimeout, not even an explicit nil

func (*SMTPConfigParams) UnsetServer

func (o *SMTPConfigParams) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*SMTPConfigParams) UnsetUsername

func (o *SMTPConfigParams) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type SMTPConfigValidate

type SMTPConfigValidate struct {
	ToAddress string `json:"to_address"`
}

SMTPConfigValidate Parameters to validate SMTP Config

func NewSMTPConfigValidate

func NewSMTPConfigValidate(toAddress string) *SMTPConfigValidate

NewSMTPConfigValidate instantiates a new SMTPConfigValidate 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 NewSMTPConfigValidateWithDefaults

func NewSMTPConfigValidateWithDefaults() *SMTPConfigValidate

NewSMTPConfigValidateWithDefaults instantiates a new SMTPConfigValidate 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 (*SMTPConfigValidate) GetToAddress

func (o *SMTPConfigValidate) GetToAddress() string

GetToAddress returns the ToAddress field value

func (*SMTPConfigValidate) GetToAddressOk

func (o *SMTPConfigValidate) GetToAddressOk() (*string, bool)

GetToAddressOk returns a tuple with the ToAddress field value and a boolean to check if the value has been set.

func (SMTPConfigValidate) MarshalJSON

func (o SMTPConfigValidate) MarshalJSON() ([]byte, error)

func (*SMTPConfigValidate) SetToAddress

func (o *SMTPConfigValidate) SetToAddress(v string)

SetToAddress sets field value

func (SMTPConfigValidate) ToMap

func (o SMTPConfigValidate) ToMap() (map[string]interface{}, error)

type SSHVerificationStrategy

type SSHVerificationStrategy struct {
	// The name of the verification strategy.
	Name string `json:"name"`
	// The type of SSH key.
	KeyType *string `json:"key_type,omitempty"`
	// Base64-encoded ssh key of the host for RAW_KEY verification.
	RawKey *string `json:"raw_key,omitempty"`
	// Hash function for the fingerprint for FINGERPRINT verification.
	FingerprintType *string `json:"fingerprint_type,omitempty"`
	// Base-64 encoded fingerprint of the ssh key of the host for FINGERPRINT verification.
	Fingerprint *string `json:"fingerprint,omitempty"`
}

SSHVerificationStrategy Mechanism to use for ssh host verification.

func NewSSHVerificationStrategy

func NewSSHVerificationStrategy(name string) *SSHVerificationStrategy

NewSSHVerificationStrategy instantiates a new SSHVerificationStrategy 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 NewSSHVerificationStrategyWithDefaults

func NewSSHVerificationStrategyWithDefaults() *SSHVerificationStrategy

NewSSHVerificationStrategyWithDefaults instantiates a new SSHVerificationStrategy 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 (*SSHVerificationStrategy) GetFingerprint

func (o *SSHVerificationStrategy) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetFingerprintOk

func (o *SSHVerificationStrategy) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SSHVerificationStrategy) GetFingerprintType

func (o *SSHVerificationStrategy) GetFingerprintType() string

GetFingerprintType returns the FingerprintType field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetFingerprintTypeOk

func (o *SSHVerificationStrategy) GetFingerprintTypeOk() (*string, bool)

GetFingerprintTypeOk returns a tuple with the FingerprintType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SSHVerificationStrategy) GetKeyType

func (o *SSHVerificationStrategy) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetKeyTypeOk

func (o *SSHVerificationStrategy) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SSHVerificationStrategy) GetName

func (o *SSHVerificationStrategy) GetName() string

GetName returns the Name field value

func (*SSHVerificationStrategy) GetNameOk

func (o *SSHVerificationStrategy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SSHVerificationStrategy) GetRawKey

func (o *SSHVerificationStrategy) GetRawKey() string

GetRawKey returns the RawKey field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetRawKeyOk

func (o *SSHVerificationStrategy) GetRawKeyOk() (*string, bool)

GetRawKeyOk returns a tuple with the RawKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SSHVerificationStrategy) HasFingerprint

func (o *SSHVerificationStrategy) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasFingerprintType

func (o *SSHVerificationStrategy) HasFingerprintType() bool

HasFingerprintType returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasKeyType

func (o *SSHVerificationStrategy) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasRawKey

func (o *SSHVerificationStrategy) HasRawKey() bool

HasRawKey returns a boolean if a field has been set.

func (SSHVerificationStrategy) MarshalJSON

func (o SSHVerificationStrategy) MarshalJSON() ([]byte, error)

func (*SSHVerificationStrategy) SetFingerprint

func (o *SSHVerificationStrategy) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*SSHVerificationStrategy) SetFingerprintType

func (o *SSHVerificationStrategy) SetFingerprintType(v string)

SetFingerprintType gets a reference to the given string and assigns it to the FingerprintType field.

func (*SSHVerificationStrategy) SetKeyType

func (o *SSHVerificationStrategy) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*SSHVerificationStrategy) SetName

func (o *SSHVerificationStrategy) SetName(v string)

SetName sets field value

func (*SSHVerificationStrategy) SetRawKey

func (o *SSHVerificationStrategy) SetRawKey(v string)

SetRawKey gets a reference to the given string and assigns it to the RawKey field.

func (SSHVerificationStrategy) ToMap

func (o SSHVerificationStrategy) ToMap() (map[string]interface{}, error)

type SamlLoginApiService

type SamlLoginApiService service

SamlLoginApiService SamlLoginApi service

func (*SamlLoginApiService) CheckSaml

CheckSaml Check if SAML is enabled

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCheckSamlRequest

func (*SamlLoginApiService) CheckSamlExecute

func (a *SamlLoginApiService) CheckSamlExecute(r ApiCheckSamlRequest) (*http.Response, error)

Execute executes the request

type ScopeTag

type ScopeTag struct {
	// Key of the tag
	Key string `json:"key"`
	// Value of the tag
	Value      string          `json:"value"`
	ObjectType *ObjectTypeEnum `json:"object_type,omitempty"`
	Permission *PermissionEnum `json:"permission,omitempty"`
}

ScopeTag struct for ScopeTag

func NewScopeTag

func NewScopeTag(key string, value string) *ScopeTag

NewScopeTag instantiates a new ScopeTag 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 NewScopeTagWithDefaults

func NewScopeTagWithDefaults() *ScopeTag

NewScopeTagWithDefaults instantiates a new ScopeTag 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 (*ScopeTag) GetKey

func (o *ScopeTag) GetKey() string

GetKey returns the Key field value

func (*ScopeTag) GetKeyOk

func (o *ScopeTag) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*ScopeTag) GetObjectType

func (o *ScopeTag) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*ScopeTag) GetObjectTypeOk

func (o *ScopeTag) GetObjectTypeOk() (*ObjectTypeEnum, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeTag) GetPermission

func (o *ScopeTag) GetPermission() PermissionEnum

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ScopeTag) GetPermissionOk

func (o *ScopeTag) GetPermissionOk() (*PermissionEnum, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeTag) GetValue

func (o *ScopeTag) GetValue() string

GetValue returns the Value field value

func (*ScopeTag) GetValueOk

func (o *ScopeTag) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*ScopeTag) HasObjectType

func (o *ScopeTag) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*ScopeTag) HasPermission

func (o *ScopeTag) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (ScopeTag) MarshalJSON

func (o ScopeTag) MarshalJSON() ([]byte, error)

func (*ScopeTag) SetKey

func (o *ScopeTag) SetKey(v string)

SetKey sets field value

func (*ScopeTag) SetObjectType

func (o *ScopeTag) SetObjectType(v ObjectTypeEnum)

SetObjectType gets a reference to the given ObjectTypeEnum and assigns it to the ObjectType field.

func (*ScopeTag) SetPermission

func (o *ScopeTag) SetPermission(v PermissionEnum)

SetPermission gets a reference to the given PermissionEnum and assigns it to the Permission field.

func (*ScopeTag) SetValue

func (o *ScopeTag) SetValue(v string)

SetValue sets field value

func (ScopeTag) ToMap

func (o ScopeTag) ToMap() (map[string]interface{}, error)

type ScopeTagsRequest

type ScopeTagsRequest struct {
	// Array of tags with key value pairs along with optional object_type and permissions
	Tags []ScopeTag `json:"tags"`
}

ScopeTagsRequest struct for ScopeTagsRequest

func NewScopeTagsRequest

func NewScopeTagsRequest(tags []ScopeTag) *ScopeTagsRequest

NewScopeTagsRequest instantiates a new ScopeTagsRequest 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 NewScopeTagsRequestWithDefaults

func NewScopeTagsRequestWithDefaults() *ScopeTagsRequest

NewScopeTagsRequestWithDefaults instantiates a new ScopeTagsRequest 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 (*ScopeTagsRequest) GetTags

func (o *ScopeTagsRequest) GetTags() []ScopeTag

GetTags returns the Tags field value

func (*ScopeTagsRequest) GetTagsOk

func (o *ScopeTagsRequest) GetTagsOk() ([]ScopeTag, bool)

GetTagsOk returns a tuple with the Tags field value and a boolean to check if the value has been set.

func (ScopeTagsRequest) MarshalJSON

func (o ScopeTagsRequest) MarshalJSON() ([]byte, error)

func (*ScopeTagsRequest) SetTags

func (o *ScopeTagsRequest) SetTags(v []ScopeTag)

SetTags sets field value

func (ScopeTagsRequest) ToMap

func (o ScopeTagsRequest) ToMap() (map[string]interface{}, error)

type ScopeTagsResponse

type ScopeTagsResponse struct {
	// Array of tags with key value pairs along with optional object_type and permissions
	Tags []ScopeTag `json:"tags,omitempty"`
}

ScopeTagsResponse struct for ScopeTagsResponse

func NewScopeTagsResponse

func NewScopeTagsResponse() *ScopeTagsResponse

NewScopeTagsResponse instantiates a new ScopeTagsResponse 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 NewScopeTagsResponseWithDefaults

func NewScopeTagsResponseWithDefaults() *ScopeTagsResponse

NewScopeTagsResponseWithDefaults instantiates a new ScopeTagsResponse 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 (*ScopeTagsResponse) GetTags

func (o *ScopeTagsResponse) GetTags() []ScopeTag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ScopeTagsResponse) GetTagsOk

func (o *ScopeTagsResponse) GetTagsOk() ([]ScopeTag, 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.

func (*ScopeTagsResponse) HasTags

func (o *ScopeTagsResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (ScopeTagsResponse) MarshalJSON

func (o ScopeTagsResponse) MarshalJSON() ([]byte, error)

func (*ScopeTagsResponse) SetTags

func (o *ScopeTagsResponse) SetTags(v []ScopeTag)

SetTags gets a reference to the given []ScopeTag and assigns it to the Tags field.

func (ScopeTagsResponse) ToMap

func (o ScopeTagsResponse) ToMap() (map[string]interface{}, error)

type ScopedObjectItem

type ScopedObjectItem struct {
	// ID of the object
	ObjectId   string          `json:"object_id"`
	ObjectType ObjectTypeEnum  `json:"object_type"`
	Permission *PermissionEnum `json:"permission,omitempty"`
}

ScopedObjectItem struct for ScopedObjectItem

func NewScopedObjectItem

func NewScopedObjectItem(objectId string, objectType ObjectTypeEnum) *ScopedObjectItem

NewScopedObjectItem instantiates a new ScopedObjectItem 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 NewScopedObjectItemWithDefaults

func NewScopedObjectItemWithDefaults() *ScopedObjectItem

NewScopedObjectItemWithDefaults instantiates a new ScopedObjectItem 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 (*ScopedObjectItem) GetObjectId

func (o *ScopedObjectItem) GetObjectId() string

GetObjectId returns the ObjectId field value

func (*ScopedObjectItem) GetObjectIdOk

func (o *ScopedObjectItem) GetObjectIdOk() (*string, bool)

GetObjectIdOk returns a tuple with the ObjectId field value and a boolean to check if the value has been set.

func (*ScopedObjectItem) GetObjectType

func (o *ScopedObjectItem) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value

func (*ScopedObjectItem) GetObjectTypeOk

func (o *ScopedObjectItem) GetObjectTypeOk() (*ObjectTypeEnum, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value and a boolean to check if the value has been set.

func (*ScopedObjectItem) GetPermission

func (o *ScopedObjectItem) GetPermission() PermissionEnum

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ScopedObjectItem) GetPermissionOk

func (o *ScopedObjectItem) GetPermissionOk() (*PermissionEnum, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopedObjectItem) HasPermission

func (o *ScopedObjectItem) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (ScopedObjectItem) MarshalJSON

func (o ScopedObjectItem) MarshalJSON() ([]byte, error)

func (*ScopedObjectItem) SetObjectId

func (o *ScopedObjectItem) SetObjectId(v string)

SetObjectId sets field value

func (*ScopedObjectItem) SetObjectType

func (o *ScopedObjectItem) SetObjectType(v ObjectTypeEnum)

SetObjectType sets field value

func (*ScopedObjectItem) SetPermission

func (o *ScopedObjectItem) SetPermission(v PermissionEnum)

SetPermission gets a reference to the given PermissionEnum and assigns it to the Permission field.

func (ScopedObjectItem) ToMap

func (o ScopedObjectItem) ToMap() (map[string]interface{}, error)

type ScopedObjectItemsResponse

type ScopedObjectItemsResponse struct {
	// Array of access group scope objects with object id and object type
	Objects []ScopedObjectItem `json:"objects,omitempty"`
}

ScopedObjectItemsResponse struct for ScopedObjectItemsResponse

func NewScopedObjectItemsResponse

func NewScopedObjectItemsResponse() *ScopedObjectItemsResponse

NewScopedObjectItemsResponse instantiates a new ScopedObjectItemsResponse 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 NewScopedObjectItemsResponseWithDefaults

func NewScopedObjectItemsResponseWithDefaults() *ScopedObjectItemsResponse

NewScopedObjectItemsResponseWithDefaults instantiates a new ScopedObjectItemsResponse 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 (*ScopedObjectItemsResponse) GetObjects

func (o *ScopedObjectItemsResponse) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value if set, zero value otherwise.

func (*ScopedObjectItemsResponse) GetObjectsOk

func (o *ScopedObjectItemsResponse) GetObjectsOk() ([]ScopedObjectItem, bool)

GetObjectsOk returns a tuple with the Objects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopedObjectItemsResponse) HasObjects

func (o *ScopedObjectItemsResponse) HasObjects() bool

HasObjects returns a boolean if a field has been set.

func (ScopedObjectItemsResponse) MarshalJSON

func (o ScopedObjectItemsResponse) MarshalJSON() ([]byte, error)

func (*ScopedObjectItemsResponse) SetObjects

func (o *ScopedObjectItemsResponse) SetObjects(v []ScopedObjectItem)

SetObjects gets a reference to the given []ScopedObjectItem and assigns it to the Objects field.

func (ScopedObjectItemsResponse) ToMap

func (o ScopedObjectItemsResponse) ToMap() (map[string]interface{}, error)

type ScopedObjectsRequest

type ScopedObjectsRequest struct {
	// An array of scoped objects
	Objects []ScopedObjectItem `json:"objects"`
}

ScopedObjectsRequest struct for ScopedObjectsRequest

func NewScopedObjectsRequest

func NewScopedObjectsRequest(objects []ScopedObjectItem) *ScopedObjectsRequest

NewScopedObjectsRequest instantiates a new ScopedObjectsRequest 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 NewScopedObjectsRequestWithDefaults

func NewScopedObjectsRequestWithDefaults() *ScopedObjectsRequest

NewScopedObjectsRequestWithDefaults instantiates a new ScopedObjectsRequest 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 (*ScopedObjectsRequest) GetObjects

func (o *ScopedObjectsRequest) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value

func (*ScopedObjectsRequest) GetObjectsOk

func (o *ScopedObjectsRequest) GetObjectsOk() ([]ScopedObjectItem, bool)

GetObjectsOk returns a tuple with the Objects field value and a boolean to check if the value has been set.

func (ScopedObjectsRequest) MarshalJSON

func (o ScopedObjectsRequest) MarshalJSON() ([]byte, error)

func (*ScopedObjectsRequest) SetObjects

func (o *ScopedObjectsRequest) SetObjects(v []ScopedObjectItem)

SetObjects sets field value

func (ScopedObjectsRequest) ToMap

func (o ScopedObjectsRequest) ToMap() (map[string]interface{}, error)

type SearchAccessGroupsResponse

type SearchAccessGroupsResponse struct {
	Items            []AccessGroup              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchAccessGroupsResponse struct for SearchAccessGroupsResponse

func NewSearchAccessGroupsResponse

func NewSearchAccessGroupsResponse() *SearchAccessGroupsResponse

NewSearchAccessGroupsResponse instantiates a new SearchAccessGroupsResponse 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 NewSearchAccessGroupsResponseWithDefaults

func NewSearchAccessGroupsResponseWithDefaults() *SearchAccessGroupsResponse

NewSearchAccessGroupsResponseWithDefaults instantiates a new SearchAccessGroupsResponse 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 (*SearchAccessGroupsResponse) GetItems

func (o *SearchAccessGroupsResponse) GetItems() []AccessGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchAccessGroupsResponse) GetItemsOk

func (o *SearchAccessGroupsResponse) GetItemsOk() ([]AccessGroup, 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.

func (*SearchAccessGroupsResponse) GetResponseMetadata

func (o *SearchAccessGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchAccessGroupsResponse) GetResponseMetadataOk

func (o *SearchAccessGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchAccessGroupsResponse) HasItems

func (o *SearchAccessGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchAccessGroupsResponse) HasResponseMetadata

func (o *SearchAccessGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchAccessGroupsResponse) MarshalJSON

func (o SearchAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*SearchAccessGroupsResponse) SetItems

func (o *SearchAccessGroupsResponse) SetItems(v []AccessGroup)

SetItems gets a reference to the given []AccessGroup and assigns it to the Items field.

func (*SearchAccessGroupsResponse) SetResponseMetadata

func (o *SearchAccessGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchAccessGroupsResponse) ToMap

func (o SearchAccessGroupsResponse) ToMap() (map[string]interface{}, error)

type SearchAccountsResponse

type SearchAccountsResponse struct {
	Items            []Account                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchAccountsResponse struct for SearchAccountsResponse

func NewSearchAccountsResponse

func NewSearchAccountsResponse() *SearchAccountsResponse

NewSearchAccountsResponse instantiates a new SearchAccountsResponse 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 NewSearchAccountsResponseWithDefaults

func NewSearchAccountsResponseWithDefaults() *SearchAccountsResponse

NewSearchAccountsResponseWithDefaults instantiates a new SearchAccountsResponse 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 (*SearchAccountsResponse) GetItems

func (o *SearchAccountsResponse) GetItems() []Account

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchAccountsResponse) GetItemsOk

func (o *SearchAccountsResponse) GetItemsOk() ([]Account, 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.

func (*SearchAccountsResponse) GetResponseMetadata

func (o *SearchAccountsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchAccountsResponse) GetResponseMetadataOk

func (o *SearchAccountsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchAccountsResponse) HasItems

func (o *SearchAccountsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchAccountsResponse) HasResponseMetadata

func (o *SearchAccountsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchAccountsResponse) MarshalJSON

func (o SearchAccountsResponse) MarshalJSON() ([]byte, error)

func (*SearchAccountsResponse) SetItems

func (o *SearchAccountsResponse) SetItems(v []Account)

SetItems gets a reference to the given []Account and assigns it to the Items field.

func (*SearchAccountsResponse) SetResponseMetadata

func (o *SearchAccountsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchAccountsResponse) ToMap

func (o SearchAccountsResponse) ToMap() (map[string]interface{}, error)

type SearchAlgorithmsResponse

type SearchAlgorithmsResponse struct {
	Items            []Algorithm                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchAlgorithmsResponse struct for SearchAlgorithmsResponse

func NewSearchAlgorithmsResponse

func NewSearchAlgorithmsResponse() *SearchAlgorithmsResponse

NewSearchAlgorithmsResponse instantiates a new SearchAlgorithmsResponse 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 NewSearchAlgorithmsResponseWithDefaults

func NewSearchAlgorithmsResponseWithDefaults() *SearchAlgorithmsResponse

NewSearchAlgorithmsResponseWithDefaults instantiates a new SearchAlgorithmsResponse 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 (*SearchAlgorithmsResponse) GetItems

func (o *SearchAlgorithmsResponse) GetItems() []Algorithm

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchAlgorithmsResponse) GetItemsOk

func (o *SearchAlgorithmsResponse) GetItemsOk() ([]Algorithm, 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.

func (*SearchAlgorithmsResponse) GetResponseMetadata

func (o *SearchAlgorithmsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchAlgorithmsResponse) GetResponseMetadataOk

func (o *SearchAlgorithmsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchAlgorithmsResponse) HasItems

func (o *SearchAlgorithmsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchAlgorithmsResponse) HasResponseMetadata

func (o *SearchAlgorithmsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchAlgorithmsResponse) MarshalJSON

func (o SearchAlgorithmsResponse) MarshalJSON() ([]byte, error)

func (*SearchAlgorithmsResponse) SetItems

func (o *SearchAlgorithmsResponse) SetItems(v []Algorithm)

SetItems gets a reference to the given []Algorithm and assigns it to the Items field.

func (*SearchAlgorithmsResponse) SetResponseMetadata

func (o *SearchAlgorithmsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchAlgorithmsResponse) ToMap

func (o SearchAlgorithmsResponse) ToMap() (map[string]interface{}, error)

type SearchBody

type SearchBody struct {
	FilterExpression *string `json:"filter_expression,omitempty"`
}

SearchBody Search body.

func NewSearchBody

func NewSearchBody() *SearchBody

NewSearchBody instantiates a new SearchBody 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 NewSearchBodyWithDefaults

func NewSearchBodyWithDefaults() *SearchBody

NewSearchBodyWithDefaults instantiates a new SearchBody 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 (*SearchBody) GetFilterExpression

func (o *SearchBody) GetFilterExpression() string

GetFilterExpression returns the FilterExpression field value if set, zero value otherwise.

func (*SearchBody) GetFilterExpressionOk

func (o *SearchBody) GetFilterExpressionOk() (*string, bool)

GetFilterExpressionOk returns a tuple with the FilterExpression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchBody) HasFilterExpression

func (o *SearchBody) HasFilterExpression() bool

HasFilterExpression returns a boolean if a field has been set.

func (SearchBody) MarshalJSON

func (o SearchBody) MarshalJSON() ([]byte, error)

func (*SearchBody) SetFilterExpression

func (o *SearchBody) SetFilterExpression(v string)

SetFilterExpression gets a reference to the given string and assigns it to the FilterExpression field.

func (SearchBody) ToMap

func (o SearchBody) ToMap() (map[string]interface{}, error)

type SearchBookmarksByVDBGroupsResponse

type SearchBookmarksByVDBGroupsResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchBookmarksByVDBGroupsResponse struct for SearchBookmarksByVDBGroupsResponse

func NewSearchBookmarksByVDBGroupsResponse

func NewSearchBookmarksByVDBGroupsResponse() *SearchBookmarksByVDBGroupsResponse

NewSearchBookmarksByVDBGroupsResponse instantiates a new SearchBookmarksByVDBGroupsResponse 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 NewSearchBookmarksByVDBGroupsResponseWithDefaults

func NewSearchBookmarksByVDBGroupsResponseWithDefaults() *SearchBookmarksByVDBGroupsResponse

NewSearchBookmarksByVDBGroupsResponseWithDefaults instantiates a new SearchBookmarksByVDBGroupsResponse 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 (*SearchBookmarksByVDBGroupsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchBookmarksByVDBGroupsResponse) GetItemsOk

func (o *SearchBookmarksByVDBGroupsResponse) GetItemsOk() ([]Bookmark, 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.

func (*SearchBookmarksByVDBGroupsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchBookmarksByVDBGroupsResponse) GetResponseMetadataOk

func (o *SearchBookmarksByVDBGroupsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchBookmarksByVDBGroupsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchBookmarksByVDBGroupsResponse) HasResponseMetadata

func (o *SearchBookmarksByVDBGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchBookmarksByVDBGroupsResponse) MarshalJSON

func (o SearchBookmarksByVDBGroupsResponse) MarshalJSON() ([]byte, error)

func (*SearchBookmarksByVDBGroupsResponse) SetItems

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*SearchBookmarksByVDBGroupsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchBookmarksByVDBGroupsResponse) ToMap

func (o SearchBookmarksByVDBGroupsResponse) ToMap() (map[string]interface{}, error)

type SearchBookmarksByVDBResponse

type SearchBookmarksByVDBResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchBookmarksByVDBResponse struct for SearchBookmarksByVDBResponse

func NewSearchBookmarksByVDBResponse

func NewSearchBookmarksByVDBResponse() *SearchBookmarksByVDBResponse

NewSearchBookmarksByVDBResponse instantiates a new SearchBookmarksByVDBResponse 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 NewSearchBookmarksByVDBResponseWithDefaults

func NewSearchBookmarksByVDBResponseWithDefaults() *SearchBookmarksByVDBResponse

NewSearchBookmarksByVDBResponseWithDefaults instantiates a new SearchBookmarksByVDBResponse 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 (*SearchBookmarksByVDBResponse) GetItems

func (o *SearchBookmarksByVDBResponse) GetItems() []Bookmark

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchBookmarksByVDBResponse) GetItemsOk

func (o *SearchBookmarksByVDBResponse) GetItemsOk() ([]Bookmark, 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.

func (*SearchBookmarksByVDBResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchBookmarksByVDBResponse) GetResponseMetadataOk

func (o *SearchBookmarksByVDBResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchBookmarksByVDBResponse) HasItems

func (o *SearchBookmarksByVDBResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchBookmarksByVDBResponse) HasResponseMetadata

func (o *SearchBookmarksByVDBResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchBookmarksByVDBResponse) MarshalJSON

func (o SearchBookmarksByVDBResponse) MarshalJSON() ([]byte, error)

func (*SearchBookmarksByVDBResponse) SetItems

func (o *SearchBookmarksByVDBResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*SearchBookmarksByVDBResponse) SetResponseMetadata

func (o *SearchBookmarksByVDBResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchBookmarksByVDBResponse) ToMap

func (o SearchBookmarksByVDBResponse) ToMap() (map[string]interface{}, error)

type SearchBookmarksResponse

type SearchBookmarksResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchBookmarksResponse struct for SearchBookmarksResponse

func NewSearchBookmarksResponse

func NewSearchBookmarksResponse() *SearchBookmarksResponse

NewSearchBookmarksResponse instantiates a new SearchBookmarksResponse 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 NewSearchBookmarksResponseWithDefaults

func NewSearchBookmarksResponseWithDefaults() *SearchBookmarksResponse

NewSearchBookmarksResponseWithDefaults instantiates a new SearchBookmarksResponse 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 (*SearchBookmarksResponse) GetItems

func (o *SearchBookmarksResponse) GetItems() []Bookmark

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchBookmarksResponse) GetItemsOk

func (o *SearchBookmarksResponse) GetItemsOk() ([]Bookmark, 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.

func (*SearchBookmarksResponse) GetResponseMetadata

func (o *SearchBookmarksResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchBookmarksResponse) GetResponseMetadataOk

func (o *SearchBookmarksResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchBookmarksResponse) HasItems

func (o *SearchBookmarksResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchBookmarksResponse) HasResponseMetadata

func (o *SearchBookmarksResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchBookmarksResponse) MarshalJSON

func (o SearchBookmarksResponse) MarshalJSON() ([]byte, error)

func (*SearchBookmarksResponse) SetItems

func (o *SearchBookmarksResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*SearchBookmarksResponse) SetResponseMetadata

func (o *SearchBookmarksResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchBookmarksResponse) ToMap

func (o SearchBookmarksResponse) ToMap() (map[string]interface{}, error)

type SearchCDBsResponse

type SearchCDBsResponse struct {
	Items            []CDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchCDBsResponse struct for SearchCDBsResponse

func NewSearchCDBsResponse

func NewSearchCDBsResponse() *SearchCDBsResponse

NewSearchCDBsResponse instantiates a new SearchCDBsResponse 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 NewSearchCDBsResponseWithDefaults

func NewSearchCDBsResponseWithDefaults() *SearchCDBsResponse

NewSearchCDBsResponseWithDefaults instantiates a new SearchCDBsResponse 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 (*SearchCDBsResponse) GetItems

func (o *SearchCDBsResponse) GetItems() []CDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchCDBsResponse) GetItemsOk

func (o *SearchCDBsResponse) GetItemsOk() ([]CDB, 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.

func (*SearchCDBsResponse) GetResponseMetadata

func (o *SearchCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchCDBsResponse) GetResponseMetadataOk

func (o *SearchCDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCDBsResponse) HasItems

func (o *SearchCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchCDBsResponse) HasResponseMetadata

func (o *SearchCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchCDBsResponse) MarshalJSON

func (o SearchCDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchCDBsResponse) SetItems

func (o *SearchCDBsResponse) SetItems(v []CDB)

SetItems gets a reference to the given []CDB and assigns it to the Items field.

func (*SearchCDBsResponse) SetResponseMetadata

func (o *SearchCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchCDBsResponse) ToMap

func (o SearchCDBsResponse) ToMap() (map[string]interface{}, error)

type SearchConnectorsResponse

type SearchConnectorsResponse struct {
	Items            []Connector                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchConnectorsResponse struct for SearchConnectorsResponse

func NewSearchConnectorsResponse

func NewSearchConnectorsResponse() *SearchConnectorsResponse

NewSearchConnectorsResponse instantiates a new SearchConnectorsResponse 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 NewSearchConnectorsResponseWithDefaults

func NewSearchConnectorsResponseWithDefaults() *SearchConnectorsResponse

NewSearchConnectorsResponseWithDefaults instantiates a new SearchConnectorsResponse 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 (*SearchConnectorsResponse) GetItems

func (o *SearchConnectorsResponse) GetItems() []Connector

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchConnectorsResponse) GetItemsOk

func (o *SearchConnectorsResponse) GetItemsOk() ([]Connector, 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.

func (*SearchConnectorsResponse) GetResponseMetadata

func (o *SearchConnectorsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchConnectorsResponse) GetResponseMetadataOk

func (o *SearchConnectorsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchConnectorsResponse) HasItems

func (o *SearchConnectorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchConnectorsResponse) HasResponseMetadata

func (o *SearchConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchConnectorsResponse) MarshalJSON

func (o SearchConnectorsResponse) MarshalJSON() ([]byte, error)

func (*SearchConnectorsResponse) SetItems

func (o *SearchConnectorsResponse) SetItems(v []Connector)

SetItems gets a reference to the given []Connector and assigns it to the Items field.

func (*SearchConnectorsResponse) SetResponseMetadata

func (o *SearchConnectorsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchConnectorsResponse) ToMap

func (o SearchConnectorsResponse) ToMap() (map[string]interface{}, error)

type SearchDSourcesResponse

type SearchDSourcesResponse struct {
	Items            []DSource                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDSourcesResponse struct for SearchDSourcesResponse

func NewSearchDSourcesResponse

func NewSearchDSourcesResponse() *SearchDSourcesResponse

NewSearchDSourcesResponse instantiates a new SearchDSourcesResponse 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 NewSearchDSourcesResponseWithDefaults

func NewSearchDSourcesResponseWithDefaults() *SearchDSourcesResponse

NewSearchDSourcesResponseWithDefaults instantiates a new SearchDSourcesResponse 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 (*SearchDSourcesResponse) GetItems

func (o *SearchDSourcesResponse) GetItems() []DSource

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDSourcesResponse) GetItemsOk

func (o *SearchDSourcesResponse) GetItemsOk() ([]DSource, 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.

func (*SearchDSourcesResponse) GetResponseMetadata

func (o *SearchDSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDSourcesResponse) GetResponseMetadataOk

func (o *SearchDSourcesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchDSourcesResponse) HasItems

func (o *SearchDSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDSourcesResponse) HasResponseMetadata

func (o *SearchDSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDSourcesResponse) MarshalJSON

func (o SearchDSourcesResponse) MarshalJSON() ([]byte, error)

func (*SearchDSourcesResponse) SetItems

func (o *SearchDSourcesResponse) SetItems(v []DSource)

SetItems gets a reference to the given []DSource and assigns it to the Items field.

func (*SearchDSourcesResponse) SetResponseMetadata

func (o *SearchDSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDSourcesResponse) ToMap

func (o SearchDSourcesResponse) ToMap() (map[string]interface{}, error)

type SearchDatabaseTemplatesResponse

type SearchDatabaseTemplatesResponse struct {
	Items            []DatabaseTemplate         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDatabaseTemplatesResponse struct for SearchDatabaseTemplatesResponse

func NewSearchDatabaseTemplatesResponse

func NewSearchDatabaseTemplatesResponse() *SearchDatabaseTemplatesResponse

NewSearchDatabaseTemplatesResponse instantiates a new SearchDatabaseTemplatesResponse 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 NewSearchDatabaseTemplatesResponseWithDefaults

func NewSearchDatabaseTemplatesResponseWithDefaults() *SearchDatabaseTemplatesResponse

NewSearchDatabaseTemplatesResponseWithDefaults instantiates a new SearchDatabaseTemplatesResponse 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 (*SearchDatabaseTemplatesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDatabaseTemplatesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchDatabaseTemplatesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDatabaseTemplatesResponse) GetResponseMetadataOk

func (o *SearchDatabaseTemplatesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchDatabaseTemplatesResponse) HasItems

func (o *SearchDatabaseTemplatesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDatabaseTemplatesResponse) HasResponseMetadata

func (o *SearchDatabaseTemplatesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDatabaseTemplatesResponse) MarshalJSON

func (o SearchDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*SearchDatabaseTemplatesResponse) SetItems

SetItems gets a reference to the given []DatabaseTemplate and assigns it to the Items field.

func (*SearchDatabaseTemplatesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDatabaseTemplatesResponse) ToMap

func (o SearchDatabaseTemplatesResponse) ToMap() (map[string]interface{}, error)

type SearchDatasetGroupResponse

type SearchDatasetGroupResponse struct {
	Items            []DatasetGroup             `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDatasetGroupResponse struct for SearchDatasetGroupResponse

func NewSearchDatasetGroupResponse

func NewSearchDatasetGroupResponse() *SearchDatasetGroupResponse

NewSearchDatasetGroupResponse instantiates a new SearchDatasetGroupResponse 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 NewSearchDatasetGroupResponseWithDefaults

func NewSearchDatasetGroupResponseWithDefaults() *SearchDatasetGroupResponse

NewSearchDatasetGroupResponseWithDefaults instantiates a new SearchDatasetGroupResponse 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 (*SearchDatasetGroupResponse) GetItems

func (o *SearchDatasetGroupResponse) GetItems() []DatasetGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDatasetGroupResponse) GetItemsOk

func (o *SearchDatasetGroupResponse) GetItemsOk() ([]DatasetGroup, 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.

func (*SearchDatasetGroupResponse) GetResponseMetadata

func (o *SearchDatasetGroupResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDatasetGroupResponse) GetResponseMetadataOk

func (o *SearchDatasetGroupResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchDatasetGroupResponse) HasItems

func (o *SearchDatasetGroupResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDatasetGroupResponse) HasResponseMetadata

func (o *SearchDatasetGroupResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDatasetGroupResponse) MarshalJSON

func (o SearchDatasetGroupResponse) MarshalJSON() ([]byte, error)

func (*SearchDatasetGroupResponse) SetItems

func (o *SearchDatasetGroupResponse) SetItems(v []DatasetGroup)

SetItems gets a reference to the given []DatasetGroup and assigns it to the Items field.

func (*SearchDatasetGroupResponse) SetResponseMetadata

func (o *SearchDatasetGroupResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDatasetGroupResponse) ToMap

func (o SearchDatasetGroupResponse) ToMap() (map[string]interface{}, error)

type SearchEnginesResponse

type SearchEnginesResponse struct {
	Items            []RegisteredEngine         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchEnginesResponse struct for SearchEnginesResponse

func NewSearchEnginesResponse

func NewSearchEnginesResponse() *SearchEnginesResponse

NewSearchEnginesResponse instantiates a new SearchEnginesResponse 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 NewSearchEnginesResponseWithDefaults

func NewSearchEnginesResponseWithDefaults() *SearchEnginesResponse

NewSearchEnginesResponseWithDefaults instantiates a new SearchEnginesResponse 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 (*SearchEnginesResponse) GetItems

func (o *SearchEnginesResponse) GetItems() []RegisteredEngine

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchEnginesResponse) GetItemsOk

func (o *SearchEnginesResponse) GetItemsOk() ([]RegisteredEngine, 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.

func (*SearchEnginesResponse) GetResponseMetadata

func (o *SearchEnginesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchEnginesResponse) GetResponseMetadataOk

func (o *SearchEnginesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEnginesResponse) HasItems

func (o *SearchEnginesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchEnginesResponse) HasResponseMetadata

func (o *SearchEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchEnginesResponse) MarshalJSON

func (o SearchEnginesResponse) MarshalJSON() ([]byte, error)

func (*SearchEnginesResponse) SetItems

func (o *SearchEnginesResponse) SetItems(v []RegisteredEngine)

SetItems gets a reference to the given []RegisteredEngine and assigns it to the Items field.

func (*SearchEnginesResponse) SetResponseMetadata

func (o *SearchEnginesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchEnginesResponse) ToMap

func (o SearchEnginesResponse) ToMap() (map[string]interface{}, error)

type SearchEnvironmentsResponse

type SearchEnvironmentsResponse struct {
	Items            []Environment              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchEnvironmentsResponse struct for SearchEnvironmentsResponse

func NewSearchEnvironmentsResponse

func NewSearchEnvironmentsResponse() *SearchEnvironmentsResponse

NewSearchEnvironmentsResponse instantiates a new SearchEnvironmentsResponse 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 NewSearchEnvironmentsResponseWithDefaults

func NewSearchEnvironmentsResponseWithDefaults() *SearchEnvironmentsResponse

NewSearchEnvironmentsResponseWithDefaults instantiates a new SearchEnvironmentsResponse 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 (*SearchEnvironmentsResponse) GetItems

func (o *SearchEnvironmentsResponse) GetItems() []Environment

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchEnvironmentsResponse) GetItemsOk

func (o *SearchEnvironmentsResponse) GetItemsOk() ([]Environment, 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.

func (*SearchEnvironmentsResponse) GetResponseMetadata

func (o *SearchEnvironmentsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchEnvironmentsResponse) GetResponseMetadataOk

func (o *SearchEnvironmentsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEnvironmentsResponse) HasItems

func (o *SearchEnvironmentsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchEnvironmentsResponse) HasResponseMetadata

func (o *SearchEnvironmentsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchEnvironmentsResponse) MarshalJSON

func (o SearchEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*SearchEnvironmentsResponse) SetItems

func (o *SearchEnvironmentsResponse) SetItems(v []Environment)

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (*SearchEnvironmentsResponse) SetResponseMetadata

func (o *SearchEnvironmentsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchEnvironmentsResponse) ToMap

func (o SearchEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type SearchExecutionEventsResponse

type SearchExecutionEventsResponse struct {
	Items            []ExecutionEvent           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchExecutionEventsResponse struct for SearchExecutionEventsResponse

func NewSearchExecutionEventsResponse

func NewSearchExecutionEventsResponse() *SearchExecutionEventsResponse

NewSearchExecutionEventsResponse instantiates a new SearchExecutionEventsResponse 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 NewSearchExecutionEventsResponseWithDefaults

func NewSearchExecutionEventsResponseWithDefaults() *SearchExecutionEventsResponse

NewSearchExecutionEventsResponseWithDefaults instantiates a new SearchExecutionEventsResponse 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 (*SearchExecutionEventsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchExecutionEventsResponse) GetItemsOk

func (o *SearchExecutionEventsResponse) GetItemsOk() ([]ExecutionEvent, 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.

func (*SearchExecutionEventsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchExecutionEventsResponse) GetResponseMetadataOk

func (o *SearchExecutionEventsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchExecutionEventsResponse) HasItems

func (o *SearchExecutionEventsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchExecutionEventsResponse) HasResponseMetadata

func (o *SearchExecutionEventsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchExecutionEventsResponse) MarshalJSON

func (o SearchExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*SearchExecutionEventsResponse) SetItems

SetItems gets a reference to the given []ExecutionEvent and assigns it to the Items field.

func (*SearchExecutionEventsResponse) SetResponseMetadata

func (o *SearchExecutionEventsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchExecutionEventsResponse) ToMap

func (o SearchExecutionEventsResponse) ToMap() (map[string]interface{}, error)

type SearchExecutionsResponse

type SearchExecutionsResponse struct {
	Items            []Execution                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchExecutionsResponse struct for SearchExecutionsResponse

func NewSearchExecutionsResponse

func NewSearchExecutionsResponse() *SearchExecutionsResponse

NewSearchExecutionsResponse instantiates a new SearchExecutionsResponse 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 NewSearchExecutionsResponseWithDefaults

func NewSearchExecutionsResponseWithDefaults() *SearchExecutionsResponse

NewSearchExecutionsResponseWithDefaults instantiates a new SearchExecutionsResponse 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 (*SearchExecutionsResponse) GetItems

func (o *SearchExecutionsResponse) GetItems() []Execution

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchExecutionsResponse) GetItemsOk

func (o *SearchExecutionsResponse) GetItemsOk() ([]Execution, 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.

func (*SearchExecutionsResponse) GetResponseMetadata

func (o *SearchExecutionsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchExecutionsResponse) GetResponseMetadataOk

func (o *SearchExecutionsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchExecutionsResponse) HasItems

func (o *SearchExecutionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchExecutionsResponse) HasResponseMetadata

func (o *SearchExecutionsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchExecutionsResponse) MarshalJSON

func (o SearchExecutionsResponse) MarshalJSON() ([]byte, error)

func (*SearchExecutionsResponse) SetItems

func (o *SearchExecutionsResponse) SetItems(v []Execution)

SetItems gets a reference to the given []Execution and assigns it to the Items field.

func (*SearchExecutionsResponse) SetResponseMetadata

func (o *SearchExecutionsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchExecutionsResponse) ToMap

func (o SearchExecutionsResponse) ToMap() (map[string]interface{}, error)

type SearchHashicorpVaultsResponse

type SearchHashicorpVaultsResponse struct {
	Items            []HashicorpVault           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchHashicorpVaultsResponse struct for SearchHashicorpVaultsResponse

func NewSearchHashicorpVaultsResponse

func NewSearchHashicorpVaultsResponse() *SearchHashicorpVaultsResponse

NewSearchHashicorpVaultsResponse instantiates a new SearchHashicorpVaultsResponse 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 NewSearchHashicorpVaultsResponseWithDefaults

func NewSearchHashicorpVaultsResponseWithDefaults() *SearchHashicorpVaultsResponse

NewSearchHashicorpVaultsResponseWithDefaults instantiates a new SearchHashicorpVaultsResponse 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 (*SearchHashicorpVaultsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHashicorpVaultsResponse) GetItemsOk

func (o *SearchHashicorpVaultsResponse) GetItemsOk() ([]HashicorpVault, 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.

func (*SearchHashicorpVaultsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHashicorpVaultsResponse) GetResponseMetadataOk

func (o *SearchHashicorpVaultsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHashicorpVaultsResponse) HasItems

func (o *SearchHashicorpVaultsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchHashicorpVaultsResponse) HasResponseMetadata

func (o *SearchHashicorpVaultsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHashicorpVaultsResponse) MarshalJSON

func (o SearchHashicorpVaultsResponse) MarshalJSON() ([]byte, error)

func (*SearchHashicorpVaultsResponse) SetItems

SetItems gets a reference to the given []HashicorpVault and assigns it to the Items field.

func (*SearchHashicorpVaultsResponse) SetResponseMetadata

func (o *SearchHashicorpVaultsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHashicorpVaultsResponse) ToMap

func (o SearchHashicorpVaultsResponse) ToMap() (map[string]interface{}, error)

type SearchHyperscaleConnectorsResponse

type SearchHyperscaleConnectorsResponse struct {
	Items            []HyperscaleConnector      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchHyperscaleConnectorsResponse struct for SearchHyperscaleConnectorsResponse

func NewSearchHyperscaleConnectorsResponse

func NewSearchHyperscaleConnectorsResponse() *SearchHyperscaleConnectorsResponse

NewSearchHyperscaleConnectorsResponse instantiates a new SearchHyperscaleConnectorsResponse 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 NewSearchHyperscaleConnectorsResponseWithDefaults

func NewSearchHyperscaleConnectorsResponseWithDefaults() *SearchHyperscaleConnectorsResponse

NewSearchHyperscaleConnectorsResponseWithDefaults instantiates a new SearchHyperscaleConnectorsResponse 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 (*SearchHyperscaleConnectorsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHyperscaleConnectorsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleConnectorsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHyperscaleConnectorsResponse) GetResponseMetadataOk

func (o *SearchHyperscaleConnectorsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleConnectorsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchHyperscaleConnectorsResponse) HasResponseMetadata

func (o *SearchHyperscaleConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHyperscaleConnectorsResponse) MarshalJSON

func (o SearchHyperscaleConnectorsResponse) MarshalJSON() ([]byte, error)

func (*SearchHyperscaleConnectorsResponse) SetItems

SetItems gets a reference to the given []HyperscaleConnector and assigns it to the Items field.

func (*SearchHyperscaleConnectorsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHyperscaleConnectorsResponse) ToMap

func (o SearchHyperscaleConnectorsResponse) ToMap() (map[string]interface{}, error)

type SearchHyperscaleDatasetTablesOrFilesResponse

type SearchHyperscaleDatasetTablesOrFilesResponse struct {
	Items            []HyperscaleDatasetTableOrFile `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata     `json:"response_metadata,omitempty"`
}

SearchHyperscaleDatasetTablesOrFilesResponse struct for SearchHyperscaleDatasetTablesOrFilesResponse

func NewSearchHyperscaleDatasetTablesOrFilesResponse

func NewSearchHyperscaleDatasetTablesOrFilesResponse() *SearchHyperscaleDatasetTablesOrFilesResponse

NewSearchHyperscaleDatasetTablesOrFilesResponse instantiates a new SearchHyperscaleDatasetTablesOrFilesResponse 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 NewSearchHyperscaleDatasetTablesOrFilesResponseWithDefaults

func NewSearchHyperscaleDatasetTablesOrFilesResponseWithDefaults() *SearchHyperscaleDatasetTablesOrFilesResponse

NewSearchHyperscaleDatasetTablesOrFilesResponseWithDefaults instantiates a new SearchHyperscaleDatasetTablesOrFilesResponse 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 (*SearchHyperscaleDatasetTablesOrFilesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) HasResponseMetadata

func (o *SearchHyperscaleDatasetTablesOrFilesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHyperscaleDatasetTablesOrFilesResponse) MarshalJSON

func (*SearchHyperscaleDatasetTablesOrFilesResponse) SetItems

SetItems gets a reference to the given []HyperscaleDatasetTableOrFile and assigns it to the Items field.

func (*SearchHyperscaleDatasetTablesOrFilesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHyperscaleDatasetTablesOrFilesResponse) ToMap

func (o SearchHyperscaleDatasetTablesOrFilesResponse) ToMap() (map[string]interface{}, error)

type SearchHyperscaleDatasetsResponse

type SearchHyperscaleDatasetsResponse struct {
	Items            []HyperscaleDataset        `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchHyperscaleDatasetsResponse struct for SearchHyperscaleDatasetsResponse

func NewSearchHyperscaleDatasetsResponse

func NewSearchHyperscaleDatasetsResponse() *SearchHyperscaleDatasetsResponse

NewSearchHyperscaleDatasetsResponse instantiates a new SearchHyperscaleDatasetsResponse 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 NewSearchHyperscaleDatasetsResponseWithDefaults

func NewSearchHyperscaleDatasetsResponseWithDefaults() *SearchHyperscaleDatasetsResponse

NewSearchHyperscaleDatasetsResponseWithDefaults instantiates a new SearchHyperscaleDatasetsResponse 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 (*SearchHyperscaleDatasetsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHyperscaleDatasetsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleDatasetsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHyperscaleDatasetsResponse) GetResponseMetadataOk

func (o *SearchHyperscaleDatasetsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleDatasetsResponse) HasItems

func (o *SearchHyperscaleDatasetsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchHyperscaleDatasetsResponse) HasResponseMetadata

func (o *SearchHyperscaleDatasetsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHyperscaleDatasetsResponse) MarshalJSON

func (o SearchHyperscaleDatasetsResponse) MarshalJSON() ([]byte, error)

func (*SearchHyperscaleDatasetsResponse) SetItems

SetItems gets a reference to the given []HyperscaleDataset and assigns it to the Items field.

func (*SearchHyperscaleDatasetsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHyperscaleDatasetsResponse) ToMap

func (o SearchHyperscaleDatasetsResponse) ToMap() (map[string]interface{}, error)

type SearchHyperscaleInstancesResponse

type SearchHyperscaleInstancesResponse struct {
	Items            []HyperscaleInstance       `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchHyperscaleInstancesResponse struct for SearchHyperscaleInstancesResponse

func NewSearchHyperscaleInstancesResponse

func NewSearchHyperscaleInstancesResponse() *SearchHyperscaleInstancesResponse

NewSearchHyperscaleInstancesResponse instantiates a new SearchHyperscaleInstancesResponse 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 NewSearchHyperscaleInstancesResponseWithDefaults

func NewSearchHyperscaleInstancesResponseWithDefaults() *SearchHyperscaleInstancesResponse

NewSearchHyperscaleInstancesResponseWithDefaults instantiates a new SearchHyperscaleInstancesResponse 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 (*SearchHyperscaleInstancesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHyperscaleInstancesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleInstancesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHyperscaleInstancesResponse) GetResponseMetadataOk

func (o *SearchHyperscaleInstancesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleInstancesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchHyperscaleInstancesResponse) HasResponseMetadata

func (o *SearchHyperscaleInstancesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHyperscaleInstancesResponse) MarshalJSON

func (o SearchHyperscaleInstancesResponse) MarshalJSON() ([]byte, error)

func (*SearchHyperscaleInstancesResponse) SetItems

SetItems gets a reference to the given []HyperscaleInstance and assigns it to the Items field.

func (*SearchHyperscaleInstancesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHyperscaleInstancesResponse) ToMap

func (o SearchHyperscaleInstancesResponse) ToMap() (map[string]interface{}, error)

type SearchHyperscaleMountPointsResponse

type SearchHyperscaleMountPointsResponse struct {
	Items            []HyperscaleMountPoint     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchHyperscaleMountPointsResponse struct for SearchHyperscaleMountPointsResponse

func NewSearchHyperscaleMountPointsResponse

func NewSearchHyperscaleMountPointsResponse() *SearchHyperscaleMountPointsResponse

NewSearchHyperscaleMountPointsResponse instantiates a new SearchHyperscaleMountPointsResponse 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 NewSearchHyperscaleMountPointsResponseWithDefaults

func NewSearchHyperscaleMountPointsResponseWithDefaults() *SearchHyperscaleMountPointsResponse

NewSearchHyperscaleMountPointsResponseWithDefaults instantiates a new SearchHyperscaleMountPointsResponse 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 (*SearchHyperscaleMountPointsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchHyperscaleMountPointsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleMountPointsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchHyperscaleMountPointsResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHyperscaleMountPointsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchHyperscaleMountPointsResponse) HasResponseMetadata

func (o *SearchHyperscaleMountPointsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchHyperscaleMountPointsResponse) MarshalJSON

func (o SearchHyperscaleMountPointsResponse) MarshalJSON() ([]byte, error)

func (*SearchHyperscaleMountPointsResponse) SetItems

SetItems gets a reference to the given []HyperscaleMountPoint and assigns it to the Items field.

func (*SearchHyperscaleMountPointsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchHyperscaleMountPointsResponse) ToMap

func (o SearchHyperscaleMountPointsResponse) ToMap() (map[string]interface{}, error)

type SearchJobsResponse

type SearchJobsResponse struct {
	Items            []Job                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchJobsResponse struct for SearchJobsResponse

func NewSearchJobsResponse

func NewSearchJobsResponse() *SearchJobsResponse

NewSearchJobsResponse instantiates a new SearchJobsResponse 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 NewSearchJobsResponseWithDefaults

func NewSearchJobsResponseWithDefaults() *SearchJobsResponse

NewSearchJobsResponseWithDefaults instantiates a new SearchJobsResponse 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 (*SearchJobsResponse) GetItems

func (o *SearchJobsResponse) GetItems() []Job

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchJobsResponse) GetItemsOk

func (o *SearchJobsResponse) GetItemsOk() ([]Job, 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.

func (*SearchJobsResponse) GetResponseMetadata

func (o *SearchJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchJobsResponse) GetResponseMetadataOk

func (o *SearchJobsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchJobsResponse) HasItems

func (o *SearchJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchJobsResponse) HasResponseMetadata

func (o *SearchJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchJobsResponse) MarshalJSON

func (o SearchJobsResponse) MarshalJSON() ([]byte, error)

func (*SearchJobsResponse) SetItems

func (o *SearchJobsResponse) SetItems(v []Job)

SetItems gets a reference to the given []Job and assigns it to the Items field.

func (*SearchJobsResponse) SetResponseMetadata

func (o *SearchJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchJobsResponse) ToMap

func (o SearchJobsResponse) ToMap() (map[string]interface{}, error)

type SearchKerberosConfigsResponse

type SearchKerberosConfigsResponse struct {
	Items            []KerberosConfig           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchKerberosConfigsResponse struct for SearchKerberosConfigsResponse

func NewSearchKerberosConfigsResponse

func NewSearchKerberosConfigsResponse() *SearchKerberosConfigsResponse

NewSearchKerberosConfigsResponse instantiates a new SearchKerberosConfigsResponse 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 NewSearchKerberosConfigsResponseWithDefaults

func NewSearchKerberosConfigsResponseWithDefaults() *SearchKerberosConfigsResponse

NewSearchKerberosConfigsResponseWithDefaults instantiates a new SearchKerberosConfigsResponse 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 (*SearchKerberosConfigsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchKerberosConfigsResponse) GetItemsOk

func (o *SearchKerberosConfigsResponse) GetItemsOk() ([]KerberosConfig, 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.

func (*SearchKerberosConfigsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchKerberosConfigsResponse) GetResponseMetadataOk

func (o *SearchKerberosConfigsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchKerberosConfigsResponse) HasItems

func (o *SearchKerberosConfigsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchKerberosConfigsResponse) HasResponseMetadata

func (o *SearchKerberosConfigsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchKerberosConfigsResponse) MarshalJSON

func (o SearchKerberosConfigsResponse) MarshalJSON() ([]byte, error)

func (*SearchKerberosConfigsResponse) SetItems

SetItems gets a reference to the given []KerberosConfig and assigns it to the Items field.

func (*SearchKerberosConfigsResponse) SetResponseMetadata

func (o *SearchKerberosConfigsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchKerberosConfigsResponse) ToMap

func (o SearchKerberosConfigsResponse) ToMap() (map[string]interface{}, error)

type SearchMaskingEnvironmentsResponse

type SearchMaskingEnvironmentsResponse struct {
	Items            []MaskingEnvironment       `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchMaskingEnvironmentsResponse struct for SearchMaskingEnvironmentsResponse

func NewSearchMaskingEnvironmentsResponse

func NewSearchMaskingEnvironmentsResponse() *SearchMaskingEnvironmentsResponse

NewSearchMaskingEnvironmentsResponse instantiates a new SearchMaskingEnvironmentsResponse 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 NewSearchMaskingEnvironmentsResponseWithDefaults

func NewSearchMaskingEnvironmentsResponseWithDefaults() *SearchMaskingEnvironmentsResponse

NewSearchMaskingEnvironmentsResponseWithDefaults instantiates a new SearchMaskingEnvironmentsResponse 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 (*SearchMaskingEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchMaskingEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMaskingEnvironmentsResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchMaskingEnvironmentsResponse) GetResponseMetadataOk

func (o *SearchMaskingEnvironmentsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMaskingEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchMaskingEnvironmentsResponse) HasResponseMetadata

func (o *SearchMaskingEnvironmentsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchMaskingEnvironmentsResponse) MarshalJSON

func (o SearchMaskingEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*SearchMaskingEnvironmentsResponse) SetItems

SetItems gets a reference to the given []MaskingEnvironment and assigns it to the Items field.

func (*SearchMaskingEnvironmentsResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchMaskingEnvironmentsResponse) ToMap

func (o SearchMaskingEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type SearchMaskingJobSourceEnginesResponse

type SearchMaskingJobSourceEnginesResponse struct {
	Items            []MaskingJobSourceEngine   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchMaskingJobSourceEnginesResponse struct for SearchMaskingJobSourceEnginesResponse

func NewSearchMaskingJobSourceEnginesResponse

func NewSearchMaskingJobSourceEnginesResponse() *SearchMaskingJobSourceEnginesResponse

NewSearchMaskingJobSourceEnginesResponse instantiates a new SearchMaskingJobSourceEnginesResponse 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 NewSearchMaskingJobSourceEnginesResponseWithDefaults

func NewSearchMaskingJobSourceEnginesResponseWithDefaults() *SearchMaskingJobSourceEnginesResponse

NewSearchMaskingJobSourceEnginesResponseWithDefaults instantiates a new SearchMaskingJobSourceEnginesResponse 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 (*SearchMaskingJobSourceEnginesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchMaskingJobSourceEnginesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMaskingJobSourceEnginesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchMaskingJobSourceEnginesResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMaskingJobSourceEnginesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchMaskingJobSourceEnginesResponse) HasResponseMetadata

func (o *SearchMaskingJobSourceEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchMaskingJobSourceEnginesResponse) MarshalJSON

func (o SearchMaskingJobSourceEnginesResponse) MarshalJSON() ([]byte, error)

func (*SearchMaskingJobSourceEnginesResponse) SetItems

SetItems gets a reference to the given []MaskingJobSourceEngine and assigns it to the Items field.

func (*SearchMaskingJobSourceEnginesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchMaskingJobSourceEnginesResponse) ToMap

func (o SearchMaskingJobSourceEnginesResponse) ToMap() (map[string]interface{}, error)

type SearchMaskingJobsResponse

type SearchMaskingJobsResponse struct {
	Items            []MaskingJob               `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchMaskingJobsResponse struct for SearchMaskingJobsResponse

func NewSearchMaskingJobsResponse

func NewSearchMaskingJobsResponse() *SearchMaskingJobsResponse

NewSearchMaskingJobsResponse instantiates a new SearchMaskingJobsResponse 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 NewSearchMaskingJobsResponseWithDefaults

func NewSearchMaskingJobsResponseWithDefaults() *SearchMaskingJobsResponse

NewSearchMaskingJobsResponseWithDefaults instantiates a new SearchMaskingJobsResponse 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 (*SearchMaskingJobsResponse) GetItems

func (o *SearchMaskingJobsResponse) GetItems() []MaskingJob

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchMaskingJobsResponse) GetItemsOk

func (o *SearchMaskingJobsResponse) GetItemsOk() ([]MaskingJob, 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.

func (*SearchMaskingJobsResponse) GetResponseMetadata

func (o *SearchMaskingJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchMaskingJobsResponse) GetResponseMetadataOk

func (o *SearchMaskingJobsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMaskingJobsResponse) HasItems

func (o *SearchMaskingJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchMaskingJobsResponse) HasResponseMetadata

func (o *SearchMaskingJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchMaskingJobsResponse) MarshalJSON

func (o SearchMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*SearchMaskingJobsResponse) SetItems

func (o *SearchMaskingJobsResponse) SetItems(v []MaskingJob)

SetItems gets a reference to the given []MaskingJob and assigns it to the Items field.

func (*SearchMaskingJobsResponse) SetResponseMetadata

func (o *SearchMaskingJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchMaskingJobsResponse) ToMap

func (o SearchMaskingJobsResponse) ToMap() (map[string]interface{}, error)

type SearchPasswordVaultResponse

type SearchPasswordVaultResponse struct {
	Items            []PasswordVault            `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchPasswordVaultResponse struct for SearchPasswordVaultResponse

func NewSearchPasswordVaultResponse

func NewSearchPasswordVaultResponse() *SearchPasswordVaultResponse

NewSearchPasswordVaultResponse instantiates a new SearchPasswordVaultResponse 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 NewSearchPasswordVaultResponseWithDefaults

func NewSearchPasswordVaultResponseWithDefaults() *SearchPasswordVaultResponse

NewSearchPasswordVaultResponseWithDefaults instantiates a new SearchPasswordVaultResponse 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 (*SearchPasswordVaultResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchPasswordVaultResponse) GetItemsOk

func (o *SearchPasswordVaultResponse) GetItemsOk() ([]PasswordVault, 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.

func (*SearchPasswordVaultResponse) GetResponseMetadata

func (o *SearchPasswordVaultResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchPasswordVaultResponse) GetResponseMetadataOk

func (o *SearchPasswordVaultResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchPasswordVaultResponse) HasItems

func (o *SearchPasswordVaultResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchPasswordVaultResponse) HasResponseMetadata

func (o *SearchPasswordVaultResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchPasswordVaultResponse) MarshalJSON

func (o SearchPasswordVaultResponse) MarshalJSON() ([]byte, error)

func (*SearchPasswordVaultResponse) SetItems

func (o *SearchPasswordVaultResponse) SetItems(v []PasswordVault)

SetItems gets a reference to the given []PasswordVault and assigns it to the Items field.

func (*SearchPasswordVaultResponse) SetResponseMetadata

func (o *SearchPasswordVaultResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchPasswordVaultResponse) ToMap

func (o SearchPasswordVaultResponse) ToMap() (map[string]interface{}, error)

type SearchReportingScheduleResponse

type SearchReportingScheduleResponse struct {
	Items            []ReportingSchedule        `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchReportingScheduleResponse struct for SearchReportingScheduleResponse

func NewSearchReportingScheduleResponse

func NewSearchReportingScheduleResponse() *SearchReportingScheduleResponse

NewSearchReportingScheduleResponse instantiates a new SearchReportingScheduleResponse 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 NewSearchReportingScheduleResponseWithDefaults

func NewSearchReportingScheduleResponseWithDefaults() *SearchReportingScheduleResponse

NewSearchReportingScheduleResponseWithDefaults instantiates a new SearchReportingScheduleResponse 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 (*SearchReportingScheduleResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchReportingScheduleResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchReportingScheduleResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchReportingScheduleResponse) GetResponseMetadataOk

func (o *SearchReportingScheduleResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchReportingScheduleResponse) HasItems

func (o *SearchReportingScheduleResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchReportingScheduleResponse) HasResponseMetadata

func (o *SearchReportingScheduleResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchReportingScheduleResponse) MarshalJSON

func (o SearchReportingScheduleResponse) MarshalJSON() ([]byte, error)

func (*SearchReportingScheduleResponse) SetItems

SetItems gets a reference to the given []ReportingSchedule and assigns it to the Items field.

func (*SearchReportingScheduleResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchReportingScheduleResponse) ToMap

func (o SearchReportingScheduleResponse) ToMap() (map[string]interface{}, error)

type SearchRolesResponse

type SearchRolesResponse struct {
	Items            []Role                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchRolesResponse struct for SearchRolesResponse

func NewSearchRolesResponse

func NewSearchRolesResponse() *SearchRolesResponse

NewSearchRolesResponse instantiates a new SearchRolesResponse 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 NewSearchRolesResponseWithDefaults

func NewSearchRolesResponseWithDefaults() *SearchRolesResponse

NewSearchRolesResponseWithDefaults instantiates a new SearchRolesResponse 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 (*SearchRolesResponse) GetItems

func (o *SearchRolesResponse) GetItems() []Role

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchRolesResponse) GetItemsOk

func (o *SearchRolesResponse) GetItemsOk() ([]Role, 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.

func (*SearchRolesResponse) GetResponseMetadata

func (o *SearchRolesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchRolesResponse) GetResponseMetadataOk

func (o *SearchRolesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchRolesResponse) HasItems

func (o *SearchRolesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchRolesResponse) HasResponseMetadata

func (o *SearchRolesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchRolesResponse) MarshalJSON

func (o SearchRolesResponse) MarshalJSON() ([]byte, error)

func (*SearchRolesResponse) SetItems

func (o *SearchRolesResponse) SetItems(v []Role)

SetItems gets a reference to the given []Role and assigns it to the Items field.

func (*SearchRolesResponse) SetResponseMetadata

func (o *SearchRolesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchRolesResponse) ToMap

func (o SearchRolesResponse) ToMap() (map[string]interface{}, error)

type SearchSnapshotsResponse

type SearchSnapshotsResponse struct {
	Items            []Snapshot                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchSnapshotsResponse struct for SearchSnapshotsResponse

func NewSearchSnapshotsResponse

func NewSearchSnapshotsResponse() *SearchSnapshotsResponse

NewSearchSnapshotsResponse instantiates a new SearchSnapshotsResponse 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 NewSearchSnapshotsResponseWithDefaults

func NewSearchSnapshotsResponseWithDefaults() *SearchSnapshotsResponse

NewSearchSnapshotsResponseWithDefaults instantiates a new SearchSnapshotsResponse 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 (*SearchSnapshotsResponse) GetItems

func (o *SearchSnapshotsResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchSnapshotsResponse) GetItemsOk

func (o *SearchSnapshotsResponse) GetItemsOk() ([]Snapshot, 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.

func (*SearchSnapshotsResponse) GetResponseMetadata

func (o *SearchSnapshotsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchSnapshotsResponse) GetResponseMetadataOk

func (o *SearchSnapshotsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchSnapshotsResponse) HasItems

func (o *SearchSnapshotsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchSnapshotsResponse) HasResponseMetadata

func (o *SearchSnapshotsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchSnapshotsResponse) MarshalJSON

func (o SearchSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*SearchSnapshotsResponse) SetItems

func (o *SearchSnapshotsResponse) SetItems(v []Snapshot)

SetItems gets a reference to the given []Snapshot and assigns it to the Items field.

func (*SearchSnapshotsResponse) SetResponseMetadata

func (o *SearchSnapshotsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchSnapshotsResponse) ToMap

func (o SearchSnapshotsResponse) ToMap() (map[string]interface{}, error)

type SearchSourcesResponse

type SearchSourcesResponse struct {
	Items            []Source                   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchSourcesResponse struct for SearchSourcesResponse

func NewSearchSourcesResponse

func NewSearchSourcesResponse() *SearchSourcesResponse

NewSearchSourcesResponse instantiates a new SearchSourcesResponse 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 NewSearchSourcesResponseWithDefaults

func NewSearchSourcesResponseWithDefaults() *SearchSourcesResponse

NewSearchSourcesResponseWithDefaults instantiates a new SearchSourcesResponse 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 (*SearchSourcesResponse) GetItems

func (o *SearchSourcesResponse) GetItems() []Source

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchSourcesResponse) GetItemsOk

func (o *SearchSourcesResponse) GetItemsOk() ([]Source, 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.

func (*SearchSourcesResponse) GetResponseMetadata

func (o *SearchSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchSourcesResponse) GetResponseMetadataOk

func (o *SearchSourcesResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchSourcesResponse) HasItems

func (o *SearchSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchSourcesResponse) HasResponseMetadata

func (o *SearchSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchSourcesResponse) MarshalJSON

func (o SearchSourcesResponse) MarshalJSON() ([]byte, error)

func (*SearchSourcesResponse) SetItems

func (o *SearchSourcesResponse) SetItems(v []Source)

SetItems gets a reference to the given []Source and assigns it to the Items field.

func (*SearchSourcesResponse) SetResponseMetadata

func (o *SearchSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchSourcesResponse) ToMap

func (o SearchSourcesResponse) ToMap() (map[string]interface{}, error)

type SearchTimeflowsResponse

type SearchTimeflowsResponse struct {
	Items            []Timeflow                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchTimeflowsResponse struct for SearchTimeflowsResponse

func NewSearchTimeflowsResponse

func NewSearchTimeflowsResponse() *SearchTimeflowsResponse

NewSearchTimeflowsResponse instantiates a new SearchTimeflowsResponse 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 NewSearchTimeflowsResponseWithDefaults

func NewSearchTimeflowsResponseWithDefaults() *SearchTimeflowsResponse

NewSearchTimeflowsResponseWithDefaults instantiates a new SearchTimeflowsResponse 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 (*SearchTimeflowsResponse) GetItems

func (o *SearchTimeflowsResponse) GetItems() []Timeflow

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchTimeflowsResponse) GetItemsOk

func (o *SearchTimeflowsResponse) GetItemsOk() ([]Timeflow, 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.

func (*SearchTimeflowsResponse) GetResponseMetadata

func (o *SearchTimeflowsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchTimeflowsResponse) GetResponseMetadataOk

func (o *SearchTimeflowsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchTimeflowsResponse) HasItems

func (o *SearchTimeflowsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchTimeflowsResponse) HasResponseMetadata

func (o *SearchTimeflowsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchTimeflowsResponse) MarshalJSON

func (o SearchTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*SearchTimeflowsResponse) SetItems

func (o *SearchTimeflowsResponse) SetItems(v []Timeflow)

SetItems gets a reference to the given []Timeflow and assigns it to the Items field.

func (*SearchTimeflowsResponse) SetResponseMetadata

func (o *SearchTimeflowsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchTimeflowsResponse) ToMap

func (o SearchTimeflowsResponse) ToMap() (map[string]interface{}, error)

type SearchVCDBsResponse

type SearchVCDBsResponse struct {
	Items            []VCDB                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVCDBsResponse struct for SearchVCDBsResponse

func NewSearchVCDBsResponse

func NewSearchVCDBsResponse() *SearchVCDBsResponse

NewSearchVCDBsResponse instantiates a new SearchVCDBsResponse 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 NewSearchVCDBsResponseWithDefaults

func NewSearchVCDBsResponseWithDefaults() *SearchVCDBsResponse

NewSearchVCDBsResponseWithDefaults instantiates a new SearchVCDBsResponse 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 (*SearchVCDBsResponse) GetItems

func (o *SearchVCDBsResponse) GetItems() []VCDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVCDBsResponse) GetItemsOk

func (o *SearchVCDBsResponse) GetItemsOk() ([]VCDB, 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.

func (*SearchVCDBsResponse) GetResponseMetadata

func (o *SearchVCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVCDBsResponse) GetResponseMetadataOk

func (o *SearchVCDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVCDBsResponse) HasItems

func (o *SearchVCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVCDBsResponse) HasResponseMetadata

func (o *SearchVCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVCDBsResponse) MarshalJSON

func (o SearchVCDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchVCDBsResponse) SetItems

func (o *SearchVCDBsResponse) SetItems(v []VCDB)

SetItems gets a reference to the given []VCDB and assigns it to the Items field.

func (*SearchVCDBsResponse) SetResponseMetadata

func (o *SearchVCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVCDBsResponse) ToMap

func (o SearchVCDBsResponse) ToMap() (map[string]interface{}, error)

type SearchVDBGroupResponse

type SearchVDBGroupResponse struct {
	Items            []VDBGroup                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVDBGroupResponse struct for SearchVDBGroupResponse

func NewSearchVDBGroupResponse

func NewSearchVDBGroupResponse() *SearchVDBGroupResponse

NewSearchVDBGroupResponse instantiates a new SearchVDBGroupResponse 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 NewSearchVDBGroupResponseWithDefaults

func NewSearchVDBGroupResponseWithDefaults() *SearchVDBGroupResponse

NewSearchVDBGroupResponseWithDefaults instantiates a new SearchVDBGroupResponse 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 (*SearchVDBGroupResponse) GetItems

func (o *SearchVDBGroupResponse) GetItems() []VDBGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVDBGroupResponse) GetItemsOk

func (o *SearchVDBGroupResponse) GetItemsOk() ([]VDBGroup, 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.

func (*SearchVDBGroupResponse) GetResponseMetadata

func (o *SearchVDBGroupResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVDBGroupResponse) GetResponseMetadataOk

func (o *SearchVDBGroupResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVDBGroupResponse) HasItems

func (o *SearchVDBGroupResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVDBGroupResponse) HasResponseMetadata

func (o *SearchVDBGroupResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVDBGroupResponse) MarshalJSON

func (o SearchVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*SearchVDBGroupResponse) SetItems

func (o *SearchVDBGroupResponse) SetItems(v []VDBGroup)

SetItems gets a reference to the given []VDBGroup and assigns it to the Items field.

func (*SearchVDBGroupResponse) SetResponseMetadata

func (o *SearchVDBGroupResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVDBGroupResponse) ToMap

func (o SearchVDBGroupResponse) ToMap() (map[string]interface{}, error)

type SearchVDBGroupsByBookmarkResponse

type SearchVDBGroupsByBookmarkResponse struct {
	Items            []VDBGroup                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVDBGroupsByBookmarkResponse struct for SearchVDBGroupsByBookmarkResponse

func NewSearchVDBGroupsByBookmarkResponse

func NewSearchVDBGroupsByBookmarkResponse() *SearchVDBGroupsByBookmarkResponse

NewSearchVDBGroupsByBookmarkResponse instantiates a new SearchVDBGroupsByBookmarkResponse 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 NewSearchVDBGroupsByBookmarkResponseWithDefaults

func NewSearchVDBGroupsByBookmarkResponseWithDefaults() *SearchVDBGroupsByBookmarkResponse

NewSearchVDBGroupsByBookmarkResponseWithDefaults instantiates a new SearchVDBGroupsByBookmarkResponse 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 (*SearchVDBGroupsByBookmarkResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVDBGroupsByBookmarkResponse) GetItemsOk

func (o *SearchVDBGroupsByBookmarkResponse) GetItemsOk() ([]VDBGroup, 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.

func (*SearchVDBGroupsByBookmarkResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVDBGroupsByBookmarkResponse) GetResponseMetadataOk

func (o *SearchVDBGroupsByBookmarkResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVDBGroupsByBookmarkResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchVDBGroupsByBookmarkResponse) HasResponseMetadata

func (o *SearchVDBGroupsByBookmarkResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVDBGroupsByBookmarkResponse) MarshalJSON

func (o SearchVDBGroupsByBookmarkResponse) MarshalJSON() ([]byte, error)

func (*SearchVDBGroupsByBookmarkResponse) SetItems

SetItems gets a reference to the given []VDBGroup and assigns it to the Items field.

func (*SearchVDBGroupsByBookmarkResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVDBGroupsByBookmarkResponse) ToMap

func (o SearchVDBGroupsByBookmarkResponse) ToMap() (map[string]interface{}, error)

type SearchVDBsResponse

type SearchVDBsResponse struct {
	Items            []VDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVDBsResponse struct for SearchVDBsResponse

func NewSearchVDBsResponse

func NewSearchVDBsResponse() *SearchVDBsResponse

NewSearchVDBsResponse instantiates a new SearchVDBsResponse 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 NewSearchVDBsResponseWithDefaults

func NewSearchVDBsResponseWithDefaults() *SearchVDBsResponse

NewSearchVDBsResponseWithDefaults instantiates a new SearchVDBsResponse 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 (*SearchVDBsResponse) GetItems

func (o *SearchVDBsResponse) GetItems() []VDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVDBsResponse) GetItemsOk

func (o *SearchVDBsResponse) GetItemsOk() ([]VDB, 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.

func (*SearchVDBsResponse) GetResponseMetadata

func (o *SearchVDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVDBsResponse) GetResponseMetadataOk

func (o *SearchVDBsResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVDBsResponse) HasItems

func (o *SearchVDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVDBsResponse) HasResponseMetadata

func (o *SearchVDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVDBsResponse) MarshalJSON

func (o SearchVDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchVDBsResponse) SetItems

func (o *SearchVDBsResponse) SetItems(v []VDB)

SetItems gets a reference to the given []VDB and assigns it to the Items field.

func (*SearchVDBsResponse) SetResponseMetadata

func (o *SearchVDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVDBsResponse) ToMap

func (o SearchVDBsResponse) ToMap() (map[string]interface{}, error)

type SearchVirtualizationPoliciesResponse

type SearchVirtualizationPoliciesResponse struct {
	Items            []VirtualizationPolicy     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVirtualizationPoliciesResponse struct for SearchVirtualizationPoliciesResponse

func NewSearchVirtualizationPoliciesResponse

func NewSearchVirtualizationPoliciesResponse() *SearchVirtualizationPoliciesResponse

NewSearchVirtualizationPoliciesResponse instantiates a new SearchVirtualizationPoliciesResponse 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 NewSearchVirtualizationPoliciesResponseWithDefaults

func NewSearchVirtualizationPoliciesResponseWithDefaults() *SearchVirtualizationPoliciesResponse

NewSearchVirtualizationPoliciesResponseWithDefaults instantiates a new SearchVirtualizationPoliciesResponse 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 (*SearchVirtualizationPoliciesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVirtualizationPoliciesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVirtualizationPoliciesResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVirtualizationPoliciesResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchVirtualizationPoliciesResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*SearchVirtualizationPoliciesResponse) HasResponseMetadata

func (o *SearchVirtualizationPoliciesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVirtualizationPoliciesResponse) MarshalJSON

func (o SearchVirtualizationPoliciesResponse) MarshalJSON() ([]byte, error)

func (*SearchVirtualizationPoliciesResponse) SetItems

SetItems gets a reference to the given []VirtualizationPolicy and assigns it to the Items field.

func (*SearchVirtualizationPoliciesResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVirtualizationPoliciesResponse) ToMap

func (o SearchVirtualizationPoliciesResponse) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Snapshot

type Snapshot struct {
	// The Snapshot ID.
	Id *string `json:"id,omitempty"`
	// The id of the engine the snapshot belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Alternate namespace for this object, for replicated and restored snapshots.
	Namespace NullableString `json:"namespace,omitempty"`
	// The snapshot's name.
	Name *string `json:"name,omitempty"`
	// The namespace id of this snapshot.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this snapshot.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// Indicates what type of recovery strategies must be invoked when provisioning from this snapshot.
	Consistency *string `json:"consistency,omitempty"`
	// Indicates if a virtual database provisioned from this snapshot will be missing nologging changes.
	MissingNonLoggedData *bool `json:"missing_non_logged_data,omitempty"`
	// The ID of the Snapshot's dSource or VDB.
	DatasetId *string `json:"dataset_id,omitempty"`
	// The time when the snapshot was created.
	CreationTime *time.Time `json:"creation_time,omitempty"`
	// The timestamp within the parent TimeFlow at which this snapshot was initiated. \\ No recovery earlier than this point needs to be applied in order to provision a database from \\ this snapshot. If start_timestamp equals timestamp, then no recovery needs to be \\ applied in order to provision a database.
	StartTimestamp *time.Time `json:"start_timestamp,omitempty"`
	// The database specific indentifier within the parent TimeFlow at which this snapshot was initiated. \\ No recovery earlier than this point needs to be applied in order to provision a database from \\ this snapshot. If start_location equals location, then no recovery needs to be \\ applied in order to provision a database.
	StartLocation *string `json:"start_location,omitempty"`
	// The logical time of the data contained in this Snapshot.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// Database specific identifier for the data contained in this Snapshot, such as the Log Sequence Number (LSN) for MSsql databases, System Change Number (SCN) for Oracle databases.
	Location *string `json:"location,omitempty"`
	// Retention policy, in days. A value of -1 indicates the snapshot should be kept forever. Deprecated in favor of expiration and retain_forever.
	// Deprecated
	Retention *int64 `json:"retention,omitempty"`
	// The expiration date of this snapshot. If this is unset and retain_forever is false, and the snapshot is not included in a Bookmark, the snapshot is subject to the retention policy of its dataset.
	Expiration *string `json:"expiration,omitempty"`
	// Indicates that the snapshot is protected from retention, i.e it will be kept forever. If false, see expiration.
	RetainForever *bool `json:"retain_forever,omitempty"`
	// The effective expiration is that max of the snapshot expiration and the expiration of any Bookmark which includes this snapshot.
	EffectiveExpiration *string `json:"effective_expiration,omitempty"`
	// True if retain_forever is set or a Bookmark retains this snapshot forever.
	EffectiveRetainForever *bool `json:"effective_retain_forever,omitempty"`
	// The TimeFlow this snapshot was taken on.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// Time zone of the source database at the time the snapshot was taken.
	Timezone *string `json:"timezone,omitempty"`
	// Version of database source repository at the time the snapshot was taken.
	Version NullableString `json:"version,omitempty"`
	// Indicates that this snapshot is in a transient state and should not be user visible.
	Temporary *bool `json:"temporary,omitempty"`
	// The toolkit associated with this snapshot.
	AppdataToolkit *string `json:"appdata_toolkit,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataMetadata *string `json:"appdata_metadata,omitempty"`
	// Database encryption key present for this snapshot.
	AseDbEncryptionKey *string `json:"ase_db_encryption_key,omitempty"`
	// Internal version of the source database at the time the snapshot was taken.
	MssqlInternalVersion *int32 `json:"mssql_internal_version,omitempty"`
	// UUID of the source database backup that was restored for this snapshot.
	MssqlBackupSetUuid *string `json:"mssql_backup_set_uuid,omitempty"`
	// Backup software used to restore the source database backup for this snapshot
	MssqlBackupSoftwareType *string `json:"mssql_backup_software_type,omitempty"`
	// Backup software used to restore the source database backup for this snapshot
	MssqlBackupLocationType *string `json:"mssql_backup_location_type,omitempty"`
	// True if the staging push dSource snapshot is empty.
	MssqlEmptySnapshot *bool `json:"mssql_empty_snapshot,omitempty"`
	// True if this snapshot was taken of a standby database.
	OracleFromPhysicalStandbyVdb *bool `json:"oracle_from_physical_standby_vdb,omitempty"`
	// Online redo log size in bytes when this snapshot was taken.
	OracleRedoLogSizeInBytes *int64 `json:"oracle_redo_log_size_in_bytes,omitempty"`
	Tags                     []Tag  `json:"tags,omitempty"`
}

Snapshot Virtualization Engine Snapshot of a dSource or VDB.

func NewSnapshot

func NewSnapshot() *Snapshot

NewSnapshot instantiates a new Snapshot 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 NewSnapshotWithDefaults

func NewSnapshotWithDefaults() *Snapshot

NewSnapshotWithDefaults instantiates a new Snapshot 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 (*Snapshot) GetAppdataMetadata

func (o *Snapshot) GetAppdataMetadata() string

GetAppdataMetadata returns the AppdataMetadata field value if set, zero value otherwise.

func (*Snapshot) GetAppdataMetadataOk

func (o *Snapshot) GetAppdataMetadataOk() (*string, bool)

GetAppdataMetadataOk returns a tuple with the AppdataMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetAppdataToolkit

func (o *Snapshot) GetAppdataToolkit() string

GetAppdataToolkit returns the AppdataToolkit field value if set, zero value otherwise.

func (*Snapshot) GetAppdataToolkitOk

func (o *Snapshot) GetAppdataToolkitOk() (*string, bool)

GetAppdataToolkitOk returns a tuple with the AppdataToolkit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetAseDbEncryptionKey

func (o *Snapshot) GetAseDbEncryptionKey() string

GetAseDbEncryptionKey returns the AseDbEncryptionKey field value if set, zero value otherwise.

func (*Snapshot) GetAseDbEncryptionKeyOk

func (o *Snapshot) GetAseDbEncryptionKeyOk() (*string, bool)

GetAseDbEncryptionKeyOk returns a tuple with the AseDbEncryptionKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetConsistency

func (o *Snapshot) GetConsistency() string

GetConsistency returns the Consistency field value if set, zero value otherwise.

func (*Snapshot) GetConsistencyOk

func (o *Snapshot) GetConsistencyOk() (*string, bool)

GetConsistencyOk returns a tuple with the Consistency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetCreationTime

func (o *Snapshot) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Snapshot) GetCreationTimeOk

func (o *Snapshot) GetCreationTimeOk() (*time.Time, bool)

GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetDatasetId

func (o *Snapshot) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*Snapshot) GetDatasetIdOk

func (o *Snapshot) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetEffectiveExpiration

func (o *Snapshot) GetEffectiveExpiration() string

GetEffectiveExpiration returns the EffectiveExpiration field value if set, zero value otherwise.

func (*Snapshot) GetEffectiveExpirationOk

func (o *Snapshot) GetEffectiveExpirationOk() (*string, bool)

GetEffectiveExpirationOk returns a tuple with the EffectiveExpiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetEffectiveRetainForever

func (o *Snapshot) GetEffectiveRetainForever() bool

GetEffectiveRetainForever returns the EffectiveRetainForever field value if set, zero value otherwise.

func (*Snapshot) GetEffectiveRetainForeverOk

func (o *Snapshot) GetEffectiveRetainForeverOk() (*bool, bool)

GetEffectiveRetainForeverOk returns a tuple with the EffectiveRetainForever field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetEngineId

func (o *Snapshot) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Snapshot) GetEngineIdOk

func (o *Snapshot) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetExpiration

func (o *Snapshot) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*Snapshot) GetExpirationOk

func (o *Snapshot) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetId

func (o *Snapshot) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Snapshot) GetIdOk

func (o *Snapshot) 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.

func (*Snapshot) GetIsReplica

func (o *Snapshot) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*Snapshot) GetIsReplicaOk

func (o *Snapshot) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetLocation

func (o *Snapshot) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*Snapshot) GetLocationOk

func (o *Snapshot) 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.

func (*Snapshot) GetMissingNonLoggedData

func (o *Snapshot) GetMissingNonLoggedData() bool

GetMissingNonLoggedData returns the MissingNonLoggedData field value if set, zero value otherwise.

func (*Snapshot) GetMissingNonLoggedDataOk

func (o *Snapshot) GetMissingNonLoggedDataOk() (*bool, bool)

GetMissingNonLoggedDataOk returns a tuple with the MissingNonLoggedData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetMssqlBackupLocationType

func (o *Snapshot) GetMssqlBackupLocationType() string

GetMssqlBackupLocationType returns the MssqlBackupLocationType field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupLocationTypeOk

func (o *Snapshot) GetMssqlBackupLocationTypeOk() (*string, bool)

GetMssqlBackupLocationTypeOk returns a tuple with the MssqlBackupLocationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetMssqlBackupSetUuid

func (o *Snapshot) GetMssqlBackupSetUuid() string

GetMssqlBackupSetUuid returns the MssqlBackupSetUuid field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupSetUuidOk

func (o *Snapshot) GetMssqlBackupSetUuidOk() (*string, bool)

GetMssqlBackupSetUuidOk returns a tuple with the MssqlBackupSetUuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetMssqlBackupSoftwareType

func (o *Snapshot) GetMssqlBackupSoftwareType() string

GetMssqlBackupSoftwareType returns the MssqlBackupSoftwareType field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupSoftwareTypeOk

func (o *Snapshot) GetMssqlBackupSoftwareTypeOk() (*string, bool)

GetMssqlBackupSoftwareTypeOk returns a tuple with the MssqlBackupSoftwareType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetMssqlEmptySnapshot

func (o *Snapshot) GetMssqlEmptySnapshot() bool

GetMssqlEmptySnapshot returns the MssqlEmptySnapshot field value if set, zero value otherwise.

func (*Snapshot) GetMssqlEmptySnapshotOk

func (o *Snapshot) GetMssqlEmptySnapshotOk() (*bool, bool)

GetMssqlEmptySnapshotOk returns a tuple with the MssqlEmptySnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetMssqlInternalVersion

func (o *Snapshot) GetMssqlInternalVersion() int32

GetMssqlInternalVersion returns the MssqlInternalVersion field value if set, zero value otherwise.

func (*Snapshot) GetMssqlInternalVersionOk

func (o *Snapshot) GetMssqlInternalVersionOk() (*int32, bool)

GetMssqlInternalVersionOk returns a tuple with the MssqlInternalVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetName

func (o *Snapshot) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Snapshot) GetNameOk

func (o *Snapshot) 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.

func (*Snapshot) GetNamespace

func (o *Snapshot) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Snapshot) GetNamespaceId

func (o *Snapshot) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*Snapshot) GetNamespaceIdOk

func (o *Snapshot) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetNamespaceName

func (o *Snapshot) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*Snapshot) GetNamespaceNameOk

func (o *Snapshot) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetNamespaceOk

func (o *Snapshot) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Snapshot) GetOracleFromPhysicalStandbyVdb

func (o *Snapshot) GetOracleFromPhysicalStandbyVdb() bool

GetOracleFromPhysicalStandbyVdb returns the OracleFromPhysicalStandbyVdb field value if set, zero value otherwise.

func (*Snapshot) GetOracleFromPhysicalStandbyVdbOk

func (o *Snapshot) GetOracleFromPhysicalStandbyVdbOk() (*bool, bool)

GetOracleFromPhysicalStandbyVdbOk returns a tuple with the OracleFromPhysicalStandbyVdb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetOracleRedoLogSizeInBytes

func (o *Snapshot) GetOracleRedoLogSizeInBytes() int64

GetOracleRedoLogSizeInBytes returns the OracleRedoLogSizeInBytes field value if set, zero value otherwise.

func (*Snapshot) GetOracleRedoLogSizeInBytesOk

func (o *Snapshot) GetOracleRedoLogSizeInBytesOk() (*int64, bool)

GetOracleRedoLogSizeInBytesOk returns a tuple with the OracleRedoLogSizeInBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetRetainForever

func (o *Snapshot) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*Snapshot) GetRetainForeverOk

func (o *Snapshot) GetRetainForeverOk() (*bool, bool)

GetRetainForeverOk returns a tuple with the RetainForever field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetRetention

func (o *Snapshot) GetRetention() int64

GetRetention returns the Retention field value if set, zero value otherwise. Deprecated

func (*Snapshot) GetRetentionOk

func (o *Snapshot) GetRetentionOk() (*int64, bool)

GetRetentionOk returns a tuple with the Retention field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Snapshot) GetStartLocation

func (o *Snapshot) GetStartLocation() string

GetStartLocation returns the StartLocation field value if set, zero value otherwise.

func (*Snapshot) GetStartLocationOk

func (o *Snapshot) GetStartLocationOk() (*string, bool)

GetStartLocationOk returns a tuple with the StartLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetStartTimestamp

func (o *Snapshot) GetStartTimestamp() time.Time

GetStartTimestamp returns the StartTimestamp field value if set, zero value otherwise.

func (*Snapshot) GetStartTimestampOk

func (o *Snapshot) GetStartTimestampOk() (*time.Time, bool)

GetStartTimestampOk returns a tuple with the StartTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetTags

func (o *Snapshot) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Snapshot) GetTagsOk

func (o *Snapshot) 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.

func (*Snapshot) GetTemporary

func (o *Snapshot) GetTemporary() bool

GetTemporary returns the Temporary field value if set, zero value otherwise.

func (*Snapshot) GetTemporaryOk

func (o *Snapshot) GetTemporaryOk() (*bool, bool)

GetTemporaryOk returns a tuple with the Temporary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetTimeflowId

func (o *Snapshot) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*Snapshot) GetTimeflowIdOk

func (o *Snapshot) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetTimestamp

func (o *Snapshot) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Snapshot) GetTimestampOk

func (o *Snapshot) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snapshot) GetTimezone

func (o *Snapshot) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*Snapshot) GetTimezoneOk

func (o *Snapshot) 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.

func (*Snapshot) GetVersion

func (o *Snapshot) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Snapshot) GetVersionOk

func (o *Snapshot) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Snapshot) HasAppdataMetadata

func (o *Snapshot) HasAppdataMetadata() bool

HasAppdataMetadata returns a boolean if a field has been set.

func (*Snapshot) HasAppdataToolkit

func (o *Snapshot) HasAppdataToolkit() bool

HasAppdataToolkit returns a boolean if a field has been set.

func (*Snapshot) HasAseDbEncryptionKey

func (o *Snapshot) HasAseDbEncryptionKey() bool

HasAseDbEncryptionKey returns a boolean if a field has been set.

func (*Snapshot) HasConsistency

func (o *Snapshot) HasConsistency() bool

HasConsistency returns a boolean if a field has been set.

func (*Snapshot) HasCreationTime

func (o *Snapshot) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Snapshot) HasDatasetId

func (o *Snapshot) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*Snapshot) HasEffectiveExpiration

func (o *Snapshot) HasEffectiveExpiration() bool

HasEffectiveExpiration returns a boolean if a field has been set.

func (*Snapshot) HasEffectiveRetainForever

func (o *Snapshot) HasEffectiveRetainForever() bool

HasEffectiveRetainForever returns a boolean if a field has been set.

func (*Snapshot) HasEngineId

func (o *Snapshot) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Snapshot) HasExpiration

func (o *Snapshot) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*Snapshot) HasId

func (o *Snapshot) HasId() bool

HasId returns a boolean if a field has been set.

func (*Snapshot) HasIsReplica

func (o *Snapshot) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*Snapshot) HasLocation

func (o *Snapshot) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Snapshot) HasMissingNonLoggedData

func (o *Snapshot) HasMissingNonLoggedData() bool

HasMissingNonLoggedData returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupLocationType

func (o *Snapshot) HasMssqlBackupLocationType() bool

HasMssqlBackupLocationType returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupSetUuid

func (o *Snapshot) HasMssqlBackupSetUuid() bool

HasMssqlBackupSetUuid returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupSoftwareType

func (o *Snapshot) HasMssqlBackupSoftwareType() bool

HasMssqlBackupSoftwareType returns a boolean if a field has been set.

func (*Snapshot) HasMssqlEmptySnapshot

func (o *Snapshot) HasMssqlEmptySnapshot() bool

HasMssqlEmptySnapshot returns a boolean if a field has been set.

func (*Snapshot) HasMssqlInternalVersion

func (o *Snapshot) HasMssqlInternalVersion() bool

HasMssqlInternalVersion returns a boolean if a field has been set.

func (*Snapshot) HasName

func (o *Snapshot) HasName() bool

HasName returns a boolean if a field has been set.

func (*Snapshot) HasNamespace

func (o *Snapshot) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Snapshot) HasNamespaceId

func (o *Snapshot) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*Snapshot) HasNamespaceName

func (o *Snapshot) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*Snapshot) HasOracleFromPhysicalStandbyVdb

func (o *Snapshot) HasOracleFromPhysicalStandbyVdb() bool

HasOracleFromPhysicalStandbyVdb returns a boolean if a field has been set.

func (*Snapshot) HasOracleRedoLogSizeInBytes

func (o *Snapshot) HasOracleRedoLogSizeInBytes() bool

HasOracleRedoLogSizeInBytes returns a boolean if a field has been set.

func (*Snapshot) HasRetainForever

func (o *Snapshot) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (*Snapshot) HasRetention

func (o *Snapshot) HasRetention() bool

HasRetention returns a boolean if a field has been set.

func (*Snapshot) HasStartLocation

func (o *Snapshot) HasStartLocation() bool

HasStartLocation returns a boolean if a field has been set.

func (*Snapshot) HasStartTimestamp

func (o *Snapshot) HasStartTimestamp() bool

HasStartTimestamp returns a boolean if a field has been set.

func (*Snapshot) HasTags

func (o *Snapshot) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Snapshot) HasTemporary

func (o *Snapshot) HasTemporary() bool

HasTemporary returns a boolean if a field has been set.

func (*Snapshot) HasTimeflowId

func (o *Snapshot) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*Snapshot) HasTimestamp

func (o *Snapshot) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Snapshot) HasTimezone

func (o *Snapshot) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*Snapshot) HasVersion

func (o *Snapshot) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Snapshot) MarshalJSON

func (o Snapshot) MarshalJSON() ([]byte, error)

func (*Snapshot) SetAppdataMetadata

func (o *Snapshot) SetAppdataMetadata(v string)

SetAppdataMetadata gets a reference to the given string and assigns it to the AppdataMetadata field.

func (*Snapshot) SetAppdataToolkit

func (o *Snapshot) SetAppdataToolkit(v string)

SetAppdataToolkit gets a reference to the given string and assigns it to the AppdataToolkit field.

func (*Snapshot) SetAseDbEncryptionKey

func (o *Snapshot) SetAseDbEncryptionKey(v string)

SetAseDbEncryptionKey gets a reference to the given string and assigns it to the AseDbEncryptionKey field.

func (*Snapshot) SetConsistency

func (o *Snapshot) SetConsistency(v string)

SetConsistency gets a reference to the given string and assigns it to the Consistency field.

func (*Snapshot) SetCreationTime

func (o *Snapshot) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Snapshot) SetDatasetId

func (o *Snapshot) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*Snapshot) SetEffectiveExpiration

func (o *Snapshot) SetEffectiveExpiration(v string)

SetEffectiveExpiration gets a reference to the given string and assigns it to the EffectiveExpiration field.

func (*Snapshot) SetEffectiveRetainForever

func (o *Snapshot) SetEffectiveRetainForever(v bool)

SetEffectiveRetainForever gets a reference to the given bool and assigns it to the EffectiveRetainForever field.

func (*Snapshot) SetEngineId

func (o *Snapshot) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Snapshot) SetExpiration

func (o *Snapshot) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*Snapshot) SetId

func (o *Snapshot) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Snapshot) SetIsReplica

func (o *Snapshot) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*Snapshot) SetLocation

func (o *Snapshot) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*Snapshot) SetMissingNonLoggedData

func (o *Snapshot) SetMissingNonLoggedData(v bool)

SetMissingNonLoggedData gets a reference to the given bool and assigns it to the MissingNonLoggedData field.

func (*Snapshot) SetMssqlBackupLocationType

func (o *Snapshot) SetMssqlBackupLocationType(v string)

SetMssqlBackupLocationType gets a reference to the given string and assigns it to the MssqlBackupLocationType field.

func (*Snapshot) SetMssqlBackupSetUuid

func (o *Snapshot) SetMssqlBackupSetUuid(v string)

SetMssqlBackupSetUuid gets a reference to the given string and assigns it to the MssqlBackupSetUuid field.

func (*Snapshot) SetMssqlBackupSoftwareType

func (o *Snapshot) SetMssqlBackupSoftwareType(v string)

SetMssqlBackupSoftwareType gets a reference to the given string and assigns it to the MssqlBackupSoftwareType field.

func (*Snapshot) SetMssqlEmptySnapshot

func (o *Snapshot) SetMssqlEmptySnapshot(v bool)

SetMssqlEmptySnapshot gets a reference to the given bool and assigns it to the MssqlEmptySnapshot field.

func (*Snapshot) SetMssqlInternalVersion

func (o *Snapshot) SetMssqlInternalVersion(v int32)

SetMssqlInternalVersion gets a reference to the given int32 and assigns it to the MssqlInternalVersion field.

func (*Snapshot) SetName

func (o *Snapshot) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Snapshot) SetNamespace

func (o *Snapshot) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*Snapshot) SetNamespaceId

func (o *Snapshot) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*Snapshot) SetNamespaceName

func (o *Snapshot) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*Snapshot) SetNamespaceNil

func (o *Snapshot) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Snapshot) SetOracleFromPhysicalStandbyVdb

func (o *Snapshot) SetOracleFromPhysicalStandbyVdb(v bool)

SetOracleFromPhysicalStandbyVdb gets a reference to the given bool and assigns it to the OracleFromPhysicalStandbyVdb field.

func (*Snapshot) SetOracleRedoLogSizeInBytes

func (o *Snapshot) SetOracleRedoLogSizeInBytes(v int64)

SetOracleRedoLogSizeInBytes gets a reference to the given int64 and assigns it to the OracleRedoLogSizeInBytes field.

func (*Snapshot) SetRetainForever

func (o *Snapshot) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (*Snapshot) SetRetention

func (o *Snapshot) SetRetention(v int64)

SetRetention gets a reference to the given int64 and assigns it to the Retention field. Deprecated

func (*Snapshot) SetStartLocation

func (o *Snapshot) SetStartLocation(v string)

SetStartLocation gets a reference to the given string and assigns it to the StartLocation field.

func (*Snapshot) SetStartTimestamp

func (o *Snapshot) SetStartTimestamp(v time.Time)

SetStartTimestamp gets a reference to the given time.Time and assigns it to the StartTimestamp field.

func (*Snapshot) SetTags

func (o *Snapshot) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*Snapshot) SetTemporary

func (o *Snapshot) SetTemporary(v bool)

SetTemporary gets a reference to the given bool and assigns it to the Temporary field.

func (*Snapshot) SetTimeflowId

func (o *Snapshot) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*Snapshot) SetTimestamp

func (o *Snapshot) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*Snapshot) SetTimezone

func (o *Snapshot) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*Snapshot) SetVersion

func (o *Snapshot) SetVersion(v string)

SetVersion gets a reference to the given NullableString and assigns it to the Version field.

func (*Snapshot) SetVersionNil

func (o *Snapshot) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (Snapshot) ToMap

func (o Snapshot) ToMap() (map[string]interface{}, error)

func (*Snapshot) UnsetNamespace

func (o *Snapshot) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

func (*Snapshot) UnsetVersion

func (o *Snapshot) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type SnapshotCompatibleEnvironmentsResponse

type SnapshotCompatibleEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
}

SnapshotCompatibleEnvironmentsResponse struct for SnapshotCompatibleEnvironmentsResponse

func NewSnapshotCompatibleEnvironmentsResponse

func NewSnapshotCompatibleEnvironmentsResponse() *SnapshotCompatibleEnvironmentsResponse

NewSnapshotCompatibleEnvironmentsResponse instantiates a new SnapshotCompatibleEnvironmentsResponse 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 NewSnapshotCompatibleEnvironmentsResponseWithDefaults

func NewSnapshotCompatibleEnvironmentsResponseWithDefaults() *SnapshotCompatibleEnvironmentsResponse

NewSnapshotCompatibleEnvironmentsResponseWithDefaults instantiates a new SnapshotCompatibleEnvironmentsResponse 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 (*SnapshotCompatibleEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SnapshotCompatibleEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotCompatibleEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (SnapshotCompatibleEnvironmentsResponse) MarshalJSON

func (o SnapshotCompatibleEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*SnapshotCompatibleEnvironmentsResponse) SetItems

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (SnapshotCompatibleEnvironmentsResponse) ToMap

func (o SnapshotCompatibleEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type SnapshotCompatibleRepositoryRequest

type SnapshotCompatibleRepositoryRequest struct {
	// The ID of the source object (dSource or VDB) to get the compatible repos. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// The ID of the Engine from where to get the compatible repos. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The ID of the snapshot from which to execute the operation.
	SnapshotId *string `json:"snapshot_id,omitempty"`
	// The ID or name of the target environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

SnapshotCompatibleRepositoryRequest struct for SnapshotCompatibleRepositoryRequest

func NewSnapshotCompatibleRepositoryRequest

func NewSnapshotCompatibleRepositoryRequest() *SnapshotCompatibleRepositoryRequest

NewSnapshotCompatibleRepositoryRequest instantiates a new SnapshotCompatibleRepositoryRequest 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 NewSnapshotCompatibleRepositoryRequestWithDefaults

func NewSnapshotCompatibleRepositoryRequestWithDefaults() *SnapshotCompatibleRepositoryRequest

NewSnapshotCompatibleRepositoryRequestWithDefaults instantiates a new SnapshotCompatibleRepositoryRequest 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 (*SnapshotCompatibleRepositoryRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetEngineIdOk

func (o *SnapshotCompatibleRepositoryRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotCompatibleRepositoryRequest) GetEnvironmentId

func (o *SnapshotCompatibleRepositoryRequest) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetEnvironmentIdOk

func (o *SnapshotCompatibleRepositoryRequest) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotCompatibleRepositoryRequest) GetSnapshotId

func (o *SnapshotCompatibleRepositoryRequest) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetSnapshotIdOk

func (o *SnapshotCompatibleRepositoryRequest) GetSnapshotIdOk() (*string, bool)

GetSnapshotIdOk returns a tuple with the SnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotCompatibleRepositoryRequest) GetSourceDataId

func (o *SnapshotCompatibleRepositoryRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetSourceDataIdOk

func (o *SnapshotCompatibleRepositoryRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotCompatibleRepositoryRequest) HasEngineId

func (o *SnapshotCompatibleRepositoryRequest) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasEnvironmentId

func (o *SnapshotCompatibleRepositoryRequest) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasSnapshotId

func (o *SnapshotCompatibleRepositoryRequest) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasSourceDataId

func (o *SnapshotCompatibleRepositoryRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (SnapshotCompatibleRepositoryRequest) MarshalJSON

func (o SnapshotCompatibleRepositoryRequest) MarshalJSON() ([]byte, error)

func (*SnapshotCompatibleRepositoryRequest) SetEngineId

func (o *SnapshotCompatibleRepositoryRequest) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*SnapshotCompatibleRepositoryRequest) SetEnvironmentId

func (o *SnapshotCompatibleRepositoryRequest) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*SnapshotCompatibleRepositoryRequest) SetSnapshotId

func (o *SnapshotCompatibleRepositoryRequest) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (*SnapshotCompatibleRepositoryRequest) SetSourceDataId

func (o *SnapshotCompatibleRepositoryRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (SnapshotCompatibleRepositoryRequest) ToMap

func (o SnapshotCompatibleRepositoryRequest) ToMap() (map[string]interface{}, error)

type SnapshotDSourceResponse

type SnapshotDSourceResponse struct {
	Job *Job `json:"job,omitempty"`
}

SnapshotDSourceResponse struct for SnapshotDSourceResponse

func NewSnapshotDSourceResponse

func NewSnapshotDSourceResponse() *SnapshotDSourceResponse

NewSnapshotDSourceResponse instantiates a new SnapshotDSourceResponse 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 NewSnapshotDSourceResponseWithDefaults

func NewSnapshotDSourceResponseWithDefaults() *SnapshotDSourceResponse

NewSnapshotDSourceResponseWithDefaults instantiates a new SnapshotDSourceResponse 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 (*SnapshotDSourceResponse) GetJob

func (o *SnapshotDSourceResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SnapshotDSourceResponse) GetJobOk

func (o *SnapshotDSourceResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotDSourceResponse) HasJob

func (o *SnapshotDSourceResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SnapshotDSourceResponse) MarshalJSON

func (o SnapshotDSourceResponse) MarshalJSON() ([]byte, error)

func (*SnapshotDSourceResponse) SetJob

func (o *SnapshotDSourceResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SnapshotDSourceResponse) ToMap

func (o SnapshotDSourceResponse) ToMap() (map[string]interface{}, error)

type SnapshotDayRange

type SnapshotDayRange struct {
	// Number of TimeFlow snapshots on that day.
	Count *int64 `json:"count,omitempty"`
	// Date for which TimeFlow snapshots have been aggregated.
	Date *string `json:"date,omitempty"`
	// Start of day of this range in the time zone used for computation.
	StartOfDay *time.Time `json:"start_of_day,omitempty"`
	// End of day of this range in the time zone used for computation.
	EndOfDay *time.Time `json:"end_of_day,omitempty"`
}

SnapshotDayRange Count of TimeFlow snapshots aggregated by day.

func NewSnapshotDayRange

func NewSnapshotDayRange() *SnapshotDayRange

NewSnapshotDayRange instantiates a new SnapshotDayRange 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 NewSnapshotDayRangeWithDefaults

func NewSnapshotDayRangeWithDefaults() *SnapshotDayRange

NewSnapshotDayRangeWithDefaults instantiates a new SnapshotDayRange 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 (*SnapshotDayRange) GetCount

func (o *SnapshotDayRange) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SnapshotDayRange) GetCountOk

func (o *SnapshotDayRange) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotDayRange) GetDate

func (o *SnapshotDayRange) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*SnapshotDayRange) GetDateOk

func (o *SnapshotDayRange) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotDayRange) GetEndOfDay

func (o *SnapshotDayRange) GetEndOfDay() time.Time

GetEndOfDay returns the EndOfDay field value if set, zero value otherwise.

func (*SnapshotDayRange) GetEndOfDayOk

func (o *SnapshotDayRange) GetEndOfDayOk() (*time.Time, bool)

GetEndOfDayOk returns a tuple with the EndOfDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotDayRange) GetStartOfDay

func (o *SnapshotDayRange) GetStartOfDay() time.Time

GetStartOfDay returns the StartOfDay field value if set, zero value otherwise.

func (*SnapshotDayRange) GetStartOfDayOk

func (o *SnapshotDayRange) GetStartOfDayOk() (*time.Time, bool)

GetStartOfDayOk returns a tuple with the StartOfDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotDayRange) HasCount

func (o *SnapshotDayRange) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SnapshotDayRange) HasDate

func (o *SnapshotDayRange) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*SnapshotDayRange) HasEndOfDay

func (o *SnapshotDayRange) HasEndOfDay() bool

HasEndOfDay returns a boolean if a field has been set.

func (*SnapshotDayRange) HasStartOfDay

func (o *SnapshotDayRange) HasStartOfDay() bool

HasStartOfDay returns a boolean if a field has been set.

func (SnapshotDayRange) MarshalJSON

func (o SnapshotDayRange) MarshalJSON() ([]byte, error)

func (*SnapshotDayRange) SetCount

func (o *SnapshotDayRange) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SnapshotDayRange) SetDate

func (o *SnapshotDayRange) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*SnapshotDayRange) SetEndOfDay

func (o *SnapshotDayRange) SetEndOfDay(v time.Time)

SetEndOfDay gets a reference to the given time.Time and assigns it to the EndOfDay field.

func (*SnapshotDayRange) SetStartOfDay

func (o *SnapshotDayRange) SetStartOfDay(v time.Time)

SetStartOfDay gets a reference to the given time.Time and assigns it to the StartOfDay field.

func (SnapshotDayRange) ToMap

func (o SnapshotDayRange) ToMap() (map[string]interface{}, error)

type SnapshotVDBResponse

type SnapshotVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

SnapshotVDBResponse struct for SnapshotVDBResponse

func NewSnapshotVDBResponse

func NewSnapshotVDBResponse() *SnapshotVDBResponse

NewSnapshotVDBResponse instantiates a new SnapshotVDBResponse 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 NewSnapshotVDBResponseWithDefaults

func NewSnapshotVDBResponseWithDefaults() *SnapshotVDBResponse

NewSnapshotVDBResponseWithDefaults instantiates a new SnapshotVDBResponse 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 (*SnapshotVDBResponse) GetJob

func (o *SnapshotVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SnapshotVDBResponse) GetJobOk

func (o *SnapshotVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnapshotVDBResponse) HasJob

func (o *SnapshotVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SnapshotVDBResponse) MarshalJSON

func (o SnapshotVDBResponse) MarshalJSON() ([]byte, error)

func (*SnapshotVDBResponse) SetJob

func (o *SnapshotVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SnapshotVDBResponse) ToMap

func (o SnapshotVDBResponse) ToMap() (map[string]interface{}, error)

type SnapshotsApiService

type SnapshotsApiService service

SnapshotsApiService SnapshotsApi service

func (*SnapshotsApiService) CreateSnapshotTags

func (a *SnapshotsApiService) CreateSnapshotTags(ctx context.Context, snapshotId string) ApiCreateSnapshotTagsRequest

CreateSnapshotTags Create tags for a Snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiCreateSnapshotTagsRequest

func (*SnapshotsApiService) CreateSnapshotTagsExecute

func (a *SnapshotsApiService) CreateSnapshotTagsExecute(r ApiCreateSnapshotTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SnapshotsApiService) DeleteSnapshot

func (a *SnapshotsApiService) DeleteSnapshot(ctx context.Context, snapshotId string) ApiDeleteSnapshotRequest

DeleteSnapshot Delete a Snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiDeleteSnapshotRequest

func (*SnapshotsApiService) DeleteSnapshotExecute

Execute executes the request

@return DeleteSnapshotResponse

func (*SnapshotsApiService) DeleteSnapshotTags

func (a *SnapshotsApiService) DeleteSnapshotTags(ctx context.Context, snapshotId string) ApiDeleteSnapshotTagsRequest

DeleteSnapshotTags Delete tags for a Snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiDeleteSnapshotTagsRequest

func (*SnapshotsApiService) DeleteSnapshotTagsExecute

func (a *SnapshotsApiService) DeleteSnapshotTagsExecute(r ApiDeleteSnapshotTagsRequest) (*http.Response, error)

Execute executes the request

func (*SnapshotsApiService) FindByLocation

FindByLocation Get the snapshots at this location for a dataset.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindByLocationRequest

func (*SnapshotsApiService) FindByLocationExecute

Execute executes the request

@return FindByLocationResponse

func (*SnapshotsApiService) FindByTimestamp

FindByTimestamp Get the snapshots at this timestamp for a dataset.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindByTimestampRequest

func (*SnapshotsApiService) FindByTimestampExecute

Execute executes the request

@return FindByTimestampResponse

func (*SnapshotsApiService) GetSnapshotById

func (a *SnapshotsApiService) GetSnapshotById(ctx context.Context, snapshotId string) ApiGetSnapshotByIdRequest

GetSnapshotById Get a Snapshot by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiGetSnapshotByIdRequest

func (*SnapshotsApiService) GetSnapshotByIdExecute

func (a *SnapshotsApiService) GetSnapshotByIdExecute(r ApiGetSnapshotByIdRequest) (*Snapshot, *http.Response, error)

Execute executes the request

@return Snapshot

func (*SnapshotsApiService) GetSnapshotTags

func (a *SnapshotsApiService) GetSnapshotTags(ctx context.Context, snapshotId string) ApiGetSnapshotTagsRequest

GetSnapshotTags Get tags for a Snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiGetSnapshotTagsRequest

func (*SnapshotsApiService) GetSnapshotTagsExecute

func (a *SnapshotsApiService) GetSnapshotTagsExecute(r ApiGetSnapshotTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SnapshotsApiService) GetSnapshotTimeflowRange

func (a *SnapshotsApiService) GetSnapshotTimeflowRange(ctx context.Context, snapshotId string) ApiGetSnapshotTimeflowRangeRequest

GetSnapshotTimeflowRange Return the provisionable timeflow range based on a specific snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiGetSnapshotTimeflowRangeRequest

func (*SnapshotsApiService) GetSnapshotTimeflowRangeExecute

func (a *SnapshotsApiService) GetSnapshotTimeflowRangeExecute(r ApiGetSnapshotTimeflowRangeRequest) (*TimeflowRange, *http.Response, error)

Execute executes the request

@return TimeflowRange

func (*SnapshotsApiService) GetSnapshots

GetSnapshots Retrieve the list of snapshots.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSnapshotsRequest

func (*SnapshotsApiService) GetSnapshotsExecute

Execute executes the request

@return ListSnapshotsResponse

func (*SnapshotsApiService) SearchSnapshots

SearchSnapshots Search snapshots.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchSnapshotsRequest

func (*SnapshotsApiService) SearchSnapshotsExecute

Execute executes the request

@return SearchSnapshotsResponse

func (*SnapshotsApiService) UnsetSnapshotRetention

func (a *SnapshotsApiService) UnsetSnapshotRetention(ctx context.Context, snapshotId string) ApiUnsetSnapshotRetentionRequest

UnsetSnapshotRetention Unset a Snapshot's expiration, removing expiration and retain_forever values for the snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiUnsetSnapshotRetentionRequest

func (*SnapshotsApiService) UnsetSnapshotRetentionExecute

Execute executes the request

@return UnsetSnapshotRetentionResponse

func (*SnapshotsApiService) UpdateSnapshot

func (a *SnapshotsApiService) UpdateSnapshot(ctx context.Context, snapshotId string) ApiUpdateSnapshotRequest

UpdateSnapshot Update values of a Snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param snapshotId The ID of the snapshot.
@return ApiUpdateSnapshotRequest

func (*SnapshotsApiService) UpdateSnapshotExecute

Execute executes the request

@return UpdateSnapshotResponse

type SnapshotsDayRangesResponse

type SnapshotsDayRangesResponse struct {
	Items []SnapshotDayRange `json:"items,omitempty"`
}

SnapshotsDayRangesResponse struct for SnapshotsDayRangesResponse

func NewSnapshotsDayRangesResponse

func NewSnapshotsDayRangesResponse() *SnapshotsDayRangesResponse

NewSnapshotsDayRangesResponse instantiates a new SnapshotsDayRangesResponse 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 NewSnapshotsDayRangesResponseWithDefaults

func NewSnapshotsDayRangesResponseWithDefaults() *SnapshotsDayRangesResponse

NewSnapshotsDayRangesResponseWithDefaults instantiates a new SnapshotsDayRangesResponse 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 (*SnapshotsDayRangesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*SnapshotsDayRangesResponse) GetItemsOk

func (o *SnapshotsDayRangesResponse) GetItemsOk() ([]SnapshotDayRange, 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.

func (*SnapshotsDayRangesResponse) HasItems

func (o *SnapshotsDayRangesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (SnapshotsDayRangesResponse) MarshalJSON

func (o SnapshotsDayRangesResponse) MarshalJSON() ([]byte, error)

func (*SnapshotsDayRangesResponse) SetItems

SetItems gets a reference to the given []SnapshotDayRange and assigns it to the Items field.

func (SnapshotsDayRangesResponse) ToMap

func (o SnapshotsDayRangesResponse) ToMap() (map[string]interface{}, error)

type Source

type Source struct {
	// The Source object entity ID.
	Id *string `json:"id,omitempty"`
	// The type of this source database.
	DatabaseType NullableString `json:"database_type,omitempty"`
	// The name of this source database.
	Name NullableString `json:"name,omitempty"`
	// The namespace id of this source database.
	NamespaceId NullableString `json:"namespace_id,omitempty"`
	// The namespace name of this source database.
	NamespaceName NullableString `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica NullableBool `json:"is_replica,omitempty"`
	// The version of this source database.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// A reference to the Environment that hosts this source database.
	EnvironmentId NullableString `json:"environment_id,omitempty"`
	// A universal ID that uniquely identifies this source database.
	DataUuid NullableString `json:"data_uuid,omitempty"`
	// The IP address of the source's host.
	IpAddress NullableString `json:"ip_address,omitempty"`
	// The FQDN of the source's host.
	Fqdn NullableString `json:"fqdn,omitempty"`
	// The total size of this source database, in bytes.
	Size NullableInt64 `json:"size,omitempty"`
	// The JDBC connection URL for this source database.
	JdbcConnectionString NullableString `json:"jdbc_connection_string,omitempty"`
	// The version of the plugin associated with this source database.
	PluginVersion NullableString `json:"plugin_version,omitempty"`
	IsDsource     *bool          `json:"is_dsource,omitempty"`
	// The repository reference for this source
	Repository *string `json:"repository,omitempty"`
	Tags       []Tag   `json:"tags,omitempty"`
}

Source The Delphix representation of the source database (not typically managed by Delphix).

func NewSource

func NewSource() *Source

NewSource instantiates a new Source 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 NewSourceWithDefaults

func NewSourceWithDefaults() *Source

NewSourceWithDefaults instantiates a new Source 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 (*Source) GetDataUuid

func (o *Source) GetDataUuid() string

GetDataUuid returns the DataUuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetDataUuidOk

func (o *Source) GetDataUuidOk() (*string, bool)

GetDataUuidOk returns a tuple with the DataUuid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetDatabaseType

func (o *Source) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetDatabaseTypeOk

func (o *Source) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetDatabaseVersion

func (o *Source) GetDatabaseVersion() string

GetDatabaseVersion returns the DatabaseVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetDatabaseVersionOk

func (o *Source) GetDatabaseVersionOk() (*string, bool)

GetDatabaseVersionOk returns a tuple with the DatabaseVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetEnvironmentId

func (o *Source) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetEnvironmentIdOk

func (o *Source) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetFqdn

func (o *Source) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetFqdnOk

func (o *Source) GetFqdnOk() (*string, bool)

GetFqdnOk returns a tuple with the Fqdn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetId

func (o *Source) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Source) GetIdOk

func (o *Source) 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.

func (*Source) GetIpAddress

func (o *Source) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetIpAddressOk

func (o *Source) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetIsDsource

func (o *Source) GetIsDsource() bool

GetIsDsource returns the IsDsource field value if set, zero value otherwise.

func (*Source) GetIsDsourceOk

func (o *Source) GetIsDsourceOk() (*bool, bool)

GetIsDsourceOk returns a tuple with the IsDsource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Source) GetIsReplica

func (o *Source) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetIsReplicaOk

func (o *Source) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetJdbcConnectionString

func (o *Source) GetJdbcConnectionString() string

GetJdbcConnectionString returns the JdbcConnectionString field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetJdbcConnectionStringOk

func (o *Source) GetJdbcConnectionStringOk() (*string, bool)

GetJdbcConnectionStringOk returns a tuple with the JdbcConnectionString field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetName

func (o *Source) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetNameOk

func (o *Source) 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 (*Source) GetNamespaceId

func (o *Source) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetNamespaceIdOk

func (o *Source) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetNamespaceName

func (o *Source) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetNamespaceNameOk

func (o *Source) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetPluginVersion

func (o *Source) GetPluginVersion() string

GetPluginVersion returns the PluginVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetPluginVersionOk

func (o *Source) GetPluginVersionOk() (*string, bool)

GetPluginVersionOk returns a tuple with the PluginVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Source) GetRepository

func (o *Source) GetRepository() string

GetRepository returns the Repository field value if set, zero value otherwise.

func (*Source) GetRepositoryOk

func (o *Source) GetRepositoryOk() (*string, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Source) GetSize

func (o *Source) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Source) GetSizeOk

func (o *Source) GetSizeOk() (*int64, bool)

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 (*Source) GetTags

func (o *Source) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Source) GetTagsOk

func (o *Source) 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.

func (*Source) HasDataUuid

func (o *Source) HasDataUuid() bool

HasDataUuid returns a boolean if a field has been set.

func (*Source) HasDatabaseType

func (o *Source) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*Source) HasDatabaseVersion

func (o *Source) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*Source) HasEnvironmentId

func (o *Source) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*Source) HasFqdn

func (o *Source) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*Source) HasId

func (o *Source) HasId() bool

HasId returns a boolean if a field has been set.

func (*Source) HasIpAddress

func (o *Source) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*Source) HasIsDsource

func (o *Source) HasIsDsource() bool

HasIsDsource returns a boolean if a field has been set.

func (*Source) HasIsReplica

func (o *Source) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*Source) HasJdbcConnectionString

func (o *Source) HasJdbcConnectionString() bool

HasJdbcConnectionString returns a boolean if a field has been set.

func (*Source) HasName

func (o *Source) HasName() bool

HasName returns a boolean if a field has been set.

func (*Source) HasNamespaceId

func (o *Source) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*Source) HasNamespaceName

func (o *Source) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*Source) HasPluginVersion

func (o *Source) HasPluginVersion() bool

HasPluginVersion returns a boolean if a field has been set.

func (*Source) HasRepository

func (o *Source) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*Source) HasSize

func (o *Source) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Source) HasTags

func (o *Source) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Source) MarshalJSON

func (o Source) MarshalJSON() ([]byte, error)

func (*Source) SetDataUuid

func (o *Source) SetDataUuid(v string)

SetDataUuid gets a reference to the given NullableString and assigns it to the DataUuid field.

func (*Source) SetDataUuidNil

func (o *Source) SetDataUuidNil()

SetDataUuidNil sets the value for DataUuid to be an explicit nil

func (*Source) SetDatabaseType

func (o *Source) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given NullableString and assigns it to the DatabaseType field.

func (*Source) SetDatabaseTypeNil

func (o *Source) SetDatabaseTypeNil()

SetDatabaseTypeNil sets the value for DatabaseType to be an explicit nil

func (*Source) SetDatabaseVersion

func (o *Source) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*Source) SetDatabaseVersionNil

func (o *Source) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*Source) SetEnvironmentId

func (o *Source) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given NullableString and assigns it to the EnvironmentId field.

func (*Source) SetEnvironmentIdNil

func (o *Source) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*Source) SetFqdn

func (o *Source) SetFqdn(v string)

SetFqdn gets a reference to the given NullableString and assigns it to the Fqdn field.

func (*Source) SetFqdnNil

func (o *Source) SetFqdnNil()

SetFqdnNil sets the value for Fqdn to be an explicit nil

func (*Source) SetId

func (o *Source) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Source) SetIpAddress

func (o *Source) SetIpAddress(v string)

SetIpAddress gets a reference to the given NullableString and assigns it to the IpAddress field.

func (*Source) SetIpAddressNil

func (o *Source) SetIpAddressNil()

SetIpAddressNil sets the value for IpAddress to be an explicit nil

func (*Source) SetIsDsource

func (o *Source) SetIsDsource(v bool)

SetIsDsource gets a reference to the given bool and assigns it to the IsDsource field.

func (*Source) SetIsReplica

func (o *Source) SetIsReplica(v bool)

SetIsReplica gets a reference to the given NullableBool and assigns it to the IsReplica field.

func (*Source) SetIsReplicaNil

func (o *Source) SetIsReplicaNil()

SetIsReplicaNil sets the value for IsReplica to be an explicit nil

func (*Source) SetJdbcConnectionString

func (o *Source) SetJdbcConnectionString(v string)

SetJdbcConnectionString gets a reference to the given NullableString and assigns it to the JdbcConnectionString field.

func (*Source) SetJdbcConnectionStringNil

func (o *Source) SetJdbcConnectionStringNil()

SetJdbcConnectionStringNil sets the value for JdbcConnectionString to be an explicit nil

func (*Source) SetName

func (o *Source) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*Source) SetNameNil

func (o *Source) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Source) SetNamespaceId

func (o *Source) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given NullableString and assigns it to the NamespaceId field.

func (*Source) SetNamespaceIdNil

func (o *Source) SetNamespaceIdNil()

SetNamespaceIdNil sets the value for NamespaceId to be an explicit nil

func (*Source) SetNamespaceName

func (o *Source) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given NullableString and assigns it to the NamespaceName field.

func (*Source) SetNamespaceNameNil

func (o *Source) SetNamespaceNameNil()

SetNamespaceNameNil sets the value for NamespaceName to be an explicit nil

func (*Source) SetPluginVersion

func (o *Source) SetPluginVersion(v string)

SetPluginVersion gets a reference to the given NullableString and assigns it to the PluginVersion field.

func (*Source) SetPluginVersionNil

func (o *Source) SetPluginVersionNil()

SetPluginVersionNil sets the value for PluginVersion to be an explicit nil

func (*Source) SetRepository

func (o *Source) SetRepository(v string)

SetRepository gets a reference to the given string and assigns it to the Repository field.

func (*Source) SetSize

func (o *Source) SetSize(v int64)

SetSize gets a reference to the given NullableInt64 and assigns it to the Size field.

func (*Source) SetSizeNil

func (o *Source) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*Source) SetTags

func (o *Source) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Source) ToMap

func (o Source) ToMap() (map[string]interface{}, error)

func (*Source) UnsetDataUuid

func (o *Source) UnsetDataUuid()

UnsetDataUuid ensures that no value is present for DataUuid, not even an explicit nil

func (*Source) UnsetDatabaseType

func (o *Source) UnsetDatabaseType()

UnsetDatabaseType ensures that no value is present for DatabaseType, not even an explicit nil

func (*Source) UnsetDatabaseVersion

func (o *Source) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*Source) UnsetEnvironmentId

func (o *Source) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*Source) UnsetFqdn

func (o *Source) UnsetFqdn()

UnsetFqdn ensures that no value is present for Fqdn, not even an explicit nil

func (*Source) UnsetIpAddress

func (o *Source) UnsetIpAddress()

UnsetIpAddress ensures that no value is present for IpAddress, not even an explicit nil

func (*Source) UnsetIsReplica

func (o *Source) UnsetIsReplica()

UnsetIsReplica ensures that no value is present for IsReplica, not even an explicit nil

func (*Source) UnsetJdbcConnectionString

func (o *Source) UnsetJdbcConnectionString()

UnsetJdbcConnectionString ensures that no value is present for JdbcConnectionString, not even an explicit nil

func (*Source) UnsetName

func (o *Source) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Source) UnsetNamespaceId

func (o *Source) UnsetNamespaceId()

UnsetNamespaceId ensures that no value is present for NamespaceId, not even an explicit nil

func (*Source) UnsetNamespaceName

func (o *Source) UnsetNamespaceName()

UnsetNamespaceName ensures that no value is present for NamespaceName, not even an explicit nil

func (*Source) UnsetPluginVersion

func (o *Source) UnsetPluginVersion()

UnsetPluginVersion ensures that no value is present for PluginVersion, not even an explicit nil

func (*Source) UnsetSize

func (o *Source) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

type SourceOperation

type SourceOperation struct {
	Name    string  `json:"name"`
	Command string  `json:"command"`
	Shell   *string `json:"shell,omitempty"`
	// List of environment variables that will contain credentials for this operation.
	CredentialsEnvVars []CredentialsEnvVariable `json:"credentials_env_vars,omitempty"`
}

SourceOperation struct for SourceOperation

func NewSourceOperation

func NewSourceOperation(name string, command string) *SourceOperation

NewSourceOperation instantiates a new SourceOperation 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 NewSourceOperationWithDefaults

func NewSourceOperationWithDefaults() *SourceOperation

NewSourceOperationWithDefaults instantiates a new SourceOperation 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 (*SourceOperation) GetCommand

func (o *SourceOperation) GetCommand() string

GetCommand returns the Command field value

func (*SourceOperation) GetCommandOk

func (o *SourceOperation) GetCommandOk() (*string, bool)

GetCommandOk returns a tuple with the Command field value and a boolean to check if the value has been set.

func (*SourceOperation) GetCredentialsEnvVars

func (o *SourceOperation) GetCredentialsEnvVars() []CredentialsEnvVariable

GetCredentialsEnvVars returns the CredentialsEnvVars field value if set, zero value otherwise.

func (*SourceOperation) GetCredentialsEnvVarsOk

func (o *SourceOperation) GetCredentialsEnvVarsOk() ([]CredentialsEnvVariable, bool)

GetCredentialsEnvVarsOk returns a tuple with the CredentialsEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceOperation) GetName

func (o *SourceOperation) GetName() string

GetName returns the Name field value

func (*SourceOperation) GetNameOk

func (o *SourceOperation) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceOperation) GetShell

func (o *SourceOperation) GetShell() string

GetShell returns the Shell field value if set, zero value otherwise.

func (*SourceOperation) GetShellOk

func (o *SourceOperation) GetShellOk() (*string, bool)

GetShellOk returns a tuple with the Shell field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceOperation) HasCredentialsEnvVars

func (o *SourceOperation) HasCredentialsEnvVars() bool

HasCredentialsEnvVars returns a boolean if a field has been set.

func (*SourceOperation) HasShell

func (o *SourceOperation) HasShell() bool

HasShell returns a boolean if a field has been set.

func (SourceOperation) MarshalJSON

func (o SourceOperation) MarshalJSON() ([]byte, error)

func (*SourceOperation) SetCommand

func (o *SourceOperation) SetCommand(v string)

SetCommand sets field value

func (*SourceOperation) SetCredentialsEnvVars

func (o *SourceOperation) SetCredentialsEnvVars(v []CredentialsEnvVariable)

SetCredentialsEnvVars gets a reference to the given []CredentialsEnvVariable and assigns it to the CredentialsEnvVars field.

func (*SourceOperation) SetName

func (o *SourceOperation) SetName(v string)

SetName sets field value

func (*SourceOperation) SetShell

func (o *SourceOperation) SetShell(v string)

SetShell gets a reference to the given string and assigns it to the Shell field.

func (SourceOperation) ToMap

func (o SourceOperation) ToMap() (map[string]interface{}, error)

type SourcesApiService

type SourcesApiService service

SourcesApiService SourcesApi service

func (*SourcesApiService) CreateSourceTags

func (a *SourcesApiService) CreateSourceTags(ctx context.Context, sourceId string) ApiCreateSourceTagsRequest

CreateSourceTags Create tags for a Source.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceId The ID of the Source.
@return ApiCreateSourceTagsRequest

func (*SourcesApiService) CreateSourceTagsExecute

func (a *SourcesApiService) CreateSourceTagsExecute(r ApiCreateSourceTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SourcesApiService) DeleteSourceTags

func (a *SourcesApiService) DeleteSourceTags(ctx context.Context, sourceId string) ApiDeleteSourceTagsRequest

DeleteSourceTags Delete tags for a Source.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceId The ID of the Source.
@return ApiDeleteSourceTagsRequest

func (*SourcesApiService) DeleteSourceTagsExecute

func (a *SourcesApiService) DeleteSourceTagsExecute(r ApiDeleteSourceTagsRequest) (*http.Response, error)

Execute executes the request

func (*SourcesApiService) GetSourceById

func (a *SourcesApiService) GetSourceById(ctx context.Context, sourceId string) ApiGetSourceByIdRequest

GetSourceById Get a source by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceId The ID of the Source.
@return ApiGetSourceByIdRequest

func (*SourcesApiService) GetSourceByIdExecute

func (a *SourcesApiService) GetSourceByIdExecute(r ApiGetSourceByIdRequest) (*Source, *http.Response, error)

Execute executes the request

@return Source

func (*SourcesApiService) GetSourceCompatibleRepo

func (a *SourcesApiService) GetSourceCompatibleRepo(ctx context.Context, sourceId string) ApiGetSourceCompatibleRepoRequest

GetSourceCompatibleRepo Returns a list of repositories that match the specified source.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceId The ID of the Source.
@return ApiGetSourceCompatibleRepoRequest

func (*SourcesApiService) GetSourceCompatibleRepoExecute

Execute executes the request

@return StagingCompatibleEnvironmentsResponse

func (*SourcesApiService) GetSourceTags

func (a *SourcesApiService) GetSourceTags(ctx context.Context, sourceId string) ApiGetSourceTagsRequest

GetSourceTags Get tags for a Source.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sourceId The ID of the Source.
@return ApiGetSourceTagsRequest

func (*SourcesApiService) GetSourceTagsExecute

func (a *SourcesApiService) GetSourceTagsExecute(r ApiGetSourceTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SourcesApiService) GetSources

GetSources List all sources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSourcesRequest

func (*SourcesApiService) GetSourcesExecute

Execute executes the request

@return ListSourcesResponse

func (*SourcesApiService) SearchSources

SearchSources Search for Sources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchSourcesRequest

func (*SourcesApiService) SearchSourcesExecute

Execute executes the request

@return SearchSourcesResponse

type StagingCompatibleEnvironmentsResponse

type StagingCompatibleEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
}

StagingCompatibleEnvironmentsResponse struct for StagingCompatibleEnvironmentsResponse

func NewStagingCompatibleEnvironmentsResponse

func NewStagingCompatibleEnvironmentsResponse() *StagingCompatibleEnvironmentsResponse

NewStagingCompatibleEnvironmentsResponse instantiates a new StagingCompatibleEnvironmentsResponse 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 NewStagingCompatibleEnvironmentsResponseWithDefaults

func NewStagingCompatibleEnvironmentsResponseWithDefaults() *StagingCompatibleEnvironmentsResponse

NewStagingCompatibleEnvironmentsResponseWithDefaults instantiates a new StagingCompatibleEnvironmentsResponse 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 (*StagingCompatibleEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*StagingCompatibleEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StagingCompatibleEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (StagingCompatibleEnvironmentsResponse) MarshalJSON

func (o StagingCompatibleEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*StagingCompatibleEnvironmentsResponse) SetItems

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (StagingCompatibleEnvironmentsResponse) ToMap

func (o StagingCompatibleEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type StartVDBResponse

type StartVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

StartVDBResponse struct for StartVDBResponse

func NewStartVDBResponse

func NewStartVDBResponse() *StartVDBResponse

NewStartVDBResponse instantiates a new StartVDBResponse 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 NewStartVDBResponseWithDefaults

func NewStartVDBResponseWithDefaults() *StartVDBResponse

NewStartVDBResponseWithDefaults instantiates a new StartVDBResponse 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 (*StartVDBResponse) GetJob

func (o *StartVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*StartVDBResponse) GetJobOk

func (o *StartVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVDBResponse) HasJob

func (o *StartVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (StartVDBResponse) MarshalJSON

func (o StartVDBResponse) MarshalJSON() ([]byte, error)

func (*StartVDBResponse) SetJob

func (o *StartVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (StartVDBResponse) ToMap

func (o StartVDBResponse) ToMap() (map[string]interface{}, error)

type StopVDBResponse

type StopVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

StopVDBResponse struct for StopVDBResponse

func NewStopVDBResponse

func NewStopVDBResponse() *StopVDBResponse

NewStopVDBResponse instantiates a new StopVDBResponse 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 NewStopVDBResponseWithDefaults

func NewStopVDBResponseWithDefaults() *StopVDBResponse

NewStopVDBResponseWithDefaults instantiates a new StopVDBResponse 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 (*StopVDBResponse) GetJob

func (o *StopVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*StopVDBResponse) GetJobOk

func (o *StopVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopVDBResponse) HasJob

func (o *StopVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (StopVDBResponse) MarshalJSON

func (o StopVDBResponse) MarshalJSON() ([]byte, error)

func (*StopVDBResponse) SetJob

func (o *StopVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (StopVDBResponse) ToMap

func (o StopVDBResponse) ToMap() (map[string]interface{}, error)

type SwitchTimeflowParameters

type SwitchTimeflowParameters struct {
	// The ID of the timeflow to switch to.
	TimeflowId *string `json:"timeflow_id,omitempty"`
}

SwitchTimeflowParameters Parameters to switch the timeflow of a VDB.

func NewSwitchTimeflowParameters

func NewSwitchTimeflowParameters() *SwitchTimeflowParameters

NewSwitchTimeflowParameters instantiates a new SwitchTimeflowParameters 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 NewSwitchTimeflowParametersWithDefaults

func NewSwitchTimeflowParametersWithDefaults() *SwitchTimeflowParameters

NewSwitchTimeflowParametersWithDefaults instantiates a new SwitchTimeflowParameters 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 (*SwitchTimeflowParameters) GetTimeflowId

func (o *SwitchTimeflowParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*SwitchTimeflowParameters) GetTimeflowIdOk

func (o *SwitchTimeflowParameters) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwitchTimeflowParameters) HasTimeflowId

func (o *SwitchTimeflowParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (SwitchTimeflowParameters) MarshalJSON

func (o SwitchTimeflowParameters) MarshalJSON() ([]byte, error)

func (*SwitchTimeflowParameters) SetTimeflowId

func (o *SwitchTimeflowParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (SwitchTimeflowParameters) ToMap

func (o SwitchTimeflowParameters) ToMap() (map[string]interface{}, error)

type SwitchTimeflowResponse

type SwitchTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

SwitchTimeflowResponse struct for SwitchTimeflowResponse

func NewSwitchTimeflowResponse

func NewSwitchTimeflowResponse() *SwitchTimeflowResponse

NewSwitchTimeflowResponse instantiates a new SwitchTimeflowResponse 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 NewSwitchTimeflowResponseWithDefaults

func NewSwitchTimeflowResponseWithDefaults() *SwitchTimeflowResponse

NewSwitchTimeflowResponseWithDefaults instantiates a new SwitchTimeflowResponse 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 (*SwitchTimeflowResponse) GetJob

func (o *SwitchTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SwitchTimeflowResponse) GetJobOk

func (o *SwitchTimeflowResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwitchTimeflowResponse) HasJob

func (o *SwitchTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SwitchTimeflowResponse) MarshalJSON

func (o SwitchTimeflowResponse) MarshalJSON() ([]byte, error)

func (*SwitchTimeflowResponse) SetJob

func (o *SwitchTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SwitchTimeflowResponse) ToMap

func (o SwitchTimeflowResponse) ToMap() (map[string]interface{}, error)

type Tag

type Tag struct {
	// Key of the tag
	Key string `json:"key"`
	// Value of the tag
	Value string `json:"value"`
}

Tag struct for Tag

func NewTag

func NewTag(key string, value string) *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

func (*Tag) GetKeyOk

func (o *Tag) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*Tag) GetValue

func (o *Tag) GetValue() string

GetValue returns the Value field value

func (*Tag) GetValueOk

func (o *Tag) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (Tag) MarshalJSON

func (o Tag) MarshalJSON() ([]byte, error)

func (*Tag) SetKey

func (o *Tag) SetKey(v string)

SetKey sets field value

func (*Tag) SetValue

func (o *Tag) SetValue(v string)

SetValue sets field value

func (Tag) ToMap

func (o Tag) ToMap() (map[string]interface{}, error)

type TagsRequest

type TagsRequest struct {
	// Array of tags with key value pairs
	Tags []Tag `json:"tags"`
}

TagsRequest struct for TagsRequest

func NewTagsRequest

func NewTagsRequest(tags []Tag) *TagsRequest

NewTagsRequest instantiates a new TagsRequest 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 NewTagsRequestWithDefaults

func NewTagsRequestWithDefaults() *TagsRequest

NewTagsRequestWithDefaults instantiates a new TagsRequest 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 (*TagsRequest) GetTags

func (o *TagsRequest) GetTags() []Tag

GetTags returns the Tags field value

func (*TagsRequest) GetTagsOk

func (o *TagsRequest) GetTagsOk() ([]Tag, bool)

GetTagsOk returns a tuple with the Tags field value and a boolean to check if the value has been set.

func (TagsRequest) MarshalJSON

func (o TagsRequest) MarshalJSON() ([]byte, error)

func (*TagsRequest) SetTags

func (o *TagsRequest) SetTags(v []Tag)

SetTags sets field value

func (TagsRequest) ToMap

func (o TagsRequest) ToMap() (map[string]interface{}, error)

type TagsResponse

type TagsResponse struct {
	// Array of tags with key value pairs
	Tags []Tag `json:"tags,omitempty"`
}

TagsResponse struct for TagsResponse

func NewTagsResponse

func NewTagsResponse() *TagsResponse

NewTagsResponse instantiates a new TagsResponse 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 NewTagsResponseWithDefaults

func NewTagsResponseWithDefaults() *TagsResponse

NewTagsResponseWithDefaults instantiates a new TagsResponse 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 (*TagsResponse) GetTags

func (o *TagsResponse) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*TagsResponse) GetTagsOk

func (o *TagsResponse) 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.

func (*TagsResponse) HasTags

func (o *TagsResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (TagsResponse) MarshalJSON

func (o TagsResponse) MarshalJSON() ([]byte, error)

func (*TagsResponse) SetTags

func (o *TagsResponse) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (TagsResponse) ToMap

func (o TagsResponse) ToMap() (map[string]interface{}, error)

type TaskEvent

type TaskEvent struct {
	// The steps or events a task will perform.
	Event *string `json:"event,omitempty"`
	// The state of result of the task event.
	Status *string `json:"status,omitempty"`
}

TaskEvent A step or event performed by a masking execution.

func NewTaskEvent

func NewTaskEvent() *TaskEvent

NewTaskEvent instantiates a new TaskEvent 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 NewTaskEventWithDefaults

func NewTaskEventWithDefaults() *TaskEvent

NewTaskEventWithDefaults instantiates a new TaskEvent 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 (*TaskEvent) GetEvent

func (o *TaskEvent) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise.

func (*TaskEvent) GetEventOk

func (o *TaskEvent) GetEventOk() (*string, bool)

GetEventOk returns a tuple with the Event field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskEvent) GetStatus

func (o *TaskEvent) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*TaskEvent) GetStatusOk

func (o *TaskEvent) 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.

func (*TaskEvent) HasEvent

func (o *TaskEvent) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*TaskEvent) HasStatus

func (o *TaskEvent) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (TaskEvent) MarshalJSON

func (o TaskEvent) MarshalJSON() ([]byte, error)

func (*TaskEvent) SetEvent

func (o *TaskEvent) SetEvent(v string)

SetEvent gets a reference to the given string and assigns it to the Event field.

func (*TaskEvent) SetStatus

func (o *TaskEvent) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (TaskEvent) ToMap

func (o TaskEvent) ToMap() (map[string]interface{}, error)

type TestApiService

type TestApiService service

TestApiService TestApi service

func (*TestApiService) EnableScaleTesting

func (a *TestApiService) EnableScaleTesting(ctx context.Context) ApiEnableScaleTestingRequest

EnableScaleTesting This is used for performance testing to enable engine and object duplication.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnableScaleTestingRequest

func (*TestApiService) EnableScaleTestingExecute

func (a *TestApiService) EnableScaleTestingExecute(r ApiEnableScaleTestingRequest) (*http.Response, error)

Execute executes the request

type Timeflow

type Timeflow struct {
	// The Timeflow ID.
	Id *string `json:"id,omitempty"`
	// The ID of the engine the timeflow belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// Alternate namespace for this object, for replicated and restored timeflows.
	Namespace NullableString `json:"namespace,omitempty"`
	// The namespace id of this timeflows.
	NamespaceId NullableString `json:"namespace_id,omitempty"`
	// The namespace name of this timeflows.
	NamespaceName NullableString `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// The timeflow's name.
	Name *string `json:"name,omitempty"`
	// The ID of the timeflow's dSource or VDB.
	DatasetId *string `json:"dataset_id,omitempty"`
	// The source action that created the timeflow.
	CreationType *string `json:"creation_type,omitempty"`
	// The ID of the timeflow's parent snapshot.
	ParentSnapshotId *string `json:"parent_snapshot_id,omitempty"`
	// The location on the parent timeflow from which this timeflow was provisioned. This will not be present for timeflows derived from linked sources.
	ParentPointLocation *string `json:"parent_point_location,omitempty"`
	// The timestamp on the parent timeflow from which this timeflow was provisioned. This will not be present for timeflows derived from linked sources.
	ParentPointTimestamp *time.Time `json:"parent_point_timestamp,omitempty"`
	// A reference to the parent timeflow from which this timeflow was provisioned. This will not be present for timeflows derived from linked sources.
	ParentPointTimeflowId *string `json:"parent_point_timeflow_id,omitempty"`
	// The timestamp on the root ancestor timeflow from which this timeflow originated. This logical time acts as reference to the origin source data.
	SourceDataTimestamp *time.Time `json:"source_data_timestamp,omitempty"`
	// Oracle-specific incarnation identifier for this timeflow.
	OracleIncarnationId *string `json:"oracle_incarnation_id,omitempty"`
	// A reference to the mirror CDB timeflow if this is a timeflow for a PDB.
	OracleCdbTimeflowId *string `json:"oracle_cdb_timeflow_id,omitempty"`
	// The unique identifier for timeflow-specific TDE objects that reside outside of Delphix storage.
	OracleTdeUuid *string `json:"oracle_tde_uuid,omitempty"`
	// MSSQL-specific recovery branch identifier for this timeflow.
	MssqlDatabaseGuid *string `json:"mssql_database_guid,omitempty"`
	Tags              []Tag   `json:"tags,omitempty"`
}

Timeflow Virtualization Engine Timeflow of a dSource or VDB.

func NewTimeflow

func NewTimeflow() *Timeflow

NewTimeflow instantiates a new Timeflow 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 NewTimeflowWithDefaults

func NewTimeflowWithDefaults() *Timeflow

NewTimeflowWithDefaults instantiates a new Timeflow 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 (*Timeflow) GetCreationType

func (o *Timeflow) GetCreationType() string

GetCreationType returns the CreationType field value if set, zero value otherwise.

func (*Timeflow) GetCreationTypeOk

func (o *Timeflow) GetCreationTypeOk() (*string, bool)

GetCreationTypeOk returns a tuple with the CreationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetDatasetId

func (o *Timeflow) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*Timeflow) GetDatasetIdOk

func (o *Timeflow) GetDatasetIdOk() (*string, bool)

GetDatasetIdOk returns a tuple with the DatasetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetEngineId

func (o *Timeflow) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Timeflow) GetEngineIdOk

func (o *Timeflow) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetId

func (o *Timeflow) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Timeflow) GetIdOk

func (o *Timeflow) 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.

func (*Timeflow) GetIsReplica

func (o *Timeflow) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*Timeflow) GetIsReplicaOk

func (o *Timeflow) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetMssqlDatabaseGuid

func (o *Timeflow) GetMssqlDatabaseGuid() string

GetMssqlDatabaseGuid returns the MssqlDatabaseGuid field value if set, zero value otherwise.

func (*Timeflow) GetMssqlDatabaseGuidOk

func (o *Timeflow) GetMssqlDatabaseGuidOk() (*string, bool)

GetMssqlDatabaseGuidOk returns a tuple with the MssqlDatabaseGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetName

func (o *Timeflow) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Timeflow) GetNameOk

func (o *Timeflow) 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.

func (*Timeflow) GetNamespace

func (o *Timeflow) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Timeflow) GetNamespaceId

func (o *Timeflow) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Timeflow) GetNamespaceIdOk

func (o *Timeflow) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Timeflow) GetNamespaceName

func (o *Timeflow) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Timeflow) GetNamespaceNameOk

func (o *Timeflow) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Timeflow) GetNamespaceOk

func (o *Timeflow) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Timeflow) GetOracleCdbTimeflowId

func (o *Timeflow) GetOracleCdbTimeflowId() string

GetOracleCdbTimeflowId returns the OracleCdbTimeflowId field value if set, zero value otherwise.

func (*Timeflow) GetOracleCdbTimeflowIdOk

func (o *Timeflow) GetOracleCdbTimeflowIdOk() (*string, bool)

GetOracleCdbTimeflowIdOk returns a tuple with the OracleCdbTimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetOracleIncarnationId

func (o *Timeflow) GetOracleIncarnationId() string

GetOracleIncarnationId returns the OracleIncarnationId field value if set, zero value otherwise.

func (*Timeflow) GetOracleIncarnationIdOk

func (o *Timeflow) GetOracleIncarnationIdOk() (*string, bool)

GetOracleIncarnationIdOk returns a tuple with the OracleIncarnationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetOracleTdeUuid

func (o *Timeflow) GetOracleTdeUuid() string

GetOracleTdeUuid returns the OracleTdeUuid field value if set, zero value otherwise.

func (*Timeflow) GetOracleTdeUuidOk

func (o *Timeflow) GetOracleTdeUuidOk() (*string, bool)

GetOracleTdeUuidOk returns a tuple with the OracleTdeUuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetParentPointLocation

func (o *Timeflow) GetParentPointLocation() string

GetParentPointLocation returns the ParentPointLocation field value if set, zero value otherwise.

func (*Timeflow) GetParentPointLocationOk

func (o *Timeflow) GetParentPointLocationOk() (*string, bool)

GetParentPointLocationOk returns a tuple with the ParentPointLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetParentPointTimeflowId

func (o *Timeflow) GetParentPointTimeflowId() string

GetParentPointTimeflowId returns the ParentPointTimeflowId field value if set, zero value otherwise.

func (*Timeflow) GetParentPointTimeflowIdOk

func (o *Timeflow) GetParentPointTimeflowIdOk() (*string, bool)

GetParentPointTimeflowIdOk returns a tuple with the ParentPointTimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetParentPointTimestamp

func (o *Timeflow) GetParentPointTimestamp() time.Time

GetParentPointTimestamp returns the ParentPointTimestamp field value if set, zero value otherwise.

func (*Timeflow) GetParentPointTimestampOk

func (o *Timeflow) GetParentPointTimestampOk() (*time.Time, bool)

GetParentPointTimestampOk returns a tuple with the ParentPointTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetParentSnapshotId

func (o *Timeflow) GetParentSnapshotId() string

GetParentSnapshotId returns the ParentSnapshotId field value if set, zero value otherwise.

func (*Timeflow) GetParentSnapshotIdOk

func (o *Timeflow) GetParentSnapshotIdOk() (*string, bool)

GetParentSnapshotIdOk returns a tuple with the ParentSnapshotId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetSourceDataTimestamp

func (o *Timeflow) GetSourceDataTimestamp() time.Time

GetSourceDataTimestamp returns the SourceDataTimestamp field value if set, zero value otherwise.

func (*Timeflow) GetSourceDataTimestampOk

func (o *Timeflow) GetSourceDataTimestampOk() (*time.Time, bool)

GetSourceDataTimestampOk returns a tuple with the SourceDataTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeflow) GetTags

func (o *Timeflow) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Timeflow) GetTagsOk

func (o *Timeflow) 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.

func (*Timeflow) HasCreationType

func (o *Timeflow) HasCreationType() bool

HasCreationType returns a boolean if a field has been set.

func (*Timeflow) HasDatasetId

func (o *Timeflow) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*Timeflow) HasEngineId

func (o *Timeflow) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Timeflow) HasId

func (o *Timeflow) HasId() bool

HasId returns a boolean if a field has been set.

func (*Timeflow) HasIsReplica

func (o *Timeflow) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*Timeflow) HasMssqlDatabaseGuid

func (o *Timeflow) HasMssqlDatabaseGuid() bool

HasMssqlDatabaseGuid returns a boolean if a field has been set.

func (*Timeflow) HasName

func (o *Timeflow) HasName() bool

HasName returns a boolean if a field has been set.

func (*Timeflow) HasNamespace

func (o *Timeflow) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Timeflow) HasNamespaceId

func (o *Timeflow) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*Timeflow) HasNamespaceName

func (o *Timeflow) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*Timeflow) HasOracleCdbTimeflowId

func (o *Timeflow) HasOracleCdbTimeflowId() bool

HasOracleCdbTimeflowId returns a boolean if a field has been set.

func (*Timeflow) HasOracleIncarnationId

func (o *Timeflow) HasOracleIncarnationId() bool

HasOracleIncarnationId returns a boolean if a field has been set.

func (*Timeflow) HasOracleTdeUuid

func (o *Timeflow) HasOracleTdeUuid() bool

HasOracleTdeUuid returns a boolean if a field has been set.

func (*Timeflow) HasParentPointLocation

func (o *Timeflow) HasParentPointLocation() bool

HasParentPointLocation returns a boolean if a field has been set.

func (*Timeflow) HasParentPointTimeflowId

func (o *Timeflow) HasParentPointTimeflowId() bool

HasParentPointTimeflowId returns a boolean if a field has been set.

func (*Timeflow) HasParentPointTimestamp

func (o *Timeflow) HasParentPointTimestamp() bool

HasParentPointTimestamp returns a boolean if a field has been set.

func (*Timeflow) HasParentSnapshotId

func (o *Timeflow) HasParentSnapshotId() bool

HasParentSnapshotId returns a boolean if a field has been set.

func (*Timeflow) HasSourceDataTimestamp

func (o *Timeflow) HasSourceDataTimestamp() bool

HasSourceDataTimestamp returns a boolean if a field has been set.

func (*Timeflow) HasTags

func (o *Timeflow) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Timeflow) MarshalJSON

func (o Timeflow) MarshalJSON() ([]byte, error)

func (*Timeflow) SetCreationType

func (o *Timeflow) SetCreationType(v string)

SetCreationType gets a reference to the given string and assigns it to the CreationType field.

func (*Timeflow) SetDatasetId

func (o *Timeflow) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*Timeflow) SetEngineId

func (o *Timeflow) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Timeflow) SetId

func (o *Timeflow) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Timeflow) SetIsReplica

func (o *Timeflow) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*Timeflow) SetMssqlDatabaseGuid

func (o *Timeflow) SetMssqlDatabaseGuid(v string)

SetMssqlDatabaseGuid gets a reference to the given string and assigns it to the MssqlDatabaseGuid field.

func (*Timeflow) SetName

func (o *Timeflow) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Timeflow) SetNamespace

func (o *Timeflow) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*Timeflow) SetNamespaceId

func (o *Timeflow) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given NullableString and assigns it to the NamespaceId field.

func (*Timeflow) SetNamespaceIdNil

func (o *Timeflow) SetNamespaceIdNil()

SetNamespaceIdNil sets the value for NamespaceId to be an explicit nil

func (*Timeflow) SetNamespaceName

func (o *Timeflow) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given NullableString and assigns it to the NamespaceName field.

func (*Timeflow) SetNamespaceNameNil

func (o *Timeflow) SetNamespaceNameNil()

SetNamespaceNameNil sets the value for NamespaceName to be an explicit nil

func (*Timeflow) SetNamespaceNil

func (o *Timeflow) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Timeflow) SetOracleCdbTimeflowId

func (o *Timeflow) SetOracleCdbTimeflowId(v string)

SetOracleCdbTimeflowId gets a reference to the given string and assigns it to the OracleCdbTimeflowId field.

func (*Timeflow) SetOracleIncarnationId

func (o *Timeflow) SetOracleIncarnationId(v string)

SetOracleIncarnationId gets a reference to the given string and assigns it to the OracleIncarnationId field.

func (*Timeflow) SetOracleTdeUuid

func (o *Timeflow) SetOracleTdeUuid(v string)

SetOracleTdeUuid gets a reference to the given string and assigns it to the OracleTdeUuid field.

func (*Timeflow) SetParentPointLocation

func (o *Timeflow) SetParentPointLocation(v string)

SetParentPointLocation gets a reference to the given string and assigns it to the ParentPointLocation field.

func (*Timeflow) SetParentPointTimeflowId

func (o *Timeflow) SetParentPointTimeflowId(v string)

SetParentPointTimeflowId gets a reference to the given string and assigns it to the ParentPointTimeflowId field.

func (*Timeflow) SetParentPointTimestamp

func (o *Timeflow) SetParentPointTimestamp(v time.Time)

SetParentPointTimestamp gets a reference to the given time.Time and assigns it to the ParentPointTimestamp field.

func (*Timeflow) SetParentSnapshotId

func (o *Timeflow) SetParentSnapshotId(v string)

SetParentSnapshotId gets a reference to the given string and assigns it to the ParentSnapshotId field.

func (*Timeflow) SetSourceDataTimestamp

func (o *Timeflow) SetSourceDataTimestamp(v time.Time)

SetSourceDataTimestamp gets a reference to the given time.Time and assigns it to the SourceDataTimestamp field.

func (*Timeflow) SetTags

func (o *Timeflow) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Timeflow) ToMap

func (o Timeflow) ToMap() (map[string]interface{}, error)

func (*Timeflow) UnsetNamespace

func (o *Timeflow) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

func (*Timeflow) UnsetNamespaceId

func (o *Timeflow) UnsetNamespaceId()

UnsetNamespaceId ensures that no value is present for NamespaceId, not even an explicit nil

func (*Timeflow) UnsetNamespaceName

func (o *Timeflow) UnsetNamespaceName()

UnsetNamespaceName ensures that no value is present for NamespaceName, not even an explicit nil

type TimeflowRange

type TimeflowRange struct {
	// The starting location of this range.
	StartPointLocation *string `json:"start_point_location,omitempty"`
	// The starting timestamp of this range.
	StartPointTimestamp *time.Time `json:"start_point_timestamp,omitempty"`
	// The ending location of this range.
	EndPointLocation *string `json:"end_point_location,omitempty"`
	// The ending timestamp of this range.
	EndPointTimestamp *time.Time `json:"end_point_timestamp,omitempty"`
	// A reference to the timeflow of this range.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// Whether or not this range is provisionable.
	Provisionable *bool `json:"provisionable,omitempty"`
}

TimeflowRange Represents a time range within a timeflow.

func NewTimeflowRange

func NewTimeflowRange() *TimeflowRange

NewTimeflowRange instantiates a new TimeflowRange 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 NewTimeflowRangeWithDefaults

func NewTimeflowRangeWithDefaults() *TimeflowRange

NewTimeflowRangeWithDefaults instantiates a new TimeflowRange 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 (*TimeflowRange) GetEndPointLocation

func (o *TimeflowRange) GetEndPointLocation() string

GetEndPointLocation returns the EndPointLocation field value if set, zero value otherwise.

func (*TimeflowRange) GetEndPointLocationOk

func (o *TimeflowRange) GetEndPointLocationOk() (*string, bool)

GetEndPointLocationOk returns a tuple with the EndPointLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) GetEndPointTimestamp

func (o *TimeflowRange) GetEndPointTimestamp() time.Time

GetEndPointTimestamp returns the EndPointTimestamp field value if set, zero value otherwise.

func (*TimeflowRange) GetEndPointTimestampOk

func (o *TimeflowRange) GetEndPointTimestampOk() (*time.Time, bool)

GetEndPointTimestampOk returns a tuple with the EndPointTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) GetProvisionable

func (o *TimeflowRange) GetProvisionable() bool

GetProvisionable returns the Provisionable field value if set, zero value otherwise.

func (*TimeflowRange) GetProvisionableOk

func (o *TimeflowRange) GetProvisionableOk() (*bool, bool)

GetProvisionableOk returns a tuple with the Provisionable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) GetStartPointLocation

func (o *TimeflowRange) GetStartPointLocation() string

GetStartPointLocation returns the StartPointLocation field value if set, zero value otherwise.

func (*TimeflowRange) GetStartPointLocationOk

func (o *TimeflowRange) GetStartPointLocationOk() (*string, bool)

GetStartPointLocationOk returns a tuple with the StartPointLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) GetStartPointTimestamp

func (o *TimeflowRange) GetStartPointTimestamp() time.Time

GetStartPointTimestamp returns the StartPointTimestamp field value if set, zero value otherwise.

func (*TimeflowRange) GetStartPointTimestampOk

func (o *TimeflowRange) GetStartPointTimestampOk() (*time.Time, bool)

GetStartPointTimestampOk returns a tuple with the StartPointTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) GetTimeflowId

func (o *TimeflowRange) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*TimeflowRange) GetTimeflowIdOk

func (o *TimeflowRange) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeflowRange) HasEndPointLocation

func (o *TimeflowRange) HasEndPointLocation() bool

HasEndPointLocation returns a boolean if a field has been set.

func (*TimeflowRange) HasEndPointTimestamp

func (o *TimeflowRange) HasEndPointTimestamp() bool

HasEndPointTimestamp returns a boolean if a field has been set.

func (*TimeflowRange) HasProvisionable

func (o *TimeflowRange) HasProvisionable() bool

HasProvisionable returns a boolean if a field has been set.

func (*TimeflowRange) HasStartPointLocation

func (o *TimeflowRange) HasStartPointLocation() bool

HasStartPointLocation returns a boolean if a field has been set.

func (*TimeflowRange) HasStartPointTimestamp

func (o *TimeflowRange) HasStartPointTimestamp() bool

HasStartPointTimestamp returns a boolean if a field has been set.

func (*TimeflowRange) HasTimeflowId

func (o *TimeflowRange) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (TimeflowRange) MarshalJSON

func (o TimeflowRange) MarshalJSON() ([]byte, error)

func (*TimeflowRange) SetEndPointLocation

func (o *TimeflowRange) SetEndPointLocation(v string)

SetEndPointLocation gets a reference to the given string and assigns it to the EndPointLocation field.

func (*TimeflowRange) SetEndPointTimestamp

func (o *TimeflowRange) SetEndPointTimestamp(v time.Time)

SetEndPointTimestamp gets a reference to the given time.Time and assigns it to the EndPointTimestamp field.

func (*TimeflowRange) SetProvisionable

func (o *TimeflowRange) SetProvisionable(v bool)

SetProvisionable gets a reference to the given bool and assigns it to the Provisionable field.

func (*TimeflowRange) SetStartPointLocation

func (o *TimeflowRange) SetStartPointLocation(v string)

SetStartPointLocation gets a reference to the given string and assigns it to the StartPointLocation field.

func (*TimeflowRange) SetStartPointTimestamp

func (o *TimeflowRange) SetStartPointTimestamp(v time.Time)

SetStartPointTimestamp gets a reference to the given time.Time and assigns it to the StartPointTimestamp field.

func (*TimeflowRange) SetTimeflowId

func (o *TimeflowRange) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (TimeflowRange) ToMap

func (o TimeflowRange) ToMap() (map[string]interface{}, error)

type TimeflowsApiService

type TimeflowsApiService service

TimeflowsApiService TimeflowsApi service

func (*TimeflowsApiService) CreateTimeflowTags

func (a *TimeflowsApiService) CreateTimeflowTags(ctx context.Context, timeflowId string) ApiCreateTimeflowTagsRequest

CreateTimeflowTags Create tags for a Timeflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiCreateTimeflowTagsRequest

func (*TimeflowsApiService) CreateTimeflowTagsExecute

func (a *TimeflowsApiService) CreateTimeflowTagsExecute(r ApiCreateTimeflowTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*TimeflowsApiService) DeleteTimeflow

func (a *TimeflowsApiService) DeleteTimeflow(ctx context.Context, timeflowId string) ApiDeleteTimeflowRequest

DeleteTimeflow Delete a timeflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiDeleteTimeflowRequest

func (*TimeflowsApiService) DeleteTimeflowExecute

Execute executes the request

@return DeleteTimeflowResponse

func (*TimeflowsApiService) DeleteTimeflowTags

func (a *TimeflowsApiService) DeleteTimeflowTags(ctx context.Context, timeflowId string) ApiDeleteTimeflowTagsRequest

DeleteTimeflowTags Delete tags for a Timeflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiDeleteTimeflowTagsRequest

func (*TimeflowsApiService) DeleteTimeflowTagsExecute

func (a *TimeflowsApiService) DeleteTimeflowTagsExecute(r ApiDeleteTimeflowTagsRequest) (*http.Response, error)

Execute executes the request

func (*TimeflowsApiService) GetTimeflowById

func (a *TimeflowsApiService) GetTimeflowById(ctx context.Context, timeflowId string) ApiGetTimeflowByIdRequest

GetTimeflowById Get a Timeflow by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiGetTimeflowByIdRequest

func (*TimeflowsApiService) GetTimeflowByIdExecute

func (a *TimeflowsApiService) GetTimeflowByIdExecute(r ApiGetTimeflowByIdRequest) (*Timeflow, *http.Response, error)

Execute executes the request

@return Timeflow

func (*TimeflowsApiService) GetTimeflowSnapshotDayRange

func (a *TimeflowsApiService) GetTimeflowSnapshotDayRange(ctx context.Context, timeflowId string) ApiGetTimeflowSnapshotDayRangeRequest

GetTimeflowSnapshotDayRange Returns the count of TimeFlow snapshots of the Timeflow aggregated by day.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiGetTimeflowSnapshotDayRangeRequest

func (*TimeflowsApiService) GetTimeflowSnapshotDayRangeExecute

Execute executes the request

@return SnapshotsDayRangesResponse

func (*TimeflowsApiService) GetTimeflowTags

func (a *TimeflowsApiService) GetTimeflowTags(ctx context.Context, timeflowId string) ApiGetTimeflowTagsRequest

GetTimeflowTags Get tags for a Timeflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiGetTimeflowTagsRequest

func (*TimeflowsApiService) GetTimeflowTagsExecute

func (a *TimeflowsApiService) GetTimeflowTagsExecute(r ApiGetTimeflowTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*TimeflowsApiService) GetTimeflows

GetTimeflows Retrieve the list of timeflows.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTimeflowsRequest

func (*TimeflowsApiService) GetTimeflowsExecute

Execute executes the request

@return ListTimeflowsResponse

func (*TimeflowsApiService) SearchTimeflows

SearchTimeflows Search timeflows.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchTimeflowsRequest

func (*TimeflowsApiService) SearchTimeflowsExecute

Execute executes the request

@return SearchTimeflowsResponse

func (*TimeflowsApiService) UpdateTimeflow

func (a *TimeflowsApiService) UpdateTimeflow(ctx context.Context, timeflowId string) ApiUpdateTimeflowRequest

UpdateTimeflow Update values of a timeflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param timeflowId The ID of the timeflow.
@return ApiUpdateTimeflowRequest

func (*TimeflowsApiService) UpdateTimeflowExecute

Execute executes the request

@return UpdateTimeflowResponse

type TimestampCompatibleEnvironmentsResponse

type TimestampCompatibleEnvironmentsResponse struct {
	Items []Environment `json:"items,omitempty"`
}

TimestampCompatibleEnvironmentsResponse struct for TimestampCompatibleEnvironmentsResponse

func NewTimestampCompatibleEnvironmentsResponse

func NewTimestampCompatibleEnvironmentsResponse() *TimestampCompatibleEnvironmentsResponse

NewTimestampCompatibleEnvironmentsResponse instantiates a new TimestampCompatibleEnvironmentsResponse 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 NewTimestampCompatibleEnvironmentsResponseWithDefaults

func NewTimestampCompatibleEnvironmentsResponseWithDefaults() *TimestampCompatibleEnvironmentsResponse

NewTimestampCompatibleEnvironmentsResponseWithDefaults instantiates a new TimestampCompatibleEnvironmentsResponse 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 (*TimestampCompatibleEnvironmentsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*TimestampCompatibleEnvironmentsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleEnvironmentsResponse) HasItems

HasItems returns a boolean if a field has been set.

func (TimestampCompatibleEnvironmentsResponse) MarshalJSON

func (o TimestampCompatibleEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*TimestampCompatibleEnvironmentsResponse) SetItems

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (TimestampCompatibleEnvironmentsResponse) ToMap

func (o TimestampCompatibleEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type TimestampCompatibleRepositoryRequest

type TimestampCompatibleRepositoryRequest struct {
	// The ID of the source object (dSource or VDB) to get the compatible repos. All other objects referenced by the parameters must live on the same engine as the source.
	SourceDataId *string `json:"source_data_id,omitempty"`
	// The ID of the Engine from where to get the compatible repos. If the source ID unambiguously identifies a source object, this parameter is unnecessary and ignored.
	EngineId *string `json:"engine_id,omitempty"`
	// The point in time from which to execute the operation. If the timestamp is not set, selects the latest point.
	Timestamp *time.Time `json:"timestamp,omitempty"`
	// ID of the timeflow from which compatible repos need to be fetched, mutually exclusive with source_data_id.
	TimeflowId *string `json:"timeflow_id,omitempty"`
	// The ID or name of the target environment.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

TimestampCompatibleRepositoryRequest struct for TimestampCompatibleRepositoryRequest

func NewTimestampCompatibleRepositoryRequest

func NewTimestampCompatibleRepositoryRequest() *TimestampCompatibleRepositoryRequest

NewTimestampCompatibleRepositoryRequest instantiates a new TimestampCompatibleRepositoryRequest 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 NewTimestampCompatibleRepositoryRequestWithDefaults

func NewTimestampCompatibleRepositoryRequestWithDefaults() *TimestampCompatibleRepositoryRequest

NewTimestampCompatibleRepositoryRequestWithDefaults instantiates a new TimestampCompatibleRepositoryRequest 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 (*TimestampCompatibleRepositoryRequest) GetEngineId

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*TimestampCompatibleRepositoryRequest) GetEngineIdOk

func (o *TimestampCompatibleRepositoryRequest) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleRepositoryRequest) GetEnvironmentId

func (o *TimestampCompatibleRepositoryRequest) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*TimestampCompatibleRepositoryRequest) GetEnvironmentIdOk

func (o *TimestampCompatibleRepositoryRequest) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleRepositoryRequest) GetSourceDataId

func (o *TimestampCompatibleRepositoryRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*TimestampCompatibleRepositoryRequest) GetSourceDataIdOk

func (o *TimestampCompatibleRepositoryRequest) GetSourceDataIdOk() (*string, bool)

GetSourceDataIdOk returns a tuple with the SourceDataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleRepositoryRequest) GetTimeflowId

func (o *TimestampCompatibleRepositoryRequest) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*TimestampCompatibleRepositoryRequest) GetTimeflowIdOk

func (o *TimestampCompatibleRepositoryRequest) GetTimeflowIdOk() (*string, bool)

GetTimeflowIdOk returns a tuple with the TimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleRepositoryRequest) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*TimestampCompatibleRepositoryRequest) GetTimestampOk

func (o *TimestampCompatibleRepositoryRequest) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimestampCompatibleRepositoryRequest) HasEngineId

func (o *TimestampCompatibleRepositoryRequest) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*TimestampCompatibleRepositoryRequest) HasEnvironmentId

func (o *TimestampCompatibleRepositoryRequest) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*TimestampCompatibleRepositoryRequest) HasSourceDataId

func (o *TimestampCompatibleRepositoryRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (*TimestampCompatibleRepositoryRequest) HasTimeflowId

func (o *TimestampCompatibleRepositoryRequest) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (*TimestampCompatibleRepositoryRequest) HasTimestamp

func (o *TimestampCompatibleRepositoryRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (TimestampCompatibleRepositoryRequest) MarshalJSON

func (o TimestampCompatibleRepositoryRequest) MarshalJSON() ([]byte, error)

func (*TimestampCompatibleRepositoryRequest) SetEngineId

func (o *TimestampCompatibleRepositoryRequest) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*TimestampCompatibleRepositoryRequest) SetEnvironmentId

func (o *TimestampCompatibleRepositoryRequest) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*TimestampCompatibleRepositoryRequest) SetSourceDataId

func (o *TimestampCompatibleRepositoryRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (*TimestampCompatibleRepositoryRequest) SetTimeflowId

func (o *TimestampCompatibleRepositoryRequest) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (*TimestampCompatibleRepositoryRequest) SetTimestamp

func (o *TimestampCompatibleRepositoryRequest) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (TimestampCompatibleRepositoryRequest) ToMap

func (o TimestampCompatibleRepositoryRequest) ToMap() (map[string]interface{}, error)

type TokenInfoRequest

type TokenInfoRequest struct {
	// API Key or JWT token for fetching information
	Token string `json:"token"`
}

TokenInfoRequest struct for TokenInfoRequest

func NewTokenInfoRequest

func NewTokenInfoRequest(token string) *TokenInfoRequest

NewTokenInfoRequest instantiates a new TokenInfoRequest 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 NewTokenInfoRequestWithDefaults

func NewTokenInfoRequestWithDefaults() *TokenInfoRequest

NewTokenInfoRequestWithDefaults instantiates a new TokenInfoRequest 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 (*TokenInfoRequest) GetToken

func (o *TokenInfoRequest) GetToken() string

GetToken returns the Token field value

func (*TokenInfoRequest) GetTokenOk

func (o *TokenInfoRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (TokenInfoRequest) MarshalJSON

func (o TokenInfoRequest) MarshalJSON() ([]byte, error)

func (*TokenInfoRequest) SetToken

func (o *TokenInfoRequest) SetToken(v string)

SetToken sets field value

func (TokenInfoRequest) ToMap

func (o TokenInfoRequest) ToMap() (map[string]interface{}, error)

type TokenInfoResponse

type TokenInfoResponse struct {
	// Flag to identify if the token is active.
	Active *bool `json:"active,omitempty"`
	// Type of the token.
	TokenType *string `json:"token_type,omitempty"`
	// Numeric ID of the account.
	AccountId *int64 `json:"account_id,omitempty"`
	// First name for the Account.
	FirstName *string `json:"first_name,omitempty"`
	// Last name for the Account.
	LastName *string `json:"last_name,omitempty"`
	// Email for the Account.
	Email *string `json:"email,omitempty"`
	// The username or logical name for the Account.
	Username *string `json:"username,omitempty"`
	// The LDAP Principal for the Account.
	LdapPrincipal *string `json:"ldap_principal,omitempty"`
	// Seconds duration after which the token will expire.
	Exp *int64 `json:"exp,omitempty"`
}

TokenInfoResponse struct for TokenInfoResponse

func NewTokenInfoResponse

func NewTokenInfoResponse() *TokenInfoResponse

NewTokenInfoResponse instantiates a new TokenInfoResponse 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 NewTokenInfoResponseWithDefaults

func NewTokenInfoResponseWithDefaults() *TokenInfoResponse

NewTokenInfoResponseWithDefaults instantiates a new TokenInfoResponse 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 (*TokenInfoResponse) GetAccountId

func (o *TokenInfoResponse) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*TokenInfoResponse) GetAccountIdOk

func (o *TokenInfoResponse) GetAccountIdOk() (*int64, 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.

func (*TokenInfoResponse) GetActive

func (o *TokenInfoResponse) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*TokenInfoResponse) GetActiveOk

func (o *TokenInfoResponse) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetEmail

func (o *TokenInfoResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*TokenInfoResponse) GetEmailOk

func (o *TokenInfoResponse) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetExp

func (o *TokenInfoResponse) GetExp() int64

GetExp returns the Exp field value if set, zero value otherwise.

func (*TokenInfoResponse) GetExpOk

func (o *TokenInfoResponse) GetExpOk() (*int64, bool)

GetExpOk returns a tuple with the Exp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetFirstName

func (o *TokenInfoResponse) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*TokenInfoResponse) GetFirstNameOk

func (o *TokenInfoResponse) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetLastName

func (o *TokenInfoResponse) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*TokenInfoResponse) GetLastNameOk

func (o *TokenInfoResponse) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetLdapPrincipal

func (o *TokenInfoResponse) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*TokenInfoResponse) GetLdapPrincipalOk

func (o *TokenInfoResponse) GetLdapPrincipalOk() (*string, bool)

GetLdapPrincipalOk returns a tuple with the LdapPrincipal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetTokenType

func (o *TokenInfoResponse) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*TokenInfoResponse) GetTokenTypeOk

func (o *TokenInfoResponse) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenInfoResponse) GetUsername

func (o *TokenInfoResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*TokenInfoResponse) GetUsernameOk

func (o *TokenInfoResponse) 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.

func (*TokenInfoResponse) HasAccountId

func (o *TokenInfoResponse) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*TokenInfoResponse) HasActive

func (o *TokenInfoResponse) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*TokenInfoResponse) HasEmail

func (o *TokenInfoResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*TokenInfoResponse) HasExp

func (o *TokenInfoResponse) HasExp() bool

HasExp returns a boolean if a field has been set.

func (*TokenInfoResponse) HasFirstName

func (o *TokenInfoResponse) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*TokenInfoResponse) HasLastName

func (o *TokenInfoResponse) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*TokenInfoResponse) HasLdapPrincipal

func (o *TokenInfoResponse) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*TokenInfoResponse) HasTokenType

func (o *TokenInfoResponse) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (*TokenInfoResponse) HasUsername

func (o *TokenInfoResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (TokenInfoResponse) MarshalJSON

func (o TokenInfoResponse) MarshalJSON() ([]byte, error)

func (*TokenInfoResponse) SetAccountId

func (o *TokenInfoResponse) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (*TokenInfoResponse) SetActive

func (o *TokenInfoResponse) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*TokenInfoResponse) SetEmail

func (o *TokenInfoResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*TokenInfoResponse) SetExp

func (o *TokenInfoResponse) SetExp(v int64)

SetExp gets a reference to the given int64 and assigns it to the Exp field.

func (*TokenInfoResponse) SetFirstName

func (o *TokenInfoResponse) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*TokenInfoResponse) SetLastName

func (o *TokenInfoResponse) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*TokenInfoResponse) SetLdapPrincipal

func (o *TokenInfoResponse) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*TokenInfoResponse) SetTokenType

func (o *TokenInfoResponse) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (*TokenInfoResponse) SetUsername

func (o *TokenInfoResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (TokenInfoResponse) ToMap

func (o TokenInfoResponse) ToMap() (map[string]interface{}, error)

type UnregisterHyperscaleInstanceResponse

type UnregisterHyperscaleInstanceResponse struct {
	Job *Job `json:"job,omitempty"`
}

UnregisterHyperscaleInstanceResponse struct for UnregisterHyperscaleInstanceResponse

func NewUnregisterHyperscaleInstanceResponse

func NewUnregisterHyperscaleInstanceResponse() *UnregisterHyperscaleInstanceResponse

NewUnregisterHyperscaleInstanceResponse instantiates a new UnregisterHyperscaleInstanceResponse 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 NewUnregisterHyperscaleInstanceResponseWithDefaults

func NewUnregisterHyperscaleInstanceResponseWithDefaults() *UnregisterHyperscaleInstanceResponse

NewUnregisterHyperscaleInstanceResponseWithDefaults instantiates a new UnregisterHyperscaleInstanceResponse 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 (*UnregisterHyperscaleInstanceResponse) GetJob

GetJob returns the Job field value if set, zero value otherwise.

func (*UnregisterHyperscaleInstanceResponse) GetJobOk

func (o *UnregisterHyperscaleInstanceResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnregisterHyperscaleInstanceResponse) HasJob

HasJob returns a boolean if a field has been set.

func (UnregisterHyperscaleInstanceResponse) MarshalJSON

func (o UnregisterHyperscaleInstanceResponse) MarshalJSON() ([]byte, error)

func (*UnregisterHyperscaleInstanceResponse) SetJob

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UnregisterHyperscaleInstanceResponse) ToMap

func (o UnregisterHyperscaleInstanceResponse) ToMap() (map[string]interface{}, error)

type UnsetSnapshotRetentionResponse

type UnsetSnapshotRetentionResponse struct {
	Job *Job `json:"job,omitempty"`
}

UnsetSnapshotRetentionResponse struct for UnsetSnapshotRetentionResponse

func NewUnsetSnapshotRetentionResponse

func NewUnsetSnapshotRetentionResponse() *UnsetSnapshotRetentionResponse

NewUnsetSnapshotRetentionResponse instantiates a new UnsetSnapshotRetentionResponse 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 NewUnsetSnapshotRetentionResponseWithDefaults

func NewUnsetSnapshotRetentionResponseWithDefaults() *UnsetSnapshotRetentionResponse

NewUnsetSnapshotRetentionResponseWithDefaults instantiates a new UnsetSnapshotRetentionResponse 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 (*UnsetSnapshotRetentionResponse) GetJob

func (o *UnsetSnapshotRetentionResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UnsetSnapshotRetentionResponse) GetJobOk

func (o *UnsetSnapshotRetentionResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnsetSnapshotRetentionResponse) HasJob

HasJob returns a boolean if a field has been set.

func (UnsetSnapshotRetentionResponse) MarshalJSON

func (o UnsetSnapshotRetentionResponse) MarshalJSON() ([]byte, error)

func (*UnsetSnapshotRetentionResponse) SetJob

func (o *UnsetSnapshotRetentionResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UnsetSnapshotRetentionResponse) ToMap

func (o UnsetSnapshotRetentionResponse) ToMap() (map[string]interface{}, error)

type UpdateAccessGroupScope

type UpdateAccessGroupScope struct {
	// The Access group scope name.
	Name *string `json:"name,omitempty"`
	// Specifies the type of the scope. Scope of type SIMPLE would grant access to all DCT objects. Scope of type SCOPED would grant access to all objects based on objects and object-tags and permissions defined in linked role. Scope of type ADVANCED would grant access to DCT objects based on objects and object-tags and the individual permissions.
	ScopeType *string `json:"scope_type,omitempty"`
}

UpdateAccessGroupScope An Access group scope parameters that are allowed to update.

func NewUpdateAccessGroupScope

func NewUpdateAccessGroupScope() *UpdateAccessGroupScope

NewUpdateAccessGroupScope instantiates a new UpdateAccessGroupScope 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 NewUpdateAccessGroupScopeWithDefaults

func NewUpdateAccessGroupScopeWithDefaults() *UpdateAccessGroupScope

NewUpdateAccessGroupScopeWithDefaults instantiates a new UpdateAccessGroupScope 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 (*UpdateAccessGroupScope) GetName

func (o *UpdateAccessGroupScope) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateAccessGroupScope) GetNameOk

func (o *UpdateAccessGroupScope) 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.

func (*UpdateAccessGroupScope) GetScopeType

func (o *UpdateAccessGroupScope) GetScopeType() string

GetScopeType returns the ScopeType field value if set, zero value otherwise.

func (*UpdateAccessGroupScope) GetScopeTypeOk

func (o *UpdateAccessGroupScope) GetScopeTypeOk() (*string, bool)

GetScopeTypeOk returns a tuple with the ScopeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateAccessGroupScope) HasName

func (o *UpdateAccessGroupScope) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateAccessGroupScope) HasScopeType

func (o *UpdateAccessGroupScope) HasScopeType() bool

HasScopeType returns a boolean if a field has been set.

func (UpdateAccessGroupScope) MarshalJSON

func (o UpdateAccessGroupScope) MarshalJSON() ([]byte, error)

func (*UpdateAccessGroupScope) SetName

func (o *UpdateAccessGroupScope) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateAccessGroupScope) SetScopeType

func (o *UpdateAccessGroupScope) SetScopeType(v string)

SetScopeType gets a reference to the given string and assigns it to the ScopeType field.

func (UpdateAccessGroupScope) ToMap

func (o UpdateAccessGroupScope) ToMap() (map[string]interface{}, error)

type UpdateBookmarkParameters

type UpdateBookmarkParameters struct {
	// The user-defined name of this bookmark.
	Name *string `json:"name,omitempty"`
	// The expiration for this Bookmark. Mutually exclusive with retain_forever.
	Expiration *string `json:"expiration,omitempty"`
	// Indicates that the Bookmark should be retained forever.
	RetainForever *bool `json:"retain_forever,omitempty"`
}

UpdateBookmarkParameters Parameters to update a Bookmark.

func NewUpdateBookmarkParameters

func NewUpdateBookmarkParameters() *UpdateBookmarkParameters

NewUpdateBookmarkParameters instantiates a new UpdateBookmarkParameters 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 NewUpdateBookmarkParametersWithDefaults

func NewUpdateBookmarkParametersWithDefaults() *UpdateBookmarkParameters

NewUpdateBookmarkParametersWithDefaults instantiates a new UpdateBookmarkParameters 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 (*UpdateBookmarkParameters) GetExpiration

func (o *UpdateBookmarkParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetExpirationOk

func (o *UpdateBookmarkParameters) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateBookmarkParameters) GetName

func (o *UpdateBookmarkParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetNameOk

func (o *UpdateBookmarkParameters) 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.

func (*UpdateBookmarkParameters) GetRetainForever

func (o *UpdateBookmarkParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetRetainForeverOk

func (o *UpdateBookmarkParameters) GetRetainForeverOk() (*bool, bool)

GetRetainForeverOk returns a tuple with the RetainForever field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateBookmarkParameters) HasExpiration

func (o *UpdateBookmarkParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*UpdateBookmarkParameters) HasName

func (o *UpdateBookmarkParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateBookmarkParameters) HasRetainForever

func (o *UpdateBookmarkParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (UpdateBookmarkParameters) MarshalJSON

func (o UpdateBookmarkParameters) MarshalJSON() ([]byte, error)

func (*UpdateBookmarkParameters) SetExpiration

func (o *UpdateBookmarkParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*UpdateBookmarkParameters) SetName

func (o *UpdateBookmarkParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateBookmarkParameters) SetRetainForever

func (o *UpdateBookmarkParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (UpdateBookmarkParameters) ToMap

func (o UpdateBookmarkParameters) ToMap() (map[string]interface{}, error)

type UpdateBookmarkResponse

type UpdateBookmarkResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateBookmarkResponse struct for UpdateBookmarkResponse

func NewUpdateBookmarkResponse

func NewUpdateBookmarkResponse() *UpdateBookmarkResponse

NewUpdateBookmarkResponse instantiates a new UpdateBookmarkResponse 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 NewUpdateBookmarkResponseWithDefaults

func NewUpdateBookmarkResponseWithDefaults() *UpdateBookmarkResponse

NewUpdateBookmarkResponseWithDefaults instantiates a new UpdateBookmarkResponse 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 (*UpdateBookmarkResponse) GetJob

func (o *UpdateBookmarkResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateBookmarkResponse) GetJobOk

func (o *UpdateBookmarkResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateBookmarkResponse) HasJob

func (o *UpdateBookmarkResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateBookmarkResponse) MarshalJSON

func (o UpdateBookmarkResponse) MarshalJSON() ([]byte, error)

func (*UpdateBookmarkResponse) SetJob

func (o *UpdateBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateBookmarkResponse) ToMap

func (o UpdateBookmarkResponse) ToMap() (map[string]interface{}, error)

type UpdateConnectorResponse

type UpdateConnectorResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateConnectorResponse struct for UpdateConnectorResponse

func NewUpdateConnectorResponse

func NewUpdateConnectorResponse() *UpdateConnectorResponse

NewUpdateConnectorResponse instantiates a new UpdateConnectorResponse 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 NewUpdateConnectorResponseWithDefaults

func NewUpdateConnectorResponseWithDefaults() *UpdateConnectorResponse

NewUpdateConnectorResponseWithDefaults instantiates a new UpdateConnectorResponse 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 (*UpdateConnectorResponse) GetJob

func (o *UpdateConnectorResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateConnectorResponse) GetJobOk

func (o *UpdateConnectorResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateConnectorResponse) HasJob

func (o *UpdateConnectorResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateConnectorResponse) MarshalJSON

func (o UpdateConnectorResponse) MarshalJSON() ([]byte, error)

func (*UpdateConnectorResponse) SetJob

func (o *UpdateConnectorResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateConnectorResponse) ToMap

func (o UpdateConnectorResponse) ToMap() (map[string]interface{}, error)

type UpdateDatabaseTemplateParameters

type UpdateDatabaseTemplateParameters struct {
	// The DatabaseTemplate name.
	Name *string `json:"name,omitempty"`
	// User provided description for this template.
	Description *string `json:"description,omitempty"`
	// The type of the source associated with the template.
	SourceType *string `json:"source_type,omitempty"`
	// A name/value map of string configuration parameters.
	Parameters *map[string]string `json:"parameters,omitempty"`
}

UpdateDatabaseTemplateParameters Parameters to update a Database Template.

func NewUpdateDatabaseTemplateParameters

func NewUpdateDatabaseTemplateParameters() *UpdateDatabaseTemplateParameters

NewUpdateDatabaseTemplateParameters instantiates a new UpdateDatabaseTemplateParameters 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 NewUpdateDatabaseTemplateParametersWithDefaults

func NewUpdateDatabaseTemplateParametersWithDefaults() *UpdateDatabaseTemplateParameters

NewUpdateDatabaseTemplateParametersWithDefaults instantiates a new UpdateDatabaseTemplateParameters 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 (*UpdateDatabaseTemplateParameters) GetDescription

func (o *UpdateDatabaseTemplateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetDescriptionOk

func (o *UpdateDatabaseTemplateParameters) 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.

func (*UpdateDatabaseTemplateParameters) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetNameOk

func (o *UpdateDatabaseTemplateParameters) 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.

func (*UpdateDatabaseTemplateParameters) GetParameters

func (o *UpdateDatabaseTemplateParameters) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetParametersOk

func (o *UpdateDatabaseTemplateParameters) GetParametersOk() (*map[string]string, 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.

func (*UpdateDatabaseTemplateParameters) GetSourceType

func (o *UpdateDatabaseTemplateParameters) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetSourceTypeOk

func (o *UpdateDatabaseTemplateParameters) GetSourceTypeOk() (*string, bool)

GetSourceTypeOk returns a tuple with the SourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDatabaseTemplateParameters) HasDescription

func (o *UpdateDatabaseTemplateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasName

HasName returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasParameters

func (o *UpdateDatabaseTemplateParameters) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasSourceType

func (o *UpdateDatabaseTemplateParameters) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (UpdateDatabaseTemplateParameters) MarshalJSON

func (o UpdateDatabaseTemplateParameters) MarshalJSON() ([]byte, error)

func (*UpdateDatabaseTemplateParameters) SetDescription

func (o *UpdateDatabaseTemplateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateDatabaseTemplateParameters) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateDatabaseTemplateParameters) SetParameters

func (o *UpdateDatabaseTemplateParameters) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*UpdateDatabaseTemplateParameters) SetSourceType

func (o *UpdateDatabaseTemplateParameters) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (UpdateDatabaseTemplateParameters) ToMap

func (o UpdateDatabaseTemplateParameters) ToMap() (map[string]interface{}, error)

type UpdateDatabaseTemplateResponse

type UpdateDatabaseTemplateResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateDatabaseTemplateResponse struct for UpdateDatabaseTemplateResponse

func NewUpdateDatabaseTemplateResponse

func NewUpdateDatabaseTemplateResponse() *UpdateDatabaseTemplateResponse

NewUpdateDatabaseTemplateResponse instantiates a new UpdateDatabaseTemplateResponse 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 NewUpdateDatabaseTemplateResponseWithDefaults

func NewUpdateDatabaseTemplateResponseWithDefaults() *UpdateDatabaseTemplateResponse

NewUpdateDatabaseTemplateResponseWithDefaults instantiates a new UpdateDatabaseTemplateResponse 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 (*UpdateDatabaseTemplateResponse) GetJob

func (o *UpdateDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateResponse) GetJobOk

func (o *UpdateDatabaseTemplateResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDatabaseTemplateResponse) HasJob

HasJob returns a boolean if a field has been set.

func (UpdateDatabaseTemplateResponse) MarshalJSON

func (o UpdateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*UpdateDatabaseTemplateResponse) SetJob

func (o *UpdateDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateDatabaseTemplateResponse) ToMap

func (o UpdateDatabaseTemplateResponse) ToMap() (map[string]interface{}, error)

type UpdateEnvironmentResponse

type UpdateEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateEnvironmentResponse struct for UpdateEnvironmentResponse

func NewUpdateEnvironmentResponse

func NewUpdateEnvironmentResponse() *UpdateEnvironmentResponse

NewUpdateEnvironmentResponse instantiates a new UpdateEnvironmentResponse 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 NewUpdateEnvironmentResponseWithDefaults

func NewUpdateEnvironmentResponseWithDefaults() *UpdateEnvironmentResponse

NewUpdateEnvironmentResponseWithDefaults instantiates a new UpdateEnvironmentResponse 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 (*UpdateEnvironmentResponse) GetJob

func (o *UpdateEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateEnvironmentResponse) GetJobOk

func (o *UpdateEnvironmentResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironmentResponse) HasJob

func (o *UpdateEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateEnvironmentResponse) MarshalJSON

func (o UpdateEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*UpdateEnvironmentResponse) SetJob

func (o *UpdateEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateEnvironmentResponse) ToMap

func (o UpdateEnvironmentResponse) ToMap() (map[string]interface{}, error)

type UpdateEnvironmentUserResponse

type UpdateEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateEnvironmentUserResponse struct for UpdateEnvironmentUserResponse

func NewUpdateEnvironmentUserResponse

func NewUpdateEnvironmentUserResponse() *UpdateEnvironmentUserResponse

NewUpdateEnvironmentUserResponse instantiates a new UpdateEnvironmentUserResponse 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 NewUpdateEnvironmentUserResponseWithDefaults

func NewUpdateEnvironmentUserResponseWithDefaults() *UpdateEnvironmentUserResponse

NewUpdateEnvironmentUserResponseWithDefaults instantiates a new UpdateEnvironmentUserResponse 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 (*UpdateEnvironmentUserResponse) GetJob

func (o *UpdateEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateEnvironmentUserResponse) GetJobOk

func (o *UpdateEnvironmentUserResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironmentUserResponse) HasJob

func (o *UpdateEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateEnvironmentUserResponse) MarshalJSON

func (o UpdateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*UpdateEnvironmentUserResponse) SetJob

func (o *UpdateEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateEnvironmentUserResponse) ToMap

func (o UpdateEnvironmentUserResponse) ToMap() (map[string]interface{}, error)

type UpdateHostResponse

type UpdateHostResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateHostResponse struct for UpdateHostResponse

func NewUpdateHostResponse

func NewUpdateHostResponse() *UpdateHostResponse

NewUpdateHostResponse instantiates a new UpdateHostResponse 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 NewUpdateHostResponseWithDefaults

func NewUpdateHostResponseWithDefaults() *UpdateHostResponse

NewUpdateHostResponseWithDefaults instantiates a new UpdateHostResponse 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 (*UpdateHostResponse) GetJob

func (o *UpdateHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateHostResponse) GetJobOk

func (o *UpdateHostResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateHostResponse) HasJob

func (o *UpdateHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateHostResponse) MarshalJSON

func (o UpdateHostResponse) MarshalJSON() ([]byte, error)

func (*UpdateHostResponse) SetJob

func (o *UpdateHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateHostResponse) ToMap

func (o UpdateHostResponse) ToMap() (map[string]interface{}, error)

type UpdateMaskingJobParameters

type UpdateMaskingJobParameters struct {
	// The name of the MaskingJob.
	Name *string `json:"name,omitempty"`
	// The username of the Connector used by the MaskingJob.
	ConnectorUsername *string `json:"connector_username,omitempty"`
	// The password of the Connector used by the MaskingJob.
	ConnectorPassword *string `json:"connector_password,omitempty"`
	// The username of the source Connector used by the on-the-fly MaskingJob.
	OnTheFlySourceConnectorUsername *string `json:"on_the_fly_source_connector_username,omitempty"`
	// The password of the source Connector used by the on-the-fly MaskingJob.
	OnTheFlySourceConnectorPassword *string `json:"on_the_fly_source_connector_password,omitempty"`
}

UpdateMaskingJobParameters Parameters to update a MaskingJob.

func NewUpdateMaskingJobParameters

func NewUpdateMaskingJobParameters() *UpdateMaskingJobParameters

NewUpdateMaskingJobParameters instantiates a new UpdateMaskingJobParameters 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 NewUpdateMaskingJobParametersWithDefaults

func NewUpdateMaskingJobParametersWithDefaults() *UpdateMaskingJobParameters

NewUpdateMaskingJobParametersWithDefaults instantiates a new UpdateMaskingJobParameters 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 (*UpdateMaskingJobParameters) GetConnectorPassword

func (o *UpdateMaskingJobParameters) GetConnectorPassword() string

GetConnectorPassword returns the ConnectorPassword field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetConnectorPasswordOk

func (o *UpdateMaskingJobParameters) GetConnectorPasswordOk() (*string, bool)

GetConnectorPasswordOk returns a tuple with the ConnectorPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateMaskingJobParameters) GetConnectorUsername

func (o *UpdateMaskingJobParameters) GetConnectorUsername() string

GetConnectorUsername returns the ConnectorUsername field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetConnectorUsernameOk

func (o *UpdateMaskingJobParameters) GetConnectorUsernameOk() (*string, bool)

GetConnectorUsernameOk returns a tuple with the ConnectorUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateMaskingJobParameters) GetName

func (o *UpdateMaskingJobParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetNameOk

func (o *UpdateMaskingJobParameters) 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.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPassword

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPassword() string

GetOnTheFlySourceConnectorPassword returns the OnTheFlySourceConnectorPassword field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPasswordOk

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPasswordOk() (*string, bool)

GetOnTheFlySourceConnectorPasswordOk returns a tuple with the OnTheFlySourceConnectorPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsername

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsername() string

GetOnTheFlySourceConnectorUsername returns the OnTheFlySourceConnectorUsername field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsernameOk

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsernameOk() (*string, bool)

GetOnTheFlySourceConnectorUsernameOk returns a tuple with the OnTheFlySourceConnectorUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateMaskingJobParameters) HasConnectorPassword

func (o *UpdateMaskingJobParameters) HasConnectorPassword() bool

HasConnectorPassword returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasConnectorUsername

func (o *UpdateMaskingJobParameters) HasConnectorUsername() bool

HasConnectorUsername returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasName

func (o *UpdateMaskingJobParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasOnTheFlySourceConnectorPassword

func (o *UpdateMaskingJobParameters) HasOnTheFlySourceConnectorPassword() bool

HasOnTheFlySourceConnectorPassword returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasOnTheFlySourceConnectorUsername

func (o *UpdateMaskingJobParameters) HasOnTheFlySourceConnectorUsername() bool

HasOnTheFlySourceConnectorUsername returns a boolean if a field has been set.

func (UpdateMaskingJobParameters) MarshalJSON

func (o UpdateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*UpdateMaskingJobParameters) SetConnectorPassword

func (o *UpdateMaskingJobParameters) SetConnectorPassword(v string)

SetConnectorPassword gets a reference to the given string and assigns it to the ConnectorPassword field.

func (*UpdateMaskingJobParameters) SetConnectorUsername

func (o *UpdateMaskingJobParameters) SetConnectorUsername(v string)

SetConnectorUsername gets a reference to the given string and assigns it to the ConnectorUsername field.

func (*UpdateMaskingJobParameters) SetName

func (o *UpdateMaskingJobParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateMaskingJobParameters) SetOnTheFlySourceConnectorPassword

func (o *UpdateMaskingJobParameters) SetOnTheFlySourceConnectorPassword(v string)

SetOnTheFlySourceConnectorPassword gets a reference to the given string and assigns it to the OnTheFlySourceConnectorPassword field.

func (*UpdateMaskingJobParameters) SetOnTheFlySourceConnectorUsername

func (o *UpdateMaskingJobParameters) SetOnTheFlySourceConnectorUsername(v string)

SetOnTheFlySourceConnectorUsername gets a reference to the given string and assigns it to the OnTheFlySourceConnectorUsername field.

func (UpdateMaskingJobParameters) ToMap

func (o UpdateMaskingJobParameters) ToMap() (map[string]interface{}, error)

type UpdateRepositoryParameters

type UpdateRepositoryParameters struct {
	// The database type of this repository.
	DatabaseType string `json:"database_type"`
	// Flag indicating whether the repository should be used for provisioning.
	AllowProvisioning *bool `json:"allow_provisioning,omitempty"`
	// Flag indicating whether this repository can be used by the Delphix Engine for internal processing.
	IsStaging *bool `json:"is_staging,omitempty"`
	// Version of the repository.
	Version *string `json:"version,omitempty"`
}

UpdateRepositoryParameters struct for UpdateRepositoryParameters

func NewUpdateRepositoryParameters

func NewUpdateRepositoryParameters(databaseType string) *UpdateRepositoryParameters

NewUpdateRepositoryParameters instantiates a new UpdateRepositoryParameters 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 NewUpdateRepositoryParametersWithDefaults

func NewUpdateRepositoryParametersWithDefaults() *UpdateRepositoryParameters

NewUpdateRepositoryParametersWithDefaults instantiates a new UpdateRepositoryParameters 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 (*UpdateRepositoryParameters) GetAllowProvisioning

func (o *UpdateRepositoryParameters) GetAllowProvisioning() bool

GetAllowProvisioning returns the AllowProvisioning field value if set, zero value otherwise.

func (*UpdateRepositoryParameters) GetAllowProvisioningOk

func (o *UpdateRepositoryParameters) GetAllowProvisioningOk() (*bool, bool)

GetAllowProvisioningOk returns a tuple with the AllowProvisioning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRepositoryParameters) GetDatabaseType

func (o *UpdateRepositoryParameters) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value

func (*UpdateRepositoryParameters) GetDatabaseTypeOk

func (o *UpdateRepositoryParameters) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value and a boolean to check if the value has been set.

func (*UpdateRepositoryParameters) GetIsStaging

func (o *UpdateRepositoryParameters) GetIsStaging() bool

GetIsStaging returns the IsStaging field value if set, zero value otherwise.

func (*UpdateRepositoryParameters) GetIsStagingOk

func (o *UpdateRepositoryParameters) GetIsStagingOk() (*bool, bool)

GetIsStagingOk returns a tuple with the IsStaging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRepositoryParameters) GetVersion

func (o *UpdateRepositoryParameters) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*UpdateRepositoryParameters) GetVersionOk

func (o *UpdateRepositoryParameters) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRepositoryParameters) HasAllowProvisioning

func (o *UpdateRepositoryParameters) HasAllowProvisioning() bool

HasAllowProvisioning returns a boolean if a field has been set.

func (*UpdateRepositoryParameters) HasIsStaging

func (o *UpdateRepositoryParameters) HasIsStaging() bool

HasIsStaging returns a boolean if a field has been set.

func (*UpdateRepositoryParameters) HasVersion

func (o *UpdateRepositoryParameters) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (UpdateRepositoryParameters) MarshalJSON

func (o UpdateRepositoryParameters) MarshalJSON() ([]byte, error)

func (*UpdateRepositoryParameters) SetAllowProvisioning

func (o *UpdateRepositoryParameters) SetAllowProvisioning(v bool)

SetAllowProvisioning gets a reference to the given bool and assigns it to the AllowProvisioning field.

func (*UpdateRepositoryParameters) SetDatabaseType

func (o *UpdateRepositoryParameters) SetDatabaseType(v string)

SetDatabaseType sets field value

func (*UpdateRepositoryParameters) SetIsStaging

func (o *UpdateRepositoryParameters) SetIsStaging(v bool)

SetIsStaging gets a reference to the given bool and assigns it to the IsStaging field.

func (*UpdateRepositoryParameters) SetVersion

func (o *UpdateRepositoryParameters) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (UpdateRepositoryParameters) ToMap

func (o UpdateRepositoryParameters) ToMap() (map[string]interface{}, error)

type UpdateRepositoryResponse

type UpdateRepositoryResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateRepositoryResponse struct for UpdateRepositoryResponse

func NewUpdateRepositoryResponse

func NewUpdateRepositoryResponse() *UpdateRepositoryResponse

NewUpdateRepositoryResponse instantiates a new UpdateRepositoryResponse 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 NewUpdateRepositoryResponseWithDefaults

func NewUpdateRepositoryResponseWithDefaults() *UpdateRepositoryResponse

NewUpdateRepositoryResponseWithDefaults instantiates a new UpdateRepositoryResponse 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 (*UpdateRepositoryResponse) GetJob

func (o *UpdateRepositoryResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateRepositoryResponse) GetJobOk

func (o *UpdateRepositoryResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRepositoryResponse) HasJob

func (o *UpdateRepositoryResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateRepositoryResponse) MarshalJSON

func (o UpdateRepositoryResponse) MarshalJSON() ([]byte, error)

func (*UpdateRepositoryResponse) SetJob

func (o *UpdateRepositoryResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateRepositoryResponse) ToMap

func (o UpdateRepositoryResponse) ToMap() (map[string]interface{}, error)

type UpdateSnapshotParameters

type UpdateSnapshotParameters struct {
	// The expiration for this snapshot. Mutually exclusive with retain_forever.
	Expiration *string `json:"expiration,omitempty"`
	// Indicates that the snapshot should be retained forever.
	RetainForever *bool `json:"retain_forever,omitempty"`
}

UpdateSnapshotParameters Parameters to update the expiration of a Snapshot.

func NewUpdateSnapshotParameters

func NewUpdateSnapshotParameters() *UpdateSnapshotParameters

NewUpdateSnapshotParameters instantiates a new UpdateSnapshotParameters 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 NewUpdateSnapshotParametersWithDefaults

func NewUpdateSnapshotParametersWithDefaults() *UpdateSnapshotParameters

NewUpdateSnapshotParametersWithDefaults instantiates a new UpdateSnapshotParameters 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 (*UpdateSnapshotParameters) GetExpiration

func (o *UpdateSnapshotParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*UpdateSnapshotParameters) GetExpirationOk

func (o *UpdateSnapshotParameters) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSnapshotParameters) GetRetainForever

func (o *UpdateSnapshotParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*UpdateSnapshotParameters) GetRetainForeverOk

func (o *UpdateSnapshotParameters) GetRetainForeverOk() (*bool, bool)

GetRetainForeverOk returns a tuple with the RetainForever field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSnapshotParameters) HasExpiration

func (o *UpdateSnapshotParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*UpdateSnapshotParameters) HasRetainForever

func (o *UpdateSnapshotParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (UpdateSnapshotParameters) MarshalJSON

func (o UpdateSnapshotParameters) MarshalJSON() ([]byte, error)

func (*UpdateSnapshotParameters) SetExpiration

func (o *UpdateSnapshotParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*UpdateSnapshotParameters) SetRetainForever

func (o *UpdateSnapshotParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (UpdateSnapshotParameters) ToMap

func (o UpdateSnapshotParameters) ToMap() (map[string]interface{}, error)

type UpdateSnapshotResponse

type UpdateSnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateSnapshotResponse struct for UpdateSnapshotResponse

func NewUpdateSnapshotResponse

func NewUpdateSnapshotResponse() *UpdateSnapshotResponse

NewUpdateSnapshotResponse instantiates a new UpdateSnapshotResponse 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 NewUpdateSnapshotResponseWithDefaults

func NewUpdateSnapshotResponseWithDefaults() *UpdateSnapshotResponse

NewUpdateSnapshotResponseWithDefaults instantiates a new UpdateSnapshotResponse 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 (*UpdateSnapshotResponse) GetJob

func (o *UpdateSnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateSnapshotResponse) GetJobOk

func (o *UpdateSnapshotResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSnapshotResponse) HasJob

func (o *UpdateSnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateSnapshotResponse) MarshalJSON

func (o UpdateSnapshotResponse) MarshalJSON() ([]byte, error)

func (*UpdateSnapshotResponse) SetJob

func (o *UpdateSnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateSnapshotResponse) ToMap

func (o UpdateSnapshotResponse) ToMap() (map[string]interface{}, error)

type UpdateTimeflowParameters

type UpdateTimeflowParameters struct {
	// The name of the timeflow.
	Name *string `json:"name,omitempty"`
}

UpdateTimeflowParameters Parameters to update a Timeflow.

func NewUpdateTimeflowParameters

func NewUpdateTimeflowParameters() *UpdateTimeflowParameters

NewUpdateTimeflowParameters instantiates a new UpdateTimeflowParameters 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 NewUpdateTimeflowParametersWithDefaults

func NewUpdateTimeflowParametersWithDefaults() *UpdateTimeflowParameters

NewUpdateTimeflowParametersWithDefaults instantiates a new UpdateTimeflowParameters 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 (*UpdateTimeflowParameters) GetName

func (o *UpdateTimeflowParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateTimeflowParameters) GetNameOk

func (o *UpdateTimeflowParameters) 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.

func (*UpdateTimeflowParameters) HasName

func (o *UpdateTimeflowParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateTimeflowParameters) MarshalJSON

func (o UpdateTimeflowParameters) MarshalJSON() ([]byte, error)

func (*UpdateTimeflowParameters) SetName

func (o *UpdateTimeflowParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateTimeflowParameters) ToMap

func (o UpdateTimeflowParameters) ToMap() (map[string]interface{}, error)

type UpdateTimeflowResponse

type UpdateTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateTimeflowResponse struct for UpdateTimeflowResponse

func NewUpdateTimeflowResponse

func NewUpdateTimeflowResponse() *UpdateTimeflowResponse

NewUpdateTimeflowResponse instantiates a new UpdateTimeflowResponse 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 NewUpdateTimeflowResponseWithDefaults

func NewUpdateTimeflowResponseWithDefaults() *UpdateTimeflowResponse

NewUpdateTimeflowResponseWithDefaults instantiates a new UpdateTimeflowResponse 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 (*UpdateTimeflowResponse) GetJob

func (o *UpdateTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateTimeflowResponse) GetJobOk

func (o *UpdateTimeflowResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTimeflowResponse) HasJob

func (o *UpdateTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateTimeflowResponse) MarshalJSON

func (o UpdateTimeflowResponse) MarshalJSON() ([]byte, error)

func (*UpdateTimeflowResponse) SetJob

func (o *UpdateTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateTimeflowResponse) ToMap

func (o UpdateTimeflowResponse) ToMap() (map[string]interface{}, error)

type UpdateVDBGroupParameters

type UpdateVDBGroupParameters struct {
	// The name of the VDB group.
	Name   *string  `json:"name,omitempty"`
	VdbIds []string `json:"vdb_ids,omitempty"`
}

UpdateVDBGroupParameters Parameters to update a VDB group.

func NewUpdateVDBGroupParameters

func NewUpdateVDBGroupParameters() *UpdateVDBGroupParameters

NewUpdateVDBGroupParameters instantiates a new UpdateVDBGroupParameters 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 NewUpdateVDBGroupParametersWithDefaults

func NewUpdateVDBGroupParametersWithDefaults() *UpdateVDBGroupParameters

NewUpdateVDBGroupParametersWithDefaults instantiates a new UpdateVDBGroupParameters 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 (*UpdateVDBGroupParameters) GetName

func (o *UpdateVDBGroupParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateVDBGroupParameters) GetNameOk

func (o *UpdateVDBGroupParameters) 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.

func (*UpdateVDBGroupParameters) GetVdbIds

func (o *UpdateVDBGroupParameters) GetVdbIds() []string

GetVdbIds returns the VdbIds field value if set, zero value otherwise.

func (*UpdateVDBGroupParameters) GetVdbIdsOk

func (o *UpdateVDBGroupParameters) GetVdbIdsOk() ([]string, bool)

GetVdbIdsOk returns a tuple with the VdbIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBGroupParameters) HasName

func (o *UpdateVDBGroupParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateVDBGroupParameters) HasVdbIds

func (o *UpdateVDBGroupParameters) HasVdbIds() bool

HasVdbIds returns a boolean if a field has been set.

func (UpdateVDBGroupParameters) MarshalJSON

func (o UpdateVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*UpdateVDBGroupParameters) SetName

func (o *UpdateVDBGroupParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateVDBGroupParameters) SetVdbIds

func (o *UpdateVDBGroupParameters) SetVdbIds(v []string)

SetVdbIds gets a reference to the given []string and assigns it to the VdbIds field.

func (UpdateVDBGroupParameters) ToMap

func (o UpdateVDBGroupParameters) ToMap() (map[string]interface{}, error)

type UpdateVDBParameters

type UpdateVDBParameters struct {
	// The unique name of the VDB within a group.
	Name *string `json:"name,omitempty"`
	// The username of the database user (Oracle, ASE Only).
	DbUsername *string `json:"db_username,omitempty"`
	// The password of the database user (Oracle, ASE Only).
	DbPassword *string `json:"db_password,omitempty"`
	// Whether db_username and db_password must be validated, if present, against the VDB. This must be set to false when credentials validation is not possible, for instance if the VDB is known to be disabled.
	ValidateDbCredentials *bool `json:"validate_db_credentials,omitempty"`
	// Whether to enable VDB restart.
	AutoRestart *bool `json:"auto_restart,omitempty"`
	// The environment user ID to use to connect to the target environment.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The ID of the target VDB Template (Oracle Only).
	TemplateId *string `json:"template_id,omitempty"`
	// The listener IDs for this provision operation (Oracle Only).
	ListenerIds []string `json:"listener_ids,omitempty"`
	// Whether to enable new DBID for Oracle
	NewDbid *bool `json:"new_dbid,omitempty"`
	// Whether to enable CDC on provision for MSSql
	CdcOnProvision *bool `json:"cdc_on_provision,omitempty"`
	// Pre script for MSSql.
	PreScript *string `json:"pre_script,omitempty"`
	// Post script for MSSql.
	PostScript *string              `json:"post_script,omitempty"`
	Hooks      *VirtualDatasetHooks `json:"hooks,omitempty"`
	// Environment variable to be set when the engine administers a VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution. Custom environment variables can only be updated while the VDB is disabled.
	CustomEnvVars *map[string]string `json:"custom_env_vars,omitempty"`
	// Environment files to be sourced when the Engine administers a VDB. This path can be followed by parameters. Paths and parameters are separated by spaces. Custom environment variables can only be updated while the VDB is disabled.
	CustomEnvFiles []string `json:"custom_env_files,omitempty"`
	// Environment files to be sourced when the Engine administers an Oracle RAC VDB. This path can be followed by parameters. Paths and parameters are separated by spaces. Custom environment variables can only be updated while the VDB is disabled.
	OracleRacCustomEnvFiles []OracleRacCustomEnvFile `json:"oracle_rac_custom_env_files,omitempty"`
	// Environment variable to be set when the engine administers an Oracle RAC VDB. See the Engine documentation for the list of allowed/denied environment variables and rules about substitution. Custom environment variables can only be updated while the VDB is disabled.
	OracleRacCustomEnvVars []OracleRacCustomEnvVar `json:"oracle_rac_custom_env_vars,omitempty"`
	// Path to a copy of the parent's Oracle transparent data encryption keystore on the target host. Required to provision from snapshots containing encrypted database files. (Oracle Multitenant Only)
	ParentTdeKeystorePath *string `json:"parent_tde_keystore_path,omitempty"`
	// The password of the keystore specified in parentTdeKeystorePath. (Oracle Multitenant Only)
	ParentTdeKeystorePassword *string `json:"parent_tde_keystore_password,omitempty"`
	// ID of the key created by Delphix. (Oracle Multitenant Only)
	TdeKeyIdentifier *string `json:"tde_key_identifier,omitempty"`
	// Path to the keystore of the target vCDB. (Oracle Multitenant Only)
	TargetVcdbTdeKeystorePath *string `json:"target_vcdb_tde_keystore_path,omitempty"`
	// The password for the Transparent Data Encryption keystore associated with the CDB. (Oracle Multitenant Only)
	CdbTdeKeystorePassword *string `json:"cdb_tde_keystore_password,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container. Can only be updated while the VDB is disabled.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// Mount point for the VDB (AppData only), can only be updated while the VDB is disabled.
	MountPoint *string `json:"mount_point,omitempty"`
}

UpdateVDBParameters Parameters to update a VDB.

func NewUpdateVDBParameters

func NewUpdateVDBParameters() *UpdateVDBParameters

NewUpdateVDBParameters instantiates a new UpdateVDBParameters 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 NewUpdateVDBParametersWithDefaults

func NewUpdateVDBParametersWithDefaults() *UpdateVDBParameters

NewUpdateVDBParametersWithDefaults instantiates a new UpdateVDBParameters 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 (*UpdateVDBParameters) GetAdditionalMountPoints

func (o *UpdateVDBParameters) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateVDBParameters) GetAdditionalMountPointsOk

func (o *UpdateVDBParameters) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateVDBParameters) GetAppdataConfigParams

func (o *UpdateVDBParameters) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateVDBParameters) GetAppdataConfigParamsOk

func (o *UpdateVDBParameters) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateVDBParameters) GetAppdataSourceParams

func (o *UpdateVDBParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetAppdataSourceParamsOk

func (o *UpdateVDBParameters) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetAutoRestart

func (o *UpdateVDBParameters) GetAutoRestart() bool

GetAutoRestart returns the AutoRestart field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetAutoRestartOk

func (o *UpdateVDBParameters) GetAutoRestartOk() (*bool, bool)

GetAutoRestartOk returns a tuple with the AutoRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetCdbTdeKeystorePassword

func (o *UpdateVDBParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCdbTdeKeystorePasswordOk

func (o *UpdateVDBParameters) GetCdbTdeKeystorePasswordOk() (*string, bool)

GetCdbTdeKeystorePasswordOk returns a tuple with the CdbTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetCdcOnProvision

func (o *UpdateVDBParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCdcOnProvisionOk

func (o *UpdateVDBParameters) GetCdcOnProvisionOk() (*bool, bool)

GetCdcOnProvisionOk returns a tuple with the CdcOnProvision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetConfigParams

func (o *UpdateVDBParameters) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateVDBParameters) GetConfigParamsOk

func (o *UpdateVDBParameters) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateVDBParameters) GetCustomEnvFiles

func (o *UpdateVDBParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCustomEnvFilesOk

func (o *UpdateVDBParameters) GetCustomEnvFilesOk() ([]string, bool)

GetCustomEnvFilesOk returns a tuple with the CustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetCustomEnvVars

func (o *UpdateVDBParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCustomEnvVarsOk

func (o *UpdateVDBParameters) GetCustomEnvVarsOk() (*map[string]string, bool)

GetCustomEnvVarsOk returns a tuple with the CustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetDbPassword

func (o *UpdateVDBParameters) GetDbPassword() string

GetDbPassword returns the DbPassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetDbPasswordOk

func (o *UpdateVDBParameters) GetDbPasswordOk() (*string, bool)

GetDbPasswordOk returns a tuple with the DbPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetDbUsername

func (o *UpdateVDBParameters) GetDbUsername() string

GetDbUsername returns the DbUsername field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetDbUsernameOk

func (o *UpdateVDBParameters) GetDbUsernameOk() (*string, bool)

GetDbUsernameOk returns a tuple with the DbUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetEnvironmentUserId

func (o *UpdateVDBParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetEnvironmentUserIdOk

func (o *UpdateVDBParameters) GetEnvironmentUserIdOk() (*string, bool)

GetEnvironmentUserIdOk returns a tuple with the EnvironmentUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetHooks

GetHooks returns the Hooks field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetHooksOk

func (o *UpdateVDBParameters) GetHooksOk() (*VirtualDatasetHooks, bool)

GetHooksOk returns a tuple with the Hooks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetListenerIds

func (o *UpdateVDBParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetListenerIdsOk

func (o *UpdateVDBParameters) GetListenerIdsOk() ([]string, bool)

GetListenerIdsOk returns a tuple with the ListenerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetMountPoint

func (o *UpdateVDBParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetMountPointOk

func (o *UpdateVDBParameters) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetName

func (o *UpdateVDBParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetNameOk

func (o *UpdateVDBParameters) 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.

func (*UpdateVDBParameters) GetNewDbid

func (o *UpdateVDBParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetNewDbidOk

func (o *UpdateVDBParameters) GetNewDbidOk() (*bool, bool)

GetNewDbidOk returns a tuple with the NewDbid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetOracleRacCustomEnvFiles

func (o *UpdateVDBParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetOracleRacCustomEnvFilesOk

func (o *UpdateVDBParameters) GetOracleRacCustomEnvFilesOk() ([]OracleRacCustomEnvFile, bool)

GetOracleRacCustomEnvFilesOk returns a tuple with the OracleRacCustomEnvFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetOracleRacCustomEnvVars

func (o *UpdateVDBParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetOracleRacCustomEnvVarsOk

func (o *UpdateVDBParameters) GetOracleRacCustomEnvVarsOk() ([]OracleRacCustomEnvVar, bool)

GetOracleRacCustomEnvVarsOk returns a tuple with the OracleRacCustomEnvVars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetParentTdeKeystorePassword

func (o *UpdateVDBParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetParentTdeKeystorePasswordOk

func (o *UpdateVDBParameters) GetParentTdeKeystorePasswordOk() (*string, bool)

GetParentTdeKeystorePasswordOk returns a tuple with the ParentTdeKeystorePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetParentTdeKeystorePath

func (o *UpdateVDBParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetParentTdeKeystorePathOk

func (o *UpdateVDBParameters) GetParentTdeKeystorePathOk() (*string, bool)

GetParentTdeKeystorePathOk returns a tuple with the ParentTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetPostScript

func (o *UpdateVDBParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetPostScriptOk

func (o *UpdateVDBParameters) GetPostScriptOk() (*string, bool)

GetPostScriptOk returns a tuple with the PostScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetPreScript

func (o *UpdateVDBParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetPreScriptOk

func (o *UpdateVDBParameters) GetPreScriptOk() (*string, bool)

GetPreScriptOk returns a tuple with the PreScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetTargetVcdbTdeKeystorePath

func (o *UpdateVDBParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTargetVcdbTdeKeystorePathOk

func (o *UpdateVDBParameters) GetTargetVcdbTdeKeystorePathOk() (*string, bool)

GetTargetVcdbTdeKeystorePathOk returns a tuple with the TargetVcdbTdeKeystorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetTdeKeyIdentifier

func (o *UpdateVDBParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTdeKeyIdentifierOk

func (o *UpdateVDBParameters) GetTdeKeyIdentifierOk() (*string, bool)

GetTdeKeyIdentifierOk returns a tuple with the TdeKeyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetTemplateId

func (o *UpdateVDBParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTemplateIdOk

func (o *UpdateVDBParameters) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) GetValidateDbCredentials

func (o *UpdateVDBParameters) GetValidateDbCredentials() bool

GetValidateDbCredentials returns the ValidateDbCredentials field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetValidateDbCredentialsOk

func (o *UpdateVDBParameters) GetValidateDbCredentialsOk() (*bool, bool)

GetValidateDbCredentialsOk returns a tuple with the ValidateDbCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBParameters) HasAdditionalMountPoints

func (o *UpdateVDBParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasAppdataConfigParams

func (o *UpdateVDBParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasAppdataSourceParams

func (o *UpdateVDBParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasAutoRestart

func (o *UpdateVDBParameters) HasAutoRestart() bool

HasAutoRestart returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCdbTdeKeystorePassword

func (o *UpdateVDBParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCdcOnProvision

func (o *UpdateVDBParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasConfigParams

func (o *UpdateVDBParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCustomEnvFiles

func (o *UpdateVDBParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCustomEnvVars

func (o *UpdateVDBParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasDbPassword

func (o *UpdateVDBParameters) HasDbPassword() bool

HasDbPassword returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasDbUsername

func (o *UpdateVDBParameters) HasDbUsername() bool

HasDbUsername returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasEnvironmentUserId

func (o *UpdateVDBParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasHooks

func (o *UpdateVDBParameters) HasHooks() bool

HasHooks returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasListenerIds

func (o *UpdateVDBParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasMountPoint

func (o *UpdateVDBParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasName

func (o *UpdateVDBParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasNewDbid

func (o *UpdateVDBParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasOracleRacCustomEnvFiles

func (o *UpdateVDBParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasOracleRacCustomEnvVars

func (o *UpdateVDBParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasParentTdeKeystorePassword

func (o *UpdateVDBParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasParentTdeKeystorePath

func (o *UpdateVDBParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasPostScript

func (o *UpdateVDBParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasPreScript

func (o *UpdateVDBParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasTargetVcdbTdeKeystorePath

func (o *UpdateVDBParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasTdeKeyIdentifier

func (o *UpdateVDBParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasTemplateId

func (o *UpdateVDBParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasValidateDbCredentials

func (o *UpdateVDBParameters) HasValidateDbCredentials() bool

HasValidateDbCredentials returns a boolean if a field has been set.

func (UpdateVDBParameters) MarshalJSON

func (o UpdateVDBParameters) MarshalJSON() ([]byte, error)

func (*UpdateVDBParameters) SetAdditionalMountPoints

func (o *UpdateVDBParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*UpdateVDBParameters) SetAppdataConfigParams

func (o *UpdateVDBParameters) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*UpdateVDBParameters) SetAppdataSourceParams

func (o *UpdateVDBParameters) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*UpdateVDBParameters) SetAutoRestart

func (o *UpdateVDBParameters) SetAutoRestart(v bool)

SetAutoRestart gets a reference to the given bool and assigns it to the AutoRestart field.

func (*UpdateVDBParameters) SetCdbTdeKeystorePassword

func (o *UpdateVDBParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*UpdateVDBParameters) SetCdcOnProvision

func (o *UpdateVDBParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*UpdateVDBParameters) SetConfigParams

func (o *UpdateVDBParameters) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*UpdateVDBParameters) SetCustomEnvFiles

func (o *UpdateVDBParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*UpdateVDBParameters) SetCustomEnvVars

func (o *UpdateVDBParameters) SetCustomEnvVars(v map[string]string)

SetCustomEnvVars gets a reference to the given map[string]string and assigns it to the CustomEnvVars field.

func (*UpdateVDBParameters) SetDbPassword

func (o *UpdateVDBParameters) SetDbPassword(v string)

SetDbPassword gets a reference to the given string and assigns it to the DbPassword field.

func (*UpdateVDBParameters) SetDbUsername

func (o *UpdateVDBParameters) SetDbUsername(v string)

SetDbUsername gets a reference to the given string and assigns it to the DbUsername field.

func (*UpdateVDBParameters) SetEnvironmentUserId

func (o *UpdateVDBParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*UpdateVDBParameters) SetHooks

SetHooks gets a reference to the given VirtualDatasetHooks and assigns it to the Hooks field.

func (*UpdateVDBParameters) SetListenerIds

func (o *UpdateVDBParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*UpdateVDBParameters) SetMountPoint

func (o *UpdateVDBParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*UpdateVDBParameters) SetName

func (o *UpdateVDBParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateVDBParameters) SetNewDbid

func (o *UpdateVDBParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*UpdateVDBParameters) SetOracleRacCustomEnvFiles

func (o *UpdateVDBParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*UpdateVDBParameters) SetOracleRacCustomEnvVars

func (o *UpdateVDBParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*UpdateVDBParameters) SetParentTdeKeystorePassword

func (o *UpdateVDBParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*UpdateVDBParameters) SetParentTdeKeystorePath

func (o *UpdateVDBParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*UpdateVDBParameters) SetPostScript

func (o *UpdateVDBParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*UpdateVDBParameters) SetPreScript

func (o *UpdateVDBParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*UpdateVDBParameters) SetTargetVcdbTdeKeystorePath

func (o *UpdateVDBParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*UpdateVDBParameters) SetTdeKeyIdentifier

func (o *UpdateVDBParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*UpdateVDBParameters) SetTemplateId

func (o *UpdateVDBParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*UpdateVDBParameters) SetValidateDbCredentials

func (o *UpdateVDBParameters) SetValidateDbCredentials(v bool)

SetValidateDbCredentials gets a reference to the given bool and assigns it to the ValidateDbCredentials field.

func (UpdateVDBParameters) ToMap

func (o UpdateVDBParameters) ToMap() (map[string]interface{}, error)

type UpdateVDBResponse

type UpdateVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateVDBResponse struct for UpdateVDBResponse

func NewUpdateVDBResponse

func NewUpdateVDBResponse() *UpdateVDBResponse

NewUpdateVDBResponse instantiates a new UpdateVDBResponse 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 NewUpdateVDBResponseWithDefaults

func NewUpdateVDBResponseWithDefaults() *UpdateVDBResponse

NewUpdateVDBResponseWithDefaults instantiates a new UpdateVDBResponse 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 (*UpdateVDBResponse) GetJob

func (o *UpdateVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateVDBResponse) GetJobOk

func (o *UpdateVDBResponse) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVDBResponse) HasJob

func (o *UpdateVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateVDBResponse) MarshalJSON

func (o UpdateVDBResponse) MarshalJSON() ([]byte, error)

func (*UpdateVDBResponse) SetJob

func (o *UpdateVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateVDBResponse) ToMap

func (o UpdateVDBResponse) ToMap() (map[string]interface{}, error)

type VCDB

type VCDB struct {
	// The vCDB object entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this vCDB.
	Name NullableString `json:"name,omitempty"`
	// The namespace id of this vCDB.
	NamespaceId NullableString `json:"namespace_id,omitempty"`
	// The namespace name of this vCDB.
	NamespaceName NullableString `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica NullableBool `json:"is_replica,omitempty"`
	// The version of this vCDB.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// A reference to the Environment that hosts this vCDB.
	EnvironmentId NullableString `json:"environment_id,omitempty"`
	// The total size of the data files used by this vCDB, in bytes.
	Size NullableInt64 `json:"size,omitempty"`
	// A reference to the Engine that this vCDB belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// The runtime status of the vCDB.
	Status NullableString `json:"status,omitempty"`
	// A reference to the parent CDB of this vCDB.
	ParentId *string `json:"parent_id,omitempty"`
	// The date this vCDB was created.
	CreationDate NullableTime `json:"creation_date,omitempty"`
	// The name of the group containing this vCDB.
	GroupName NullableString `json:"group_name,omitempty"`
	// Whether the vCDB is enabled or not.
	Enabled *bool `json:"enabled,omitempty"`
	// The content type of the vcdb.
	ContentType NullableString `json:"content_type,omitempty"`
	// Indicates whether the Engine should automatically restart this vcdb when target host reboot is detected.
	VcdbRestart *bool `json:"vcdb_restart,omitempty"`
	Tags        []Tag `json:"tags,omitempty"`
}

VCDB The Delphix Oracle Virtual Container Database.

func NewVCDB

func NewVCDB() *VCDB

NewVCDB instantiates a new VCDB 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 NewVCDBWithDefaults

func NewVCDBWithDefaults() *VCDB

NewVCDBWithDefaults instantiates a new VCDB 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 (*VCDB) GetContentType

func (o *VCDB) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetContentTypeOk

func (o *VCDB) 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 (*VCDB) GetCreationDate

func (o *VCDB) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetCreationDateOk

func (o *VCDB) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetDatabaseVersion

func (o *VCDB) GetDatabaseVersion() string

GetDatabaseVersion returns the DatabaseVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetDatabaseVersionOk

func (o *VCDB) GetDatabaseVersionOk() (*string, bool)

GetDatabaseVersionOk returns a tuple with the DatabaseVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetEnabled

func (o *VCDB) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*VCDB) GetEnabledOk

func (o *VCDB) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VCDB) GetEngineId

func (o *VCDB) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*VCDB) GetEngineIdOk

func (o *VCDB) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VCDB) GetEnvironmentId

func (o *VCDB) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetEnvironmentIdOk

func (o *VCDB) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetGroupName

func (o *VCDB) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetGroupNameOk

func (o *VCDB) 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 (*VCDB) GetId

func (o *VCDB) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VCDB) GetIdOk

func (o *VCDB) 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.

func (*VCDB) GetIsReplica

func (o *VCDB) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetIsReplicaOk

func (o *VCDB) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetName

func (o *VCDB) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetNameOk

func (o *VCDB) 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 (*VCDB) GetNamespaceId

func (o *VCDB) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetNamespaceIdOk

func (o *VCDB) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetNamespaceName

func (o *VCDB) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetNamespaceNameOk

func (o *VCDB) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VCDB) GetParentId

func (o *VCDB) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*VCDB) GetParentIdOk

func (o *VCDB) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VCDB) GetSize

func (o *VCDB) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetSizeOk

func (o *VCDB) GetSizeOk() (*int64, bool)

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 (*VCDB) GetStatus

func (o *VCDB) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VCDB) GetStatusOk

func (o *VCDB) 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 (*VCDB) GetTags

func (o *VCDB) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*VCDB) GetTagsOk

func (o *VCDB) 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.

func (*VCDB) GetVcdbRestart

func (o *VCDB) GetVcdbRestart() bool

GetVcdbRestart returns the VcdbRestart field value if set, zero value otherwise.

func (*VCDB) GetVcdbRestartOk

func (o *VCDB) GetVcdbRestartOk() (*bool, bool)

GetVcdbRestartOk returns a tuple with the VcdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VCDB) HasContentType

func (o *VCDB) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*VCDB) HasCreationDate

func (o *VCDB) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*VCDB) HasDatabaseVersion

func (o *VCDB) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*VCDB) HasEnabled

func (o *VCDB) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*VCDB) HasEngineId

func (o *VCDB) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*VCDB) HasEnvironmentId

func (o *VCDB) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*VCDB) HasGroupName

func (o *VCDB) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*VCDB) HasId

func (o *VCDB) HasId() bool

HasId returns a boolean if a field has been set.

func (*VCDB) HasIsReplica

func (o *VCDB) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*VCDB) HasName

func (o *VCDB) HasName() bool

HasName returns a boolean if a field has been set.

func (*VCDB) HasNamespaceId

func (o *VCDB) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*VCDB) HasNamespaceName

func (o *VCDB) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*VCDB) HasParentId

func (o *VCDB) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*VCDB) HasSize

func (o *VCDB) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*VCDB) HasStatus

func (o *VCDB) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VCDB) HasTags

func (o *VCDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*VCDB) HasVcdbRestart

func (o *VCDB) HasVcdbRestart() bool

HasVcdbRestart returns a boolean if a field has been set.

func (VCDB) MarshalJSON

func (o VCDB) MarshalJSON() ([]byte, error)

func (*VCDB) SetContentType

func (o *VCDB) SetContentType(v string)

SetContentType gets a reference to the given NullableString and assigns it to the ContentType field.

func (*VCDB) SetContentTypeNil

func (o *VCDB) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*VCDB) SetCreationDate

func (o *VCDB) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given NullableTime and assigns it to the CreationDate field.

func (*VCDB) SetCreationDateNil

func (o *VCDB) SetCreationDateNil()

SetCreationDateNil sets the value for CreationDate to be an explicit nil

func (*VCDB) SetDatabaseVersion

func (o *VCDB) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*VCDB) SetDatabaseVersionNil

func (o *VCDB) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*VCDB) SetEnabled

func (o *VCDB) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*VCDB) SetEngineId

func (o *VCDB) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*VCDB) SetEnvironmentId

func (o *VCDB) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given NullableString and assigns it to the EnvironmentId field.

func (*VCDB) SetEnvironmentIdNil

func (o *VCDB) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*VCDB) SetGroupName

func (o *VCDB) SetGroupName(v string)

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*VCDB) SetGroupNameNil

func (o *VCDB) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*VCDB) SetId

func (o *VCDB) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VCDB) SetIsReplica

func (o *VCDB) SetIsReplica(v bool)

SetIsReplica gets a reference to the given NullableBool and assigns it to the IsReplica field.

func (*VCDB) SetIsReplicaNil

func (o *VCDB) SetIsReplicaNil()

SetIsReplicaNil sets the value for IsReplica to be an explicit nil

func (*VCDB) SetName

func (o *VCDB) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*VCDB) SetNameNil

func (o *VCDB) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*VCDB) SetNamespaceId

func (o *VCDB) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given NullableString and assigns it to the NamespaceId field.

func (*VCDB) SetNamespaceIdNil

func (o *VCDB) SetNamespaceIdNil()

SetNamespaceIdNil sets the value for NamespaceId to be an explicit nil

func (*VCDB) SetNamespaceName

func (o *VCDB) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given NullableString and assigns it to the NamespaceName field.

func (*VCDB) SetNamespaceNameNil

func (o *VCDB) SetNamespaceNameNil()

SetNamespaceNameNil sets the value for NamespaceName to be an explicit nil

func (*VCDB) SetParentId

func (o *VCDB) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*VCDB) SetSize

func (o *VCDB) SetSize(v int64)

SetSize gets a reference to the given NullableInt64 and assigns it to the Size field.

func (*VCDB) SetSizeNil

func (o *VCDB) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*VCDB) SetStatus

func (o *VCDB) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*VCDB) SetStatusNil

func (o *VCDB) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*VCDB) SetTags

func (o *VCDB) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*VCDB) SetVcdbRestart

func (o *VCDB) SetVcdbRestart(v bool)

SetVcdbRestart gets a reference to the given bool and assigns it to the VcdbRestart field.

func (VCDB) ToMap

func (o VCDB) ToMap() (map[string]interface{}, error)

func (*VCDB) UnsetContentType

func (o *VCDB) UnsetContentType()

UnsetContentType ensures that no value is present for ContentType, not even an explicit nil

func (*VCDB) UnsetCreationDate

func (o *VCDB) UnsetCreationDate()

UnsetCreationDate ensures that no value is present for CreationDate, not even an explicit nil

func (*VCDB) UnsetDatabaseVersion

func (o *VCDB) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*VCDB) UnsetEnvironmentId

func (o *VCDB) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*VCDB) UnsetGroupName

func (o *VCDB) UnsetGroupName()

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*VCDB) UnsetIsReplica

func (o *VCDB) UnsetIsReplica()

UnsetIsReplica ensures that no value is present for IsReplica, not even an explicit nil

func (*VCDB) UnsetName

func (o *VCDB) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*VCDB) UnsetNamespaceId

func (o *VCDB) UnsetNamespaceId()

UnsetNamespaceId ensures that no value is present for NamespaceId, not even an explicit nil

func (*VCDB) UnsetNamespaceName

func (o *VCDB) UnsetNamespaceName()

UnsetNamespaceName ensures that no value is present for NamespaceName, not even an explicit nil

func (*VCDB) UnsetSize

func (o *VCDB) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*VCDB) UnsetStatus

func (o *VCDB) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type VCDBsApiService

type VCDBsApiService service

VCDBsApiService VCDBsApi service

func (*VCDBsApiService) CreateVcdbTags

func (a *VCDBsApiService) CreateVcdbTags(ctx context.Context, vcdbId string) ApiCreateVcdbTagsRequest

CreateVcdbTags Create tags for a vCDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vcdbId The ID of the vCDB.
@return ApiCreateVcdbTagsRequest

func (*VCDBsApiService) CreateVcdbTagsExecute

func (a *VCDBsApiService) CreateVcdbTagsExecute(r ApiCreateVcdbTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VCDBsApiService) DeleteVcdbTags

func (a *VCDBsApiService) DeleteVcdbTags(ctx context.Context, vcdbId string) ApiDeleteVcdbTagsRequest

DeleteVcdbTags Delete tags for a vCDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vcdbId The ID of the vCDB.
@return ApiDeleteVcdbTagsRequest

func (*VCDBsApiService) DeleteVcdbTagsExecute

func (a *VCDBsApiService) DeleteVcdbTagsExecute(r ApiDeleteVcdbTagsRequest) (*http.Response, error)

Execute executes the request

func (*VCDBsApiService) GetTagsVcdb

func (a *VCDBsApiService) GetTagsVcdb(ctx context.Context, vcdbId string) ApiGetTagsVcdbRequest

GetTagsVcdb Get tags for a vCDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vcdbId The ID of the vCDB.
@return ApiGetTagsVcdbRequest

func (*VCDBsApiService) GetTagsVcdbExecute

func (a *VCDBsApiService) GetTagsVcdbExecute(r ApiGetTagsVcdbRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VCDBsApiService) GetVcdbById

func (a *VCDBsApiService) GetVcdbById(ctx context.Context, vcdbId string) ApiGetVcdbByIdRequest

GetVcdbById Get a CDB by ID (Oracle only).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vcdbId The ID of the vCDB.
@return ApiGetVcdbByIdRequest

func (*VCDBsApiService) GetVcdbByIdExecute

func (a *VCDBsApiService) GetVcdbByIdExecute(r ApiGetVcdbByIdRequest) (*VCDB, *http.Response, error)

Execute executes the request

@return VCDB

func (*VCDBsApiService) GetVcdbs

GetVcdbs List all vCDBs (Oracle only).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVcdbsRequest

func (*VCDBsApiService) GetVcdbsExecute

Execute executes the request

@return ListVCDBsResponse

func (*VCDBsApiService) SearchVcdbs

SearchVcdbs Search for vCDBs (Oracle only).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVcdbsRequest

func (*VCDBsApiService) SearchVcdbsExecute

Execute executes the request

@return SearchVCDBsResponse

type VDB

type VDB struct {
	// The VDB object entity ID.
	Id *string `json:"id,omitempty"`
	// The database type of this VDB.
	DatabaseType NullableString `json:"database_type,omitempty"`
	// The container name of this VDB.
	Name NullableString `json:"name,omitempty"`
	// The namespace id of this VDB.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this VDB.
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica *bool `json:"is_replica,omitempty"`
	// Is this VDB locked.
	IsLocked *bool `json:"is_locked,omitempty"`
	// The ID of the account that locked this VDB.
	LockedBy *int64 `json:"locked_by,omitempty"`
	// The name of the account that locked this VDB.
	LockedByName *string `json:"locked_by_name,omitempty"`
	// The database version of this VDB.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// The total size of this VDB, in bytes.
	Size NullableInt64 `json:"size,omitempty"`
	// The actual space used by this VDB, in bytes.
	StorageSize NullableInt64 `json:"storage_size,omitempty"`
	// A reference to the Engine that this VDB belongs to.
	EngineId *string `json:"engine_id,omitempty"`
	// The runtime status of the VDB. 'Unknown' if all attempts to connect to the dataset failed.
	Status NullableString `json:"status,omitempty"`
	// The VDB is masked or not.
	Masked NullableBool `json:"masked,omitempty"`
	// The content type of the vdb.
	ContentType NullableString `json:"content_type,omitempty"`
	// The timestamp for parent timeflow.
	ParentTimeflowTimestamp NullableTime `json:"parent_timeflow_timestamp,omitempty"`
	// The timezone for parent timeflow.
	ParentTimeflowTimezone NullableString `json:"parent_timeflow_timezone,omitempty"`
	// A reference to the Environment that hosts this VDB.
	EnvironmentId NullableString `json:"environment_id,omitempty"`
	// The IP address of the VDB's host.
	IpAddress NullableString `json:"ip_address,omitempty"`
	// The FQDN of the VDB's host.
	Fqdn NullableString `json:"fqdn,omitempty"`
	// A reference to the parent dataset of this VDB.
	ParentId NullableString `json:"parent_id,omitempty"`
	// A reference to the parent dSource of this VDB.
	ParentDsourceId NullableString `json:"parent_dsource_id,omitempty"`
	// The name of the group containing this VDB.
	GroupName NullableString `json:"group_name,omitempty"`
	// Name of the Engine where this VDB is hosted
	EngineName NullableString `json:"engine_name,omitempty"`
	// A reference to the CDB or VCDB associated with this VDB.
	CdbId NullableString `json:"cdb_id,omitempty"`
	Tags  []Tag          `json:"tags,omitempty"`
	// The date this VDB was created.
	CreationDate NullableTime         `json:"creation_date,omitempty"`
	Hooks        *VirtualDatasetHooks `json:"hooks,omitempty"`
	// The JSON payload conforming to the DraftV4 schema based on the type of application data being manipulated.
	AppdataSourceParams map[string]interface{} `json:"appdata_source_params,omitempty"`
	// A reference to the Database Template.
	TemplateId NullableString `json:"template_id,omitempty"`
	// Database configuration parameter overrides.
	ConfigParams map[string]interface{} `json:"config_params,omitempty"`
	// Specifies additional locations on which to mount a subdirectory of an AppData container. Can only be updated while the VDB is disabled.
	AdditionalMountPoints []AdditionalMountPoint `json:"additional_mount_points,omitempty"`
	// The parameters specified by the source config schema in the toolkit
	AppdataConfigParams map[string]interface{} `json:"appdata_config_params,omitempty"`
	// Mount point for the VDB (Oracle, ASE, AppData).
	MountPoint *string `json:"mount_point,omitempty"`
	// A reference to the currently active timeflow for this VDB.
	CurrentTimeflowId *string `json:"current_timeflow_id,omitempty"`
	// A reference to the previous timeflow for this VDB.
	PreviousTimeflowId *string `json:"previous_timeflow_id,omitempty"`
	// The date this VDB was last refreshed.
	LastRefreshedDate NullableTime `json:"last_refreshed_date,omitempty"`
	// Indicates whether the Engine should automatically restart this vdb when target host reboot is detected.
	VdbRestart *bool `json:"vdb_restart,omitempty"`
	// Indicates whether this VDB has an AppData database.
	IsAppdata *bool `json:"is_appdata,omitempty"`
	// The version of the plugin associated with this VDB.
	PluginVersion NullableString `json:"plugin_version,omitempty"`
}

VDB A Delphix virtual database or dataset.

func NewVDB

func NewVDB() *VDB

NewVDB instantiates a new VDB 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 NewVDBWithDefaults

func NewVDBWithDefaults() *VDB

NewVDBWithDefaults instantiates a new VDB 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 (*VDB) GetAdditionalMountPoints

func (o *VDB) GetAdditionalMountPoints() []AdditionalMountPoint

GetAdditionalMountPoints returns the AdditionalMountPoints field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetAdditionalMountPointsOk

func (o *VDB) GetAdditionalMountPointsOk() ([]AdditionalMountPoint, bool)

GetAdditionalMountPointsOk returns a tuple with the AdditionalMountPoints field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetAppdataConfigParams

func (o *VDB) GetAppdataConfigParams() map[string]interface{}

GetAppdataConfigParams returns the AppdataConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetAppdataConfigParamsOk

func (o *VDB) GetAppdataConfigParamsOk() (map[string]interface{}, bool)

GetAppdataConfigParamsOk returns a tuple with the AppdataConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetAppdataSourceParams

func (o *VDB) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetAppdataSourceParamsOk

func (o *VDB) GetAppdataSourceParamsOk() (map[string]interface{}, bool)

GetAppdataSourceParamsOk returns a tuple with the AppdataSourceParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetCdbId

func (o *VDB) GetCdbId() string

GetCdbId returns the CdbId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetCdbIdOk

func (o *VDB) GetCdbIdOk() (*string, bool)

GetCdbIdOk returns a tuple with the CdbId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetConfigParams

func (o *VDB) GetConfigParams() map[string]interface{}

GetConfigParams returns the ConfigParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetConfigParamsOk

func (o *VDB) GetConfigParamsOk() (map[string]interface{}, bool)

GetConfigParamsOk returns a tuple with the ConfigParams field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetContentType

func (o *VDB) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetContentTypeOk

func (o *VDB) 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 (*VDB) GetCreationDate

func (o *VDB) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetCreationDateOk

func (o *VDB) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetCurrentTimeflowId

func (o *VDB) GetCurrentTimeflowId() string

GetCurrentTimeflowId returns the CurrentTimeflowId field value if set, zero value otherwise.

func (*VDB) GetCurrentTimeflowIdOk

func (o *VDB) GetCurrentTimeflowIdOk() (*string, bool)

GetCurrentTimeflowIdOk returns a tuple with the CurrentTimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetDatabaseType

func (o *VDB) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetDatabaseTypeOk

func (o *VDB) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetDatabaseVersion

func (o *VDB) GetDatabaseVersion() string

GetDatabaseVersion returns the DatabaseVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetDatabaseVersionOk

func (o *VDB) GetDatabaseVersionOk() (*string, bool)

GetDatabaseVersionOk returns a tuple with the DatabaseVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetEngineId

func (o *VDB) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*VDB) GetEngineIdOk

func (o *VDB) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetEngineName

func (o *VDB) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetEngineNameOk

func (o *VDB) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetEnvironmentId

func (o *VDB) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetEnvironmentIdOk

func (o *VDB) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetFqdn

func (o *VDB) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetFqdnOk

func (o *VDB) GetFqdnOk() (*string, bool)

GetFqdnOk returns a tuple with the Fqdn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetGroupName

func (o *VDB) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetGroupNameOk

func (o *VDB) 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 (*VDB) GetHooks

func (o *VDB) GetHooks() VirtualDatasetHooks

GetHooks returns the Hooks field value if set, zero value otherwise.

func (*VDB) GetHooksOk

func (o *VDB) GetHooksOk() (*VirtualDatasetHooks, bool)

GetHooksOk returns a tuple with the Hooks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetId

func (o *VDB) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VDB) GetIdOk

func (o *VDB) 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.

func (*VDB) GetIpAddress

func (o *VDB) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetIpAddressOk

func (o *VDB) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetIsAppdata

func (o *VDB) GetIsAppdata() bool

GetIsAppdata returns the IsAppdata field value if set, zero value otherwise.

func (*VDB) GetIsAppdataOk

func (o *VDB) GetIsAppdataOk() (*bool, bool)

GetIsAppdataOk returns a tuple with the IsAppdata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetIsLocked

func (o *VDB) GetIsLocked() bool

GetIsLocked returns the IsLocked field value if set, zero value otherwise.

func (*VDB) GetIsLockedOk

func (o *VDB) GetIsLockedOk() (*bool, bool)

GetIsLockedOk returns a tuple with the IsLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetIsReplica

func (o *VDB) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*VDB) GetIsReplicaOk

func (o *VDB) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetLastRefreshedDate

func (o *VDB) GetLastRefreshedDate() time.Time

GetLastRefreshedDate returns the LastRefreshedDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetLastRefreshedDateOk

func (o *VDB) GetLastRefreshedDateOk() (*time.Time, bool)

GetLastRefreshedDateOk returns a tuple with the LastRefreshedDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetLockedBy

func (o *VDB) GetLockedBy() int64

GetLockedBy returns the LockedBy field value if set, zero value otherwise.

func (*VDB) GetLockedByName

func (o *VDB) GetLockedByName() string

GetLockedByName returns the LockedByName field value if set, zero value otherwise.

func (*VDB) GetLockedByNameOk

func (o *VDB) GetLockedByNameOk() (*string, bool)

GetLockedByNameOk returns a tuple with the LockedByName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetLockedByOk

func (o *VDB) GetLockedByOk() (*int64, bool)

GetLockedByOk returns a tuple with the LockedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetMasked

func (o *VDB) GetMasked() bool

GetMasked returns the Masked field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetMaskedOk

func (o *VDB) GetMaskedOk() (*bool, bool)

GetMaskedOk returns a tuple with the Masked field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetMountPoint

func (o *VDB) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*VDB) GetMountPointOk

func (o *VDB) GetMountPointOk() (*string, bool)

GetMountPointOk returns a tuple with the MountPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetName

func (o *VDB) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetNameOk

func (o *VDB) 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 (*VDB) GetNamespaceId

func (o *VDB) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*VDB) GetNamespaceIdOk

func (o *VDB) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetNamespaceName

func (o *VDB) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*VDB) GetNamespaceNameOk

func (o *VDB) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetParentDsourceId

func (o *VDB) GetParentDsourceId() string

GetParentDsourceId returns the ParentDsourceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetParentDsourceIdOk

func (o *VDB) GetParentDsourceIdOk() (*string, bool)

GetParentDsourceIdOk returns a tuple with the ParentDsourceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetParentId

func (o *VDB) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetParentIdOk

func (o *VDB) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetParentTimeflowTimestamp

func (o *VDB) GetParentTimeflowTimestamp() time.Time

GetParentTimeflowTimestamp returns the ParentTimeflowTimestamp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetParentTimeflowTimestampOk

func (o *VDB) GetParentTimeflowTimestampOk() (*time.Time, bool)

GetParentTimeflowTimestampOk returns a tuple with the ParentTimeflowTimestamp field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetParentTimeflowTimezone

func (o *VDB) GetParentTimeflowTimezone() string

GetParentTimeflowTimezone returns the ParentTimeflowTimezone field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetParentTimeflowTimezoneOk

func (o *VDB) GetParentTimeflowTimezoneOk() (*string, bool)

GetParentTimeflowTimezoneOk returns a tuple with the ParentTimeflowTimezone field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetPluginVersion

func (o *VDB) GetPluginVersion() string

GetPluginVersion returns the PluginVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetPluginVersionOk

func (o *VDB) GetPluginVersionOk() (*string, bool)

GetPluginVersionOk returns a tuple with the PluginVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetPreviousTimeflowId

func (o *VDB) GetPreviousTimeflowId() string

GetPreviousTimeflowId returns the PreviousTimeflowId field value if set, zero value otherwise.

func (*VDB) GetPreviousTimeflowIdOk

func (o *VDB) GetPreviousTimeflowIdOk() (*string, bool)

GetPreviousTimeflowIdOk returns a tuple with the PreviousTimeflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) GetSize

func (o *VDB) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetSizeOk

func (o *VDB) GetSizeOk() (*int64, bool)

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 (*VDB) GetStatus

func (o *VDB) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetStatusOk

func (o *VDB) 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 (*VDB) GetStorageSize

func (o *VDB) GetStorageSize() int64

GetStorageSize returns the StorageSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetStorageSizeOk

func (o *VDB) GetStorageSizeOk() (*int64, bool)

GetStorageSizeOk returns a tuple with the StorageSize field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetTags

func (o *VDB) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*VDB) GetTagsOk

func (o *VDB) 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.

func (*VDB) GetTemplateId

func (o *VDB) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VDB) GetTemplateIdOk

func (o *VDB) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VDB) GetVdbRestart

func (o *VDB) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*VDB) GetVdbRestartOk

func (o *VDB) GetVdbRestartOk() (*bool, bool)

GetVdbRestartOk returns a tuple with the VdbRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDB) HasAdditionalMountPoints

func (o *VDB) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*VDB) HasAppdataConfigParams

func (o *VDB) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*VDB) HasAppdataSourceParams

func (o *VDB) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*VDB) HasCdbId

func (o *VDB) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*VDB) HasConfigParams

func (o *VDB) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*VDB) HasContentType

func (o *VDB) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*VDB) HasCreationDate

func (o *VDB) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*VDB) HasCurrentTimeflowId

func (o *VDB) HasCurrentTimeflowId() bool

HasCurrentTimeflowId returns a boolean if a field has been set.

func (*VDB) HasDatabaseType

func (o *VDB) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*VDB) HasDatabaseVersion

func (o *VDB) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*VDB) HasEngineId

func (o *VDB) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*VDB) HasEngineName

func (o *VDB) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*VDB) HasEnvironmentId

func (o *VDB) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*VDB) HasFqdn

func (o *VDB) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*VDB) HasGroupName

func (o *VDB) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*VDB) HasHooks

func (o *VDB) HasHooks() bool

HasHooks returns a boolean if a field has been set.

func (*VDB) HasId

func (o *VDB) HasId() bool

HasId returns a boolean if a field has been set.

func (*VDB) HasIpAddress

func (o *VDB) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*VDB) HasIsAppdata

func (o *VDB) HasIsAppdata() bool

HasIsAppdata returns a boolean if a field has been set.

func (*VDB) HasIsLocked

func (o *VDB) HasIsLocked() bool

HasIsLocked returns a boolean if a field has been set.

func (*VDB) HasIsReplica

func (o *VDB) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*VDB) HasLastRefreshedDate

func (o *VDB) HasLastRefreshedDate() bool

HasLastRefreshedDate returns a boolean if a field has been set.

func (*VDB) HasLockedBy

func (o *VDB) HasLockedBy() bool

HasLockedBy returns a boolean if a field has been set.

func (*VDB) HasLockedByName

func (o *VDB) HasLockedByName() bool

HasLockedByName returns a boolean if a field has been set.

func (*VDB) HasMasked

func (o *VDB) HasMasked() bool

HasMasked returns a boolean if a field has been set.

func (*VDB) HasMountPoint

func (o *VDB) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*VDB) HasName

func (o *VDB) HasName() bool

HasName returns a boolean if a field has been set.

func (*VDB) HasNamespaceId

func (o *VDB) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*VDB) HasNamespaceName

func (o *VDB) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*VDB) HasParentDsourceId

func (o *VDB) HasParentDsourceId() bool

HasParentDsourceId returns a boolean if a field has been set.

func (*VDB) HasParentId

func (o *VDB) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*VDB) HasParentTimeflowTimestamp

func (o *VDB) HasParentTimeflowTimestamp() bool

HasParentTimeflowTimestamp returns a boolean if a field has been set.

func (*VDB) HasParentTimeflowTimezone

func (o *VDB) HasParentTimeflowTimezone() bool

HasParentTimeflowTimezone returns a boolean if a field has been set.

func (*VDB) HasPluginVersion

func (o *VDB) HasPluginVersion() bool

HasPluginVersion returns a boolean if a field has been set.

func (*VDB) HasPreviousTimeflowId

func (o *VDB) HasPreviousTimeflowId() bool

HasPreviousTimeflowId returns a boolean if a field has been set.

func (*VDB) HasSize

func (o *VDB) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*VDB) HasStatus

func (o *VDB) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VDB) HasStorageSize

func (o *VDB) HasStorageSize() bool

HasStorageSize returns a boolean if a field has been set.

func (*VDB) HasTags

func (o *VDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*VDB) HasTemplateId

func (o *VDB) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*VDB) HasVdbRestart

func (o *VDB) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (VDB) MarshalJSON

func (o VDB) MarshalJSON() ([]byte, error)

func (*VDB) SetAdditionalMountPoints

func (o *VDB) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*VDB) SetAppdataConfigParams

func (o *VDB) SetAppdataConfigParams(v map[string]interface{})

SetAppdataConfigParams gets a reference to the given map[string]interface{} and assigns it to the AppdataConfigParams field.

func (*VDB) SetAppdataSourceParams

func (o *VDB) SetAppdataSourceParams(v map[string]interface{})

SetAppdataSourceParams gets a reference to the given map[string]interface{} and assigns it to the AppdataSourceParams field.

func (*VDB) SetCdbId

func (o *VDB) SetCdbId(v string)

SetCdbId gets a reference to the given NullableString and assigns it to the CdbId field.

func (*VDB) SetCdbIdNil

func (o *VDB) SetCdbIdNil()

SetCdbIdNil sets the value for CdbId to be an explicit nil

func (*VDB) SetConfigParams

func (o *VDB) SetConfigParams(v map[string]interface{})

SetConfigParams gets a reference to the given map[string]interface{} and assigns it to the ConfigParams field.

func (*VDB) SetContentType

func (o *VDB) SetContentType(v string)

SetContentType gets a reference to the given NullableString and assigns it to the ContentType field.

func (*VDB) SetContentTypeNil

func (o *VDB) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*VDB) SetCreationDate

func (o *VDB) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given NullableTime and assigns it to the CreationDate field.

func (*VDB) SetCreationDateNil

func (o *VDB) SetCreationDateNil()

SetCreationDateNil sets the value for CreationDate to be an explicit nil

func (*VDB) SetCurrentTimeflowId

func (o *VDB) SetCurrentTimeflowId(v string)

SetCurrentTimeflowId gets a reference to the given string and assigns it to the CurrentTimeflowId field.

func (*VDB) SetDatabaseType

func (o *VDB) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given NullableString and assigns it to the DatabaseType field.

func (*VDB) SetDatabaseTypeNil

func (o *VDB) SetDatabaseTypeNil()

SetDatabaseTypeNil sets the value for DatabaseType to be an explicit nil

func (*VDB) SetDatabaseVersion

func (o *VDB) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*VDB) SetDatabaseVersionNil

func (o *VDB) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*VDB) SetEngineId

func (o *VDB) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*VDB) SetEngineName

func (o *VDB) SetEngineName(v string)

SetEngineName gets a reference to the given NullableString and assigns it to the EngineName field.

func (*VDB) SetEngineNameNil

func (o *VDB) SetEngineNameNil()

SetEngineNameNil sets the value for EngineName to be an explicit nil

func (*VDB) SetEnvironmentId

func (o *VDB) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given NullableString and assigns it to the EnvironmentId field.

func (*VDB) SetEnvironmentIdNil

func (o *VDB) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*VDB) SetFqdn

func (o *VDB) SetFqdn(v string)

SetFqdn gets a reference to the given NullableString and assigns it to the Fqdn field.

func (*VDB) SetFqdnNil

func (o *VDB) SetFqdnNil()

SetFqdnNil sets the value for Fqdn to be an explicit nil

func (*VDB) SetGroupName

func (o *VDB) SetGroupName(v string)

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*VDB) SetGroupNameNil

func (o *VDB) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*VDB) SetHooks

func (o *VDB) SetHooks(v VirtualDatasetHooks)

SetHooks gets a reference to the given VirtualDatasetHooks and assigns it to the Hooks field.

func (*VDB) SetId

func (o *VDB) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VDB) SetIpAddress

func (o *VDB) SetIpAddress(v string)

SetIpAddress gets a reference to the given NullableString and assigns it to the IpAddress field.

func (*VDB) SetIpAddressNil

func (o *VDB) SetIpAddressNil()

SetIpAddressNil sets the value for IpAddress to be an explicit nil

func (*VDB) SetIsAppdata

func (o *VDB) SetIsAppdata(v bool)

SetIsAppdata gets a reference to the given bool and assigns it to the IsAppdata field.

func (*VDB) SetIsLocked

func (o *VDB) SetIsLocked(v bool)

SetIsLocked gets a reference to the given bool and assigns it to the IsLocked field.

func (*VDB) SetIsReplica

func (o *VDB) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*VDB) SetLastRefreshedDate

func (o *VDB) SetLastRefreshedDate(v time.Time)

SetLastRefreshedDate gets a reference to the given NullableTime and assigns it to the LastRefreshedDate field.

func (*VDB) SetLastRefreshedDateNil

func (o *VDB) SetLastRefreshedDateNil()

SetLastRefreshedDateNil sets the value for LastRefreshedDate to be an explicit nil

func (*VDB) SetLockedBy

func (o *VDB) SetLockedBy(v int64)

SetLockedBy gets a reference to the given int64 and assigns it to the LockedBy field.

func (*VDB) SetLockedByName

func (o *VDB) SetLockedByName(v string)

SetLockedByName gets a reference to the given string and assigns it to the LockedByName field.

func (*VDB) SetMasked

func (o *VDB) SetMasked(v bool)

SetMasked gets a reference to the given NullableBool and assigns it to the Masked field.

func (*VDB) SetMaskedNil

func (o *VDB) SetMaskedNil()

SetMaskedNil sets the value for Masked to be an explicit nil

func (*VDB) SetMountPoint

func (o *VDB) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*VDB) SetName

func (o *VDB) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*VDB) SetNameNil

func (o *VDB) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*VDB) SetNamespaceId

func (o *VDB) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*VDB) SetNamespaceName

func (o *VDB) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*VDB) SetParentDsourceId

func (o *VDB) SetParentDsourceId(v string)

SetParentDsourceId gets a reference to the given NullableString and assigns it to the ParentDsourceId field.

func (*VDB) SetParentDsourceIdNil

func (o *VDB) SetParentDsourceIdNil()

SetParentDsourceIdNil sets the value for ParentDsourceId to be an explicit nil

func (*VDB) SetParentId

func (o *VDB) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*VDB) SetParentIdNil

func (o *VDB) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*VDB) SetParentTimeflowTimestamp

func (o *VDB) SetParentTimeflowTimestamp(v time.Time)

SetParentTimeflowTimestamp gets a reference to the given NullableTime and assigns it to the ParentTimeflowTimestamp field.

func (*VDB) SetParentTimeflowTimestampNil

func (o *VDB) SetParentTimeflowTimestampNil()

SetParentTimeflowTimestampNil sets the value for ParentTimeflowTimestamp to be an explicit nil

func (*VDB) SetParentTimeflowTimezone

func (o *VDB) SetParentTimeflowTimezone(v string)

SetParentTimeflowTimezone gets a reference to the given NullableString and assigns it to the ParentTimeflowTimezone field.

func (*VDB) SetParentTimeflowTimezoneNil

func (o *VDB) SetParentTimeflowTimezoneNil()

SetParentTimeflowTimezoneNil sets the value for ParentTimeflowTimezone to be an explicit nil

func (*VDB) SetPluginVersion

func (o *VDB) SetPluginVersion(v string)

SetPluginVersion gets a reference to the given NullableString and assigns it to the PluginVersion field.

func (*VDB) SetPluginVersionNil

func (o *VDB) SetPluginVersionNil()

SetPluginVersionNil sets the value for PluginVersion to be an explicit nil

func (*VDB) SetPreviousTimeflowId

func (o *VDB) SetPreviousTimeflowId(v string)

SetPreviousTimeflowId gets a reference to the given string and assigns it to the PreviousTimeflowId field.

func (*VDB) SetSize

func (o *VDB) SetSize(v int64)

SetSize gets a reference to the given NullableInt64 and assigns it to the Size field.

func (*VDB) SetSizeNil

func (o *VDB) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*VDB) SetStatus

func (o *VDB) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*VDB) SetStatusNil

func (o *VDB) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*VDB) SetStorageSize

func (o *VDB) SetStorageSize(v int64)

SetStorageSize gets a reference to the given NullableInt64 and assigns it to the StorageSize field.

func (*VDB) SetStorageSizeNil

func (o *VDB) SetStorageSizeNil()

SetStorageSizeNil sets the value for StorageSize to be an explicit nil

func (*VDB) SetTags

func (o *VDB) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*VDB) SetTemplateId

func (o *VDB) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*VDB) SetTemplateIdNil

func (o *VDB) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (*VDB) SetVdbRestart

func (o *VDB) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (VDB) ToMap

func (o VDB) ToMap() (map[string]interface{}, error)

func (*VDB) UnsetCdbId

func (o *VDB) UnsetCdbId()

UnsetCdbId ensures that no value is present for CdbId, not even an explicit nil

func (*VDB) UnsetContentType

func (o *VDB) UnsetContentType()

UnsetContentType ensures that no value is present for ContentType, not even an explicit nil

func (*VDB) UnsetCreationDate

func (o *VDB) UnsetCreationDate()

UnsetCreationDate ensures that no value is present for CreationDate, not even an explicit nil

func (*VDB) UnsetDatabaseType

func (o *VDB) UnsetDatabaseType()

UnsetDatabaseType ensures that no value is present for DatabaseType, not even an explicit nil

func (*VDB) UnsetDatabaseVersion

func (o *VDB) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*VDB) UnsetEngineName

func (o *VDB) UnsetEngineName()

UnsetEngineName ensures that no value is present for EngineName, not even an explicit nil

func (*VDB) UnsetEnvironmentId

func (o *VDB) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*VDB) UnsetFqdn

func (o *VDB) UnsetFqdn()

UnsetFqdn ensures that no value is present for Fqdn, not even an explicit nil

func (*VDB) UnsetGroupName

func (o *VDB) UnsetGroupName()

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*VDB) UnsetIpAddress

func (o *VDB) UnsetIpAddress()

UnsetIpAddress ensures that no value is present for IpAddress, not even an explicit nil

func (*VDB) UnsetLastRefreshedDate

func (o *VDB) UnsetLastRefreshedDate()

UnsetLastRefreshedDate ensures that no value is present for LastRefreshedDate, not even an explicit nil

func (*VDB) UnsetMasked

func (o *VDB) UnsetMasked()

UnsetMasked ensures that no value is present for Masked, not even an explicit nil

func (*VDB) UnsetName

func (o *VDB) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*VDB) UnsetParentDsourceId

func (o *VDB) UnsetParentDsourceId()

UnsetParentDsourceId ensures that no value is present for ParentDsourceId, not even an explicit nil

func (*VDB) UnsetParentId

func (o *VDB) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

func (*VDB) UnsetParentTimeflowTimestamp

func (o *VDB) UnsetParentTimeflowTimestamp()

UnsetParentTimeflowTimestamp ensures that no value is present for ParentTimeflowTimestamp, not even an explicit nil

func (*VDB) UnsetParentTimeflowTimezone

func (o *VDB) UnsetParentTimeflowTimezone()

UnsetParentTimeflowTimezone ensures that no value is present for ParentTimeflowTimezone, not even an explicit nil

func (*VDB) UnsetPluginVersion

func (o *VDB) UnsetPluginVersion()

UnsetPluginVersion ensures that no value is present for PluginVersion, not even an explicit nil

func (*VDB) UnsetSize

func (o *VDB) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*VDB) UnsetStatus

func (o *VDB) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*VDB) UnsetStorageSize

func (o *VDB) UnsetStorageSize()

UnsetStorageSize ensures that no value is present for StorageSize, not even an explicit nil

func (*VDB) UnsetTemplateId

func (o *VDB) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type VDBGroup

type VDBGroup struct {
	// A unique identifier for the entity.
	Id string `json:"id"`
	// A unique name for the entity.
	Name string `json:"name"`
	// The list of VDB IDs in this VDBGroup.
	VdbIds []string `json:"vdb_ids"`
	// Indicates whether the VDBGroup is locked.
	IsLocked *bool `json:"is_locked,omitempty"`
	// The Id of the account that locked the VDBGroup.
	LockedBy *int64 `json:"locked_by,omitempty"`
	// The name of the account that locked the VDBGroup.
	LockedByName *string `json:"locked_by_name,omitempty"`
	Tags         []Tag   `json:"tags,omitempty"`
}

VDBGroup A collection of virtual databases and datesets.

func NewVDBGroup

func NewVDBGroup(id string, name string, vdbIds []string) *VDBGroup

NewVDBGroup instantiates a new VDBGroup 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 NewVDBGroupWithDefaults

func NewVDBGroupWithDefaults() *VDBGroup

NewVDBGroupWithDefaults instantiates a new VDBGroup 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 (*VDBGroup) GetId

func (o *VDBGroup) GetId() string

GetId returns the Id field value

func (*VDBGroup) GetIdOk

func (o *VDBGroup) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*VDBGroup) GetIsLocked

func (o *VDBGroup) GetIsLocked() bool

GetIsLocked returns the IsLocked field value if set, zero value otherwise.

func (*VDBGroup) GetIsLockedOk

func (o *VDBGroup) GetIsLockedOk() (*bool, bool)

GetIsLockedOk returns a tuple with the IsLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBGroup) GetLockedBy

func (o *VDBGroup) GetLockedBy() int64

GetLockedBy returns the LockedBy field value if set, zero value otherwise.

func (*VDBGroup) GetLockedByName

func (o *VDBGroup) GetLockedByName() string

GetLockedByName returns the LockedByName field value if set, zero value otherwise.

func (*VDBGroup) GetLockedByNameOk

func (o *VDBGroup) GetLockedByNameOk() (*string, bool)

GetLockedByNameOk returns a tuple with the LockedByName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBGroup) GetLockedByOk

func (o *VDBGroup) GetLockedByOk() (*int64, bool)

GetLockedByOk returns a tuple with the LockedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBGroup) GetName

func (o *VDBGroup) GetName() string

GetName returns the Name field value

func (*VDBGroup) GetNameOk

func (o *VDBGroup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*VDBGroup) GetTags

func (o *VDBGroup) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*VDBGroup) GetTagsOk

func (o *VDBGroup) 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.

func (*VDBGroup) GetVdbIds

func (o *VDBGroup) GetVdbIds() []string

GetVdbIds returns the VdbIds field value

func (*VDBGroup) GetVdbIdsOk

func (o *VDBGroup) GetVdbIdsOk() ([]string, bool)

GetVdbIdsOk returns a tuple with the VdbIds field value and a boolean to check if the value has been set.

func (*VDBGroup) HasIsLocked

func (o *VDBGroup) HasIsLocked() bool

HasIsLocked returns a boolean if a field has been set.

func (*VDBGroup) HasLockedBy

func (o *VDBGroup) HasLockedBy() bool

HasLockedBy returns a boolean if a field has been set.

func (*VDBGroup) HasLockedByName

func (o *VDBGroup) HasLockedByName() bool

HasLockedByName returns a boolean if a field has been set.

func (*VDBGroup) HasTags

func (o *VDBGroup) HasTags() bool

HasTags returns a boolean if a field has been set.

func (VDBGroup) MarshalJSON

func (o VDBGroup) MarshalJSON() ([]byte, error)

func (*VDBGroup) SetId

func (o *VDBGroup) SetId(v string)

SetId sets field value

func (*VDBGroup) SetIsLocked

func (o *VDBGroup) SetIsLocked(v bool)

SetIsLocked gets a reference to the given bool and assigns it to the IsLocked field.

func (*VDBGroup) SetLockedBy

func (o *VDBGroup) SetLockedBy(v int64)

SetLockedBy gets a reference to the given int64 and assigns it to the LockedBy field.

func (*VDBGroup) SetLockedByName

func (o *VDBGroup) SetLockedByName(v string)

SetLockedByName gets a reference to the given string and assigns it to the LockedByName field.

func (*VDBGroup) SetName

func (o *VDBGroup) SetName(v string)

SetName sets field value

func (*VDBGroup) SetTags

func (o *VDBGroup) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*VDBGroup) SetVdbIds

func (o *VDBGroup) SetVdbIds(v []string)

SetVdbIds sets field value

func (VDBGroup) ToMap

func (o VDBGroup) ToMap() (map[string]interface{}, error)

type VDBGroupsApiService

type VDBGroupsApiService service

VDBGroupsApiService VDBGroupsApi service

func (*VDBGroupsApiService) CreateVdbGroup

CreateVdbGroup Create a new VDBGroup.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateVdbGroupRequest

func (*VDBGroupsApiService) CreateVdbGroupExecute

Execute executes the request

@return CreateVDBGroupResponse

func (*VDBGroupsApiService) CreateVdbGroupsTags

func (a *VDBGroupsApiService) CreateVdbGroupsTags(ctx context.Context, vdbGroupId string) ApiCreateVdbGroupsTagsRequest

CreateVdbGroupsTags Create tags for a VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiCreateVdbGroupsTagsRequest

func (*VDBGroupsApiService) CreateVdbGroupsTagsExecute

func (a *VDBGroupsApiService) CreateVdbGroupsTagsExecute(r ApiCreateVdbGroupsTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VDBGroupsApiService) DeleteVdbGroup

func (a *VDBGroupsApiService) DeleteVdbGroup(ctx context.Context, vdbGroupId string) ApiDeleteVdbGroupRequest

DeleteVdbGroup Delete a VDBGoup.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiDeleteVdbGroupRequest

func (*VDBGroupsApiService) DeleteVdbGroupExecute

func (a *VDBGroupsApiService) DeleteVdbGroupExecute(r ApiDeleteVdbGroupRequest) (*http.Response, error)

Execute executes the request

func (*VDBGroupsApiService) DeleteVdbGroupTags

func (a *VDBGroupsApiService) DeleteVdbGroupTags(ctx context.Context, vdbGroupId string) ApiDeleteVdbGroupTagsRequest

DeleteVdbGroupTags Delete tags for a VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiDeleteVdbGroupTagsRequest

func (*VDBGroupsApiService) DeleteVdbGroupTagsExecute

func (a *VDBGroupsApiService) DeleteVdbGroupTagsExecute(r ApiDeleteVdbGroupTagsRequest) (*http.Response, error)

Execute executes the request

func (*VDBGroupsApiService) GetBookmarksByVdbGroup

func (a *VDBGroupsApiService) GetBookmarksByVdbGroup(ctx context.Context, vdbGroupId string) ApiGetBookmarksByVdbGroupRequest

GetBookmarksByVdbGroup List bookmarks compatible with this VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiGetBookmarksByVdbGroupRequest

func (*VDBGroupsApiService) GetBookmarksByVdbGroupExecute

Execute executes the request

@return ListBookmarksByVDBGroupsResponse

func (*VDBGroupsApiService) GetVdbGroup

func (a *VDBGroupsApiService) GetVdbGroup(ctx context.Context, vdbGroupId string) ApiGetVdbGroupRequest

GetVdbGroup Get a VDBGroup by name.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiGetVdbGroupRequest

func (*VDBGroupsApiService) GetVdbGroupExecute

func (a *VDBGroupsApiService) GetVdbGroupExecute(r ApiGetVdbGroupRequest) (*VDBGroup, *http.Response, error)

Execute executes the request

@return VDBGroup

func (*VDBGroupsApiService) GetVdbGroupTags

func (a *VDBGroupsApiService) GetVdbGroupTags(ctx context.Context, vdbGroupId string) ApiGetVdbGroupTagsRequest

GetVdbGroupTags Get tags for a VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiGetVdbGroupTagsRequest

func (*VDBGroupsApiService) GetVdbGroupTagsExecute

func (a *VDBGroupsApiService) GetVdbGroupTagsExecute(r ApiGetVdbGroupTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VDBGroupsApiService) GetVdbGroups

GetVdbGroups List all VDBGroups.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVdbGroupsRequest

func (*VDBGroupsApiService) GetVdbGroupsExecute

Execute executes the request

@return ListVDBGroupsResponse

func (*VDBGroupsApiService) LockVdbGroup

func (a *VDBGroupsApiService) LockVdbGroup(ctx context.Context, vdbGroupId string) ApiLockVdbGroupRequest

LockVdbGroup Lock a VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiLockVdbGroupRequest

func (*VDBGroupsApiService) LockVdbGroupExecute

func (a *VDBGroupsApiService) LockVdbGroupExecute(r ApiLockVdbGroupRequest) (*VDBGroup, *http.Response, error)

Execute executes the request

@return VDBGroup

func (*VDBGroupsApiService) ProvisionVdbGroupFromBookmark

func (a *VDBGroupsApiService) ProvisionVdbGroupFromBookmark(ctx context.Context) ApiProvisionVdbGroupFromBookmarkRequest

ProvisionVdbGroupFromBookmark Provision a new VDB Group from a Bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbGroupFromBookmarkRequest

func (*VDBGroupsApiService) ProvisionVdbGroupFromBookmarkExecute

Execute executes the request

@return ProvisionVDBGroupFromBookmarkResponse

func (*VDBGroupsApiService) RefreshVdbGroup

func (a *VDBGroupsApiService) RefreshVdbGroup(ctx context.Context, vdbGroupId string) ApiRefreshVdbGroupRequest

RefreshVdbGroup Refresh a VDBGroup.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiRefreshVdbGroupRequest

func (*VDBGroupsApiService) RefreshVdbGroupExecute

Execute executes the request

@return RefreshVDBGroupResponse

func (*VDBGroupsApiService) RollbackVdbGroup

func (a *VDBGroupsApiService) RollbackVdbGroup(ctx context.Context, vdbGroupId string) ApiRollbackVdbGroupRequest

RollbackVdbGroup Rollback a VDBGroup.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiRollbackVdbGroupRequest

func (*VDBGroupsApiService) RollbackVdbGroupExecute

Execute executes the request

@return RollbackVDBGroupResponse

func (*VDBGroupsApiService) SearchBookmarksByVdbGroup

func (a *VDBGroupsApiService) SearchBookmarksByVdbGroup(ctx context.Context, vdbGroupId string) ApiSearchBookmarksByVdbGroupRequest

SearchBookmarksByVdbGroup Search for bookmarks compatible with this VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiSearchBookmarksByVdbGroupRequest

func (*VDBGroupsApiService) SearchBookmarksByVdbGroupExecute

Execute executes the request

@return SearchBookmarksByVDBGroupsResponse

func (*VDBGroupsApiService) SearchVdbGroups

SearchVdbGroups Search for VDB Groups.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVdbGroupsRequest

func (*VDBGroupsApiService) SearchVdbGroupsExecute

Execute executes the request

@return SearchVDBGroupResponse

func (*VDBGroupsApiService) UnlockVdbGroup

func (a *VDBGroupsApiService) UnlockVdbGroup(ctx context.Context, vdbGroupId string) ApiUnlockVdbGroupRequest

UnlockVdbGroup Unlock a VDB Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiUnlockVdbGroupRequest

func (*VDBGroupsApiService) UnlockVdbGroupExecute

func (a *VDBGroupsApiService) UnlockVdbGroupExecute(r ApiUnlockVdbGroupRequest) (*VDBGroup, *http.Response, error)

Execute executes the request

@return VDBGroup

func (*VDBGroupsApiService) UpdateVdbGroupById

func (a *VDBGroupsApiService) UpdateVdbGroupById(ctx context.Context, vdbGroupId string) ApiUpdateVdbGroupByIdRequest

UpdateVdbGroupById Update values of a VDB group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbGroupId The ID or name of the VDBGroup.
@return ApiUpdateVdbGroupByIdRequest

func (*VDBGroupsApiService) UpdateVdbGroupByIdExecute

func (a *VDBGroupsApiService) UpdateVdbGroupByIdExecute(r ApiUpdateVdbGroupByIdRequest) (*VDBGroup, *http.Response, error)

Execute executes the request

@return VDBGroup

type VDBInventoryData

type VDBInventoryData struct {
	// The name of the engine the VDB belongs to.
	EngineName *string `json:"engine_name,omitempty"`
	// The name of the VDB.
	Name *string `json:"name,omitempty"`
	// The database type of the VDB.
	Type *string `json:"type,omitempty"`
	// The database version of the VDB.
	Version *string `json:"version,omitempty"`
	// The name of the VDB's parent dataset.
	ParentName *string `json:"parent_name,omitempty"`
	// A reference to the parent dataset of the VDB.
	ParentId *string `json:"parent_id,omitempty"`
	// The date the VDB was created.
	CreationDate *time.Time `json:"creation_date,omitempty"`
	// The date the VDB was last refreshed.
	LastRefreshedDate *time.Time `json:"last_refreshed_date,omitempty"`
	// The location for the VDB's parent timeflow.
	ParentTimeflowLocation *string `json:"parent_timeflow_location,omitempty"`
	// The timestamp for the VDB's parent timeflow.
	ParentTimeflowTimestamp *time.Time `json:"parent_timeflow_timestamp,omitempty"`
	// The timezone for the VDB's parent timeflow.
	ParentTimeflowTimezone *string `json:"parent_timeflow_timezone,omitempty"`
	// Whether the VDB is enabled
	Enabled *bool `json:"enabled,omitempty"`
	// The runtime status of the VDB. 'Unknown' if all attempts to connect to the dataset failed.
	Status *string `json:"status,omitempty"`
	// The actual space used by the VDB, in bytes.
	StorageSize *int64 `json:"storage_size,omitempty"`
}

VDBInventoryData struct for VDBInventoryData

func NewVDBInventoryData

func NewVDBInventoryData() *VDBInventoryData

NewVDBInventoryData instantiates a new VDBInventoryData 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 NewVDBInventoryDataWithDefaults

func NewVDBInventoryDataWithDefaults() *VDBInventoryData

NewVDBInventoryDataWithDefaults instantiates a new VDBInventoryData 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 (*VDBInventoryData) GetCreationDate

func (o *VDBInventoryData) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*VDBInventoryData) GetCreationDateOk

func (o *VDBInventoryData) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetEnabled

func (o *VDBInventoryData) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*VDBInventoryData) GetEnabledOk

func (o *VDBInventoryData) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetEngineName

func (o *VDBInventoryData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*VDBInventoryData) GetEngineNameOk

func (o *VDBInventoryData) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetLastRefreshedDate

func (o *VDBInventoryData) GetLastRefreshedDate() time.Time

GetLastRefreshedDate returns the LastRefreshedDate field value if set, zero value otherwise.

func (*VDBInventoryData) GetLastRefreshedDateOk

func (o *VDBInventoryData) GetLastRefreshedDateOk() (*time.Time, bool)

GetLastRefreshedDateOk returns a tuple with the LastRefreshedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetName

func (o *VDBInventoryData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VDBInventoryData) GetNameOk

func (o *VDBInventoryData) 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.

func (*VDBInventoryData) GetParentId

func (o *VDBInventoryData) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentIdOk

func (o *VDBInventoryData) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetParentName

func (o *VDBInventoryData) GetParentName() string

GetParentName returns the ParentName field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentNameOk

func (o *VDBInventoryData) GetParentNameOk() (*string, bool)

GetParentNameOk returns a tuple with the ParentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetParentTimeflowLocation

func (o *VDBInventoryData) GetParentTimeflowLocation() string

GetParentTimeflowLocation returns the ParentTimeflowLocation field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowLocationOk

func (o *VDBInventoryData) GetParentTimeflowLocationOk() (*string, bool)

GetParentTimeflowLocationOk returns a tuple with the ParentTimeflowLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetParentTimeflowTimestamp

func (o *VDBInventoryData) GetParentTimeflowTimestamp() time.Time

GetParentTimeflowTimestamp returns the ParentTimeflowTimestamp field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowTimestampOk

func (o *VDBInventoryData) GetParentTimeflowTimestampOk() (*time.Time, bool)

GetParentTimeflowTimestampOk returns a tuple with the ParentTimeflowTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetParentTimeflowTimezone

func (o *VDBInventoryData) GetParentTimeflowTimezone() string

GetParentTimeflowTimezone returns the ParentTimeflowTimezone field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowTimezoneOk

func (o *VDBInventoryData) GetParentTimeflowTimezoneOk() (*string, bool)

GetParentTimeflowTimezoneOk returns a tuple with the ParentTimeflowTimezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetStatus

func (o *VDBInventoryData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*VDBInventoryData) GetStatusOk

func (o *VDBInventoryData) 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.

func (*VDBInventoryData) GetStorageSize

func (o *VDBInventoryData) GetStorageSize() int64

GetStorageSize returns the StorageSize field value if set, zero value otherwise.

func (*VDBInventoryData) GetStorageSizeOk

func (o *VDBInventoryData) GetStorageSizeOk() (*int64, bool)

GetStorageSizeOk returns a tuple with the StorageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) GetType

func (o *VDBInventoryData) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*VDBInventoryData) GetTypeOk

func (o *VDBInventoryData) 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.

func (*VDBInventoryData) GetVersion

func (o *VDBInventoryData) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VDBInventoryData) GetVersionOk

func (o *VDBInventoryData) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryData) HasCreationDate

func (o *VDBInventoryData) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*VDBInventoryData) HasEnabled

func (o *VDBInventoryData) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*VDBInventoryData) HasEngineName

func (o *VDBInventoryData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*VDBInventoryData) HasLastRefreshedDate

func (o *VDBInventoryData) HasLastRefreshedDate() bool

HasLastRefreshedDate returns a boolean if a field has been set.

func (*VDBInventoryData) HasName

func (o *VDBInventoryData) HasName() bool

HasName returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentId

func (o *VDBInventoryData) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentName

func (o *VDBInventoryData) HasParentName() bool

HasParentName returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowLocation

func (o *VDBInventoryData) HasParentTimeflowLocation() bool

HasParentTimeflowLocation returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowTimestamp

func (o *VDBInventoryData) HasParentTimeflowTimestamp() bool

HasParentTimeflowTimestamp returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowTimezone

func (o *VDBInventoryData) HasParentTimeflowTimezone() bool

HasParentTimeflowTimezone returns a boolean if a field has been set.

func (*VDBInventoryData) HasStatus

func (o *VDBInventoryData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VDBInventoryData) HasStorageSize

func (o *VDBInventoryData) HasStorageSize() bool

HasStorageSize returns a boolean if a field has been set.

func (*VDBInventoryData) HasType

func (o *VDBInventoryData) HasType() bool

HasType returns a boolean if a field has been set.

func (*VDBInventoryData) HasVersion

func (o *VDBInventoryData) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VDBInventoryData) MarshalJSON

func (o VDBInventoryData) MarshalJSON() ([]byte, error)

func (*VDBInventoryData) SetCreationDate

func (o *VDBInventoryData) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.

func (*VDBInventoryData) SetEnabled

func (o *VDBInventoryData) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*VDBInventoryData) SetEngineName

func (o *VDBInventoryData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*VDBInventoryData) SetLastRefreshedDate

func (o *VDBInventoryData) SetLastRefreshedDate(v time.Time)

SetLastRefreshedDate gets a reference to the given time.Time and assigns it to the LastRefreshedDate field.

func (*VDBInventoryData) SetName

func (o *VDBInventoryData) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VDBInventoryData) SetParentId

func (o *VDBInventoryData) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*VDBInventoryData) SetParentName

func (o *VDBInventoryData) SetParentName(v string)

SetParentName gets a reference to the given string and assigns it to the ParentName field.

func (*VDBInventoryData) SetParentTimeflowLocation

func (o *VDBInventoryData) SetParentTimeflowLocation(v string)

SetParentTimeflowLocation gets a reference to the given string and assigns it to the ParentTimeflowLocation field.

func (*VDBInventoryData) SetParentTimeflowTimestamp

func (o *VDBInventoryData) SetParentTimeflowTimestamp(v time.Time)

SetParentTimeflowTimestamp gets a reference to the given time.Time and assigns it to the ParentTimeflowTimestamp field.

func (*VDBInventoryData) SetParentTimeflowTimezone

func (o *VDBInventoryData) SetParentTimeflowTimezone(v string)

SetParentTimeflowTimezone gets a reference to the given string and assigns it to the ParentTimeflowTimezone field.

func (*VDBInventoryData) SetStatus

func (o *VDBInventoryData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*VDBInventoryData) SetStorageSize

func (o *VDBInventoryData) SetStorageSize(v int64)

SetStorageSize gets a reference to the given int64 and assigns it to the StorageSize field.

func (*VDBInventoryData) SetType

func (o *VDBInventoryData) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*VDBInventoryData) SetVersion

func (o *VDBInventoryData) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (VDBInventoryData) ToMap

func (o VDBInventoryData) ToMap() (map[string]interface{}, error)

type VDBInventoryReportResponse

type VDBInventoryReportResponse struct {
	Items            []VDBInventoryData         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

VDBInventoryReportResponse struct for VDBInventoryReportResponse

func NewVDBInventoryReportResponse

func NewVDBInventoryReportResponse() *VDBInventoryReportResponse

NewVDBInventoryReportResponse instantiates a new VDBInventoryReportResponse 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 NewVDBInventoryReportResponseWithDefaults

func NewVDBInventoryReportResponseWithDefaults() *VDBInventoryReportResponse

NewVDBInventoryReportResponseWithDefaults instantiates a new VDBInventoryReportResponse 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 (*VDBInventoryReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*VDBInventoryReportResponse) GetItemsOk

func (o *VDBInventoryReportResponse) GetItemsOk() ([]VDBInventoryData, 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.

func (*VDBInventoryReportResponse) GetResponseMetadata

func (o *VDBInventoryReportResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*VDBInventoryReportResponse) GetResponseMetadataOk

func (o *VDBInventoryReportResponse) GetResponseMetadataOk() (*PaginatedResponseMetadata, bool)

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VDBInventoryReportResponse) HasItems

func (o *VDBInventoryReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*VDBInventoryReportResponse) HasResponseMetadata

func (o *VDBInventoryReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (VDBInventoryReportResponse) MarshalJSON

func (o VDBInventoryReportResponse) MarshalJSON() ([]byte, error)

func (*VDBInventoryReportResponse) SetItems

SetItems gets a reference to the given []VDBInventoryData and assigns it to the Items field.

func (*VDBInventoryReportResponse) SetResponseMetadata

func (o *VDBInventoryReportResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (VDBInventoryReportResponse) ToMap

func (o VDBInventoryReportResponse) ToMap() (map[string]interface{}, error)

type VDBsApiService

type VDBsApiService service

VDBsApiService VDBsApi service

func (*VDBsApiService) CreateVdbTags

func (a *VDBsApiService) CreateVdbTags(ctx context.Context, vdbId string) ApiCreateVdbTagsRequest

CreateVdbTags Create tags for a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiCreateVdbTagsRequest

func (*VDBsApiService) CreateVdbTagsExecute

func (a *VDBsApiService) CreateVdbTagsExecute(r ApiCreateVdbTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VDBsApiService) DeleteVdb

func (a *VDBsApiService) DeleteVdb(ctx context.Context, vdbId string) ApiDeleteVdbRequest

DeleteVdb Delete a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiDeleteVdbRequest

func (*VDBsApiService) DeleteVdbExecute

Execute executes the request

@return DeleteVDBResponse

func (*VDBsApiService) DeleteVdbTags

func (a *VDBsApiService) DeleteVdbTags(ctx context.Context, vdbId string) ApiDeleteVdbTagsRequest

DeleteVdbTags Delete tags for a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiDeleteVdbTagsRequest

func (*VDBsApiService) DeleteVdbTagsExecute

func (a *VDBsApiService) DeleteVdbTagsExecute(r ApiDeleteVdbTagsRequest) (*http.Response, error)

Execute executes the request

func (*VDBsApiService) DisableVdb

func (a *VDBsApiService) DisableVdb(ctx context.Context, vdbId string) ApiDisableVdbRequest

DisableVdb Disable a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiDisableVdbRequest

func (*VDBsApiService) DisableVdbExecute

Execute executes the request

@return DisableVDBResponse

func (*VDBsApiService) EnableVdb

func (a *VDBsApiService) EnableVdb(ctx context.Context, vdbId string) ApiEnableVdbRequest

EnableVdb Enable a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiEnableVdbRequest

func (*VDBsApiService) EnableVdbExecute

Execute executes the request

@return EnableVDBResponse

func (*VDBsApiService) GetBookmarksByVdb

func (a *VDBsApiService) GetBookmarksByVdb(ctx context.Context, vdbId string) ApiGetBookmarksByVdbRequest

GetBookmarksByVdb List Bookmarks compatible with this VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiGetBookmarksByVdbRequest

func (*VDBsApiService) GetBookmarksByVdbExecute

Execute executes the request

@return ListBookmarksByVDBResponse

func (*VDBsApiService) GetTagsVdb

func (a *VDBsApiService) GetTagsVdb(ctx context.Context, vdbId string) ApiGetTagsVdbRequest

GetTagsVdb Get tags for a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiGetTagsVdbRequest

func (*VDBsApiService) GetTagsVdbExecute

func (a *VDBsApiService) GetTagsVdbExecute(r ApiGetTagsVdbRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VDBsApiService) GetVdbById

func (a *VDBsApiService) GetVdbById(ctx context.Context, vdbId string) ApiGetVdbByIdRequest

GetVdbById Get a VDB by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiGetVdbByIdRequest

func (*VDBsApiService) GetVdbByIdExecute

func (a *VDBsApiService) GetVdbByIdExecute(r ApiGetVdbByIdRequest) (*VDB, *http.Response, error)

Execute executes the request

@return VDB

func (*VDBsApiService) GetVdbSnapshots

func (a *VDBsApiService) GetVdbSnapshots(ctx context.Context, vdbId string) ApiGetVdbSnapshotsRequest

GetVdbSnapshots List Snapshots for a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiGetVdbSnapshotsRequest

func (*VDBsApiService) GetVdbSnapshotsExecute

Execute executes the request

@return ListSnapshotsResponse

func (*VDBsApiService) GetVdbs

GetVdbs List all vdbs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVdbsRequest

func (*VDBsApiService) GetVdbsExecute

Execute executes the request

@return ListVDBsResponse

func (*VDBsApiService) LockVdb

func (a *VDBsApiService) LockVdb(ctx context.Context, vdbId string) ApiLockVdbRequest

LockVdb Lock a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiLockVdbRequest

func (*VDBsApiService) LockVdbExecute

func (a *VDBsApiService) LockVdbExecute(r ApiLockVdbRequest) (*VDB, *http.Response, error)

Execute executes the request

@return VDB

func (*VDBsApiService) ProvisionVdbByLocation

func (a *VDBsApiService) ProvisionVdbByLocation(ctx context.Context) ApiProvisionVdbByLocationRequest

ProvisionVdbByLocation Provision a new VDB by location.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbByLocationRequest

func (*VDBsApiService) ProvisionVdbByLocationDefaults

func (a *VDBsApiService) ProvisionVdbByLocationDefaults(ctx context.Context) ApiProvisionVdbByLocationDefaultsRequest

ProvisionVdbByLocationDefaults Get default provision parameters for provisioning a new VDB by location.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbByLocationDefaultsRequest

func (*VDBsApiService) ProvisionVdbByLocationDefaultsExecute

Execute executes the request

@return ProvisionVDBByLocationParameters

func (*VDBsApiService) ProvisionVdbByLocationExecute

func (a *VDBsApiService) ProvisionVdbByLocationExecute(r ApiProvisionVdbByLocationRequest) (*ProvisionVDBResponse, *http.Response, error)

Execute executes the request

@return ProvisionVDBResponse

func (*VDBsApiService) ProvisionVdbBySnapshot

func (a *VDBsApiService) ProvisionVdbBySnapshot(ctx context.Context) ApiProvisionVdbBySnapshotRequest

ProvisionVdbBySnapshot Provision a new VDB by snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbBySnapshotRequest

func (*VDBsApiService) ProvisionVdbBySnapshotDefaults

func (a *VDBsApiService) ProvisionVdbBySnapshotDefaults(ctx context.Context) ApiProvisionVdbBySnapshotDefaultsRequest

ProvisionVdbBySnapshotDefaults Get default provision parameters for provisioning a new VDB by snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbBySnapshotDefaultsRequest

func (*VDBsApiService) ProvisionVdbBySnapshotDefaultsExecute

Execute executes the request

@return ProvisionVDBBySnapshotParameters

func (*VDBsApiService) ProvisionVdbBySnapshotExecute

func (a *VDBsApiService) ProvisionVdbBySnapshotExecute(r ApiProvisionVdbBySnapshotRequest) (*ProvisionVDBResponse, *http.Response, error)

Execute executes the request

@return ProvisionVDBResponse

func (*VDBsApiService) ProvisionVdbByTimestamp

func (a *VDBsApiService) ProvisionVdbByTimestamp(ctx context.Context) ApiProvisionVdbByTimestampRequest

ProvisionVdbByTimestamp Provision a new VDB by timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbByTimestampRequest

func (*VDBsApiService) ProvisionVdbByTimestampDefaults

func (a *VDBsApiService) ProvisionVdbByTimestampDefaults(ctx context.Context) ApiProvisionVdbByTimestampDefaultsRequest

ProvisionVdbByTimestampDefaults Get default provision parameters for provisioning a new VDB by timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbByTimestampDefaultsRequest

func (*VDBsApiService) ProvisionVdbByTimestampDefaultsExecute

Execute executes the request

@return ProvisionVDBByTimestampParameters

func (*VDBsApiService) ProvisionVdbByTimestampExecute

func (a *VDBsApiService) ProvisionVdbByTimestampExecute(r ApiProvisionVdbByTimestampRequest) (*ProvisionVDBResponse, *http.Response, error)

Execute executes the request

@return ProvisionVDBResponse

func (*VDBsApiService) ProvisionVdbFromBookmark

func (a *VDBsApiService) ProvisionVdbFromBookmark(ctx context.Context) ApiProvisionVdbFromBookmarkRequest

ProvisionVdbFromBookmark Provision a new VDB from a bookmark with a single VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbFromBookmarkRequest

func (*VDBsApiService) ProvisionVdbFromBookmarkDefaults

func (a *VDBsApiService) ProvisionVdbFromBookmarkDefaults(ctx context.Context) ApiProvisionVdbFromBookmarkDefaultsRequest

ProvisionVdbFromBookmarkDefaults Get default provision parameters for provisioning a new VDB from a bookmark.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProvisionVdbFromBookmarkDefaultsRequest

func (*VDBsApiService) ProvisionVdbFromBookmarkDefaultsExecute

Execute executes the request

@return ProvisionVDBFromBookmarkParameters

func (*VDBsApiService) ProvisionVdbFromBookmarkExecute

func (a *VDBsApiService) ProvisionVdbFromBookmarkExecute(r ApiProvisionVdbFromBookmarkRequest) (*ProvisionVDBResponse, *http.Response, error)

Execute executes the request

@return ProvisionVDBResponse

func (*VDBsApiService) RefreshVdbByLocation

func (a *VDBsApiService) RefreshVdbByLocation(ctx context.Context, vdbId string) ApiRefreshVdbByLocationRequest

RefreshVdbByLocation Refresh a VDB by location.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRefreshVdbByLocationRequest

func (*VDBsApiService) RefreshVdbByLocationExecute

Execute executes the request

@return RefreshVDBByLocationResponse

func (*VDBsApiService) RefreshVdbBySnapshot

func (a *VDBsApiService) RefreshVdbBySnapshot(ctx context.Context, vdbId string) ApiRefreshVdbBySnapshotRequest

RefreshVdbBySnapshot Refresh a VDB by snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRefreshVdbBySnapshotRequest

func (*VDBsApiService) RefreshVdbBySnapshotExecute

Execute executes the request

@return RefreshVDBBySnapshotResponse

func (*VDBsApiService) RefreshVdbByTimestamp

func (a *VDBsApiService) RefreshVdbByTimestamp(ctx context.Context, vdbId string) ApiRefreshVdbByTimestampRequest

RefreshVdbByTimestamp Refresh a VDB by timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRefreshVdbByTimestampRequest

func (*VDBsApiService) RefreshVdbByTimestampExecute

Execute executes the request

@return RefreshVDBByTimestampResponse

func (*VDBsApiService) RefreshVdbFromBookmark

func (a *VDBsApiService) RefreshVdbFromBookmark(ctx context.Context, vdbId string) ApiRefreshVdbFromBookmarkRequest

RefreshVdbFromBookmark Refresh a VDB from bookmark with a single VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRefreshVdbFromBookmarkRequest

func (*VDBsApiService) RefreshVdbFromBookmarkExecute

Execute executes the request

@return RefreshVDBFromBookmarkResponse

func (*VDBsApiService) RollbackVdbBySnapshot

func (a *VDBsApiService) RollbackVdbBySnapshot(ctx context.Context, vdbId string) ApiRollbackVdbBySnapshotRequest

RollbackVdbBySnapshot Rollback a VDB by snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRollbackVdbBySnapshotRequest

Deprecated

func (*VDBsApiService) RollbackVdbBySnapshotExecute

Execute executes the request

@return RollbackVDBBySnapshotResponse

Deprecated

func (*VDBsApiService) RollbackVdbByTimestamp

func (a *VDBsApiService) RollbackVdbByTimestamp(ctx context.Context, vdbId string) ApiRollbackVdbByTimestampRequest

RollbackVdbByTimestamp Rollback a VDB by timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRollbackVdbByTimestampRequest

Deprecated

func (*VDBsApiService) RollbackVdbByTimestampExecute

Execute executes the request

@return RollbackVDBByTimestampResponse

Deprecated

func (*VDBsApiService) RollbackVdbFromBookmark

func (a *VDBsApiService) RollbackVdbFromBookmark(ctx context.Context, vdbId string) ApiRollbackVdbFromBookmarkRequest

RollbackVdbFromBookmark Rollback a VDB from a bookmark with only the same VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiRollbackVdbFromBookmarkRequest

Deprecated

func (*VDBsApiService) RollbackVdbFromBookmarkExecute

Execute executes the request

@return RollbackVDBFromBookmarkResponse

Deprecated

func (*VDBsApiService) SearchBookmarksByVdb

func (a *VDBsApiService) SearchBookmarksByVdb(ctx context.Context, vdbId string) ApiSearchBookmarksByVdbRequest

SearchBookmarksByVdb Search Bookmarks compatible with this VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiSearchBookmarksByVdbRequest

func (*VDBsApiService) SearchBookmarksByVdbExecute

Execute executes the request

@return SearchBookmarksByVDBResponse

func (*VDBsApiService) SearchVdbs

SearchVdbs Search for VDBs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVdbsRequest

func (*VDBsApiService) SearchVdbsExecute

Execute executes the request

@return SearchVDBsResponse

func (*VDBsApiService) SnapshotVdb

func (a *VDBsApiService) SnapshotVdb(ctx context.Context, vdbId string) ApiSnapshotVdbRequest

SnapshotVdb Snapshot a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiSnapshotVdbRequest

func (*VDBsApiService) SnapshotVdbExecute

Execute executes the request

@return SnapshotVDBResponse

func (*VDBsApiService) StartVdb

func (a *VDBsApiService) StartVdb(ctx context.Context, vdbId string) ApiStartVdbRequest

StartVdb Start a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiStartVdbRequest

func (*VDBsApiService) StartVdbExecute

Execute executes the request

@return StartVDBResponse

func (*VDBsApiService) StopVdb

func (a *VDBsApiService) StopVdb(ctx context.Context, vdbId string) ApiStopVdbRequest

StopVdb Stop a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiStopVdbRequest

func (*VDBsApiService) StopVdbExecute

Execute executes the request

@return StopVDBResponse

func (*VDBsApiService) SwitchTimeflow

func (a *VDBsApiService) SwitchTimeflow(ctx context.Context, vdbId string) ApiSwitchTimeflowRequest

SwitchTimeflow Switches the current timeflow of a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiSwitchTimeflowRequest

func (*VDBsApiService) SwitchTimeflowExecute

Execute executes the request

@return SwitchTimeflowResponse

func (*VDBsApiService) UnlockVdb

func (a *VDBsApiService) UnlockVdb(ctx context.Context, vdbId string) ApiUnlockVdbRequest

UnlockVdb Unlock a VDB.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiUnlockVdbRequest

func (*VDBsApiService) UnlockVdbExecute

func (a *VDBsApiService) UnlockVdbExecute(r ApiUnlockVdbRequest) (*VDB, *http.Response, error)

Execute executes the request

@return VDB

func (*VDBsApiService) UpdateVdbById

func (a *VDBsApiService) UpdateVdbById(ctx context.Context, vdbId string) ApiUpdateVdbByIdRequest

UpdateVdbById Update values of a VDB

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param vdbId The ID of the VDB.
@return ApiUpdateVdbByIdRequest

func (*VDBsApiService) UpdateVdbByIdExecute

Execute executes the request

@return UpdateVDBResponse

type ValidateJavaParameters

type ValidateJavaParameters struct {
	// Path pointing to java home on the remote machine.
	JavaHome string `json:"java_home"`
	// SSH port of the remote host machine that will be used to establish SSH connection.
	Port NullableInt32 `json:"port"`
	// The username of the user that will be used to connect to the remote host machine.
	Username *string `json:"username,omitempty"`
	// The password of the user that will be used to connect to the remote host machine.
	Password *string `json:"password,omitempty"`
	// Hostname of the remote host machine that will be used to establish connection.
	HostName string `json:"host_name"`
	// Whether to use public key authentication.
	UseEnginePublicKey *bool `json:"use_engine_public_key,omitempty"`
	// The DCT id or name of the vault from which to read the host credentials.
	VaultId *string `json:"vault_id,omitempty"`
	// Vault engine name where the credential is stored.
	HashicorpVaultEngine *string `json:"hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored.
	HashicorpVaultSecretPath *string `json:"hashicorp_vault_secret_path,omitempty"`
	// Key for the username in the key-value store.
	HashicorpVaultUsernameKey *string `json:"hashicorp_vault_username_key,omitempty"`
	// Key for the password in the key-value store.
	HashicorpVaultSecretKey *string `json:"hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultName *string `json:"azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultUsernameKey *string `json:"azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (ORACLE, ASE and MSSQL_DOMAIN_USER only).
	AzureVaultSecretKey *string `json:"azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault.
	CyberarkVaultQueryString *string `json:"cyberark_vault_query_string,omitempty"`
	// Whether to use kerberos authentication.
	UseKerberosAuthentication *bool `json:"use_kerberos_authentication,omitempty"`
}

ValidateJavaParameters Parameters to validate java path for the remote host.

func NewValidateJavaParameters

func NewValidateJavaParameters(javaHome string, port NullableInt32, hostName string) *ValidateJavaParameters

NewValidateJavaParameters instantiates a new ValidateJavaParameters 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 NewValidateJavaParametersWithDefaults

func NewValidateJavaParametersWithDefaults() *ValidateJavaParameters

NewValidateJavaParametersWithDefaults instantiates a new ValidateJavaParameters 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 (*ValidateJavaParameters) GetAzureVaultName

func (o *ValidateJavaParameters) GetAzureVaultName() string

GetAzureVaultName returns the AzureVaultName field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetAzureVaultNameOk

func (o *ValidateJavaParameters) GetAzureVaultNameOk() (*string, bool)

GetAzureVaultNameOk returns a tuple with the AzureVaultName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetAzureVaultSecretKey

func (o *ValidateJavaParameters) GetAzureVaultSecretKey() string

GetAzureVaultSecretKey returns the AzureVaultSecretKey field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetAzureVaultSecretKeyOk

func (o *ValidateJavaParameters) GetAzureVaultSecretKeyOk() (*string, bool)

GetAzureVaultSecretKeyOk returns a tuple with the AzureVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetAzureVaultUsernameKey

func (o *ValidateJavaParameters) GetAzureVaultUsernameKey() string

GetAzureVaultUsernameKey returns the AzureVaultUsernameKey field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetAzureVaultUsernameKeyOk

func (o *ValidateJavaParameters) GetAzureVaultUsernameKeyOk() (*string, bool)

GetAzureVaultUsernameKeyOk returns a tuple with the AzureVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetCyberarkVaultQueryString

func (o *ValidateJavaParameters) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetCyberarkVaultQueryStringOk

func (o *ValidateJavaParameters) GetCyberarkVaultQueryStringOk() (*string, bool)

GetCyberarkVaultQueryStringOk returns a tuple with the CyberarkVaultQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetHashicorpVaultEngine

func (o *ValidateJavaParameters) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetHashicorpVaultEngineOk

func (o *ValidateJavaParameters) GetHashicorpVaultEngineOk() (*string, bool)

GetHashicorpVaultEngineOk returns a tuple with the HashicorpVaultEngine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetHashicorpVaultSecretKey

func (o *ValidateJavaParameters) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetHashicorpVaultSecretKeyOk

func (o *ValidateJavaParameters) GetHashicorpVaultSecretKeyOk() (*string, bool)

GetHashicorpVaultSecretKeyOk returns a tuple with the HashicorpVaultSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetHashicorpVaultSecretPath

func (o *ValidateJavaParameters) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetHashicorpVaultSecretPathOk

func (o *ValidateJavaParameters) GetHashicorpVaultSecretPathOk() (*string, bool)

GetHashicorpVaultSecretPathOk returns a tuple with the HashicorpVaultSecretPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetHashicorpVaultUsernameKey

func (o *ValidateJavaParameters) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetHashicorpVaultUsernameKeyOk

func (o *ValidateJavaParameters) GetHashicorpVaultUsernameKeyOk() (*string, bool)

GetHashicorpVaultUsernameKeyOk returns a tuple with the HashicorpVaultUsernameKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetHostName

func (o *ValidateJavaParameters) GetHostName() string

GetHostName returns the HostName field value

func (*ValidateJavaParameters) GetHostNameOk

func (o *ValidateJavaParameters) GetHostNameOk() (*string, bool)

GetHostNameOk returns a tuple with the HostName field value and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetJavaHome

func (o *ValidateJavaParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value

func (*ValidateJavaParameters) GetJavaHomeOk

func (o *ValidateJavaParameters) GetJavaHomeOk() (*string, bool)

GetJavaHomeOk returns a tuple with the JavaHome field value and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetPassword

func (o *ValidateJavaParameters) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetPasswordOk

func (o *ValidateJavaParameters) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetPort

func (o *ValidateJavaParameters) GetPort() int32

GetPort returns the Port field value If the value is explicit nil, the zero value for int32 will be returned

func (*ValidateJavaParameters) GetPortOk

func (o *ValidateJavaParameters) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port 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 (*ValidateJavaParameters) GetUseEnginePublicKey

func (o *ValidateJavaParameters) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetUseEnginePublicKeyOk

func (o *ValidateJavaParameters) GetUseEnginePublicKeyOk() (*bool, bool)

GetUseEnginePublicKeyOk returns a tuple with the UseEnginePublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetUseKerberosAuthentication

func (o *ValidateJavaParameters) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetUseKerberosAuthenticationOk

func (o *ValidateJavaParameters) GetUseKerberosAuthenticationOk() (*bool, bool)

GetUseKerberosAuthenticationOk returns a tuple with the UseKerberosAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) GetUsername

func (o *ValidateJavaParameters) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetUsernameOk

func (o *ValidateJavaParameters) 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.

func (*ValidateJavaParameters) GetVaultId

func (o *ValidateJavaParameters) GetVaultId() string

GetVaultId returns the VaultId field value if set, zero value otherwise.

func (*ValidateJavaParameters) GetVaultIdOk

func (o *ValidateJavaParameters) GetVaultIdOk() (*string, bool)

GetVaultIdOk returns a tuple with the VaultId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateJavaParameters) HasAzureVaultName

func (o *ValidateJavaParameters) HasAzureVaultName() bool

HasAzureVaultName returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasAzureVaultSecretKey

func (o *ValidateJavaParameters) HasAzureVaultSecretKey() bool

HasAzureVaultSecretKey returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasAzureVaultUsernameKey

func (o *ValidateJavaParameters) HasAzureVaultUsernameKey() bool

HasAzureVaultUsernameKey returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasCyberarkVaultQueryString

func (o *ValidateJavaParameters) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasHashicorpVaultEngine

func (o *ValidateJavaParameters) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasHashicorpVaultSecretKey

func (o *ValidateJavaParameters) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasHashicorpVaultSecretPath

func (o *ValidateJavaParameters) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasHashicorpVaultUsernameKey

func (o *ValidateJavaParameters) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasPassword

func (o *ValidateJavaParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasUseEnginePublicKey

func (o *ValidateJavaParameters) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasUseKerberosAuthentication

func (o *ValidateJavaParameters) HasUseKerberosAuthentication() bool

HasUseKerberosAuthentication returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasUsername

func (o *ValidateJavaParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*ValidateJavaParameters) HasVaultId

func (o *ValidateJavaParameters) HasVaultId() bool

HasVaultId returns a boolean if a field has been set.

func (ValidateJavaParameters) MarshalJSON

func (o ValidateJavaParameters) MarshalJSON() ([]byte, error)

func (*ValidateJavaParameters) SetAzureVaultName

func (o *ValidateJavaParameters) SetAzureVaultName(v string)

SetAzureVaultName gets a reference to the given string and assigns it to the AzureVaultName field.

func (*ValidateJavaParameters) SetAzureVaultSecretKey

func (o *ValidateJavaParameters) SetAzureVaultSecretKey(v string)

SetAzureVaultSecretKey gets a reference to the given string and assigns it to the AzureVaultSecretKey field.

func (*ValidateJavaParameters) SetAzureVaultUsernameKey

func (o *ValidateJavaParameters) SetAzureVaultUsernameKey(v string)

SetAzureVaultUsernameKey gets a reference to the given string and assigns it to the AzureVaultUsernameKey field.

func (*ValidateJavaParameters) SetCyberarkVaultQueryString

func (o *ValidateJavaParameters) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*ValidateJavaParameters) SetHashicorpVaultEngine

func (o *ValidateJavaParameters) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*ValidateJavaParameters) SetHashicorpVaultSecretKey

func (o *ValidateJavaParameters) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*ValidateJavaParameters) SetHashicorpVaultSecretPath

func (o *ValidateJavaParameters) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*ValidateJavaParameters) SetHashicorpVaultUsernameKey

func (o *ValidateJavaParameters) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*ValidateJavaParameters) SetHostName

func (o *ValidateJavaParameters) SetHostName(v string)

SetHostName sets field value

func (*ValidateJavaParameters) SetJavaHome

func (o *ValidateJavaParameters) SetJavaHome(v string)

SetJavaHome sets field value

func (*ValidateJavaParameters) SetPassword

func (o *ValidateJavaParameters) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ValidateJavaParameters) SetPort

func (o *ValidateJavaParameters) SetPort(v int32)

SetPort sets field value

func (*ValidateJavaParameters) SetUseEnginePublicKey

func (o *ValidateJavaParameters) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*ValidateJavaParameters) SetUseKerberosAuthentication

func (o *ValidateJavaParameters) SetUseKerberosAuthentication(v bool)

SetUseKerberosAuthentication gets a reference to the given bool and assigns it to the UseKerberosAuthentication field.

func (*ValidateJavaParameters) SetUsername

func (o *ValidateJavaParameters) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*ValidateJavaParameters) SetVaultId

func (o *ValidateJavaParameters) SetVaultId(v string)

SetVaultId gets a reference to the given string and assigns it to the VaultId field.

func (ValidateJavaParameters) ToMap

func (o ValidateJavaParameters) ToMap() (map[string]interface{}, error)

type ValidateJavaResponse

type ValidateJavaResponse struct {
	// A message describing the result of the connectivity check.
	Message string `json:"message"`
	// A status describing the status of the connectivity check.
	Status *string `json:"status,omitempty"`
}

ValidateJavaResponse The result of the validating java path on remote host.

func NewValidateJavaResponse

func NewValidateJavaResponse(message string) *ValidateJavaResponse

NewValidateJavaResponse instantiates a new ValidateJavaResponse 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 NewValidateJavaResponseWithDefaults

func NewValidateJavaResponseWithDefaults() *ValidateJavaResponse

NewValidateJavaResponseWithDefaults instantiates a new ValidateJavaResponse 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 (*ValidateJavaResponse) GetMessage

func (o *ValidateJavaResponse) GetMessage() string

GetMessage returns the Message field value

func (*ValidateJavaResponse) GetMessageOk

func (o *ValidateJavaResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*ValidateJavaResponse) GetStatus

func (o *ValidateJavaResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ValidateJavaResponse) GetStatusOk

func (o *ValidateJavaResponse) 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.

func (*ValidateJavaResponse) HasStatus

func (o *ValidateJavaResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ValidateJavaResponse) MarshalJSON

func (o ValidateJavaResponse) MarshalJSON() ([]byte, error)

func (*ValidateJavaResponse) SetMessage

func (o *ValidateJavaResponse) SetMessage(v string)

SetMessage sets field value

func (*ValidateJavaResponse) SetStatus

func (o *ValidateJavaResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (ValidateJavaResponse) ToMap

func (o ValidateJavaResponse) ToMap() (map[string]interface{}, error)

type VirtualDatasetHooks

type VirtualDatasetHooks struct {
	// The commands to execute on the target environment before refreshing the VDB.
	PreRefresh []Hook `json:"pre_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB.
	PostRefresh []Hook `json:"post_refresh,omitempty"`
	// The commands to execute on the target environment before refreshing the VDB with data from itself.
	PreSelfRefresh []Hook `json:"pre_self_refresh,omitempty"`
	// The commands to execute on the target environment after refreshing the VDB with data from itself.
	PostSelfRefresh []Hook `json:"post_self_refresh,omitempty"`
	// The commands to execute on the target environment before rewinding the VDB.
	// Deprecated
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	// Deprecated
	PostRollback []Hook `json:"post_rollback,omitempty"`
	// The commands to execute on the target environment when the VDB is created or refreshed.
	ConfigureClone []Hook `json:"configure_clone,omitempty"`
	// The commands to execute on the target environment before snapshotting a virtual source. These commands can quiesce any data prior to snapshotting.
	PreSnapshot []Hook `json:"pre_snapshot,omitempty"`
	// The commands to execute on the target environment after snapshotting a virtual source.
	PostSnapshot []Hook `json:"post_snapshot,omitempty"`
	// The commands to execute on the target environment before starting a virtual source.
	PreStart []Hook `json:"pre_start,omitempty"`
	// The commands to execute on the target environment after starting a virtual source.
	PostStart []Hook `json:"post_start,omitempty"`
	// The commands to execute on the target environment before stopping a virtual source.
	PreStop []Hook `json:"pre_stop,omitempty"`
	// The commands to execute on the target environment after stopping a virtual source.
	PostStop []Hook `json:"post_stop,omitempty"`
}

VirtualDatasetHooks VDB operation hooks.

func NewVirtualDatasetHooks

func NewVirtualDatasetHooks() *VirtualDatasetHooks

NewVirtualDatasetHooks instantiates a new VirtualDatasetHooks 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 NewVirtualDatasetHooksWithDefaults

func NewVirtualDatasetHooksWithDefaults() *VirtualDatasetHooks

NewVirtualDatasetHooksWithDefaults instantiates a new VirtualDatasetHooks 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 (*VirtualDatasetHooks) GetConfigureClone

func (o *VirtualDatasetHooks) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetConfigureCloneOk

func (o *VirtualDatasetHooks) GetConfigureCloneOk() ([]Hook, bool)

GetConfigureCloneOk returns a tuple with the ConfigureClone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPostRefresh

func (o *VirtualDatasetHooks) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostRefreshOk

func (o *VirtualDatasetHooks) GetPostRefreshOk() ([]Hook, bool)

GetPostRefreshOk returns a tuple with the PostRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPostRollback

func (o *VirtualDatasetHooks) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise. Deprecated

func (*VirtualDatasetHooks) GetPostRollbackOk

func (o *VirtualDatasetHooks) GetPostRollbackOk() ([]Hook, bool)

GetPostRollbackOk returns a tuple with the PostRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*VirtualDatasetHooks) GetPostSelfRefresh

func (o *VirtualDatasetHooks) GetPostSelfRefresh() []Hook

GetPostSelfRefresh returns the PostSelfRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostSelfRefreshOk

func (o *VirtualDatasetHooks) GetPostSelfRefreshOk() ([]Hook, bool)

GetPostSelfRefreshOk returns a tuple with the PostSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPostSnapshot

func (o *VirtualDatasetHooks) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostSnapshotOk

func (o *VirtualDatasetHooks) GetPostSnapshotOk() ([]Hook, bool)

GetPostSnapshotOk returns a tuple with the PostSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPostStart

func (o *VirtualDatasetHooks) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostStartOk

func (o *VirtualDatasetHooks) GetPostStartOk() ([]Hook, bool)

GetPostStartOk returns a tuple with the PostStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPostStop

func (o *VirtualDatasetHooks) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostStopOk

func (o *VirtualDatasetHooks) GetPostStopOk() ([]Hook, bool)

GetPostStopOk returns a tuple with the PostStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPreRefresh

func (o *VirtualDatasetHooks) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreRefreshOk

func (o *VirtualDatasetHooks) GetPreRefreshOk() ([]Hook, bool)

GetPreRefreshOk returns a tuple with the PreRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPreRollback

func (o *VirtualDatasetHooks) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise. Deprecated

func (*VirtualDatasetHooks) GetPreRollbackOk

func (o *VirtualDatasetHooks) GetPreRollbackOk() ([]Hook, bool)

GetPreRollbackOk returns a tuple with the PreRollback field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*VirtualDatasetHooks) GetPreSelfRefresh

func (o *VirtualDatasetHooks) GetPreSelfRefresh() []Hook

GetPreSelfRefresh returns the PreSelfRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreSelfRefreshOk

func (o *VirtualDatasetHooks) GetPreSelfRefreshOk() ([]Hook, bool)

GetPreSelfRefreshOk returns a tuple with the PreSelfRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPreSnapshot

func (o *VirtualDatasetHooks) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreSnapshotOk

func (o *VirtualDatasetHooks) GetPreSnapshotOk() ([]Hook, bool)

GetPreSnapshotOk returns a tuple with the PreSnapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPreStart

func (o *VirtualDatasetHooks) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreStartOk

func (o *VirtualDatasetHooks) GetPreStartOk() ([]Hook, bool)

GetPreStartOk returns a tuple with the PreStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) GetPreStop

func (o *VirtualDatasetHooks) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreStopOk

func (o *VirtualDatasetHooks) GetPreStopOk() ([]Hook, bool)

GetPreStopOk returns a tuple with the PreStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualDatasetHooks) HasConfigureClone

func (o *VirtualDatasetHooks) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostRefresh

func (o *VirtualDatasetHooks) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostRollback

func (o *VirtualDatasetHooks) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostSelfRefresh

func (o *VirtualDatasetHooks) HasPostSelfRefresh() bool

HasPostSelfRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostSnapshot

func (o *VirtualDatasetHooks) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostStart

func (o *VirtualDatasetHooks) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostStop

func (o *VirtualDatasetHooks) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreRefresh

func (o *VirtualDatasetHooks) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreRollback

func (o *VirtualDatasetHooks) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreSelfRefresh

func (o *VirtualDatasetHooks) HasPreSelfRefresh() bool

HasPreSelfRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreSnapshot

func (o *VirtualDatasetHooks) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreStart

func (o *VirtualDatasetHooks) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreStop

func (o *VirtualDatasetHooks) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (VirtualDatasetHooks) MarshalJSON

func (o VirtualDatasetHooks) MarshalJSON() ([]byte, error)

func (*VirtualDatasetHooks) SetConfigureClone

func (o *VirtualDatasetHooks) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*VirtualDatasetHooks) SetPostRefresh

func (o *VirtualDatasetHooks) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*VirtualDatasetHooks) SetPostRollback

func (o *VirtualDatasetHooks) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field. Deprecated

func (*VirtualDatasetHooks) SetPostSelfRefresh

func (o *VirtualDatasetHooks) SetPostSelfRefresh(v []Hook)

SetPostSelfRefresh gets a reference to the given []Hook and assigns it to the PostSelfRefresh field.

func (*VirtualDatasetHooks) SetPostSnapshot

func (o *VirtualDatasetHooks) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*VirtualDatasetHooks) SetPostStart

func (o *VirtualDatasetHooks) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*VirtualDatasetHooks) SetPostStop

func (o *VirtualDatasetHooks) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*VirtualDatasetHooks) SetPreRefresh

func (o *VirtualDatasetHooks) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*VirtualDatasetHooks) SetPreRollback

func (o *VirtualDatasetHooks) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field. Deprecated

func (*VirtualDatasetHooks) SetPreSelfRefresh

func (o *VirtualDatasetHooks) SetPreSelfRefresh(v []Hook)

SetPreSelfRefresh gets a reference to the given []Hook and assigns it to the PreSelfRefresh field.

func (*VirtualDatasetHooks) SetPreSnapshot

func (o *VirtualDatasetHooks) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*VirtualDatasetHooks) SetPreStart

func (o *VirtualDatasetHooks) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*VirtualDatasetHooks) SetPreStop

func (o *VirtualDatasetHooks) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (VirtualDatasetHooks) ToMap

func (o VirtualDatasetHooks) ToMap() (map[string]interface{}, error)

type VirtualizationPoliciesApiService

type VirtualizationPoliciesApiService service

VirtualizationPoliciesApiService VirtualizationPoliciesApi service

func (*VirtualizationPoliciesApiService) GetVirtualizationPolicyById

GetVirtualizationPolicyById Fetch a virtualization policy by Id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param policyId The ID of the Virtualization Policy.
@return ApiGetVirtualizationPolicyByIdRequest

func (*VirtualizationPoliciesApiService) GetVirtualizationPolicyByIdExecute

Execute executes the request

@return VirtualizationPolicy

func (*VirtualizationPoliciesApiService) ListVirtualizationPolicies

ListVirtualizationPolicies Fetch a list of all virtualization policies

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListVirtualizationPoliciesRequest

func (*VirtualizationPoliciesApiService) ListVirtualizationPoliciesExecute

Execute executes the request

@return ListVirtualizationPoliciesResponse

func (*VirtualizationPoliciesApiService) SearchVirtualizationPolicies

SearchVirtualizationPolicies Search Virtualization Policies.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchVirtualizationPoliciesRequest

func (*VirtualizationPoliciesApiService) SearchVirtualizationPoliciesExecute

Execute executes the request

@return SearchVirtualizationPoliciesResponse

type VirtualizationPolicy

type VirtualizationPolicy struct {
	Id        *string `json:"id,omitempty"`
	Name      *string `json:"name,omitempty"`
	Namespace *string `json:"namespace,omitempty"`
	// The namespace id of this virtualization policy.
	NamespaceId *string `json:"namespace_id,omitempty"`
	// The namespace name of this virtualization policy..
	NamespaceName *string `json:"namespace_name,omitempty"`
	// Is this a replicated object.
	IsReplica  *bool                    `json:"is_replica,omitempty"`
	EngineId   *string                  `json:"engine_id,omitempty"`
	PolicyType *string                  `json:"policy_type,omitempty"`
	TimezoneId *string                  `json:"timezone_id,omitempty"`
	Schedules  []VirtualizationSchedule `json:"schedules,omitempty"`
}

VirtualizationPolicy struct for VirtualizationPolicy

func NewVirtualizationPolicy

func NewVirtualizationPolicy() *VirtualizationPolicy

NewVirtualizationPolicy instantiates a new VirtualizationPolicy 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 NewVirtualizationPolicyWithDefaults

func NewVirtualizationPolicyWithDefaults() *VirtualizationPolicy

NewVirtualizationPolicyWithDefaults instantiates a new VirtualizationPolicy 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 (*VirtualizationPolicy) GetEngineId

func (o *VirtualizationPolicy) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetEngineIdOk

func (o *VirtualizationPolicy) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetId

func (o *VirtualizationPolicy) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetIdOk

func (o *VirtualizationPolicy) 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.

func (*VirtualizationPolicy) GetIsReplica

func (o *VirtualizationPolicy) GetIsReplica() bool

GetIsReplica returns the IsReplica field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetIsReplicaOk

func (o *VirtualizationPolicy) GetIsReplicaOk() (*bool, bool)

GetIsReplicaOk returns a tuple with the IsReplica field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetName

func (o *VirtualizationPolicy) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetNameOk

func (o *VirtualizationPolicy) 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.

func (*VirtualizationPolicy) GetNamespace

func (o *VirtualizationPolicy) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetNamespaceId

func (o *VirtualizationPolicy) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetNamespaceIdOk

func (o *VirtualizationPolicy) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetNamespaceName

func (o *VirtualizationPolicy) GetNamespaceName() string

GetNamespaceName returns the NamespaceName field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetNamespaceNameOk

func (o *VirtualizationPolicy) GetNamespaceNameOk() (*string, bool)

GetNamespaceNameOk returns a tuple with the NamespaceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetNamespaceOk

func (o *VirtualizationPolicy) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetPolicyType

func (o *VirtualizationPolicy) GetPolicyType() string

GetPolicyType returns the PolicyType field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetPolicyTypeOk

func (o *VirtualizationPolicy) GetPolicyTypeOk() (*string, bool)

GetPolicyTypeOk returns a tuple with the PolicyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetSchedules

func (o *VirtualizationPolicy) GetSchedules() []VirtualizationSchedule

GetSchedules returns the Schedules field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetSchedulesOk

func (o *VirtualizationPolicy) GetSchedulesOk() ([]VirtualizationSchedule, bool)

GetSchedulesOk returns a tuple with the Schedules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetTimezoneId

func (o *VirtualizationPolicy) GetTimezoneId() string

GetTimezoneId returns the TimezoneId field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetTimezoneIdOk

func (o *VirtualizationPolicy) GetTimezoneIdOk() (*string, bool)

GetTimezoneIdOk returns a tuple with the TimezoneId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationPolicy) HasEngineId

func (o *VirtualizationPolicy) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasId

func (o *VirtualizationPolicy) HasId() bool

HasId returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasIsReplica

func (o *VirtualizationPolicy) HasIsReplica() bool

HasIsReplica returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasName

func (o *VirtualizationPolicy) HasName() bool

HasName returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasNamespace

func (o *VirtualizationPolicy) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasNamespaceId

func (o *VirtualizationPolicy) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasNamespaceName

func (o *VirtualizationPolicy) HasNamespaceName() bool

HasNamespaceName returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasPolicyType

func (o *VirtualizationPolicy) HasPolicyType() bool

HasPolicyType returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasSchedules

func (o *VirtualizationPolicy) HasSchedules() bool

HasSchedules returns a boolean if a field has been set.

func (*VirtualizationPolicy) HasTimezoneId

func (o *VirtualizationPolicy) HasTimezoneId() bool

HasTimezoneId returns a boolean if a field has been set.

func (VirtualizationPolicy) MarshalJSON

func (o VirtualizationPolicy) MarshalJSON() ([]byte, error)

func (*VirtualizationPolicy) SetEngineId

func (o *VirtualizationPolicy) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*VirtualizationPolicy) SetId

func (o *VirtualizationPolicy) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VirtualizationPolicy) SetIsReplica

func (o *VirtualizationPolicy) SetIsReplica(v bool)

SetIsReplica gets a reference to the given bool and assigns it to the IsReplica field.

func (*VirtualizationPolicy) SetName

func (o *VirtualizationPolicy) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VirtualizationPolicy) SetNamespace

func (o *VirtualizationPolicy) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*VirtualizationPolicy) SetNamespaceId

func (o *VirtualizationPolicy) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*VirtualizationPolicy) SetNamespaceName

func (o *VirtualizationPolicy) SetNamespaceName(v string)

SetNamespaceName gets a reference to the given string and assigns it to the NamespaceName field.

func (*VirtualizationPolicy) SetPolicyType

func (o *VirtualizationPolicy) SetPolicyType(v string)

SetPolicyType gets a reference to the given string and assigns it to the PolicyType field.

func (*VirtualizationPolicy) SetSchedules

func (o *VirtualizationPolicy) SetSchedules(v []VirtualizationSchedule)

SetSchedules gets a reference to the given []VirtualizationSchedule and assigns it to the Schedules field.

func (*VirtualizationPolicy) SetTimezoneId

func (o *VirtualizationPolicy) SetTimezoneId(v string)

SetTimezoneId gets a reference to the given string and assigns it to the TimezoneId field.

func (VirtualizationPolicy) ToMap

func (o VirtualizationPolicy) ToMap() (map[string]interface{}, error)

type VirtualizationSchedule

type VirtualizationSchedule struct {
	CronString string `json:"cron_string"`
	CutoffTime int64  `json:"cutoff_time"`
}

VirtualizationSchedule struct for VirtualizationSchedule

func NewVirtualizationSchedule

func NewVirtualizationSchedule(cronString string, cutoffTime int64) *VirtualizationSchedule

NewVirtualizationSchedule instantiates a new VirtualizationSchedule 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 NewVirtualizationScheduleWithDefaults

func NewVirtualizationScheduleWithDefaults() *VirtualizationSchedule

NewVirtualizationScheduleWithDefaults instantiates a new VirtualizationSchedule 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 (*VirtualizationSchedule) GetCronString

func (o *VirtualizationSchedule) GetCronString() string

GetCronString returns the CronString field value

func (*VirtualizationSchedule) GetCronStringOk

func (o *VirtualizationSchedule) GetCronStringOk() (*string, bool)

GetCronStringOk returns a tuple with the CronString field value and a boolean to check if the value has been set.

func (*VirtualizationSchedule) GetCutoffTime

func (o *VirtualizationSchedule) GetCutoffTime() int64

GetCutoffTime returns the CutoffTime field value

func (*VirtualizationSchedule) GetCutoffTimeOk

func (o *VirtualizationSchedule) GetCutoffTimeOk() (*int64, bool)

GetCutoffTimeOk returns a tuple with the CutoffTime field value and a boolean to check if the value has been set.

func (VirtualizationSchedule) MarshalJSON

func (o VirtualizationSchedule) MarshalJSON() ([]byte, error)

func (*VirtualizationSchedule) SetCronString

func (o *VirtualizationSchedule) SetCronString(v string)

SetCronString sets field value

func (*VirtualizationSchedule) SetCutoffTime

func (o *VirtualizationSchedule) SetCutoffTime(v int64)

SetCutoffTime sets field value

func (VirtualizationSchedule) ToMap

func (o VirtualizationSchedule) ToMap() (map[string]interface{}, error)

type VirtualizationStorageSummaryData

type VirtualizationStorageSummaryData struct {
	// A reference to the engine.
	EngineId string `json:"engine_id"`
	// The engine name.
	EngineName string `json:"engine_name"`
	// The engine hostname.
	EngineHostname string `json:"engine_hostname"`
	// The total amount of storage allocated for engine objects and system metadata, in bytes.
	TotalCapacity *int64 `json:"total_capacity,omitempty"`
	// The amount of available storage, in bytes.
	FreeStorage *int64 `json:"free_storage,omitempty"`
	// The amount of storage used by engine objects and system metadata, in bytes.
	UsedStorage *int64 `json:"used_storage,omitempty"`
	// The percentage of storage used.
	UsedPercentage *float32 `json:"used_percentage,omitempty"`
	// The number of dSources on the engine.
	DsourceCount *int64 `json:"dsource_count,omitempty"`
	// The number of VDBs on the engine.
	VdbCount *int64 `json:"vdb_count,omitempty"`
	// The total number of dSources and VDBs on the engine.
	TotalObjectCount *int64 `json:"total_object_count,omitempty"`
}

VirtualizationStorageSummaryData struct for VirtualizationStorageSummaryData

func NewVirtualizationStorageSummaryData

func NewVirtualizationStorageSummaryData(engineId string, engineName string, engineHostname string) *VirtualizationStorageSummaryData

NewVirtualizationStorageSummaryData instantiates a new VirtualizationStorageSummaryData 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 NewVirtualizationStorageSummaryDataWithDefaults

func NewVirtualizationStorageSummaryDataWithDefaults() *VirtualizationStorageSummaryData

NewVirtualizationStorageSummaryDataWithDefaults instantiates a new VirtualizationStorageSummaryData 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 (*VirtualizationStorageSummaryData) GetDsourceCount

func (o *VirtualizationStorageSummaryData) GetDsourceCount() int64

GetDsourceCount returns the DsourceCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetDsourceCountOk

func (o *VirtualizationStorageSummaryData) GetDsourceCountOk() (*int64, bool)

GetDsourceCountOk returns a tuple with the DsourceCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetEngineHostname

func (o *VirtualizationStorageSummaryData) GetEngineHostname() string

GetEngineHostname returns the EngineHostname field value

func (*VirtualizationStorageSummaryData) GetEngineHostnameOk

func (o *VirtualizationStorageSummaryData) GetEngineHostnameOk() (*string, bool)

GetEngineHostnameOk returns a tuple with the EngineHostname field value and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetEngineId

func (o *VirtualizationStorageSummaryData) GetEngineId() string

GetEngineId returns the EngineId field value

func (*VirtualizationStorageSummaryData) GetEngineIdOk

func (o *VirtualizationStorageSummaryData) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetEngineName

func (o *VirtualizationStorageSummaryData) GetEngineName() string

GetEngineName returns the EngineName field value

func (*VirtualizationStorageSummaryData) GetEngineNameOk

func (o *VirtualizationStorageSummaryData) GetEngineNameOk() (*string, bool)

GetEngineNameOk returns a tuple with the EngineName field value and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetFreeStorage

func (o *VirtualizationStorageSummaryData) GetFreeStorage() int64

GetFreeStorage returns the FreeStorage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetFreeStorageOk

func (o *VirtualizationStorageSummaryData) GetFreeStorageOk() (*int64, bool)

GetFreeStorageOk returns a tuple with the FreeStorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetTotalCapacity

func (o *VirtualizationStorageSummaryData) GetTotalCapacity() int64

GetTotalCapacity returns the TotalCapacity field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetTotalCapacityOk

func (o *VirtualizationStorageSummaryData) GetTotalCapacityOk() (*int64, bool)

GetTotalCapacityOk returns a tuple with the TotalCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetTotalObjectCount

func (o *VirtualizationStorageSummaryData) GetTotalObjectCount() int64

GetTotalObjectCount returns the TotalObjectCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetTotalObjectCountOk

func (o *VirtualizationStorageSummaryData) GetTotalObjectCountOk() (*int64, bool)

GetTotalObjectCountOk returns a tuple with the TotalObjectCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetUsedPercentage

func (o *VirtualizationStorageSummaryData) GetUsedPercentage() float32

GetUsedPercentage returns the UsedPercentage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetUsedPercentageOk

func (o *VirtualizationStorageSummaryData) GetUsedPercentageOk() (*float32, bool)

GetUsedPercentageOk returns a tuple with the UsedPercentage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetUsedStorage

func (o *VirtualizationStorageSummaryData) GetUsedStorage() int64

GetUsedStorage returns the UsedStorage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetUsedStorageOk

func (o *VirtualizationStorageSummaryData) GetUsedStorageOk() (*int64, bool)

GetUsedStorageOk returns a tuple with the UsedStorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) GetVdbCount

func (o *VirtualizationStorageSummaryData) GetVdbCount() int64

GetVdbCount returns the VdbCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetVdbCountOk

func (o *VirtualizationStorageSummaryData) GetVdbCountOk() (*int64, bool)

GetVdbCountOk returns a tuple with the VdbCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryData) HasDsourceCount

func (o *VirtualizationStorageSummaryData) HasDsourceCount() bool

HasDsourceCount returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasFreeStorage

func (o *VirtualizationStorageSummaryData) HasFreeStorage() bool

HasFreeStorage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasTotalCapacity

func (o *VirtualizationStorageSummaryData) HasTotalCapacity() bool

HasTotalCapacity returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasTotalObjectCount

func (o *VirtualizationStorageSummaryData) HasTotalObjectCount() bool

HasTotalObjectCount returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasUsedPercentage

func (o *VirtualizationStorageSummaryData) HasUsedPercentage() bool

HasUsedPercentage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasUsedStorage

func (o *VirtualizationStorageSummaryData) HasUsedStorage() bool

HasUsedStorage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasVdbCount

func (o *VirtualizationStorageSummaryData) HasVdbCount() bool

HasVdbCount returns a boolean if a field has been set.

func (VirtualizationStorageSummaryData) MarshalJSON

func (o VirtualizationStorageSummaryData) MarshalJSON() ([]byte, error)

func (*VirtualizationStorageSummaryData) SetDsourceCount

func (o *VirtualizationStorageSummaryData) SetDsourceCount(v int64)

SetDsourceCount gets a reference to the given int64 and assigns it to the DsourceCount field.

func (*VirtualizationStorageSummaryData) SetEngineHostname

func (o *VirtualizationStorageSummaryData) SetEngineHostname(v string)

SetEngineHostname sets field value

func (*VirtualizationStorageSummaryData) SetEngineId

func (o *VirtualizationStorageSummaryData) SetEngineId(v string)

SetEngineId sets field value

func (*VirtualizationStorageSummaryData) SetEngineName

func (o *VirtualizationStorageSummaryData) SetEngineName(v string)

SetEngineName sets field value

func (*VirtualizationStorageSummaryData) SetFreeStorage

func (o *VirtualizationStorageSummaryData) SetFreeStorage(v int64)

SetFreeStorage gets a reference to the given int64 and assigns it to the FreeStorage field.

func (*VirtualizationStorageSummaryData) SetTotalCapacity

func (o *VirtualizationStorageSummaryData) SetTotalCapacity(v int64)

SetTotalCapacity gets a reference to the given int64 and assigns it to the TotalCapacity field.

func (*VirtualizationStorageSummaryData) SetTotalObjectCount

func (o *VirtualizationStorageSummaryData) SetTotalObjectCount(v int64)

SetTotalObjectCount gets a reference to the given int64 and assigns it to the TotalObjectCount field.

func (*VirtualizationStorageSummaryData) SetUsedPercentage

func (o *VirtualizationStorageSummaryData) SetUsedPercentage(v float32)

SetUsedPercentage gets a reference to the given float32 and assigns it to the UsedPercentage field.

func (*VirtualizationStorageSummaryData) SetUsedStorage

func (o *VirtualizationStorageSummaryData) SetUsedStorage(v int64)

SetUsedStorage gets a reference to the given int64 and assigns it to the UsedStorage field.

func (*VirtualizationStorageSummaryData) SetVdbCount

func (o *VirtualizationStorageSummaryData) SetVdbCount(v int64)

SetVdbCount gets a reference to the given int64 and assigns it to the VdbCount field.

func (VirtualizationStorageSummaryData) ToMap

func (o VirtualizationStorageSummaryData) ToMap() (map[string]interface{}, error)

type VirtualizationStorageSummaryReportResponse

type VirtualizationStorageSummaryReportResponse struct {
	Items            []VirtualizationStorageSummaryData `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata         `json:"response_metadata,omitempty"`
}

VirtualizationStorageSummaryReportResponse struct for VirtualizationStorageSummaryReportResponse

func NewVirtualizationStorageSummaryReportResponse

func NewVirtualizationStorageSummaryReportResponse() *VirtualizationStorageSummaryReportResponse

NewVirtualizationStorageSummaryReportResponse instantiates a new VirtualizationStorageSummaryReportResponse 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 NewVirtualizationStorageSummaryReportResponseWithDefaults

func NewVirtualizationStorageSummaryReportResponseWithDefaults() *VirtualizationStorageSummaryReportResponse

NewVirtualizationStorageSummaryReportResponseWithDefaults instantiates a new VirtualizationStorageSummaryReportResponse 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 (*VirtualizationStorageSummaryReportResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryReportResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryReportResponse) GetResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryReportResponse) GetResponseMetadataOk

GetResponseMetadataOk returns a tuple with the ResponseMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VirtualizationStorageSummaryReportResponse) HasItems

HasItems returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryReportResponse) HasResponseMetadata

func (o *VirtualizationStorageSummaryReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (VirtualizationStorageSummaryReportResponse) MarshalJSON

func (*VirtualizationStorageSummaryReportResponse) SetItems

SetItems gets a reference to the given []VirtualizationStorageSummaryData and assigns it to the Items field.

func (*VirtualizationStorageSummaryReportResponse) SetResponseMetadata

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (VirtualizationStorageSummaryReportResponse) ToMap

func (o VirtualizationStorageSummaryReportResponse) ToMap() (map[string]interface{}, error)

Source Files

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL