delphix_dct_api

package module
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: Apr 13, 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_JOB",
	"MASKING_JOB_SET",
	"REPORT_SCHEDULE",
	"SOURCE",
	"VAULT",
	"VCDB",
	"VDB",
	"VDB_GROUP",
	"CONNECTOR",
	"VIRTUALIZATION_POLICY",
	"DATASET_GROUP",
}

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*APIClassificationConfig) GetApiClassificationOk added in v1.6.0

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 added in v1.6.0

func (o *APIClassificationConfig) GetVersion() string

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

func (*APIClassificationConfig) GetVersionOk added in v1.6.0

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 added in v1.6.0

func (o *APIClassificationConfig) HasApiClassification() bool

HasApiClassification returns a boolean if a field has been set.

func (*APIClassificationConfig) HasVersion added in v1.6.0

func (o *APIClassificationConfig) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (APIClassificationConfig) MarshalJSON added in v1.6.0

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

func (*APIClassificationConfig) SetApiClassification added in v1.6.0

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

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

func (*APIClassificationConfig) SetVersion added in v1.6.0

func (o *APIClassificationConfig) SetVersion(v string)

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

func (APIClassificationConfig) ToMap added in v1.6.0

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

type APIClient

type APIClient struct {
	AccountsApi *AccountsApiService

	AuthorizationApi *AuthorizationApiService

	BookmarksApi *BookmarksApiService

	CDBsApi *CDBsApiService

	ConnectivityApi *ConnectivityApiService

	ConnectorsApi *ConnectorsApiService

	DSourcesApi *DSourcesApiService

	DatabaseTemplatesApi *DatabaseTemplatesApiService

	EnvironmentsApi *EnvironmentsApiService

	ExecutionsApi *ExecutionsApiService

	GroupsApi *GroupsApiService

	JobsApi *JobsApiService

	LoginApi *LoginApiService

	ManagementApi *ManagementApiService

	MaskingJobsApi *MaskingJobsApiService

	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.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessGroup added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroup) GetAccountIdsOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroup) GetAccountTagsOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroup) GetId() string

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

func (*AccessGroup) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroup) GetName() string

GetName returns the Name field value

func (*AccessGroup) GetNameOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroup) GetScopesOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroup) GetSingleAccount() bool

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

func (*AccessGroup) GetSingleAccountOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroup) GetTaggedAccountIdsOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroup) HasAccountIds() bool

HasAccountIds returns a boolean if a field has been set.

func (*AccessGroup) HasAccountTags added in v1.6.0

func (o *AccessGroup) HasAccountTags() bool

HasAccountTags returns a boolean if a field has been set.

func (*AccessGroup) HasId added in v1.6.0

func (o *AccessGroup) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccessGroup) HasScopes added in v1.6.0

func (o *AccessGroup) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*AccessGroup) HasSingleAccount added in v1.6.0

func (o *AccessGroup) HasSingleAccount() bool

HasSingleAccount returns a boolean if a field has been set.

func (*AccessGroup) HasTaggedAccountIds added in v1.6.0

func (o *AccessGroup) HasTaggedAccountIds() bool

HasTaggedAccountIds returns a boolean if a field has been set.

func (AccessGroup) MarshalJSON added in v1.6.0

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

func (*AccessGroup) SetAccountIds added in v1.6.0

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

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

func (*AccessGroup) SetAccountTags added in v1.6.0

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

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

func (*AccessGroup) SetId added in v1.6.0

func (o *AccessGroup) SetId(v string)

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

func (*AccessGroup) SetName added in v1.6.0

func (o *AccessGroup) SetName(v string)

SetName sets field value

func (*AccessGroup) SetScopes added in v1.6.0

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

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

func (*AccessGroup) SetSingleAccount added in v1.6.0

func (o *AccessGroup) SetSingleAccount(v bool)

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

func (*AccessGroup) SetTaggedAccountIds added in v1.6.0

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

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

func (AccessGroup) ToMap added in v1.6.0

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

type AccessGroupAccountIdsRequest added in v1.6.0

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

AccessGroupAccountIdsRequest struct for AccessGroupAccountIdsRequest

func NewAccessGroupAccountIdsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

GetAccountIds returns the AccountIds field value

func (*AccessGroupAccountIdsRequest) GetAccountIdsOk added in v1.6.0

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 added in v1.6.0

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

func (*AccessGroupAccountIdsRequest) SetAccountIds added in v1.6.0

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

SetAccountIds sets field value

func (AccessGroupAccountIdsRequest) ToMap added in v1.6.0

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

type AccessGroupScope added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroupScope) GetAlwaysAllowedPermissionsOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupScope) GetId() string

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

func (*AccessGroupScope) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupScope) GetName() string

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

func (*AccessGroupScope) GetNameOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroupScope) GetObjectTagsOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccessGroupScope) GetObjectsOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupScope) GetRoleId() string

GetRoleId returns the RoleId field value

func (*AccessGroupScope) GetRoleIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupScope) GetScopeType() string

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

func (*AccessGroupScope) GetScopeTypeOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupScope) HasAlwaysAllowedPermissions() bool

HasAlwaysAllowedPermissions returns a boolean if a field has been set.

func (*AccessGroupScope) HasId added in v1.6.0

func (o *AccessGroupScope) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccessGroupScope) HasName added in v1.6.0

func (o *AccessGroupScope) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccessGroupScope) HasObjectTags added in v1.6.0

func (o *AccessGroupScope) HasObjectTags() bool

HasObjectTags returns a boolean if a field has been set.

func (*AccessGroupScope) HasObjects added in v1.6.0

func (o *AccessGroupScope) HasObjects() bool

HasObjects returns a boolean if a field has been set.

func (*AccessGroupScope) HasScopeType added in v1.6.0

func (o *AccessGroupScope) HasScopeType() bool

HasScopeType returns a boolean if a field has been set.

func (AccessGroupScope) MarshalJSON added in v1.6.0

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

func (*AccessGroupScope) SetAlwaysAllowedPermissions added in v1.6.0

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

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

func (*AccessGroupScope) SetId added in v1.6.0

func (o *AccessGroupScope) SetId(v string)

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

func (*AccessGroupScope) SetName added in v1.6.0

func (o *AccessGroupScope) SetName(v string)

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

func (*AccessGroupScope) SetObjectTags added in v1.6.0

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

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

func (*AccessGroupScope) SetObjects added in v1.6.0

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

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

func (*AccessGroupScope) SetRoleId added in v1.6.0

func (o *AccessGroupScope) SetRoleId(v string)

SetRoleId sets field value

func (*AccessGroupScope) SetScopeType added in v1.6.0

func (o *AccessGroupScope) SetScopeType(v string)

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

func (AccessGroupScope) ToMap added in v1.6.0

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

type AccessGroupScopesRequest added in v1.6.0

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

AccessGroupScopesRequest struct for AccessGroupScopesRequest

func NewAccessGroupScopesRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

GetScopes returns the Scopes field value

func (*AccessGroupScopesRequest) GetScopesOk added in v1.6.0

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 added in v1.6.0

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

func (*AccessGroupScopesRequest) SetScopes added in v1.6.0

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

SetScopes sets field value

func (AccessGroupScopesRequest) ToMap added in v1.6.0

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

type AccessGroupUpdateParameters added in v1.6.0

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

AccessGroupUpdateParameters struct for AccessGroupUpdateParameters

func NewAccessGroupUpdateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupUpdateParameters) GetName() string

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

func (*AccessGroupUpdateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccessGroupUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (AccessGroupUpdateParameters) MarshalJSON added in v1.6.0

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

func (*AccessGroupUpdateParameters) SetName added in v1.6.0

func (o *AccessGroupUpdateParameters) SetName(v string)

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

func (AccessGroupUpdateParameters) ToMap added in v1.6.0

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

type Account added in v1.6.0

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"`
	// 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"`
}

Account struct for Account

func NewAccount added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Account) GetApiClientId() string

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

func (*Account) GetApiClientIdOk added in v1.6.0

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) GetEffectiveScopes added in v1.6.0

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

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

func (*Account) GetEffectiveScopesOk added in v1.6.0

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 added in v1.6.0

func (o *Account) GetEmail() string

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

func (*Account) GetEmailOk added in v1.6.0

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) GetFirstName added in v1.6.0

func (o *Account) GetFirstName() string

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

func (*Account) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *Account) GetId() int64

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

func (*Account) GetIdOk added in v1.6.0

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) GetLastName added in v1.6.0

func (o *Account) GetLastName() string

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

func (*Account) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *Account) GetLdapPrincipal() string

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

func (*Account) GetLdapPrincipalOk added in v1.6.0

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 added in v1.6.0

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

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

func (*Account) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Account) GetUsername() string

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

func (*Account) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *Account) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*Account) HasEffectiveScopes added in v1.6.0

func (o *Account) HasEffectiveScopes() bool

HasEffectiveScopes returns a boolean if a field has been set.

func (*Account) HasEmail added in v1.6.0

func (o *Account) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Account) HasFirstName added in v1.6.0

func (o *Account) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*Account) HasId added in v1.6.0

func (o *Account) HasId() bool

HasId returns a boolean if a field has been set.

func (*Account) HasLastName added in v1.6.0

func (o *Account) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*Account) HasLdapPrincipal added in v1.6.0

func (o *Account) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*Account) HasTags added in v1.6.0

func (o *Account) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Account) HasUsername added in v1.6.0

func (o *Account) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (Account) MarshalJSON added in v1.6.0

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

func (*Account) SetApiClientId added in v1.6.0

func (o *Account) SetApiClientId(v string)

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

func (*Account) SetEffectiveScopes added in v1.6.0

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

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

func (*Account) SetEmail added in v1.6.0

func (o *Account) SetEmail(v string)

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

func (*Account) SetFirstName added in v1.6.0

func (o *Account) SetFirstName(v string)

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

func (*Account) SetId added in v1.6.0

func (o *Account) SetId(v int64)

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

func (*Account) SetLastName added in v1.6.0

func (o *Account) SetLastName(v string)

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

func (*Account) SetLdapPrincipal added in v1.6.0

func (o *Account) SetLdapPrincipal(v string)

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

func (*Account) SetTags added in v1.6.0

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

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

func (*Account) SetUsername added in v1.6.0

func (o *Account) SetUsername(v string)

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

func (Account) ToMap added in v1.6.0

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

type AccountCreateParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetApiClientId() string

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

func (*AccountCreateParameter) GetApiClientIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetEmail() string

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

func (*AccountCreateParameter) GetEmailOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetFirstName() string

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

func (*AccountCreateParameter) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetGenerateApiKey() bool

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

func (*AccountCreateParameter) GetGenerateApiKeyOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetIsAdmin() bool

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

func (*AccountCreateParameter) GetIsAdminOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetLastName() string

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

func (*AccountCreateParameter) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetLdapPrincipal() string

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

func (*AccountCreateParameter) GetLdapPrincipalOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetPassword() string

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

func (*AccountCreateParameter) GetPasswordOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccountCreateParameter) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) GetUsername() string

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

func (*AccountCreateParameter) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateParameter) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*AccountCreateParameter) HasEmail added in v1.6.0

func (o *AccountCreateParameter) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountCreateParameter) HasFirstName added in v1.6.0

func (o *AccountCreateParameter) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountCreateParameter) HasGenerateApiKey added in v1.6.0

func (o *AccountCreateParameter) HasGenerateApiKey() bool

HasGenerateApiKey returns a boolean if a field has been set.

func (*AccountCreateParameter) HasIsAdmin added in v1.6.0

func (o *AccountCreateParameter) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*AccountCreateParameter) HasLastName added in v1.6.0

func (o *AccountCreateParameter) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountCreateParameter) HasLdapPrincipal added in v1.6.0

func (o *AccountCreateParameter) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountCreateParameter) HasPassword added in v1.6.0

func (o *AccountCreateParameter) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AccountCreateParameter) HasTags added in v1.6.0

func (o *AccountCreateParameter) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AccountCreateParameter) HasUsername added in v1.6.0

func (o *AccountCreateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountCreateParameter) MarshalJSON added in v1.6.0

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

func (*AccountCreateParameter) SetApiClientId added in v1.6.0

func (o *AccountCreateParameter) SetApiClientId(v string)

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

func (*AccountCreateParameter) SetEmail added in v1.6.0

func (o *AccountCreateParameter) SetEmail(v string)

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

func (*AccountCreateParameter) SetFirstName added in v1.6.0

func (o *AccountCreateParameter) SetFirstName(v string)

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

func (*AccountCreateParameter) SetGenerateApiKey added in v1.6.0

func (o *AccountCreateParameter) SetGenerateApiKey(v bool)

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

func (*AccountCreateParameter) SetIsAdmin added in v1.6.0

func (o *AccountCreateParameter) SetIsAdmin(v bool)

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

func (*AccountCreateParameter) SetLastName added in v1.6.0

func (o *AccountCreateParameter) SetLastName(v string)

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

func (*AccountCreateParameter) SetLdapPrincipal added in v1.6.0

func (o *AccountCreateParameter) SetLdapPrincipal(v string)

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

func (*AccountCreateParameter) SetPassword added in v1.6.0

func (o *AccountCreateParameter) SetPassword(v string)

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

func (*AccountCreateParameter) SetTags added in v1.6.0

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

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

func (*AccountCreateParameter) SetUsername added in v1.6.0

func (o *AccountCreateParameter) SetUsername(v string)

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

func (AccountCreateParameter) ToMap added in v1.6.0

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

type AccountCreateResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetEmail() string

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

func (*AccountCreateResponse) GetEmailOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetFirstName() string

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

func (*AccountCreateResponse) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetId() int64

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

func (*AccountCreateResponse) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetLastName() string

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

func (*AccountCreateResponse) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetLdapPrincipal() string

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

func (*AccountCreateResponse) GetLdapPrincipalOk added in v1.6.0

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 added in v1.6.0

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

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

func (*AccountCreateResponse) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetToken() string

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

func (*AccountCreateResponse) GetTokenOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) GetUsername() string

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

func (*AccountCreateResponse) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountCreateResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountCreateResponse) HasFirstName added in v1.6.0

func (o *AccountCreateResponse) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountCreateResponse) HasId added in v1.6.0

func (o *AccountCreateResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountCreateResponse) HasLastName added in v1.6.0

func (o *AccountCreateResponse) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountCreateResponse) HasLdapPrincipal added in v1.6.0

func (o *AccountCreateResponse) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountCreateResponse) HasTags added in v1.6.0

func (o *AccountCreateResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*AccountCreateResponse) HasToken added in v1.6.0

func (o *AccountCreateResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*AccountCreateResponse) HasUsername added in v1.6.0

func (o *AccountCreateResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountCreateResponse) MarshalJSON added in v1.6.0

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

func (*AccountCreateResponse) SetEmail added in v1.6.0

func (o *AccountCreateResponse) SetEmail(v string)

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

func (*AccountCreateResponse) SetFirstName added in v1.6.0

func (o *AccountCreateResponse) SetFirstName(v string)

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

func (*AccountCreateResponse) SetId added in v1.6.0

func (o *AccountCreateResponse) SetId(v int64)

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

func (*AccountCreateResponse) SetLastName added in v1.6.0

func (o *AccountCreateResponse) SetLastName(v string)

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

func (*AccountCreateResponse) SetLdapPrincipal added in v1.6.0

func (o *AccountCreateResponse) SetLdapPrincipal(v string)

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

func (*AccountCreateResponse) SetTags added in v1.6.0

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

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

func (*AccountCreateResponse) SetToken added in v1.6.0

func (o *AccountCreateResponse) SetToken(v string)

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

func (*AccountCreateResponse) SetUsername added in v1.6.0

func (o *AccountCreateResponse) SetUsername(v string)

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

func (AccountCreateResponse) ToMap added in v1.6.0

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

type AccountLoginParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AccountLoginParameter) GetPassword() string

GetPassword returns the Password field value

func (*AccountLoginParameter) GetPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *AccountLoginParameter) GetUsername() string

GetUsername returns the Username field value

func (*AccountLoginParameter) GetUsernameOk added in v1.6.0

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 added in v1.6.0

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

func (*AccountLoginParameter) SetPassword added in v1.6.0

func (o *AccountLoginParameter) SetPassword(v string)

SetPassword sets field value

func (*AccountLoginParameter) SetUsername added in v1.6.0

func (o *AccountLoginParameter) SetUsername(v string)

SetUsername sets field value

func (AccountLoginParameter) ToMap added in v1.6.0

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

type AccountUpdateParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetApiClientId() string

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

func (*AccountUpdateParameter) GetApiClientIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetEmail() string

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

func (*AccountUpdateParameter) GetEmailOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetFirstName() string

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

func (*AccountUpdateParameter) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetId() int64

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

func (*AccountUpdateParameter) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetLastName() string

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

func (*AccountUpdateParameter) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetLdapPrincipal() string

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

func (*AccountUpdateParameter) GetLdapPrincipalOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) GetUsername() string

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

func (*AccountUpdateParameter) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *AccountUpdateParameter) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasEmail added in v1.6.0

func (o *AccountUpdateParameter) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasFirstName added in v1.6.0

func (o *AccountUpdateParameter) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasId added in v1.6.0

func (o *AccountUpdateParameter) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasLastName added in v1.6.0

func (o *AccountUpdateParameter) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasLdapPrincipal added in v1.6.0

func (o *AccountUpdateParameter) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*AccountUpdateParameter) HasUsername added in v1.6.0

func (o *AccountUpdateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountUpdateParameter) MarshalJSON added in v1.6.0

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

func (*AccountUpdateParameter) SetApiClientId added in v1.6.0

func (o *AccountUpdateParameter) SetApiClientId(v string)

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

func (*AccountUpdateParameter) SetEmail added in v1.6.0

func (o *AccountUpdateParameter) SetEmail(v string)

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

func (*AccountUpdateParameter) SetFirstName added in v1.6.0

func (o *AccountUpdateParameter) SetFirstName(v string)

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

func (*AccountUpdateParameter) SetId added in v1.6.0

func (o *AccountUpdateParameter) SetId(v int64)

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

func (*AccountUpdateParameter) SetLastName added in v1.6.0

func (o *AccountUpdateParameter) SetLastName(v string)

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

func (*AccountUpdateParameter) SetLdapPrincipal added in v1.6.0

func (o *AccountUpdateParameter) SetLdapPrincipal(v string)

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

func (*AccountUpdateParameter) SetUsername added in v1.6.0

func (o *AccountUpdateParameter) SetUsername(v string)

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

func (AccountUpdateParameter) ToMap added in v1.6.0

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

type AccountsApiService added in v1.6.0

type AccountsApiService service

AccountsApiService AccountsApi service

func (*AccountsApiService) ChangeAccountPassword added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

func (*AccountsApiService) CreateAccount added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccountCreateResponse

func (*AccountsApiService) CreateAccountTags added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

@return TagsResponse

func (*AccountsApiService) DeleteAccount added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

func (*AccountsApiService) DeleteAccountTags added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

func (*AccountsApiService) GetAccount added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

@return Account

func (*AccountsApiService) GetAccountTags added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

@return TagsResponse

func (*AccountsApiService) GetAccounts added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListAccountsResponse

func (*AccountsApiService) GetPasswordPolicies added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return PasswordPoliciesParams

func (*AccountsApiService) ResetAccountPassword added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

func (*AccountsApiService) SearchAccounts added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchAccountsResponse

func (*AccountsApiService) UpdateAccount added in v1.6.0

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 added in v1.6.0

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

Execute executes the request

@return Account

func (*AccountsApiService) UpdatePasswordPolicies added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return PasswordPoliciesParams

type AdditionalMountPoint added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AdditionalMountPoint) GetEnvironmentId() string

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

func (*AdditionalMountPoint) GetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *AdditionalMountPoint) GetMountPath() string

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

func (*AdditionalMountPoint) GetMountPathOk added in v1.6.0

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 added in v1.6.0

func (o *AdditionalMountPoint) GetSharedPath() string

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

func (*AdditionalMountPoint) GetSharedPathOk added in v1.6.0

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 added in v1.6.0

func (o *AdditionalMountPoint) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*AdditionalMountPoint) HasMountPath added in v1.6.0

func (o *AdditionalMountPoint) HasMountPath() bool

HasMountPath returns a boolean if a field has been set.

func (*AdditionalMountPoint) HasSharedPath added in v1.6.0

func (o *AdditionalMountPoint) HasSharedPath() bool

HasSharedPath returns a boolean if a field has been set.

func (AdditionalMountPoint) MarshalJSON added in v1.6.0

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

func (*AdditionalMountPoint) SetEnvironmentId added in v1.6.0

func (o *AdditionalMountPoint) SetEnvironmentId(v string)

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

func (*AdditionalMountPoint) SetMountPath added in v1.6.0

func (o *AdditionalMountPoint) SetMountPath(v string)

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

func (*AdditionalMountPoint) SetSharedPath added in v1.6.0

func (o *AdditionalMountPoint) SetSharedPath(v string)

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

func (AdditionalMountPoint) ToMap added in v1.6.0

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

type AllObjectPermissionsResponse added in v1.6.0

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

AllObjectPermissionsResponse struct for AllObjectPermissionsResponse

func NewAllObjectPermissionsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*AllObjectPermissionsResponse) GetObjectPermissionsOk added in v1.6.0

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 added in v1.6.0

func (o *AllObjectPermissionsResponse) HasObjectPermissions() bool

HasObjectPermissions returns a boolean if a field has been set.

func (AllObjectPermissionsResponse) MarshalJSON added in v1.6.0

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

func (*AllObjectPermissionsResponse) SetObjectPermissions added in v1.6.0

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

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

func (AllObjectPermissionsResponse) ToMap added in v1.6.0

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

type AlwaysAllowedPermission added in v1.6.0

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

AlwaysAllowedPermission struct for AlwaysAllowedPermission

func NewAlwaysAllowedPermission added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *AlwaysAllowedPermission) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value

func (*AlwaysAllowedPermission) GetObjectTypeOk added in v1.6.0

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 added in v1.6.0

func (o *AlwaysAllowedPermission) GetPermission() PermissionEnum

GetPermission returns the Permission field value

func (*AlwaysAllowedPermission) GetPermissionOk added in v1.6.0

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 added in v1.6.0

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

func (*AlwaysAllowedPermission) SetObjectType added in v1.6.0

func (o *AlwaysAllowedPermission) SetObjectType(v ObjectTypeEnum)

SetObjectType sets field value

func (*AlwaysAllowedPermission) SetPermission added in v1.6.0

func (o *AlwaysAllowedPermission) SetPermission(v PermissionEnum)

SetPermission sets field value

func (AlwaysAllowedPermission) ToMap added in v1.6.0

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

type AlwaysAllowedPermissionRequest added in v1.6.0

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

AlwaysAllowedPermissionRequest struct for AlwaysAllowedPermissionRequest

func NewAlwaysAllowedPermissionRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

GetAlwaysAllowedPermissions returns the AlwaysAllowedPermissions field value

func (*AlwaysAllowedPermissionRequest) GetAlwaysAllowedPermissionsOk added in v1.6.0

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 added in v1.6.0

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

func (*AlwaysAllowedPermissionRequest) SetAlwaysAllowedPermissions added in v1.6.0

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

SetAlwaysAllowedPermissions sets field value

func (AlwaysAllowedPermissionRequest) ToMap added in v1.6.0

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 added in v1.6.0

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

func (ApiAccountLoginRequest) AccountLoginParameter added in v1.6.0

func (r ApiAccountLoginRequest) AccountLoginParameter(accountLoginParameter AccountLoginParameter) ApiAccountLoginRequest

func (ApiAccountLoginRequest) Execute added in v1.6.0

type ApiAddAccessGroupAccountIdsRequest added in v1.6.0

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

func (ApiAddAccessGroupAccountIdsRequest) AccessGroupAccountIdsRequest added in v1.6.0

func (r ApiAddAccessGroupAccountIdsRequest) AccessGroupAccountIdsRequest(accessGroupAccountIdsRequest AccessGroupAccountIdsRequest) ApiAddAccessGroupAccountIdsRequest

Account ids to add to the Access group.

func (ApiAddAccessGroupAccountIdsRequest) Execute added in v1.6.0

type ApiAddAccessGroupAccountTagsRequest added in v1.6.0

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

func (ApiAddAccessGroupAccountTagsRequest) Execute added in v1.6.0

func (ApiAddAccessGroupAccountTagsRequest) TagsRequest added in v1.6.0

Account Tags to add to the Access group.

type ApiAddAccessGroupScopesRequest added in v1.6.0

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

func (ApiAddAccessGroupScopesRequest) AccessGroupScopesRequest added in v1.6.0

func (r ApiAddAccessGroupScopesRequest) AccessGroupScopesRequest(accessGroupScopesRequest AccessGroupScopesRequest) ApiAddAccessGroupScopesRequest

Scopes to add to the Access group.

func (ApiAddAccessGroupScopesRequest) Execute added in v1.6.0

type ApiAddAlwaysAllowedPermissionsRequest added in v1.6.0

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

func (ApiAddAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest added in v1.6.0

func (r ApiAddAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest(alwaysAllowedPermissionRequest AlwaysAllowedPermissionRequest) ApiAddAlwaysAllowedPermissionsRequest

Add always allowed permissions for given object type.

func (ApiAddAlwaysAllowedPermissionsRequest) Execute added in v1.6.0

type ApiAddObjectsToAccessGroupScopeRequest added in v1.6.0

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

func (ApiAddObjectsToAccessGroupScopeRequest) Execute added in v1.6.0

func (ApiAddObjectsToAccessGroupScopeRequest) ScopedObjectsRequest added in v1.6.0

Add objects to the access group scope.

type ApiAddRolePermissionsRequest added in v1.6.0

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

func (ApiAddRolePermissionsRequest) Execute added in v1.6.0

func (ApiAddRolePermissionsRequest) PermissionsRequest added in v1.6.0

func (r ApiAddRolePermissionsRequest) PermissionsRequest(permissionsRequest PermissionsRequest) ApiAddRolePermissionsRequest

Permissions to add to the role.

type ApiAddTagsToScopeRequest added in v1.6.0

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

func (ApiAddTagsToScopeRequest) Execute added in v1.6.0

func (ApiAddTagsToScopeRequest) ScopeTagsRequest added in v1.6.0

func (r ApiAddTagsToScopeRequest) ScopeTagsRequest(scopeTagsRequest ScopeTagsRequest) ApiAddTagsToScopeRequest

Object tags for the access group scope.

type ApiCancelExecutionRequest added in v1.6.0

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

func (ApiCancelExecutionRequest) Execute added in v1.6.0

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

func (ApiCancelExecutionRequest) ExecutionCancelParameters added in v1.6.0

func (r ApiCancelExecutionRequest) ExecutionCancelParameters(executionCancelParameters ExecutionCancelParameters) ApiCancelExecutionRequest

type ApiChangeAccountPasswordRequest added in v1.6.0

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

func (ApiChangeAccountPasswordRequest) ChangePasswordParameter added in v1.6.0

func (r ApiChangeAccountPasswordRequest) ChangePasswordParameter(changePasswordParameter ChangePasswordParameter) ApiChangeAccountPasswordRequest

func (ApiChangeAccountPasswordRequest) Execute added in v1.6.0

type ApiCheckSamlRequest added in v1.6.0

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

func (ApiCheckSamlRequest) Execute added in v1.6.0

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

type ApiClassificationObject added in v1.6.0

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 management.

func NewApiClassificationObject added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ApiClassificationObject) GetApiMethod() string

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

func (*ApiClassificationObject) GetApiMethodOk added in v1.6.0

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 added in v1.6.0

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

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

func (*ApiClassificationObject) GetEndDateOk added in v1.6.0

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 added in v1.6.0

func (o *ApiClassificationObject) GetIsAutomation() bool

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

func (*ApiClassificationObject) GetIsAutomationOk added in v1.6.0

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 added in v1.6.0

func (o *ApiClassificationObject) GetPath() string

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

func (*ApiClassificationObject) GetPathOk added in v1.6.0

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 added in v1.6.0

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

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

func (*ApiClassificationObject) GetStartDateOk added in v1.6.0

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 added in v1.6.0

func (o *ApiClassificationObject) HasApiMethod() bool

HasApiMethod returns a boolean if a field has been set.

func (*ApiClassificationObject) HasEndDate added in v1.6.0

func (o *ApiClassificationObject) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*ApiClassificationObject) HasIsAutomation added in v1.6.0

func (o *ApiClassificationObject) HasIsAutomation() bool

HasIsAutomation returns a boolean if a field has been set.

func (*ApiClassificationObject) HasPath added in v1.6.0

func (o *ApiClassificationObject) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*ApiClassificationObject) HasStartDate added in v1.6.0

func (o *ApiClassificationObject) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (ApiClassificationObject) MarshalJSON added in v1.6.0

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

func (*ApiClassificationObject) SetApiMethod added in v1.6.0

func (o *ApiClassificationObject) SetApiMethod(v string)

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

func (*ApiClassificationObject) SetEndDate added in v1.6.0

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 added in v1.6.0

func (o *ApiClassificationObject) SetIsAutomation(v bool)

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

func (*ApiClassificationObject) SetPath added in v1.6.0

func (o *ApiClassificationObject) SetPath(v string)

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

func (*ApiClassificationObject) SetStartDate added in v1.6.0

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 added in v1.6.0

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

type ApiConnectivityCheckRequest

type ApiConnectivityCheckRequest struct {
	ApiService *ConnectivityApiService
	// contains filtered or unexported fields
}

func (ApiConnectivityCheckRequest) ConnectivityCheckParameters added in v1.2.0

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 added in v1.6.0

type ApiConnectorsTestRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiConnectorsTestRequest) Execute added in v1.6.0

type ApiCopyMaskingJobRequest added in v1.6.0

type ApiCopyMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiCopyMaskingJobRequest) CopyMaskingJobParameters added in v1.6.0

func (r ApiCopyMaskingJobRequest) CopyMaskingJobParameters(copyMaskingJobParameters CopyMaskingJobParameters) ApiCopyMaskingJobRequest

func (ApiCopyMaskingJobRequest) Execute added in v1.6.0

type ApiCreateAccessGroupRequest added in v1.6.0

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

func (ApiCreateAccessGroupRequest) AccessGroup added in v1.6.0

func (ApiCreateAccessGroupRequest) Execute added in v1.6.0

type ApiCreateAccountRequest added in v1.6.0

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

func (ApiCreateAccountRequest) AccountCreateParameter added in v1.6.0

func (r ApiCreateAccountRequest) AccountCreateParameter(accountCreateParameter AccountCreateParameter) ApiCreateAccountRequest

func (ApiCreateAccountRequest) Execute added in v1.6.0

type ApiCreateAccountTagsRequest added in v1.6.0

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

func (ApiCreateAccountTagsRequest) Execute added in v1.6.0

func (ApiCreateAccountTagsRequest) TagsRequest added in v1.6.0

Tags information for Account.

type ApiCreateBookmarkRequest

type ApiCreateBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiCreateBookmarkRequest) BookmarkCreateParameters added in v1.6.0

func (r ApiCreateBookmarkRequest) BookmarkCreateParameters(bookmarkCreateParameters BookmarkCreateParameters) ApiCreateBookmarkRequest

The parameters to create a bookmark.

func (ApiCreateBookmarkRequest) Execute

type ApiCreateBookmarkTagsRequest added in v1.6.0

type ApiCreateBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiCreateBookmarkTagsRequest) Execute added in v1.6.0

func (ApiCreateBookmarkTagsRequest) TagsRequest added in v1.6.0

Tags information for Bookmark.

type ApiCreateCdbTagsRequest added in v1.6.0

type ApiCreateCdbTagsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiCreateCdbTagsRequest) Execute added in v1.6.0

func (ApiCreateCdbTagsRequest) TagsRequest added in v1.6.0

func (r ApiCreateCdbTagsRequest) TagsRequest(tagsRequest TagsRequest) ApiCreateCdbTagsRequest

Tags information for CDB.

type ApiCreateConnectorTagsRequest added in v1.6.0

type ApiCreateConnectorTagsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiCreateConnectorTagsRequest) Execute added in v1.6.0

func (ApiCreateConnectorTagsRequest) TagsRequest added in v1.6.0

Tags information for Connector.

type ApiCreateDatabaseTemplateRequest added in v1.6.0

type ApiCreateDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseTemplateRequest) DatabaseTemplateCreateParameters added in v1.6.0

func (r ApiCreateDatabaseTemplateRequest) DatabaseTemplateCreateParameters(databaseTemplateCreateParameters DatabaseTemplateCreateParameters) ApiCreateDatabaseTemplateRequest

The parameters to create a database template.

func (ApiCreateDatabaseTemplateRequest) Execute added in v1.6.0

type ApiCreateDatabaseTemplateTagsRequest added in v1.6.0

type ApiCreateDatabaseTemplateTagsRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseTemplateTagsRequest) Execute added in v1.6.0

func (ApiCreateDatabaseTemplateTagsRequest) TagsRequest added in v1.6.0

Tags information for a DatabaseTemplate.

type ApiCreateEngineTagsRequest added in v1.2.0

type ApiCreateEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateEngineTagsRequest) Execute added in v1.2.0

func (ApiCreateEngineTagsRequest) TagsRequest added in v1.2.0

Tags information for Engine.

type ApiCreateEnvironmentRequest added in v1.2.0

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

func (ApiCreateEnvironmentRequest) EnvironmentCreateParameters added in v1.2.0

func (r ApiCreateEnvironmentRequest) EnvironmentCreateParameters(environmentCreateParameters EnvironmentCreateParameters) ApiCreateEnvironmentRequest

The parameters to create an environment.

func (ApiCreateEnvironmentRequest) Execute added in v1.2.0

type ApiCreateEnvironmentTagsRequest added in v1.1.0

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

func (ApiCreateEnvironmentTagsRequest) Execute added in v1.1.0

func (ApiCreateEnvironmentTagsRequest) TagsRequest added in v1.1.0

Tags information for Environment.

type ApiCreateEnvironmentUserRequest added in v1.2.0

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

func (ApiCreateEnvironmentUserRequest) EnvironmentUserParams added in v1.2.0

func (r ApiCreateEnvironmentUserRequest) EnvironmentUserParams(environmentUserParams EnvironmentUserParams) ApiCreateEnvironmentUserRequest

The parameters to create an environment user.

func (ApiCreateEnvironmentUserRequest) Execute added in v1.2.0

type ApiCreateHashicorpVaultRequest

type ApiCreateHashicorpVaultRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateHashicorpVaultRequest) Execute

func (ApiCreateHashicorpVaultRequest) HashicorpVault

type ApiCreateHashicorpVaultTagsRequest added in v1.6.0

type ApiCreateHashicorpVaultTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiCreateHashicorpVaultTagsRequest) Execute added in v1.6.0

func (ApiCreateHashicorpVaultTagsRequest) TagsRequest added in v1.6.0

Tags information for Hashicorp vault.

type ApiCreateHostRequest added in v1.6.0

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

func (ApiCreateHostRequest) Execute added in v1.6.0

func (ApiCreateHostRequest) HostCreateParameters added in v1.6.0

func (r ApiCreateHostRequest) HostCreateParameters(hostCreateParameters HostCreateParameters) ApiCreateHostRequest

type ApiCreateJobTagsRequest added in v1.6.0

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

func (ApiCreateJobTagsRequest) Execute added in v1.6.0

func (ApiCreateJobTagsRequest) TagsRequest added in v1.6.0

func (r ApiCreateJobTagsRequest) TagsRequest(tagsRequest TagsRequest) ApiCreateJobTagsRequest

Tags information for Job.

type ApiCreateMaskingJobTagRequest added in v1.6.0

type ApiCreateMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiCreateMaskingJobTagRequest) Execute added in v1.6.0

func (ApiCreateMaskingJobTagRequest) TagsRequest added in v1.6.0

Tags information for Masking Job.

type ApiCreateReportingScheduleRequest added in v1.2.0

type ApiCreateReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiCreateReportingScheduleRequest) Execute added in v1.2.0

func (ApiCreateReportingScheduleRequest) ReportingScheduleCreateParameters added in v1.6.0

func (r ApiCreateReportingScheduleRequest) ReportingScheduleCreateParameters(reportingScheduleCreateParameters ReportingScheduleCreateParameters) ApiCreateReportingScheduleRequest

The parameters to create a reporting schedule.

type ApiCreateReportingScheduleTagsRequest added in v1.6.0

type ApiCreateReportingScheduleTagsRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiCreateReportingScheduleTagsRequest) Execute added in v1.6.0

func (ApiCreateReportingScheduleTagsRequest) TagsRequest added in v1.6.0

Tags information for report schedule.

type ApiCreateRoleRequest added in v1.6.0

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

func (ApiCreateRoleRequest) CreateRole added in v1.6.0

func (r ApiCreateRoleRequest) CreateRole(createRole CreateRole) ApiCreateRoleRequest

func (ApiCreateRoleRequest) Execute added in v1.6.0

func (r ApiCreateRoleRequest) Execute() (*Role, *http.Response, error)

type ApiCreateRoleTagsRequest added in v1.6.0

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

func (ApiCreateRoleTagsRequest) Execute added in v1.6.0

func (ApiCreateRoleTagsRequest) TagsRequest added in v1.6.0

Tags information for Roles.

type ApiCreateSnapshotTagsRequest added in v1.6.0

type ApiCreateSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiCreateSnapshotTagsRequest) Execute added in v1.6.0

func (ApiCreateSnapshotTagsRequest) TagsRequest added in v1.6.0

Tags information for Snapshot.

type ApiCreateSourceTagsRequest added in v1.6.0

type ApiCreateSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiCreateSourceTagsRequest) Execute added in v1.6.0

func (ApiCreateSourceTagsRequest) TagsRequest added in v1.6.0

Tags information for Source.

type ApiCreateTagsDsourceRequest added in v1.1.0

type ApiCreateTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiCreateTagsDsourceRequest) Execute added in v1.1.0

func (ApiCreateTagsDsourceRequest) TagsRequest added in v1.1.0

Tags information for DSource.

type ApiCreateTimeflowTagsRequest added in v1.6.0

type ApiCreateTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiCreateTimeflowTagsRequest) Execute added in v1.6.0

func (ApiCreateTimeflowTagsRequest) TagsRequest added in v1.6.0

Tags information for Timeflow.

type ApiCreateVcdbTagsRequest added in v1.6.0

type ApiCreateVcdbTagsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVcdbTagsRequest) Execute added in v1.6.0

func (ApiCreateVcdbTagsRequest) TagsRequest added in v1.6.0

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 added in v1.6.0

type ApiCreateVdbGroupsTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVdbGroupsTagsRequest) Execute added in v1.6.0

func (ApiCreateVdbGroupsTagsRequest) TagsRequest added in v1.6.0

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 ApiDeleteAccessGroupRequest added in v1.6.0

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

func (ApiDeleteAccessGroupRequest) Execute added in v1.6.0

type ApiDeleteAccessGroupScopeObjectTagsRequest added in v1.6.0

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

func (ApiDeleteAccessGroupScopeObjectTagsRequest) DeleteScopeObjectTags added in v1.6.0

The parameters to delete scope objects tags

func (ApiDeleteAccessGroupScopeObjectTagsRequest) Execute added in v1.6.0

type ApiDeleteAccessGroupScopeObjectsRequest added in v1.6.0

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

func (ApiDeleteAccessGroupScopeObjectsRequest) DeleteScopedObjectItem added in v1.6.0

The parameters to delete scope objects

func (ApiDeleteAccessGroupScopeObjectsRequest) Execute added in v1.6.0

type ApiDeleteAccountRequest added in v1.6.0

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

func (ApiDeleteAccountRequest) Execute added in v1.6.0

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

type ApiDeleteAccountTagsRequest added in v1.6.0

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

func (ApiDeleteAccountTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteAccountTagsRequest) Execute added in v1.6.0

type ApiDeleteBookmarkRequest

type ApiDeleteBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiDeleteBookmarkRequest) Execute

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

type ApiDeleteBookmarkTagsRequest added in v1.6.0

type ApiDeleteBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiDeleteBookmarkTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteBookmarkTagsRequest) Execute added in v1.6.0

type ApiDeleteCdbTagsRequest added in v1.6.0

type ApiDeleteCdbTagsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteCdbTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteCdbTagsRequest) Execute added in v1.6.0

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

type ApiDeleteConnectorTagRequest added in v1.6.0

type ApiDeleteConnectorTagRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteConnectorTagRequest) Execute added in v1.6.0

type ApiDeleteDatabaseTemplateRequest added in v1.6.0

type ApiDeleteDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDatabaseTemplateRequest) Execute added in v1.6.0

type ApiDeleteDatabaseTemplateTagRequest added in v1.6.0

type ApiDeleteDatabaseTemplateTagRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDatabaseTemplateTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteDatabaseTemplateTagRequest) Execute added in v1.6.0

type ApiDeleteDsourceRequest added in v1.6.0

type ApiDeleteDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDsourceRequest) DeleteDSourceRequest added in v1.6.0

func (r ApiDeleteDsourceRequest) DeleteDSourceRequest(deleteDSourceRequest DeleteDSourceRequest) ApiDeleteDsourceRequest

func (ApiDeleteDsourceRequest) Execute added in v1.6.0

func (r ApiDeleteDsourceRequest) Execute() (*Job, *http.Response, error)

type ApiDeleteEngineTagsRequest added in v1.2.0

type ApiDeleteEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEngineTagsRequest) DeleteTag added in v1.2.0

The parameters to delete tags

func (ApiDeleteEngineTagsRequest) Execute added in v1.2.0

type ApiDeleteEnvironmentRequest

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

func (ApiDeleteEnvironmentRequest) Execute

type ApiDeleteEnvironmentTagsRequest added in v1.2.0

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

func (ApiDeleteEnvironmentTagsRequest) DeleteTag added in v1.2.0

The parameters to delete tags

func (ApiDeleteEnvironmentTagsRequest) Execute added in v1.2.0

type ApiDeleteEnvironmentUserRequest added in v1.2.0

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

func (ApiDeleteEnvironmentUserRequest) Execute added in v1.2.0

type ApiDeleteHashicorpVaultRequest

type ApiDeleteHashicorpVaultRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHashicorpVaultRequest) Execute

type ApiDeleteHashicorpVaultTagRequest added in v1.6.0

type ApiDeleteHashicorpVaultTagRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeleteHashicorpVaultTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteHashicorpVaultTagRequest) Execute added in v1.6.0

type ApiDeleteHostRequest added in v1.6.0

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

func (ApiDeleteHostRequest) Execute added in v1.6.0

type ApiDeleteJobTagRequest added in v1.6.0

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

func (ApiDeleteJobTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteJobTagRequest) Execute added in v1.6.0

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

type ApiDeleteMaskingJobRequest added in v1.6.0

type ApiDeleteMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteMaskingJobRequest) Execute added in v1.6.0

func (ApiDeleteMaskingJobRequest) Force added in v1.6.0

If true, ignores any failures to remove a masking job on an engine.

type ApiDeleteMaskingJobTagRequest added in v1.6.0

type ApiDeleteMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteMaskingJobTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteMaskingJobTagRequest) Execute added in v1.6.0

type ApiDeleteReportingScheduleRequest added in v1.2.0

type ApiDeleteReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiDeleteReportingScheduleRequest) Execute added in v1.2.0

type ApiDeleteReportingScheduleTagRequest added in v1.6.0

type ApiDeleteReportingScheduleTagRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiDeleteReportingScheduleTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteReportingScheduleTagRequest) Execute added in v1.6.0

type ApiDeleteRoleRequest added in v1.6.0

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

func (ApiDeleteRoleRequest) Execute added in v1.6.0

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

type ApiDeleteRoleTagRequest added in v1.6.0

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

func (ApiDeleteRoleTagRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteRoleTagRequest) Execute added in v1.6.0

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

type ApiDeleteSnapshotRequest added in v1.6.0

type ApiDeleteSnapshotRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSnapshotRequest) Execute added in v1.6.0

type ApiDeleteSnapshotTagsRequest added in v1.6.0

type ApiDeleteSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSnapshotTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteSnapshotTagsRequest) Execute added in v1.6.0

type ApiDeleteSourceTagsRequest added in v1.6.0

type ApiDeleteSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSourceTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteSourceTagsRequest) Execute added in v1.6.0

type ApiDeleteTagsDsourceRequest added in v1.2.0

type ApiDeleteTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTagsDsourceRequest) DeleteTag added in v1.2.0

The parameters to delete tags

func (ApiDeleteTagsDsourceRequest) Execute added in v1.2.0

type ApiDeleteTimeflowRequest added in v1.6.0

type ApiDeleteTimeflowRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTimeflowRequest) Execute added in v1.6.0

type ApiDeleteTimeflowTagsRequest added in v1.6.0

type ApiDeleteTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTimeflowTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteTimeflowTagsRequest) Execute added in v1.6.0

type ApiDeleteVcdbTagsRequest added in v1.6.0

type ApiDeleteVcdbTagsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVcdbTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteVcdbTagsRequest) Execute added in v1.6.0

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 added in v1.6.0

type ApiDeleteVdbGroupTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVdbGroupTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiDeleteVdbGroupTagsRequest) Execute added in v1.6.0

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 added in v1.1.0

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 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 ApiEnableEnvironmentRequest

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

func (ApiEnableEnvironmentRequest) 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 added in v1.6.0

type ApiExecuteMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiExecuteMaskingJobRequest) Execute added in v1.6.0

func (ApiExecuteMaskingJobRequest) ExecuteMaskingJobParameters added in v1.6.0

func (r ApiExecuteMaskingJobRequest) ExecuteMaskingJobParameters(executeMaskingJobParameters ExecuteMaskingJobParameters) ApiExecuteMaskingJobRequest

type ApiFindByLocationRequest added in v1.6.0

type ApiFindByLocationRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiFindByLocationRequest) DatasetId added in v1.6.0

The ID of the dSource or VDB.

func (ApiFindByLocationRequest) Execute added in v1.6.0

func (ApiFindByLocationRequest) Location added in v1.6.0

The location

type ApiFindByTimestampRequest added in v1.6.0

type ApiFindByTimestampRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiFindByTimestampRequest) DatasetId added in v1.6.0

The ID of the dSource or VDB.

func (ApiFindByTimestampRequest) Execute added in v1.6.0

func (ApiFindByTimestampRequest) Timestamp added in v1.6.0

The desired point in time.

type ApiGetAccessGroupByIdRequest added in v1.6.0

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

func (ApiGetAccessGroupByIdRequest) Execute added in v1.6.0

type ApiGetAccessGroupScopeRequest added in v1.6.0

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

func (ApiGetAccessGroupScopeRequest) Execute added in v1.6.0

type ApiGetAccessGroupsRequest added in v1.6.0

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

func (ApiGetAccessGroupsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetAccessGroupsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetAccessGroupsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetAccountRequest added in v1.6.0

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

func (ApiGetAccountRequest) Execute added in v1.6.0

func (r ApiGetAccountRequest) Execute() (*Account, *http.Response, error)

type ApiGetAccountTagsRequest added in v1.6.0

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

func (ApiGetAccountTagsRequest) Execute added in v1.6.0

type ApiGetAccountsRequest added in v1.6.0

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

func (ApiGetAccountsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetAccountsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetAccountsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetAllObjectPermissionsRequest added in v1.6.0

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

func (ApiGetAllObjectPermissionsRequest) Execute added in v1.6.0

type ApiGetApiClassificationRequest added in v1.6.0

type ApiGetApiClassificationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetApiClassificationRequest) Execute added in v1.6.0

type ApiGetApiUsageReportRequest added in v1.2.0

type ApiGetApiUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetApiUsageReportRequest) ApiMetricKind added in v1.6.0

func (r ApiGetApiUsageReportRequest) ApiMetricKind(apiMetricKind string) ApiGetApiUsageReportRequest

Restrict the list to API usage metric of the given kind

func (ApiGetApiUsageReportRequest) ClientName added in v1.6.0

The Client names to be included in the report.

func (ApiGetApiUsageReportRequest) DctVersion added in v1.6.0

The DCT versions to be included in the report.

func (ApiGetApiUsageReportRequest) EndDate added in v1.2.0

Report end date/time. Defaults to current time.

func (ApiGetApiUsageReportRequest) Execute added in v1.2.0

func (ApiGetApiUsageReportRequest) GroupBy added in v1.6.0

The field to group results by.

func (ApiGetApiUsageReportRequest) StartDate added in v1.2.0

Report start date/time. Defaults to first API request.

func (ApiGetApiUsageReportRequest) UserAgent added in v1.6.0

The UserAgent names to be included in the report.

type ApiGetBookmarkByIdRequest

type ApiGetBookmarkByIdRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarkByIdRequest) Execute

type ApiGetBookmarkTagsRequest added in v1.6.0

type ApiGetBookmarkTagsRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarkTagsRequest) Execute added in v1.6.0

type ApiGetBookmarksByVdbGroupRequest

type ApiGetBookmarksByVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetBookmarksByVdbGroupRequest) Cursor added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetBookmarksByVdbGroupRequest) Sort added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetBookmarksRequest) Sort added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetCdbByIdRequest added in v1.6.0

type ApiGetCdbByIdRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetCdbByIdRequest) Execute added in v1.6.0

func (r ApiGetCdbByIdRequest) Execute() (*CDB, *http.Response, error)

type ApiGetCdbsRequest added in v1.6.0

type ApiGetCdbsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetCdbsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetCdbsRequest) Limit added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetConnectorByIdRequest added in v1.6.0

type ApiGetConnectorByIdRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorByIdRequest) Execute added in v1.6.0

type ApiGetConnectorTagsRequest added in v1.6.0

type ApiGetConnectorTagsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorTagsRequest) Execute added in v1.6.0

type ApiGetConnectorsRequest added in v1.6.0

type ApiGetConnectorsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectorsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetConnectorsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetConnectorsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetDatabaseTemplateByIdRequest added in v1.6.0

type ApiGetDatabaseTemplateByIdRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplateByIdRequest) Execute added in v1.6.0

type ApiGetDatabaseTemplateTagsRequest added in v1.6.0

type ApiGetDatabaseTemplateTagsRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplateTagsRequest) Execute added in v1.6.0

type ApiGetDatabaseTemplatesRequest added in v1.6.0

type ApiGetDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseTemplatesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetDatabaseTemplatesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetDatabaseTemplatesRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDatasetGroupByIdRequest added in v1.6.0

type ApiGetDatasetGroupByIdRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetDatasetGroupByIdRequest) Execute added in v1.6.0

type ApiGetDatasetGroupsRequest added in v1.6.0

type ApiGetDatasetGroupsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetDatasetGroupsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetDatasetGroupsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetDatasetGroupsRequest) Sort added in v1.6.0

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 added in v1.6.0

type ApiGetDsourceConsumptionReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceConsumptionReportRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetDsourceConsumptionReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetDsourceConsumptionReportRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetDsourceLinkingDefaultsRequest added in v1.6.0

type ApiGetDsourceLinkingDefaultsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceLinkingDefaultsRequest) Execute added in v1.6.0

func (ApiGetDsourceLinkingDefaultsRequest) LinkDSourceDefaultRequest added in v1.6.0

func (r ApiGetDsourceLinkingDefaultsRequest) LinkDSourceDefaultRequest(linkDSourceDefaultRequest LinkDSourceDefaultRequest) ApiGetDsourceLinkingDefaultsRequest

type ApiGetDsourceSnapshotsRequest added in v1.2.0

type ApiGetDsourceSnapshotsRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceSnapshotsRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiGetDsourceSnapshotsRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

type ApiGetDsourceUsageReportRequest added in v1.2.0

type ApiGetDsourceUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetDsourceUsageReportRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiGetDsourceUsageReportRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetDsourceUsageReportRequest) Sort added in v1.6.0

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 added in v1.6.0

Restrict the objects, which are allowed.

func (ApiGetDsourcesRequest) Sort added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetEngineTagsRequest added in v1.2.0

type ApiGetEngineTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetEngineTagsRequest) Execute added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetExecutionByIdRequest added in v1.6.0

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

func (ApiGetExecutionByIdRequest) Execute added in v1.6.0

type ApiGetExecutionEventsRequest added in v1.6.0

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

func (ApiGetExecutionEventsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetExecutionEventsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetExecutionEventsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetExecutionsRequest added in v1.6.0

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

func (ApiGetExecutionsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetExecutionsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetExecutionsRequest) Sort added in v1.6.0

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 added in v1.6.0

type ApiGetHashicorpVaultTagsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetHashicorpVaultTagsRequest) Execute added in v1.6.0

type ApiGetHashicorpVaultsRequest

type ApiGetHashicorpVaultsRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetHashicorpVaultsRequest) Cursor added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetHashicorpVaultsRequest) Sort added in v1.2.0

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 added in v1.6.0

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

func (ApiGetJobTagsRequest) Execute added in v1.6.0

type ApiGetJobsRequest added in v1.6.0

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

func (ApiGetJobsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetJobsRequest) Limit added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetLdapConfigRequest added in v1.6.0

type ApiGetLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetLdapConfigRequest) Execute added in v1.6.0

type ApiGetMaskingJobByIdRequest added in v1.6.0

type ApiGetMaskingJobByIdRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobByIdRequest) Execute added in v1.6.0

type ApiGetMaskingJobConnectorsRequest added in v1.6.0

type ApiGetMaskingJobConnectorsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobConnectorsRequest) Execute added in v1.6.0

type ApiGetMaskingJobSourceEnginesRequest added in v1.6.0

type ApiGetMaskingJobSourceEnginesRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobSourceEnginesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetMaskingJobSourceEnginesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetMaskingJobSourceEnginesRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMaskingJobTagRequest added in v1.6.0

type ApiGetMaskingJobTagRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobTagRequest) Execute added in v1.6.0

type ApiGetMaskingJobsRequest added in v1.6.0

type ApiGetMaskingJobsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiGetMaskingJobsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetMaskingJobsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetMaskingJobsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiGetMetadataDatabaseRequest added in v1.6.0

type ApiGetMetadataDatabaseRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetMetadataDatabaseRequest) Execute added in v1.6.0

type ApiGetObjectPermissionsRequest added in v1.6.0

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

func (ApiGetObjectPermissionsRequest) Execute added in v1.6.0

type ApiGetPasswordPoliciesRequest added in v1.6.0

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

func (ApiGetPasswordPoliciesRequest) Execute added in v1.6.0

type ApiGetProductInfoRequest added in v1.2.0

type ApiGetProductInfoRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetProductInfoRequest) Execute added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetRegisteredEnginesRequest) Sort added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetReportingScheduleByIdRequest added in v1.2.0

type ApiGetReportingScheduleByIdRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingScheduleByIdRequest) Execute added in v1.2.0

type ApiGetReportingScheduleTagsRequest added in v1.6.0

type ApiGetReportingScheduleTagsRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingScheduleTagsRequest) Execute added in v1.6.0

type ApiGetReportingSchedulesRequest added in v1.2.0

type ApiGetReportingSchedulesRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetReportingSchedulesRequest) Cursor added in v1.6.0

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 added in v1.2.0

func (ApiGetReportingSchedulesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetReportingSchedulesRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetRoleByIdRequest added in v1.6.0

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

func (ApiGetRoleByIdRequest) Execute added in v1.6.0

func (r ApiGetRoleByIdRequest) Execute() (*Role, *http.Response, error)

type ApiGetRoleTagsRequest added in v1.6.0

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

func (ApiGetRoleTagsRequest) Execute added in v1.6.0

type ApiGetRolesRequest added in v1.6.0

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

func (ApiGetRolesRequest) Execute added in v1.6.0

type ApiGetSamlConfigRequest added in v1.6.0

type ApiGetSamlConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetSamlConfigRequest) Execute added in v1.6.0

type ApiGetSmtpConfigRequest added in v1.2.0

type ApiGetSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiGetSmtpConfigRequest) Execute added in v1.2.0

type ApiGetSnapshotByIdRequest

type ApiGetSnapshotByIdRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotByIdRequest) Execute

type ApiGetSnapshotTagsRequest added in v1.6.0

type ApiGetSnapshotTagsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiGetSnapshotTagsRequest) Execute added in v1.6.0

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 added in v1.6.0

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 ApiGetSourceTagsRequest added in v1.6.0

type ApiGetSourceTagsRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceTagsRequest) Execute added in v1.6.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetTagsCdbRequest added in v1.6.0

type ApiGetTagsCdbRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsCdbRequest) Execute added in v1.6.0

type ApiGetTagsDsourceRequest added in v1.1.0

type ApiGetTagsDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsDsourceRequest) Execute added in v1.1.0

type ApiGetTagsEnvironmentRequest added in v1.1.0

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

func (ApiGetTagsEnvironmentRequest) Execute added in v1.1.0

type ApiGetTagsVcdbRequest added in v1.6.0

type ApiGetTagsVcdbRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsVcdbRequest) Execute added in v1.6.0

type ApiGetTagsVdbRequest

type ApiGetTagsVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagsVdbRequest) Execute

type ApiGetTimeflowByIdRequest added in v1.6.0

type ApiGetTimeflowByIdRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowByIdRequest) Execute added in v1.6.0

type ApiGetTimeflowSnapshotDayRangeRequest added in v1.6.0

type ApiGetTimeflowSnapshotDayRangeRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowSnapshotDayRangeRequest) Execute added in v1.6.0

type ApiGetTimeflowTagsRequest added in v1.6.0

type ApiGetTimeflowTagsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowTagsRequest) Execute added in v1.6.0

type ApiGetTimeflowsRequest added in v1.6.0

type ApiGetTimeflowsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetTimeflowsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetTimeflowsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetTimeflowsRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVcdbByIdRequest added in v1.6.0

type ApiGetVcdbByIdRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVcdbByIdRequest) Execute added in v1.6.0

func (r ApiGetVcdbByIdRequest) Execute() (*VCDB, *http.Response, error)

type ApiGetVcdbsRequest added in v1.6.0

type ApiGetVcdbsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVcdbsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiGetVcdbsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVcdbsRequest) Sort added in v1.6.0

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 added in v1.6.0

type ApiGetVdbGroupTagsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupTagsRequest) Execute added in v1.6.0

type ApiGetVdbGroupsByBookmarkRequest

type ApiGetVdbGroupsByBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbGroupsByBookmarkRequest) Cursor added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVdbGroupsByBookmarkRequest) Sort added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiGetVdbGroupsRequest) Sort added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbInventoryReportRequest added in v1.2.0

type ApiGetVdbInventoryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbInventoryReportRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiGetVdbInventoryReportRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetVdbInventoryReportRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVdbSnapshotsRequest added in v1.2.0

type ApiGetVdbSnapshotsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiGetVdbSnapshotsRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiGetVdbSnapshotsRequest) Limit added in v1.2.0

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 added in v1.6.0

func (r ApiGetVdbsRequest) Permission(permission PermissionEnum) ApiGetVdbsRequest

Restrict the objects, which are allowed.

func (ApiGetVdbsRequest) Sort added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiGetVirtualizationPolicyByIdRequest added in v1.6.0

type ApiGetVirtualizationPolicyByIdRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiGetVirtualizationPolicyByIdRequest) Execute added in v1.6.0

type ApiGetVirtualizationStorageSummaryReportRequest added in v1.1.0

type ApiGetVirtualizationStorageSummaryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiGetVirtualizationStorageSummaryReportRequest) Cursor added in v1.6.0

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 added in v1.1.0

func (ApiGetVirtualizationStorageSummaryReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiGetVirtualizationStorageSummaryReportRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiImportDatabaseTemplatesRequest added in v1.6.0

type ApiImportDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiImportDatabaseTemplatesRequest) EngineIdBody added in v1.6.0

Body containing the ID of the registered engine.

func (ApiImportDatabaseTemplatesRequest) Execute added in v1.6.0

type ApiLinkDatabaseRequest added in v1.6.0

type ApiLinkDatabaseRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiLinkDatabaseRequest) Execute added in v1.6.0

func (ApiLinkDatabaseRequest) LinkDSourceParameters added in v1.6.0

func (r ApiLinkDatabaseRequest) LinkDSourceParameters(linkDSourceParameters LinkDSourceParameters) ApiLinkDatabaseRequest

The parameters to link a dSource.

type ApiListEnvironmentUsersRequest added in v1.1.0

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

func (ApiListEnvironmentUsersRequest) Execute added in v1.1.0

type ApiListPropertiesRequest added in v1.6.0

type ApiListPropertiesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiListPropertiesRequest) Execute added in v1.6.0

type ApiListVirtualizationPoliciesRequest added in v1.6.0

type ApiListVirtualizationPoliciesRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiListVirtualizationPoliciesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiListVirtualizationPoliciesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiListVirtualizationPoliciesRequest) Sort added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiMigrateMaskingJobRequest added in v1.6.0

type ApiMigrateMaskingJobRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiMigrateMaskingJobRequest) Execute added in v1.6.0

func (ApiMigrateMaskingJobRequest) MigrateMaskingJobParameters added in v1.6.0

func (r ApiMigrateMaskingJobRequest) MigrateMaskingJobParameters(migrateMaskingJobParameters MigrateMaskingJobParameters) ApiMigrateMaskingJobRequest

type ApiPrimaryEnvironmentUserRequest added in v1.2.0

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

func (ApiPrimaryEnvironmentUserRequest) Execute added in v1.2.0

type ApiProvisionVdbBySnapshotDefaultsRequest added in v1.6.0

type ApiProvisionVdbBySnapshotDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbBySnapshotDefaultsRequest) Execute added in v1.6.0

func (ApiProvisionVdbBySnapshotDefaultsRequest) ProvisionVDBBySnapshotDefaultsRequest added in v1.6.0

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 added in v1.6.0

type ApiProvisionVdbByTimestampDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbByTimestampDefaultsRequest) Execute added in v1.6.0

func (ApiProvisionVdbByTimestampDefaultsRequest) ProvisionVDBByTimestampDefaultsRequest added in v1.6.0

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 added in v1.6.0

type ApiProvisionVdbFromBookmarkDefaultsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbFromBookmarkDefaultsRequest) Execute added in v1.6.0

func (ApiProvisionVdbFromBookmarkDefaultsRequest) ProvisionVDBFromBookmarkDefaultsRequest added in v1.6.0

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 added in v1.2.0

type ApiProvisionVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbFromBookmarkRequest) Execute added in v1.2.0

func (ApiProvisionVdbFromBookmarkRequest) ProvisionVDBFromBookmarkParameters added in v1.2.0

func (r ApiProvisionVdbFromBookmarkRequest) ProvisionVDBFromBookmarkParameters(provisionVDBFromBookmarkParameters ProvisionVDBFromBookmarkParameters) ApiProvisionVdbFromBookmarkRequest

The parameters to provision a VDB.

type ApiProvisionVdbGroupFromBookmarkRequest added in v1.2.0

type ApiProvisionVdbGroupFromBookmarkRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiProvisionVdbGroupFromBookmarkRequest) Execute added in v1.2.0

func (ApiProvisionVdbGroupFromBookmarkRequest) ProvisionVDBGroupFromBookmarkParameters added in v1.2.0

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 added in v1.6.0

type ApiRefreshVdbByLocationRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbByLocationRequest) Execute added in v1.6.0

func (ApiRefreshVdbByLocationRequest) RefreshVDBByLocationParameters added in v1.6.0

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 added in v1.2.0

type ApiRefreshVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbFromBookmarkRequest) Execute added in v1.2.0

func (ApiRefreshVdbFromBookmarkRequest) RefreshVDBFromBookmarkParameters added in v1.2.0

func (r ApiRefreshVdbFromBookmarkRequest) RefreshVDBFromBookmarkParameters(refreshVDBFromBookmarkParameters RefreshVDBFromBookmarkParameters) ApiRefreshVdbFromBookmarkRequest

The parameters to refresh a VDB.

type ApiRefreshVdbGroupRequest added in v1.1.0

type ApiRefreshVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiRefreshVdbGroupRequest) Execute added in v1.1.0

func (ApiRefreshVdbGroupRequest) RefreshVDBGroupParameters added in v1.1.0

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 ApiRemoveAccessGroupAccountIdRequest added in v1.6.0

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

func (ApiRemoveAccessGroupAccountIdRequest) Execute added in v1.6.0

type ApiRemoveAccessGroupAccountTagsRequest added in v1.6.0

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

func (ApiRemoveAccessGroupAccountTagsRequest) DeleteTag added in v1.6.0

The parameters to delete tags

func (ApiRemoveAccessGroupAccountTagsRequest) Execute added in v1.6.0

type ApiRemoveAccessGroupScopeRequest added in v1.6.0

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

func (ApiRemoveAccessGroupScopeRequest) Execute added in v1.6.0

type ApiRemoveAlwaysAllowedPermissionsRequest added in v1.6.0

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

func (ApiRemoveAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest added in v1.6.0

func (r ApiRemoveAlwaysAllowedPermissionsRequest) AlwaysAllowedPermissionRequest(alwaysAllowedPermissionRequest AlwaysAllowedPermissionRequest) ApiRemoveAlwaysAllowedPermissionsRequest

Remove always allowed permissions for given object type.

func (ApiRemoveAlwaysAllowedPermissionsRequest) Execute added in v1.6.0

type ApiRemoveRolePermissionsRequest added in v1.6.0

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

func (ApiRemoveRolePermissionsRequest) Execute added in v1.6.0

func (ApiRemoveRolePermissionsRequest) PermissionsRequest added in v1.6.0

Permissions to remove from the role.

type ApiResetAccountPasswordRequest added in v1.6.0

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

func (ApiResetAccountPasswordRequest) Execute added in v1.6.0

func (ApiResetAccountPasswordRequest) ResetPasswordParameter added in v1.6.0

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 added in v1.2.0

type ApiRollbackVdbFromBookmarkRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbFromBookmarkRequest) Execute added in v1.2.0

func (ApiRollbackVdbFromBookmarkRequest) RollbackVDBFromBookmarkParameters added in v1.2.0

func (r ApiRollbackVdbFromBookmarkRequest) RollbackVDBFromBookmarkParameters(rollbackVDBFromBookmarkParameters RollbackVDBFromBookmarkParameters) ApiRollbackVdbFromBookmarkRequest

The parameters to rollback a VDB.

type ApiRollbackVdbGroupRequest added in v1.1.0

type ApiRollbackVdbGroupRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiRollbackVdbGroupRequest) Execute added in v1.1.0

func (ApiRollbackVdbGroupRequest) RollbackVDBGroupParameters added in v1.1.0

func (r ApiRollbackVdbGroupRequest) RollbackVDBGroupParameters(rollbackVDBGroupParameters RollbackVDBGroupParameters) ApiRollbackVdbGroupRequest

The parameters to rollback a VDBGroup.

type ApiSearchAccessGroupsRequest added in v1.6.0

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

func (ApiSearchAccessGroupsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchAccessGroupsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchAccessGroupsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchAccountsRequest added in v1.6.0

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

func (ApiSearchAccountsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchAccountsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchAccountsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchBookmarksRequest added in v1.2.0

type ApiSearchBookmarksRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiSearchBookmarksRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchBookmarksRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchBookmarksRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchCdbsRequest added in v1.6.0

type ApiSearchCdbsRequest struct {
	ApiService *CDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchCdbsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchCdbsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchCdbsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchConnectorsRequest added in v1.6.0

type ApiSearchConnectorsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiSearchConnectorsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchConnectorsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchConnectorsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchDatabaseTemplatesRequest added in v1.6.0

type ApiSearchDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiSearchDatabaseTemplatesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchDatabaseTemplatesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDatabaseTemplatesRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDatasetGroupsRequest added in v1.6.0

type ApiSearchDatasetGroupsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiSearchDatasetGroupsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchDatasetGroupsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDatasetGroupsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourceConsumptionReportRequest added in v1.6.0

type ApiSearchDsourceConsumptionReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourceConsumptionReportRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchDsourceConsumptionReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchDsourceConsumptionReportRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourceUsageReportRequest added in v1.6.0

type ApiSearchDsourceUsageReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourceUsageReportRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchDsourceUsageReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchDsourceUsageReportRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchDsourcesRequest added in v1.2.0

type ApiSearchDsourcesRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiSearchDsourcesRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchDsourcesRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchDsourcesRequest) Permission added in v1.6.0

Restrict the objects, which are allowed.

func (ApiSearchDsourcesRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchEnginesRequest added in v1.2.0

type ApiSearchEnginesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiSearchEnginesRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchEnginesRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchEnginesRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchEnvironmentsRequest added in v1.2.0

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

func (ApiSearchEnvironmentsRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchEnvironmentsRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchEnvironmentsRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchExecutionEventsRequest added in v1.6.0

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

func (ApiSearchExecutionEventsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchExecutionEventsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchExecutionEventsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchExecutionsRequest added in v1.6.0

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

func (ApiSearchExecutionsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchExecutionsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchExecutionsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchJobsRequest added in v1.6.0

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

func (ApiSearchJobsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchJobsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchJobsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchMaskingJobSourceEnginesRequest added in v1.6.0

type ApiSearchMaskingJobSourceEnginesRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingJobSourceEnginesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchMaskingJobSourceEnginesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchMaskingJobSourceEnginesRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchMaskingJobsRequest added in v1.6.0

type ApiSearchMaskingJobsRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiSearchMaskingJobsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchMaskingJobsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchMaskingJobsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchRolesRequest added in v1.6.0

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

func (ApiSearchRolesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchRolesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchRolesRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchSnapshotsRequest added in v1.6.0

type ApiSearchSnapshotsRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiSearchSnapshotsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchSnapshotsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchSnapshotsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchSourcesRequest added in v1.2.0

type ApiSearchSourcesRequest struct {
	ApiService *SourcesApiService
	// contains filtered or unexported fields
}

func (ApiSearchSourcesRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchSourcesRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchSourcesRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchTimeflowsRequest added in v1.6.0

type ApiSearchTimeflowsRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiSearchTimeflowsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchTimeflowsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchTimeflowsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVcdbsRequest added in v1.6.0

type ApiSearchVcdbsRequest struct {
	ApiService *VCDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVcdbsRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchVcdbsRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVcdbsRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbGroupsRequest added in v1.2.0

type ApiSearchVdbGroupsRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbGroupsRequest) Cursor added in v1.2.0

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 added in v1.2.0

func (ApiSearchVdbGroupsRequest) Limit added in v1.2.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVdbGroupsRequest) SearchBody added in v1.2.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbInventoryReportRequest added in v1.6.0

type ApiSearchVdbInventoryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbInventoryReportRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchVdbInventoryReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchVdbInventoryReportRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVdbsRequest added in v1.1.0

type ApiSearchVdbsRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSearchVdbsRequest) Cursor added in v1.1.0

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 added in v1.1.0

func (ApiSearchVdbsRequest) Limit added in v1.1.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVdbsRequest) Permission added in v1.6.0

func (r ApiSearchVdbsRequest) Permission(permission PermissionEnum) ApiSearchVdbsRequest

Restrict the objects, which are allowed.

func (ApiSearchVdbsRequest) SearchBody added in v1.1.0

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 added in v1.2.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSearchVirtualizationPoliciesRequest added in v1.6.0

type ApiSearchVirtualizationPoliciesRequest struct {
	ApiService *VirtualizationPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiSearchVirtualizationPoliciesRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchVirtualizationPoliciesRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 100.

func (ApiSearchVirtualizationPoliciesRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies a descending order.

type ApiSearchVirtualizationStorageSummaryReportRequest added in v1.6.0

type ApiSearchVirtualizationStorageSummaryReportRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiSearchVirtualizationStorageSummaryReportRequest) Cursor added in v1.6.0

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 added in v1.6.0

func (ApiSearchVirtualizationStorageSummaryReportRequest) Limit added in v1.6.0

Maximum number of objects to return per query. The value must be between 1 and 1000. Default is 10000.

func (ApiSearchVirtualizationStorageSummaryReportRequest) SearchBody added in v1.6.0

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 added in v1.6.0

The field to sort results by. A property name with a prepended '-' signifies descending order.

type ApiSnapshotCompatibleRepositoriesRequest added in v1.6.0

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

func (ApiSnapshotCompatibleRepositoriesRequest) Execute added in v1.6.0

func (ApiSnapshotCompatibleRepositoriesRequest) SnapshotCompatibleRepositoryRequest added in v1.6.0

func (r ApiSnapshotCompatibleRepositoriesRequest) SnapshotCompatibleRepositoryRequest(snapshotCompatibleRepositoryRequest SnapshotCompatibleRepositoryRequest) ApiSnapshotCompatibleRepositoriesRequest

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

type ApiSnapshotDsourceRequest added in v1.2.0

type ApiSnapshotDsourceRequest struct {
	ApiService *DSourcesApiService
	// contains filtered or unexported fields
}

func (ApiSnapshotDsourceRequest) DSourceSnapshotParameters added in v1.2.0

func (r ApiSnapshotDsourceRequest) DSourceSnapshotParameters(dSourceSnapshotParameters DSourceSnapshotParameters) ApiSnapshotDsourceRequest

Optional parameters to snapshot a DSource.

func (ApiSnapshotDsourceRequest) Execute added in v1.2.0

type ApiSnapshotVdbRequest added in v1.2.0

type ApiSnapshotVdbRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSnapshotVdbRequest) Execute added in v1.2.0

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 added in v1.6.0

type ApiSwitchTimeflowRequest struct {
	ApiService *VDBsApiService
	// contains filtered or unexported fields
}

func (ApiSwitchTimeflowRequest) Execute added in v1.6.0

func (ApiSwitchTimeflowRequest) SwitchTimeflowParameters added in v1.6.0

func (r ApiSwitchTimeflowRequest) SwitchTimeflowParameters(switchTimeflowParameters SwitchTimeflowParameters) ApiSwitchTimeflowRequest

The parameters to switch the timeflow of a VDB.

type ApiTimeToUpdateSourcesRequest added in v1.6.0

type ApiTimeToUpdateSourcesRequest struct {
	ApiService *TestApiService
	// contains filtered or unexported fields
}

func (ApiTimeToUpdateSourcesRequest) Execute added in v1.6.0

func (ApiTimeToUpdateSourcesRequest) TimeToUpdateSourcesRequest added in v1.6.0

func (r ApiTimeToUpdateSourcesRequest) TimeToUpdateSourcesRequest(timeToUpdateSourcesRequest TimeToUpdateSourcesRequest) ApiTimeToUpdateSourcesRequest

type ApiTokenInfoRequest added in v1.6.0

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

func (ApiTokenInfoRequest) Execute added in v1.6.0

func (ApiTokenInfoRequest) TokenInfoRequest added in v1.6.0

func (r ApiTokenInfoRequest) TokenInfoRequest(tokenInfoRequest TokenInfoRequest) ApiTokenInfoRequest

type ApiUndoImportDatabaseTemplatesRequest added in v1.6.0

type ApiUndoImportDatabaseTemplatesRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUndoImportDatabaseTemplatesRequest) EngineIdBody added in v1.6.0

Body containing the ID of the registered engine.

func (ApiUndoImportDatabaseTemplatesRequest) Execute added in v1.6.0

type ApiUnregisterEngineRequest

type ApiUnregisterEngineRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUnregisterEngineRequest) Execute

type ApiUnsetSnapshotRetentionRequest added in v1.6.0

type ApiUnsetSnapshotRetentionRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiUnsetSnapshotRetentionRequest) Execute added in v1.6.0

type ApiUpdateAccessGroupRequest added in v1.6.0

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

func (ApiUpdateAccessGroupRequest) AccessGroupUpdateParameters added in v1.6.0

func (r ApiUpdateAccessGroupRequest) AccessGroupUpdateParameters(accessGroupUpdateParameters AccessGroupUpdateParameters) ApiUpdateAccessGroupRequest

func (ApiUpdateAccessGroupRequest) Execute added in v1.6.0

type ApiUpdateAccessGroupScopeRequest added in v1.6.0

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

func (ApiUpdateAccessGroupScopeRequest) Execute added in v1.6.0

func (ApiUpdateAccessGroupScopeRequest) UpdateAccessGroupScope added in v1.6.0

func (r ApiUpdateAccessGroupScopeRequest) UpdateAccessGroupScope(updateAccessGroupScope UpdateAccessGroupScope) ApiUpdateAccessGroupScopeRequest

Access group scope to update.

type ApiUpdateAccountRequest added in v1.6.0

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

func (ApiUpdateAccountRequest) AccountUpdateParameter added in v1.6.0

func (r ApiUpdateAccountRequest) AccountUpdateParameter(accountUpdateParameter AccountUpdateParameter) ApiUpdateAccountRequest

func (ApiUpdateAccountRequest) Execute added in v1.6.0

type ApiUpdateApiClassificationRequest added in v1.6.0

type ApiUpdateApiClassificationRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApiClassificationRequest) APIClassificationConfig added in v1.6.0

func (r ApiUpdateApiClassificationRequest) APIClassificationConfig(aPIClassificationConfig APIClassificationConfig) ApiUpdateApiClassificationRequest

Request to update api classification config.

func (ApiUpdateApiClassificationRequest) Execute added in v1.6.0

type ApiUpdateBookmarkRequest added in v1.6.0

type ApiUpdateBookmarkRequest struct {
	ApiService *BookmarksApiService
	// contains filtered or unexported fields
}

func (ApiUpdateBookmarkRequest) Execute added in v1.6.0

func (ApiUpdateBookmarkRequest) UpdateBookmarkParameters added in v1.6.0

func (r ApiUpdateBookmarkRequest) UpdateBookmarkParameters(updateBookmarkParameters UpdateBookmarkParameters) ApiUpdateBookmarkRequest

The new data to update a Bookmark.

type ApiUpdateConnectorByIdRequest added in v1.6.0

type ApiUpdateConnectorByIdRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateConnectorByIdRequest) ConnectorUpdateParameters added in v1.6.0

func (r ApiUpdateConnectorByIdRequest) ConnectorUpdateParameters(connectorUpdateParameters ConnectorUpdateParameters) ApiUpdateConnectorByIdRequest

The new data to update a masking Connector.

func (ApiUpdateConnectorByIdRequest) Execute added in v1.6.0

type ApiUpdateDatabaseTemplateRequest added in v1.6.0

type ApiUpdateDatabaseTemplateRequest struct {
	ApiService *DatabaseTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDatabaseTemplateRequest) Execute added in v1.6.0

func (ApiUpdateDatabaseTemplateRequest) UpdateDatabaseTemplateParameters added in v1.6.0

func (r ApiUpdateDatabaseTemplateRequest) UpdateDatabaseTemplateParameters(updateDatabaseTemplateParameters UpdateDatabaseTemplateParameters) ApiUpdateDatabaseTemplateRequest

The new data to update a VDB.

type ApiUpdateEnvironmentRequest added in v1.1.0

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

func (ApiUpdateEnvironmentRequest) EnvironmentUpdateParameters added in v1.1.0

func (r ApiUpdateEnvironmentRequest) EnvironmentUpdateParameters(environmentUpdateParameters EnvironmentUpdateParameters) ApiUpdateEnvironmentRequest

the parameters to update an environment

func (ApiUpdateEnvironmentRequest) Execute added in v1.1.0

type ApiUpdateEnvironmentUserRequest added in v1.2.0

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

func (ApiUpdateEnvironmentUserRequest) EnvironmentUserParams added in v1.2.0

func (r ApiUpdateEnvironmentUserRequest) EnvironmentUserParams(environmentUserParams EnvironmentUserParams) ApiUpdateEnvironmentUserRequest

The parameters to create an environment user.

func (ApiUpdateEnvironmentUserRequest) Execute added in v1.2.0

type ApiUpdateHostRequest added in v1.6.0

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

func (ApiUpdateHostRequest) Execute added in v1.6.0

func (ApiUpdateHostRequest) HostUpdateParameters added in v1.6.0

func (r ApiUpdateHostRequest) HostUpdateParameters(hostUpdateParameters HostUpdateParameters) ApiUpdateHostRequest

the parameters to update a host.

type ApiUpdateLdapConfigRequest added in v1.6.0

type ApiUpdateLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateLdapConfigRequest) Execute added in v1.6.0

func (ApiUpdateLdapConfigRequest) LDAPConfigParams added in v1.6.0

func (r ApiUpdateLdapConfigRequest) LDAPConfigParams(lDAPConfigParams LDAPConfigParams) ApiUpdateLdapConfigRequest

The parameters to update the LDAP config.

type ApiUpdateMaskingJobByIdRequest added in v1.6.0

type ApiUpdateMaskingJobByIdRequest struct {
	ApiService *MaskingJobsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateMaskingJobByIdRequest) Execute added in v1.6.0

func (ApiUpdateMaskingJobByIdRequest) UpdateMaskingJobParameters added in v1.6.0

func (r ApiUpdateMaskingJobByIdRequest) UpdateMaskingJobParameters(updateMaskingJobParameters UpdateMaskingJobParameters) ApiUpdateMaskingJobByIdRequest

The new data to update a Masking Job.

type ApiUpdatePasswordPoliciesRequest added in v1.6.0

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

func (ApiUpdatePasswordPoliciesRequest) Execute added in v1.6.0

func (ApiUpdatePasswordPoliciesRequest) PasswordPoliciesParams added in v1.6.0

func (r ApiUpdatePasswordPoliciesRequest) PasswordPoliciesParams(passwordPoliciesParams PasswordPoliciesParams) ApiUpdatePasswordPoliciesRequest

The parameters to update the password policies.

type ApiUpdatePropertiesRequest added in v1.6.0

type ApiUpdatePropertiesRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePropertiesRequest) Execute added in v1.6.0

func (ApiUpdatePropertiesRequest) GlobalProperties added in v1.6.0

func (r ApiUpdatePropertiesRequest) GlobalProperties(globalProperties GlobalProperties) ApiUpdatePropertiesRequest

The parameters to update property value.

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 added in v1.2.0

type ApiUpdateReportingScheduleRequest struct {
	ApiService *ReportingApiService
	// contains filtered or unexported fields
}

func (ApiUpdateReportingScheduleRequest) Execute added in v1.2.0

func (ApiUpdateReportingScheduleRequest) ReportingSchedule added in v1.2.0

type ApiUpdateRoleRequest added in v1.6.0

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

func (ApiUpdateRoleRequest) Execute added in v1.6.0

func (r ApiUpdateRoleRequest) Execute() (*Role, *http.Response, error)

func (ApiUpdateRoleRequest) RoleUpdateParameters added in v1.6.0

func (r ApiUpdateRoleRequest) RoleUpdateParameters(roleUpdateParameters RoleUpdateParameters) ApiUpdateRoleRequest

type ApiUpdateSamlConfigRequest added in v1.6.0

type ApiUpdateSamlConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSamlConfigRequest) Execute added in v1.6.0

func (ApiUpdateSamlConfigRequest) SAMLConfigParams added in v1.6.0

func (r ApiUpdateSamlConfigRequest) SAMLConfigParams(sAMLConfigParams SAMLConfigParams) ApiUpdateSamlConfigRequest

The parameters to update the SAML config.

type ApiUpdateSmtpConfigRequest added in v1.2.0

type ApiUpdateSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSmtpConfigRequest) Execute added in v1.2.0

func (ApiUpdateSmtpConfigRequest) SMTPConfigParams added in v1.2.0

func (r ApiUpdateSmtpConfigRequest) SMTPConfigParams(sMTPConfigParams SMTPConfigParams) ApiUpdateSmtpConfigRequest

The parameters to update the SMTP config.

type ApiUpdateSnapshotRequest added in v1.6.0

type ApiUpdateSnapshotRequest struct {
	ApiService *SnapshotsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSnapshotRequest) Execute added in v1.6.0

func (ApiUpdateSnapshotRequest) UpdateSnapshotParameters added in v1.6.0

func (r ApiUpdateSnapshotRequest) UpdateSnapshotParameters(updateSnapshotParameters UpdateSnapshotParameters) ApiUpdateSnapshotRequest

The new data to update a Snapshot.

type ApiUpdateTimeflowRequest added in v1.6.0

type ApiUpdateTimeflowRequest struct {
	ApiService *TimeflowsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTimeflowRequest) Execute added in v1.6.0

func (ApiUpdateTimeflowRequest) UpdateTimeflowParameters added in v1.6.0

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 added in v1.2.0

type ApiUpdateVdbGroupByIdRequest struct {
	ApiService *VDBGroupsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVdbGroupByIdRequest) Execute added in v1.2.0

func (ApiUpdateVdbGroupByIdRequest) UpdateVDBGroupParameters added in v1.2.0

func (r ApiUpdateVdbGroupByIdRequest) UpdateVDBGroupParameters(updateVDBGroupParameters UpdateVDBGroupParameters) ApiUpdateVdbGroupByIdRequest

The new data to update a VDB group.

type ApiUsageData added in v1.2.0

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 management
	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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ApiUsageData) GetApiCount() int64

GetApiCount returns the ApiCount field value

func (*ApiUsageData) GetApiCountOk added in v1.2.0

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 added in v1.2.0

func (o *ApiUsageData) GetApiEndpoint() string

GetApiEndpoint returns the ApiEndpoint field value if set, zero value otherwise.

func (*ApiUsageData) GetApiEndpointOk added in v1.2.0

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 added in v1.2.0

func (o *ApiUsageData) GetApiMethod() string

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

func (*ApiUsageData) GetApiMethodOk added in v1.2.0

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 added in v1.6.0

func (o *ApiUsageData) GetClientName() string

GetClientName returns the ClientName field value if set, zero value otherwise.

func (*ApiUsageData) GetClientNameOk added in v1.6.0

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 added in v1.6.0

func (o *ApiUsageData) GetDctVersion() string

GetDctVersion returns the DctVersion field value if set, zero value otherwise.

func (*ApiUsageData) GetDctVersionOk added in v1.6.0

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 added in v1.6.0

func (o *ApiUsageData) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ApiUsageData) GetKindOk added in v1.6.0

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 added in v1.6.0

func (o *ApiUsageData) GetUserAgent() string

GetUserAgent returns the UserAgent field value if set, zero value otherwise.

func (*ApiUsageData) GetUserAgentOk added in v1.6.0

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 added in v1.6.0

func (o *ApiUsageData) HasApiEndpoint() bool

HasApiEndpoint returns a boolean if a field has been set.

func (*ApiUsageData) HasApiMethod added in v1.6.0

func (o *ApiUsageData) HasApiMethod() bool

HasApiMethod returns a boolean if a field has been set.

func (*ApiUsageData) HasClientName added in v1.6.0

func (o *ApiUsageData) HasClientName() bool

HasClientName returns a boolean if a field has been set.

func (*ApiUsageData) HasDctVersion added in v1.6.0

func (o *ApiUsageData) HasDctVersion() bool

HasDctVersion returns a boolean if a field has been set.

func (*ApiUsageData) HasKind added in v1.6.0

func (o *ApiUsageData) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ApiUsageData) HasUserAgent added in v1.6.0

func (o *ApiUsageData) HasUserAgent() bool

HasUserAgent returns a boolean if a field has been set.

func (ApiUsageData) MarshalJSON added in v1.2.0

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

func (*ApiUsageData) SetApiCount added in v1.2.0

func (o *ApiUsageData) SetApiCount(v int64)

SetApiCount sets field value

func (*ApiUsageData) SetApiEndpoint added in v1.2.0

func (o *ApiUsageData) SetApiEndpoint(v string)

SetApiEndpoint gets a reference to the given string and assigns it to the ApiEndpoint field.

func (*ApiUsageData) SetApiMethod added in v1.2.0

func (o *ApiUsageData) SetApiMethod(v string)

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

func (*ApiUsageData) SetClientName added in v1.6.0

func (o *ApiUsageData) SetClientName(v string)

SetClientName gets a reference to the given string and assigns it to the ClientName field.

func (*ApiUsageData) SetDctVersion added in v1.6.0

func (o *ApiUsageData) SetDctVersion(v string)

SetDctVersion gets a reference to the given string and assigns it to the DctVersion field.

func (*ApiUsageData) SetKind added in v1.6.0

func (o *ApiUsageData) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ApiUsageData) SetUserAgent added in v1.6.0

func (o *ApiUsageData) SetUserAgent(v string)

SetUserAgent gets a reference to the given string and assigns it to the UserAgent field.

func (ApiUsageData) ToMap added in v1.6.0

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

type ApiUsageReportResponse added in v1.2.0

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 management API calls over the requested timeframe.
	TotalManagementApiCount *int64 `json:"total_management_api_count,omitempty"`
}

ApiUsageReportResponse struct for ApiUsageReportResponse

func NewApiUsageReportResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ApiUsageReportResponse) GetItems() []ApiUsageData

GetItems returns the Items field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetItemsOk added in v1.2.0

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 added in v1.6.0

func (o *ApiUsageReportResponse) GetTotalAutomationApiCount() int64

GetTotalAutomationApiCount returns the TotalAutomationApiCount field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetTotalAutomationApiCountOk added in v1.6.0

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) GetTotalManagementApiCount added in v1.6.0

func (o *ApiUsageReportResponse) GetTotalManagementApiCount() int64

GetTotalManagementApiCount returns the TotalManagementApiCount field value if set, zero value otherwise.

func (*ApiUsageReportResponse) GetTotalManagementApiCountOk added in v1.6.0

func (o *ApiUsageReportResponse) GetTotalManagementApiCountOk() (*int64, bool)

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

func (*ApiUsageReportResponse) HasItems added in v1.2.0

func (o *ApiUsageReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ApiUsageReportResponse) HasTotalAutomationApiCount added in v1.6.0

func (o *ApiUsageReportResponse) HasTotalAutomationApiCount() bool

HasTotalAutomationApiCount returns a boolean if a field has been set.

func (*ApiUsageReportResponse) HasTotalManagementApiCount added in v1.6.0

func (o *ApiUsageReportResponse) HasTotalManagementApiCount() bool

HasTotalManagementApiCount returns a boolean if a field has been set.

func (ApiUsageReportResponse) MarshalJSON added in v1.2.0

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

func (*ApiUsageReportResponse) SetItems added in v1.2.0

func (o *ApiUsageReportResponse) SetItems(v []ApiUsageData)

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

func (*ApiUsageReportResponse) SetTotalAutomationApiCount added in v1.6.0

func (o *ApiUsageReportResponse) SetTotalAutomationApiCount(v int64)

SetTotalAutomationApiCount gets a reference to the given int64 and assigns it to the TotalAutomationApiCount field.

func (*ApiUsageReportResponse) SetTotalManagementApiCount added in v1.6.0

func (o *ApiUsageReportResponse) SetTotalManagementApiCount(v int64)

SetTotalManagementApiCount gets a reference to the given int64 and assigns it to the TotalManagementApiCount field.

func (ApiUsageReportResponse) ToMap added in v1.6.0

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

type ApiValidateLdapConfigRequest added in v1.6.0

type ApiValidateLdapConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiValidateLdapConfigRequest) Execute added in v1.6.0

func (ApiValidateLdapConfigRequest) LdapConfigValidateParameter added in v1.6.0

func (r ApiValidateLdapConfigRequest) LdapConfigValidateParameter(ldapConfigValidateParameter LdapConfigValidateParameter) ApiValidateLdapConfigRequest

type ApiValidateSmtpConfigRequest added in v1.2.0

type ApiValidateSmtpConfigRequest struct {
	ApiService *ManagementApiService
	// contains filtered or unexported fields
}

func (ApiValidateSmtpConfigRequest) Execute added in v1.2.0

func (ApiValidateSmtpConfigRequest) SMTPConfigValidate added in v1.2.0

func (r ApiValidateSmtpConfigRequest) SMTPConfigValidate(sMTPConfigValidate SMTPConfigValidate) ApiValidateSmtpConfigRequest

The parameters to validate the SMTP config.

type AuthorizationApiService added in v1.6.0

type AuthorizationApiService service

AuthorizationApiService AuthorizationApi service

func (*AuthorizationApiService) AddAccessGroupAccountIds added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) AddAccessGroupAccountIdsExecute(r ApiAddAccessGroupAccountIdsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAccessGroupAccountTags added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) AddAccessGroupAccountTagsExecute(r ApiAddAccessGroupAccountTagsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAccessGroupScopes added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) AddAccessGroupScopesExecute(r ApiAddAccessGroupScopesRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) AddAlwaysAllowedPermissions added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) AddObjectsToAccessGroupScope added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ScopedObjectItemsResponse

func (*AuthorizationApiService) AddRolePermissions added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) AddRolePermissionsExecute(r ApiAddRolePermissionsRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) AddTagsToScope added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ScopeTagsResponse

func (*AuthorizationApiService) CreateAccessGroup added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) CreateRole added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) CreateRoleExecute(r ApiCreateRoleRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) CreateRoleTags added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TagsResponse

func (*AuthorizationApiService) DeleteAccessGroup added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) DeleteAccessGroupExecute(r ApiDeleteAccessGroupRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) DeleteAccessGroupScopeObjectTags added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) DeleteAccessGroupScopeObjectTagsExecute(r ApiDeleteAccessGroupScopeObjectTagsRequest) (*ScopeTagsResponse, *http.Response, error)

Execute executes the request

@return ScopeTagsResponse

func (*AuthorizationApiService) DeleteAccessGroupScopeObjects added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ScopedObjectItemsResponse

func (*AuthorizationApiService) DeleteRole added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) DeleteRoleExecute(r ApiDeleteRoleRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) DeleteRoleTag added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) DeleteRoleTagExecute(r ApiDeleteRoleTagRequest) (*http.Response, error)

Execute executes the request

func (*AuthorizationApiService) GetAccessGroupById added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) GetAccessGroupScope added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) GetAccessGroups added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListAccessGroupsResponse

func (*AuthorizationApiService) GetAllObjectPermissions added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AllObjectPermissionsResponse

func (*AuthorizationApiService) GetObjectPermissions added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ObjectPermissionsResponse

func (*AuthorizationApiService) GetRoleById added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) GetRoleByIdExecute(r ApiGetRoleByIdRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) GetRoleTags added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TagsResponse

func (*AuthorizationApiService) GetRoles added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListRolesResponse

func (*AuthorizationApiService) RemoveAccessGroupAccountId added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) RemoveAccessGroupAccountIdExecute(r ApiRemoveAccessGroupAccountIdRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAccessGroupAccountTags added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) RemoveAccessGroupAccountTagsExecute(r ApiRemoveAccessGroupAccountTagsRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAccessGroupScope added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) RemoveAccessGroupScopeExecute(r ApiRemoveAccessGroupScopeRequest) (*AccessGroup, *http.Response, error)

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) RemoveAlwaysAllowedPermissions added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) RemoveAlwaysAllowedPermissionsExecute(r ApiRemoveAlwaysAllowedPermissionsRequest) (*AccessGroupScope, *http.Response, error)

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) RemoveRolePermissions added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) RemoveRolePermissionsExecute(r ApiRemoveRolePermissionsRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*AuthorizationApiService) SearchAccessGroups added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchAccessGroupsResponse

func (*AuthorizationApiService) SearchRoles added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchRolesResponse

func (*AuthorizationApiService) UpdateAccessGroup added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroup

func (*AuthorizationApiService) UpdateAccessGroupScope added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return AccessGroupScope

func (*AuthorizationApiService) UpdateRole added in v1.6.0

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 added in v1.6.0

func (a *AuthorizationApiService) UpdateRoleExecute(r ApiUpdateRoleRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

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 rewinding the VDB.
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	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"`
	// 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"`
	// 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetAuxiliaryTemplateIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetCdbId() string

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCdbIdOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetClusterNodeIdsOk added in v1.2.0

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) GetConfigParams added in v1.6.0

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 added in v1.6.0

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) 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) GetName added in v1.2.0

func (o *BaseProvisionVDBParameters) GetName() string

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

func (*BaseProvisionVDBParameters) GetNameOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOsPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetOsUsernameOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetParentTdeKeystorePathOk added in v1.6.0

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.

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.

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) 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) 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.

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.

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) 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) 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 added in v1.1.0

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

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

func (*BaseProvisionVDBParameters) GetTagsOk added in v1.1.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTdeExportedKeyFileSecretOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbNameOk added in v1.2.0

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) GetVcdbTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParameters) GetVcdbTdeKeyIdentifierOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAppdataConfigParams added in v1.6.0

func (o *BaseProvisionVDBParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasAppdataSourceParams added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCdbId added in v1.2.0

func (o *BaseProvisionVDBParameters) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasConfigParams added in v1.6.0

func (o *BaseProvisionVDBParameters) HasConfigParams() bool

HasConfigParams 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) HasName added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOracleRacCustomEnvVars added in v1.6.0

func (o *BaseProvisionVDBParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOsPassword added in v1.2.0

func (o *BaseProvisionVDBParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasOsUsername added in v1.2.0

func (o *BaseProvisionVDBParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasParentTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasParentTdeKeystorePath added in v1.6.0

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) 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) 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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTdeExportedKeyFileSecret added in v1.6.0

func (o *BaseProvisionVDBParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasTdeKeyIdentifier added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbName added in v1.2.0

func (o *BaseProvisionVDBParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*BaseProvisionVDBParameters) HasVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*BaseProvisionVDBParameters) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*BaseProvisionVDBParameters) SetCdbId added in v1.2.0

func (o *BaseProvisionVDBParameters) SetCdbId(v string)

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*BaseProvisionVDBParameters) SetCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*BaseProvisionVDBParameters) SetConfigParams added in v1.6.0

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) 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) SetName added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*BaseProvisionVDBParameters) SetOracleRacCustomEnvVars added in v1.6.0

func (o *BaseProvisionVDBParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*BaseProvisionVDBParameters) SetOsPassword added in v1.2.0

func (o *BaseProvisionVDBParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*BaseProvisionVDBParameters) SetOsUsername added in v1.2.0

func (o *BaseProvisionVDBParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*BaseProvisionVDBParameters) SetParentTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*BaseProvisionVDBParameters) SetParentTdeKeystorePath added in v1.6.0

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.

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) 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) 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.

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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *BaseProvisionVDBParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*BaseProvisionVDBParameters) SetTdeExportedKeyFileSecret added in v1.6.0

func (o *BaseProvisionVDBParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*BaseProvisionVDBParameters) SetTdeKeyIdentifier added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*BaseProvisionVDBParameters) SetVcdbName added in v1.2.0

func (o *BaseProvisionVDBParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*BaseProvisionVDBParameters) SetVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

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

type BaseProvisionVDBParametersAllOf added in v1.2.0

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"`
	// 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"`
	// The tags to be created for VDB.
	Tags []Tag `json:"tags,omitempty"`
}

BaseProvisionVDBParametersAllOf struct for BaseProvisionVDBParametersAllOf

func NewBaseProvisionVDBParametersAllOf added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetArchiveLogOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAutoSelectRepositoryOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetAuxiliaryTemplateIdOk added in v1.2.0

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 added in v1.2.0

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdbIdOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCdcOnProvisionOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetClusterNodeIdsOk added in v1.2.0

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) GetConfigParams added in v1.6.0

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 added in v1.6.0

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) GetCustomEnvFiles added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvFilesOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetCustomEnvVarsOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentId() string

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

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetEnvironmentUserIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetFileMappingRulesOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetListenerIdsOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetMountPointOk added in v1.2.0

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) GetName added in v1.2.0

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

func (*BaseProvisionVDBParametersAllOf) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetNewDbidOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogGroupsOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOnlineLogSizeOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOpenResetLogsOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleInstanceNameOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOsPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetOsUsernameOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetParentTdeKeystorePathOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPostScriptOk added in v1.2.0

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) GetPreScript added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetPreScriptOk added in v1.2.0

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) GetRecoveryModel added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRecoveryModelOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRepositoryIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetRetentionPolicyIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetSnapshotPolicyIdOk added in v1.2.0

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 added in v1.2.0

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

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

func (*BaseProvisionVDBParametersAllOf) GetTagsOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTargetGroupIdOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTdeExportedKeyFileSecretOk added in v1.6.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTemplateIdOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetTruncateLogOnCheckpointOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetUniqueNameOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbNameOk added in v1.2.0

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) GetVcdbTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVcdbTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*BaseProvisionVDBParametersAllOf) GetVdbRestartOk added in v1.2.0

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 added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAppdataConfigParams added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAppdataSourceParams added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasArchiveLog added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAutoSelectRepository added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasAuxiliaryTemplateId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdbId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdbTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCdcOnProvision added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasClusterNodeIds added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasConfigParams added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCustomEnvFiles added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasCustomEnvVars added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasDatabaseName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasEnvironmentId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasEnvironmentUserId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasFileMappingRules added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasListenerIds added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasMountPoint added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasName added in v1.2.0

HasName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasNewDbid added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOnlineLogGroups added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOnlineLogSize added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOpenResetLogs added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleInstanceName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvFiles added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvVars added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOsPassword added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasOsUsername added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePath added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPostScript added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasPreScript added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRecoveryModel added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRepositoryId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasRetentionPolicyId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasSnapshotPolicyId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTags added in v1.2.0

HasTags returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTargetGroupId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTargetVcdbTdeKeystorePath added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTdeExportedKeyFileSecret added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTemplateId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasTruncateLogOnCheckpoint added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasUniqueName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbDatabaseName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVcdbTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*BaseProvisionVDBParametersAllOf) HasVdbRestart added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (BaseProvisionVDBParametersAllOf) MarshalJSON added in v1.2.0

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

func (*BaseProvisionVDBParametersAllOf) SetAdditionalMountPoints added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*BaseProvisionVDBParametersAllOf) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*BaseProvisionVDBParametersAllOf) SetAutoSelectRepository added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*BaseProvisionVDBParametersAllOf) SetAuxiliaryTemplateId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*BaseProvisionVDBParametersAllOf) SetCdbId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetCdbId(v string)

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*BaseProvisionVDBParametersAllOf) SetCdbTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*BaseProvisionVDBParametersAllOf) SetCdcOnProvision added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*BaseProvisionVDBParametersAllOf) SetClusterNodeIds added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*BaseProvisionVDBParametersAllOf) SetConfigParams added in v1.6.0

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) SetCustomEnvFiles added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*BaseProvisionVDBParametersAllOf) SetCustomEnvVars added in v1.2.0

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 added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*BaseProvisionVDBParametersAllOf) SetEnvironmentId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetEnvironmentId(v string)

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

func (*BaseProvisionVDBParametersAllOf) SetEnvironmentUserId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*BaseProvisionVDBParametersAllOf) SetFileMappingRules added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*BaseProvisionVDBParametersAllOf) SetListenerIds added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*BaseProvisionVDBParametersAllOf) SetMountPoint added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*BaseProvisionVDBParametersAllOf) SetName added in v1.2.0

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

func (*BaseProvisionVDBParametersAllOf) SetNewDbid added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*BaseProvisionVDBParametersAllOf) SetOnlineLogGroups added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*BaseProvisionVDBParametersAllOf) SetOnlineLogSize added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*BaseProvisionVDBParametersAllOf) SetOpenResetLogs added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*BaseProvisionVDBParametersAllOf) SetOracleInstanceName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvFiles added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvVars added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*BaseProvisionVDBParametersAllOf) SetOsPassword added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*BaseProvisionVDBParametersAllOf) SetOsUsername added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePassword added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePath added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*BaseProvisionVDBParametersAllOf) SetPostScript added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*BaseProvisionVDBParametersAllOf) SetPreScript added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*BaseProvisionVDBParametersAllOf) SetRecoveryModel added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*BaseProvisionVDBParametersAllOf) SetRepositoryId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*BaseProvisionVDBParametersAllOf) SetRetentionPolicyId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*BaseProvisionVDBParametersAllOf) SetSnapshotPolicyId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*BaseProvisionVDBParametersAllOf) SetTags added in v1.2.0

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

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

func (*BaseProvisionVDBParametersAllOf) SetTargetGroupId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*BaseProvisionVDBParametersAllOf) SetTargetVcdbTdeKeystorePath added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*BaseProvisionVDBParametersAllOf) SetTdeExportedKeyFileSecret added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*BaseProvisionVDBParametersAllOf) SetTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*BaseProvisionVDBParametersAllOf) SetTemplateId added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*BaseProvisionVDBParametersAllOf) SetTruncateLogOnCheckpoint added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*BaseProvisionVDBParametersAllOf) SetUniqueName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbDatabaseName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbName added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*BaseProvisionVDBParametersAllOf) SetVcdbTdeKeyIdentifier added in v1.6.0

func (o *BaseProvisionVDBParametersAllOf) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*BaseProvisionVDBParametersAllOf) SetVdbRestart added in v1.2.0

func (o *BaseProvisionVDBParametersAllOf) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (BaseProvisionVDBParametersAllOf) ToMap added in v1.6.0

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 added in v1.6.0

func (o *Bookmark) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*Bookmark) GetExpirationOk added in v1.6.0

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 added in v1.6.0

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

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

func (*Bookmark) GetTagsOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Bookmark) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Bookmark) HasVdbIds added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 BookmarkCreateParameters added in v1.6.0

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.
	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.
	SnapshotIds []string `json:"snapshot_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 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"`
}

BookmarkCreateParameters A Data Control Tower object that references points in time for one or more datasets.

func NewBookmarkCreateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetExpirationOk added in v1.6.0

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) GetMakeCurrentAccountOwner added in v1.6.0

func (o *BookmarkCreateParameters) GetMakeCurrentAccountOwner() bool

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

func (*BookmarkCreateParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) GetName() string

GetName returns the Name field value

func (*BookmarkCreateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetRetainForeverOk added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) GetRetention() int64

GetRetention returns the Retention field value if set, zero value otherwise. Deprecated

func (*BookmarkCreateParameters) GetRetentionOk added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) GetSnapshotIds() []string

GetSnapshotIds returns the SnapshotIds field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetSnapshotIdsOk added in v1.6.0

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 added in v1.6.0

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

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

func (*BookmarkCreateParameters) GetTagsOk added in v1.6.0

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) GetVdbIds added in v1.6.0

func (o *BookmarkCreateParameters) GetVdbIds() []string

GetVdbIds returns the VdbIds field value if set, zero value otherwise.

func (*BookmarkCreateParameters) GetVdbIdsOk added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasMakeCurrentAccountOwner added in v1.6.0

func (o *BookmarkCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasRetainForever added in v1.6.0

func (o *BookmarkCreateParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasRetention added in v1.6.0

func (o *BookmarkCreateParameters) HasRetention() bool

HasRetention returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasSnapshotIds added in v1.6.0

func (o *BookmarkCreateParameters) HasSnapshotIds() bool

HasSnapshotIds returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasTags added in v1.6.0

func (o *BookmarkCreateParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*BookmarkCreateParameters) HasVdbIds added in v1.6.0

func (o *BookmarkCreateParameters) HasVdbIds() bool

HasVdbIds returns a boolean if a field has been set.

func (BookmarkCreateParameters) MarshalJSON added in v1.6.0

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

func (*BookmarkCreateParameters) SetExpiration added in v1.6.0

func (o *BookmarkCreateParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*BookmarkCreateParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *BookmarkCreateParameters) SetMakeCurrentAccountOwner(v bool)

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

func (*BookmarkCreateParameters) SetName added in v1.6.0

func (o *BookmarkCreateParameters) SetName(v string)

SetName sets field value

func (*BookmarkCreateParameters) SetRetainForever added in v1.6.0

func (o *BookmarkCreateParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (*BookmarkCreateParameters) SetRetention added in v1.6.0

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 added in v1.6.0

func (o *BookmarkCreateParameters) SetSnapshotIds(v []string)

SetSnapshotIds gets a reference to the given []string and assigns it to the SnapshotIds field.

func (*BookmarkCreateParameters) SetTags added in v1.6.0

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

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

func (*BookmarkCreateParameters) SetVdbIds added in v1.6.0

func (o *BookmarkCreateParameters) SetVdbIds(v []string)

SetVdbIds gets a reference to the given []string and assigns it to the VdbIds field.

func (BookmarkCreateParameters) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchBookmarksResponse

func (*BookmarksApiService) UpdateBookmark added in v1.6.0

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 added in v1.6.0

func (a *BookmarksApiService) UpdateBookmarkExecute(r ApiUpdateBookmarkRequest) (*Bookmark, *http.Response, error)

Execute executes the request

@return Bookmark

type CDB added in v1.6.0

type CDB struct {
	// The CDB object entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this CDB.
	Name NullableString `json:"name,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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CDB) GetEngineId() string

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

func (*CDB) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CDB) GetId() string

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

func (*CDB) GetIdOk added in v1.6.0

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) GetJdbcConnectionString added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) GetSize added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*CDB) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *CDB) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*CDB) HasEngineId added in v1.6.0

func (o *CDB) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*CDB) HasEnvironmentId added in v1.6.0

func (o *CDB) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*CDB) HasId added in v1.6.0

func (o *CDB) HasId() bool

HasId returns a boolean if a field has been set.

func (*CDB) HasJdbcConnectionString added in v1.6.0

func (o *CDB) HasJdbcConnectionString() bool

HasJdbcConnectionString returns a boolean if a field has been set.

func (*CDB) HasName added in v1.6.0

func (o *CDB) HasName() bool

HasName returns a boolean if a field has been set.

func (*CDB) HasSize added in v1.6.0

func (o *CDB) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*CDB) HasTags added in v1.6.0

func (o *CDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CDB) MarshalJSON added in v1.6.0

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

func (*CDB) SetDatabaseVersion added in v1.6.0

func (o *CDB) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*CDB) SetDatabaseVersionNil added in v1.6.0

func (o *CDB) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*CDB) SetEngineId added in v1.6.0

func (o *CDB) SetEngineId(v string)

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

func (*CDB) SetEnvironmentId added in v1.6.0

func (o *CDB) SetEnvironmentId(v string)

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

func (*CDB) SetEnvironmentIdNil added in v1.6.0

func (o *CDB) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*CDB) SetId added in v1.6.0

func (o *CDB) SetId(v string)

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

func (*CDB) SetJdbcConnectionString added in v1.6.0

func (o *CDB) SetJdbcConnectionString(v string)

SetJdbcConnectionString gets a reference to the given NullableString and assigns it to the JdbcConnectionString field.

func (*CDB) SetJdbcConnectionStringNil added in v1.6.0

func (o *CDB) SetJdbcConnectionStringNil()

SetJdbcConnectionStringNil sets the value for JdbcConnectionString to be an explicit nil

func (*CDB) SetName added in v1.6.0

func (o *CDB) SetName(v string)

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

func (*CDB) SetNameNil added in v1.6.0

func (o *CDB) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CDB) SetSize added in v1.6.0

func (o *CDB) SetSize(v int64)

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

func (*CDB) SetSizeNil added in v1.6.0

func (o *CDB) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*CDB) SetTags added in v1.6.0

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

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

func (CDB) ToMap added in v1.6.0

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

func (*CDB) UnsetDatabaseVersion added in v1.6.0

func (o *CDB) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*CDB) UnsetEnvironmentId added in v1.6.0

func (o *CDB) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*CDB) UnsetJdbcConnectionString added in v1.6.0

func (o *CDB) UnsetJdbcConnectionString()

UnsetJdbcConnectionString ensures that no value is present for JdbcConnectionString, not even an explicit nil

func (*CDB) UnsetName added in v1.6.0

func (o *CDB) UnsetName()

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

func (*CDB) UnsetSize added in v1.6.0

func (o *CDB) UnsetSize()

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

type CDBsApiService added in v1.6.0

type CDBsApiService service

CDBsApiService CDBsApi service

func (*CDBsApiService) CreateCdbTags added in v1.6.0

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 added in v1.6.0

func (a *CDBsApiService) CreateCdbTagsExecute(r ApiCreateCdbTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*CDBsApiService) DeleteCdbTags added in v1.6.0

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 added in v1.6.0

func (a *CDBsApiService) DeleteCdbTagsExecute(r ApiDeleteCdbTagsRequest) (*http.Response, error)

Execute executes the request

func (*CDBsApiService) GetCdbById added in v1.6.0

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 added in v1.6.0

func (a *CDBsApiService) GetCdbByIdExecute(r ApiGetCdbByIdRequest) (*CDB, *http.Response, error)

Execute executes the request

@return CDB

func (*CDBsApiService) GetCdbs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListCDBsResponse

func (*CDBsApiService) GetTagsCdb added in v1.6.0

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 added in v1.6.0

func (a *CDBsApiService) GetTagsCdbExecute(r ApiGetTagsCdbRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*CDBsApiService) SearchCdbs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchCDBsResponse

type ChangePasswordParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ChangePasswordParameter) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*ChangePasswordParameter) GetNewPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ChangePasswordParameter) GetOldPassword() string

GetOldPassword returns the OldPassword field value

func (*ChangePasswordParameter) GetOldPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ChangePasswordParameter) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (ChangePasswordParameter) MarshalJSON added in v1.6.0

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

func (*ChangePasswordParameter) SetNewPassword added in v1.6.0

func (o *ChangePasswordParameter) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (*ChangePasswordParameter) SetOldPassword added in v1.6.0

func (o *ChangePasswordParameter) SetOldPassword(v string)

SetOldPassword sets field value

func (ChangePasswordParameter) ToMap added in v1.6.0

func (o ChangePasswordParameter) 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 added in v1.2.0

type ConnectivityApiService service

ConnectivityApiService ConnectivityApi service

func (*ConnectivityApiService) ConnectivityCheck added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ConnectivityCheckResponse

type ConnectivityCheckParameters added in v1.2.0

type ConnectivityCheckParameters struct {
	// The ID of the engine to check.
	EngineId string `json:"engine_id"`
	// The hostname of the remote host machine to check.
	Host string `json:"host"`
	// The port of the remote host machine to check.
	Port NullableInt32 `json:"port"`
	// The username of the remote host machine to check.
	Username *string `json:"username,omitempty"`
	// The password of the remote host machine to check.
	Password *string `json:"password,omitempty"`
}

ConnectivityCheckParameters Parameters to check connectivity between engine and remote host.

func NewConnectivityCheckParameters added in v1.2.0

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 added in v1.2.0

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) GetEngineId added in v1.2.0

func (o *ConnectivityCheckParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*ConnectivityCheckParameters) GetEngineIdOk added in v1.2.0

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) GetHost added in v1.2.0

func (o *ConnectivityCheckParameters) GetHost() string

GetHost returns the Host field value

func (*ConnectivityCheckParameters) GetHostOk added in v1.2.0

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) GetPassword added in v1.6.0

func (o *ConnectivityCheckParameters) GetPassword() string

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

func (*ConnectivityCheckParameters) GetPasswordOk added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

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) GetUsername added in v1.6.0

func (o *ConnectivityCheckParameters) GetUsername() string

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

func (*ConnectivityCheckParameters) GetUsernameOk added in v1.6.0

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) HasPassword added in v1.6.0

func (o *ConnectivityCheckParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ConnectivityCheckParameters) HasUsername added in v1.6.0

func (o *ConnectivityCheckParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ConnectivityCheckParameters) MarshalJSON added in v1.2.0

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

func (*ConnectivityCheckParameters) SetEngineId added in v1.2.0

func (o *ConnectivityCheckParameters) SetEngineId(v string)

SetEngineId sets field value

func (*ConnectivityCheckParameters) SetHost added in v1.2.0

func (o *ConnectivityCheckParameters) SetHost(v string)

SetHost sets field value

func (*ConnectivityCheckParameters) SetPassword added in v1.6.0

func (o *ConnectivityCheckParameters) SetPassword(v string)

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

func (*ConnectivityCheckParameters) SetPort added in v1.2.0

func (o *ConnectivityCheckParameters) SetPort(v int32)

SetPort sets field value

func (*ConnectivityCheckParameters) SetUsername added in v1.6.0

func (o *ConnectivityCheckParameters) SetUsername(v string)

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

func (ConnectivityCheckParameters) ToMap added in v1.6.0

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

type ConnectivityCheckResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ConnectivityCheckResponse) GetMessage() string

GetMessage returns the Message field value

func (*ConnectivityCheckResponse) GetMessageOk added in v1.2.0

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 added in v1.6.0

func (o *ConnectivityCheckResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ConnectivityCheckResponse) GetStatusOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectivityCheckResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectivityCheckResponse) MarshalJSON added in v1.2.0

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

func (*ConnectivityCheckResponse) SetMessage added in v1.2.0

func (o *ConnectivityCheckResponse) SetMessage(v string)

SetMessage sets field value

func (*ConnectivityCheckResponse) SetStatus added in v1.6.0

func (o *ConnectivityCheckResponse) SetStatus(v string)

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

func (ConnectivityCheckResponse) ToMap added in v1.6.0

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

type Connector added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetEngineId() string

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

func (*Connector) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*Connector) GetHostnameOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetId() string

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

func (*Connector) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetName() string

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

func (*Connector) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*Connector) GetPortOk added in v1.6.0

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 added in v1.6.0

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

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

func (*Connector) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetType() string

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

func (*Connector) GetTypeOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) GetUsername() string

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

func (*Connector) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *Connector) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Connector) HasHostname added in v1.6.0

func (o *Connector) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*Connector) HasId added in v1.6.0

func (o *Connector) HasId() bool

HasId returns a boolean if a field has been set.

func (*Connector) HasName added in v1.6.0

func (o *Connector) HasName() bool

HasName returns a boolean if a field has been set.

func (*Connector) HasPort added in v1.6.0

func (o *Connector) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*Connector) HasTags added in v1.6.0

func (o *Connector) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Connector) HasType added in v1.6.0

func (o *Connector) HasType() bool

HasType returns a boolean if a field has been set.

func (*Connector) HasUsername added in v1.6.0

func (o *Connector) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (Connector) MarshalJSON added in v1.6.0

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

func (*Connector) SetEngineId added in v1.6.0

func (o *Connector) SetEngineId(v string)

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

func (*Connector) SetHostname added in v1.6.0

func (o *Connector) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*Connector) SetId added in v1.6.0

func (o *Connector) SetId(v string)

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

func (*Connector) SetName added in v1.6.0

func (o *Connector) SetName(v string)

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

func (*Connector) SetPort added in v1.6.0

func (o *Connector) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*Connector) SetTags added in v1.6.0

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

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

func (*Connector) SetType added in v1.6.0

func (o *Connector) SetType(v string)

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

func (*Connector) SetUsername added in v1.6.0

func (o *Connector) SetUsername(v string)

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

func (Connector) ToMap added in v1.6.0

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

type ConnectorTestResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ConnectorTestResponse) GetMessage() string

GetMessage returns the Message field value

func (*ConnectorTestResponse) GetMessageOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorTestResponse) GetStatus() string

GetStatus returns the Status field value

func (*ConnectorTestResponse) GetStatusOk added in v1.6.0

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 added in v1.6.0

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

func (*ConnectorTestResponse) SetMessage added in v1.6.0

func (o *ConnectorTestResponse) SetMessage(v string)

SetMessage sets field value

func (*ConnectorTestResponse) SetStatus added in v1.6.0

func (o *ConnectorTestResponse) SetStatus(v string)

SetStatus sets field value

func (ConnectorTestResponse) ToMap added in v1.6.0

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

type ConnectorUpdateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetHostnameOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) GetName() string

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

func (*ConnectorUpdateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) GetPassword() string

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

func (*ConnectorUpdateParameters) GetPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*ConnectorUpdateParameters) GetPortOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) GetUsername() string

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

func (*ConnectorUpdateParameters) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *ConnectorUpdateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasName added in v1.6.0

func (o *ConnectorUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasPassword added in v1.6.0

func (o *ConnectorUpdateParameters) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasPort added in v1.6.0

func (o *ConnectorUpdateParameters) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ConnectorUpdateParameters) HasUsername added in v1.6.0

func (o *ConnectorUpdateParameters) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ConnectorUpdateParameters) MarshalJSON added in v1.6.0

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

func (*ConnectorUpdateParameters) SetHostname added in v1.6.0

func (o *ConnectorUpdateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*ConnectorUpdateParameters) SetName added in v1.6.0

func (o *ConnectorUpdateParameters) SetName(v string)

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

func (*ConnectorUpdateParameters) SetPassword added in v1.6.0

func (o *ConnectorUpdateParameters) SetPassword(v string)

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

func (*ConnectorUpdateParameters) SetPort added in v1.6.0

func (o *ConnectorUpdateParameters) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ConnectorUpdateParameters) SetUsername added in v1.6.0

func (o *ConnectorUpdateParameters) SetUsername(v string)

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

func (ConnectorUpdateParameters) ToMap added in v1.6.0

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

type ConnectorsApiService added in v1.6.0

type ConnectorsApiService service

ConnectorsApiService ConnectorsApi service

func (*ConnectorsApiService) ConnectorsTest added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ConnectorTestResponse

func (*ConnectorsApiService) CreateConnectorTags added in v1.6.0

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 added in v1.6.0

func (a *ConnectorsApiService) CreateConnectorTagsExecute(r ApiCreateConnectorTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ConnectorsApiService) DeleteConnectorTag added in v1.6.0

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 added in v1.6.0

func (a *ConnectorsApiService) DeleteConnectorTagExecute(r ApiDeleteConnectorTagRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) GetConnectorById added in v1.6.0

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 added in v1.6.0

func (a *ConnectorsApiService) GetConnectorByIdExecute(r ApiGetConnectorByIdRequest) (*Connector, *http.Response, error)

Execute executes the request

@return Connector

func (*ConnectorsApiService) GetConnectorTags added in v1.6.0

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 added in v1.6.0

func (a *ConnectorsApiService) GetConnectorTagsExecute(r ApiGetConnectorTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ConnectorsApiService) GetConnectors added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListConnectorsResponse

func (*ConnectorsApiService) SearchConnectors added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchConnectorsResponse

func (*ConnectorsApiService) UpdateConnectorById added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UpdateConnectorResponse

type CopyMaskingJobParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobParameters) GetSourceEnvironmentId() string

GetSourceEnvironmentId returns the SourceEnvironmentId field value if set, zero value otherwise.

func (*CopyMaskingJobParameters) GetSourceEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobParameters) GetTargetEngineId() string

GetTargetEngineId returns the TargetEngineId field value

func (*CopyMaskingJobParameters) GetTargetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobParameters) GetTargetEnvironmentId() string

GetTargetEnvironmentId returns the TargetEnvironmentId field value if set, zero value otherwise.

func (*CopyMaskingJobParameters) GetTargetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobParameters) HasSourceEnvironmentId() bool

HasSourceEnvironmentId returns a boolean if a field has been set.

func (*CopyMaskingJobParameters) HasTargetEnvironmentId added in v1.6.0

func (o *CopyMaskingJobParameters) HasTargetEnvironmentId() bool

HasTargetEnvironmentId returns a boolean if a field has been set.

func (CopyMaskingJobParameters) MarshalJSON added in v1.6.0

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

func (*CopyMaskingJobParameters) SetSourceEnvironmentId added in v1.6.0

func (o *CopyMaskingJobParameters) SetSourceEnvironmentId(v string)

SetSourceEnvironmentId gets a reference to the given string and assigns it to the SourceEnvironmentId field.

func (*CopyMaskingJobParameters) SetTargetEngineId added in v1.6.0

func (o *CopyMaskingJobParameters) SetTargetEngineId(v string)

SetTargetEngineId sets field value

func (*CopyMaskingJobParameters) SetTargetEnvironmentId added in v1.6.0

func (o *CopyMaskingJobParameters) SetTargetEnvironmentId(v string)

SetTargetEnvironmentId gets a reference to the given string and assigns it to the TargetEnvironmentId field.

func (CopyMaskingJobParameters) ToMap added in v1.6.0

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

type CopyMaskingJobResponse added in v1.6.0

type CopyMaskingJobResponse struct {
	Job          *Job    `json:"job,omitempty"`
	MaskingJobId *string `json:"masking_job_id,omitempty"`
}

CopyMaskingJobResponse struct for CopyMaskingJobResponse

func NewCopyMaskingJobResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CopyMaskingJobResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobResponse) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*CopyMaskingJobResponse) GetMaskingJobIdOk added in v1.6.0

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 added in v1.6.0

func (o *CopyMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*CopyMaskingJobResponse) HasMaskingJobId added in v1.6.0

func (o *CopyMaskingJobResponse) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (CopyMaskingJobResponse) MarshalJSON added in v1.6.0

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

func (*CopyMaskingJobResponse) SetJob added in v1.6.0

func (o *CopyMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*CopyMaskingJobResponse) SetMaskingJobId added in v1.6.0

func (o *CopyMaskingJobResponse) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (CopyMaskingJobResponse) ToMap added in v1.6.0

func (o CopyMaskingJobResponse) 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 added in v1.2.0

func (o *CreateBookmarkResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateBookmarkResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *CreateBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateBookmarkResponse) ToMap added in v1.6.0

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

type CreateDatabaseTemplateResponse added in v1.6.0

type CreateDatabaseTemplateResponse struct {
	DatabaseTemplate *DatabaseTemplate `json:"database_template,omitempty"`
	Job              *Job              `json:"job,omitempty"`
}

CreateDatabaseTemplateResponse struct for CreateDatabaseTemplateResponse

func NewCreateDatabaseTemplateResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CreateDatabaseTemplateResponse) GetDatabaseTemplate() DatabaseTemplate

GetDatabaseTemplate returns the DatabaseTemplate field value if set, zero value otherwise.

func (*CreateDatabaseTemplateResponse) GetDatabaseTemplateOk added in v1.6.0

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 added in v1.6.0

func (o *CreateDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateDatabaseTemplateResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *CreateDatabaseTemplateResponse) HasDatabaseTemplate() bool

HasDatabaseTemplate returns a boolean if a field has been set.

func (*CreateDatabaseTemplateResponse) HasJob added in v1.6.0

HasJob returns a boolean if a field has been set.

func (CreateDatabaseTemplateResponse) MarshalJSON added in v1.6.0

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

func (*CreateDatabaseTemplateResponse) SetDatabaseTemplate added in v1.6.0

func (o *CreateDatabaseTemplateResponse) SetDatabaseTemplate(v DatabaseTemplate)

SetDatabaseTemplate gets a reference to the given DatabaseTemplate and assigns it to the DatabaseTemplate field.

func (*CreateDatabaseTemplateResponse) SetJob added in v1.6.0

func (o *CreateDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateDatabaseTemplateResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *CreateEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *CreateEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateEnvironmentResponse) ToMap added in v1.6.0

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

type CreateEnvironmentUserResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *CreateEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateEnvironmentUserResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *CreateEnvironmentUserResponse) GetUserRef() string

GetUserRef returns the UserRef field value if set, zero value otherwise.

func (*CreateEnvironmentUserResponse) GetUserRefOk added in v1.2.0

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 added in v1.2.0

func (o *CreateEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*CreateEnvironmentUserResponse) HasUserRef added in v1.2.0

func (o *CreateEnvironmentUserResponse) HasUserRef() bool

HasUserRef returns a boolean if a field has been set.

func (CreateEnvironmentUserResponse) MarshalJSON added in v1.2.0

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

func (*CreateEnvironmentUserResponse) SetJob added in v1.2.0

func (o *CreateEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*CreateEnvironmentUserResponse) SetUserRef added in v1.2.0

func (o *CreateEnvironmentUserResponse) SetUserRef(v string)

SetUserRef gets a reference to the given string and assigns it to the UserRef field.

func (CreateEnvironmentUserResponse) ToMap added in v1.6.0

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

type CreateHostResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CreateHostResponse) GetClusterNodeId() string

GetClusterNodeId returns the ClusterNodeId field value if set, zero value otherwise.

func (*CreateHostResponse) GetClusterNodeIdOk added in v1.6.0

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 added in v1.6.0

func (o *CreateHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*CreateHostResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *CreateHostResponse) HasClusterNodeId() bool

HasClusterNodeId returns a boolean if a field has been set.

func (*CreateHostResponse) HasJob added in v1.6.0

func (o *CreateHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (CreateHostResponse) MarshalJSON added in v1.6.0

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

func (*CreateHostResponse) SetClusterNodeId added in v1.6.0

func (o *CreateHostResponse) SetClusterNodeId(v string)

SetClusterNodeId gets a reference to the given string and assigns it to the ClusterNodeId field.

func (*CreateHostResponse) SetJob added in v1.6.0

func (o *CreateHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (CreateHostResponse) ToMap added in v1.6.0

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

type CreateRole added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CreateRole) GetDescription() string

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

func (*CreateRole) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

func (o *CreateRole) GetName() string

GetName returns the Name field value

func (*CreateRole) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *CreateRole) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*CreateRole) GetPermissionObjectsOk added in v1.6.0

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 added in v1.6.0

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

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

func (*CreateRole) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *CreateRole) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateRole) HasTags added in v1.6.0

func (o *CreateRole) HasTags() bool

HasTags returns a boolean if a field has been set.

func (CreateRole) MarshalJSON added in v1.6.0

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

func (*CreateRole) SetDescription added in v1.6.0

func (o *CreateRole) SetDescription(v string)

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

func (*CreateRole) SetName added in v1.6.0

func (o *CreateRole) SetName(v string)

SetName sets field value

func (*CreateRole) SetPermissionObjects added in v1.6.0

func (o *CreateRole) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (*CreateRole) SetTags added in v1.6.0

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

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

func (CreateRole) ToMap added in v1.6.0

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 added in v1.6.0

func (o *CreateVDBGroupRequest) GetMakeCurrentAccountOwner() bool

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

func (*CreateVDBGroupRequest) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.6.0

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

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

func (*CreateVDBGroupRequest) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *CreateVDBGroupRequest) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*CreateVDBGroupRequest) HasTags added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

type CredentialsEnvVariable added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetAzureVaultName() string

GetAzureVaultName returns the AzureVaultName field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultNameOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetAzureVaultSecretKey() string

GetAzureVaultSecretKey returns the AzureVaultSecretKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultSecretKeyOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetAzureVaultUsernameKey() string

GetAzureVaultUsernameKey returns the AzureVaultUsernameKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetAzureVaultUsernameKeyOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetBaseVarName() string

GetBaseVarName returns the BaseVarName field value

func (*CredentialsEnvVariable) GetBaseVarNameOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetCyberarkVaultQueryStringOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultEngineOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultSecretKeyOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultSecretPathOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetHashicorpVaultUsernameKeyOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetPassword() string

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

func (*CredentialsEnvVariable) GetPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) GetVault() string

GetVault returns the Vault field value if set, zero value otherwise.

func (*CredentialsEnvVariable) GetVaultOk added in v1.6.0

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 added in v1.6.0

func (o *CredentialsEnvVariable) HasAzureVaultName() bool

HasAzureVaultName returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasAzureVaultSecretKey added in v1.6.0

func (o *CredentialsEnvVariable) HasAzureVaultSecretKey() bool

HasAzureVaultSecretKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasAzureVaultUsernameKey added in v1.6.0

func (o *CredentialsEnvVariable) HasAzureVaultUsernameKey() bool

HasAzureVaultUsernameKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasCyberarkVaultQueryString added in v1.6.0

func (o *CredentialsEnvVariable) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultEngine added in v1.6.0

func (o *CredentialsEnvVariable) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultSecretKey added in v1.6.0

func (o *CredentialsEnvVariable) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultSecretPath added in v1.6.0

func (o *CredentialsEnvVariable) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasHashicorpVaultUsernameKey added in v1.6.0

func (o *CredentialsEnvVariable) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasPassword added in v1.6.0

func (o *CredentialsEnvVariable) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CredentialsEnvVariable) HasVault added in v1.6.0

func (o *CredentialsEnvVariable) HasVault() bool

HasVault returns a boolean if a field has been set.

func (CredentialsEnvVariable) MarshalJSON added in v1.6.0

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

func (*CredentialsEnvVariable) SetAzureVaultName added in v1.6.0

func (o *CredentialsEnvVariable) SetAzureVaultName(v string)

SetAzureVaultName gets a reference to the given string and assigns it to the AzureVaultName field.

func (*CredentialsEnvVariable) SetAzureVaultSecretKey added in v1.6.0

func (o *CredentialsEnvVariable) SetAzureVaultSecretKey(v string)

SetAzureVaultSecretKey gets a reference to the given string and assigns it to the AzureVaultSecretKey field.

func (*CredentialsEnvVariable) SetAzureVaultUsernameKey added in v1.6.0

func (o *CredentialsEnvVariable) SetAzureVaultUsernameKey(v string)

SetAzureVaultUsernameKey gets a reference to the given string and assigns it to the AzureVaultUsernameKey field.

func (*CredentialsEnvVariable) SetBaseVarName added in v1.6.0

func (o *CredentialsEnvVariable) SetBaseVarName(v string)

SetBaseVarName sets field value

func (*CredentialsEnvVariable) SetCyberarkVaultQueryString added in v1.6.0

func (o *CredentialsEnvVariable) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*CredentialsEnvVariable) SetHashicorpVaultEngine added in v1.6.0

func (o *CredentialsEnvVariable) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*CredentialsEnvVariable) SetHashicorpVaultSecretKey added in v1.6.0

func (o *CredentialsEnvVariable) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*CredentialsEnvVariable) SetHashicorpVaultSecretPath added in v1.6.0

func (o *CredentialsEnvVariable) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*CredentialsEnvVariable) SetHashicorpVaultUsernameKey added in v1.6.0

func (o *CredentialsEnvVariable) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*CredentialsEnvVariable) SetPassword added in v1.6.0

func (o *CredentialsEnvVariable) SetPassword(v string)

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

func (*CredentialsEnvVariable) SetVault added in v1.6.0

func (o *CredentialsEnvVariable) SetVault(v string)

SetVault gets a reference to the given string and assigns it to the Vault field.

func (CredentialsEnvVariable) ToMap added in v1.6.0

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 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"`
	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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DSource) GetCurrentTimeflowId() string

GetCurrentTimeflowId returns the CurrentTimeflowId field value if set, zero value otherwise.

func (*DSource) GetCurrentTimeflowIdOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) 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) 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 added in v1.6.0

func (o *DSource) GetPreviousTimeflowId() string

GetPreviousTimeflowId returns the PreviousTimeflowId field value if set, zero value otherwise.

func (*DSource) GetPreviousTimeflowIdOk added in v1.6.0

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 added in v1.1.0

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

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

func (*DSource) GetTagsOk added in v1.1.0

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 added in v1.6.0

func (o *DSource) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*DSource) HasContentType added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) HasName

func (o *DSource) HasName() bool

HasName 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 added in v1.6.0

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 added in v1.1.0

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 added in v1.6.0

func (o *DSource) SetCdbId(v string)

SetCdbId gets a reference to the given NullableString and assigns it to the CdbId field.

func (*DSource) SetCdbIdNil added in v1.6.0

func (o *DSource) SetCdbIdNil()

SetCdbIdNil sets the value for CdbId to be an explicit nil

func (*DSource) SetContentType added in v1.6.0

func (o *DSource) SetContentType(v string)

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

func (*DSource) SetContentTypeNil added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DSource) SetEngineName(v string)

SetEngineName gets a reference to the given NullableString and assigns it to the EngineName field.

func (*DSource) SetEngineNameNil added in v1.6.0

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) 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) 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 added in v1.6.0

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 added in v1.1.0

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

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

func (DSource) ToMap added in v1.6.0

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

func (*DSource) UnsetCdbId added in v1.6.0

func (o *DSource) UnsetCdbId()

UnsetCdbId ensures that no value is present for CdbId, not even an explicit nil

func (*DSource) UnsetContentType added in v1.6.0

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 added in v1.6.0

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) UnsetName

func (o *DSource) UnsetName()

UnsetName ensures that no value is present for Name, 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetDatabaseTypeOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetEngineId() string

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

func (*DSourceConsumptionData) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetEngineNameOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetIngestedSize() int64

GetIngestedSize returns the IngestedSize field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetIngestedSizeOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetLastConsumptionDate() time.Time

GetLastConsumptionDate returns the LastConsumptionDate field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetLastConsumptionDateOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetName() string

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

func (*DSourceConsumptionData) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DSourceConsumptionData) GetStatusOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasEngineId added in v1.6.0

func (o *DSourceConsumptionData) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasEngineName added in v1.6.0

func (o *DSourceConsumptionData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasIngestedSize added in v1.6.0

func (o *DSourceConsumptionData) HasIngestedSize() bool

HasIngestedSize returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasLastConsumptionDate added in v1.6.0

func (o *DSourceConsumptionData) HasLastConsumptionDate() bool

HasLastConsumptionDate returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasName added in v1.6.0

func (o *DSourceConsumptionData) HasName() bool

HasName returns a boolean if a field has been set.

func (*DSourceConsumptionData) HasStatus added in v1.6.0

func (o *DSourceConsumptionData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DSourceConsumptionData) MarshalJSON added in v1.6.0

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

func (*DSourceConsumptionData) SetDatabaseType added in v1.6.0

func (o *DSourceConsumptionData) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*DSourceConsumptionData) SetEngineId added in v1.6.0

func (o *DSourceConsumptionData) SetEngineId(v string)

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

func (*DSourceConsumptionData) SetEngineName added in v1.6.0

func (o *DSourceConsumptionData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DSourceConsumptionData) SetIngestedSize added in v1.6.0

func (o *DSourceConsumptionData) SetIngestedSize(v int64)

SetIngestedSize gets a reference to the given int64 and assigns it to the IngestedSize field.

func (*DSourceConsumptionData) SetLastConsumptionDate added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionData) SetName(v string)

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

func (*DSourceConsumptionData) SetStatus added in v1.6.0

func (o *DSourceConsumptionData) SetStatus(v string)

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

func (DSourceConsumptionData) ToMap added in v1.6.0

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

type DSourceConsumptionReportResponse added in v1.6.0

type DSourceConsumptionReportResponse struct {
	Items            []DSourceConsumptionData   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

DSourceConsumptionReportResponse struct for DSourceConsumptionReportResponse

func NewDSourceConsumptionReportResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*DSourceConsumptionReportResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*DSourceConsumptionReportResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *DSourceConsumptionReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*DSourceConsumptionReportResponse) HasResponseMetadata added in v1.6.0

func (o *DSourceConsumptionReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (DSourceConsumptionReportResponse) MarshalJSON added in v1.6.0

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

func (*DSourceConsumptionReportResponse) SetItems added in v1.6.0

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

func (*DSourceConsumptionReportResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (DSourceConsumptionReportResponse) ToMap added in v1.6.0

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

type DSourceSnapshotParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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

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

func (*DSourceSnapshotParameters) GetAseBackupFilesOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicy() string

GetAvailabilityGroupBackupPolicy returns the AvailabilityGroupBackupPolicy field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetAvailabilityGroupBackupPolicyOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetCompressionEnabled() bool

GetCompressionEnabled returns the CompressionEnabled field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetCompressionEnabledOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetDoNotResume() bool

GetDoNotResume returns the DoNotResume field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetDoNotResumeOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetDoubleSync() bool

GetDoubleSync returns the DoubleSync field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetDoubleSyncOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetDropAndRecreateDevices() bool

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

func (*DSourceSnapshotParameters) GetDropAndRecreateDevicesOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetFilesForPartialFullBackup() []int64

GetFilesForPartialFullBackup returns the FilesForPartialFullBackup field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetFilesForPartialFullBackupOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetForceFullBackup() bool

GetForceFullBackup returns the ForceFullBackup field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetForceFullBackupOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetMssqlBackupUuid() string

GetMssqlBackupUuid returns the MssqlBackupUuid field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetMssqlBackupUuidOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetSkipSpaceCheck() bool

GetSkipSpaceCheck returns the SkipSpaceCheck field value if set, zero value otherwise.

func (*DSourceSnapshotParameters) GetSkipSpaceCheckOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) GetSyncStrategy() string

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

func (*DSourceSnapshotParameters) GetSyncStrategyOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceSnapshotParameters) HasAseBackupFiles() bool

HasAseBackupFiles returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasAvailabilityGroupBackupPolicy added in v1.2.0

func (o *DSourceSnapshotParameters) HasAvailabilityGroupBackupPolicy() bool

HasAvailabilityGroupBackupPolicy returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasCompressionEnabled added in v1.2.0

func (o *DSourceSnapshotParameters) HasCompressionEnabled() bool

HasCompressionEnabled returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDoNotResume added in v1.2.0

func (o *DSourceSnapshotParameters) HasDoNotResume() bool

HasDoNotResume returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDoubleSync added in v1.2.0

func (o *DSourceSnapshotParameters) HasDoubleSync() bool

HasDoubleSync returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasDropAndRecreateDevices added in v1.2.0

func (o *DSourceSnapshotParameters) HasDropAndRecreateDevices() bool

HasDropAndRecreateDevices returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasFilesForPartialFullBackup added in v1.2.0

func (o *DSourceSnapshotParameters) HasFilesForPartialFullBackup() bool

HasFilesForPartialFullBackup returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasForceFullBackup added in v1.2.0

func (o *DSourceSnapshotParameters) HasForceFullBackup() bool

HasForceFullBackup returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasMssqlBackupUuid added in v1.2.0

func (o *DSourceSnapshotParameters) HasMssqlBackupUuid() bool

HasMssqlBackupUuid returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasSkipSpaceCheck added in v1.2.0

func (o *DSourceSnapshotParameters) HasSkipSpaceCheck() bool

HasSkipSpaceCheck returns a boolean if a field has been set.

func (*DSourceSnapshotParameters) HasSyncStrategy added in v1.2.0

func (o *DSourceSnapshotParameters) HasSyncStrategy() bool

HasSyncStrategy returns a boolean if a field has been set.

func (DSourceSnapshotParameters) MarshalJSON added in v1.2.0

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

func (*DSourceSnapshotParameters) SetAseBackupFiles added in v1.2.0

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

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

func (*DSourceSnapshotParameters) SetAvailabilityGroupBackupPolicy added in v1.2.0

func (o *DSourceSnapshotParameters) SetAvailabilityGroupBackupPolicy(v string)

SetAvailabilityGroupBackupPolicy gets a reference to the given string and assigns it to the AvailabilityGroupBackupPolicy field.

func (*DSourceSnapshotParameters) SetCompressionEnabled added in v1.2.0

func (o *DSourceSnapshotParameters) SetCompressionEnabled(v bool)

SetCompressionEnabled gets a reference to the given bool and assigns it to the CompressionEnabled field.

func (*DSourceSnapshotParameters) SetDoNotResume added in v1.2.0

func (o *DSourceSnapshotParameters) SetDoNotResume(v bool)

SetDoNotResume gets a reference to the given bool and assigns it to the DoNotResume field.

func (*DSourceSnapshotParameters) SetDoubleSync added in v1.2.0

func (o *DSourceSnapshotParameters) SetDoubleSync(v bool)

SetDoubleSync gets a reference to the given bool and assigns it to the DoubleSync field.

func (*DSourceSnapshotParameters) SetDropAndRecreateDevices added in v1.2.0

func (o *DSourceSnapshotParameters) SetDropAndRecreateDevices(v bool)

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

func (*DSourceSnapshotParameters) SetFilesForPartialFullBackup added in v1.2.0

func (o *DSourceSnapshotParameters) SetFilesForPartialFullBackup(v []int64)

SetFilesForPartialFullBackup gets a reference to the given []int64 and assigns it to the FilesForPartialFullBackup field.

func (*DSourceSnapshotParameters) SetForceFullBackup added in v1.2.0

func (o *DSourceSnapshotParameters) SetForceFullBackup(v bool)

SetForceFullBackup gets a reference to the given bool and assigns it to the ForceFullBackup field.

func (*DSourceSnapshotParameters) SetMssqlBackupUuid added in v1.2.0

func (o *DSourceSnapshotParameters) SetMssqlBackupUuid(v string)

SetMssqlBackupUuid gets a reference to the given string and assigns it to the MssqlBackupUuid field.

func (*DSourceSnapshotParameters) SetSkipSpaceCheck added in v1.2.0

func (o *DSourceSnapshotParameters) SetSkipSpaceCheck(v bool)

SetSkipSpaceCheck gets a reference to the given bool and assigns it to the SkipSpaceCheck field.

func (*DSourceSnapshotParameters) SetSyncStrategy added in v1.2.0

func (o *DSourceSnapshotParameters) SetSyncStrategy(v string)

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

func (DSourceSnapshotParameters) ToMap added in v1.6.0

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

type DSourceUsageData added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) GetActualSpace() int64

GetActualSpace returns the ActualSpace field value if set, zero value otherwise.

func (*DSourceUsageData) GetActualSpaceOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) GetDependantVdbs() int32

GetDependantVdbs returns the DependantVdbs field value if set, zero value otherwise.

func (*DSourceUsageData) GetDependantVdbsOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DSourceUsageData) GetEngineNameOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) GetName() string

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

func (*DSourceUsageData) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) GetUnvirtualizedSpace() int64

GetUnvirtualizedSpace returns the UnvirtualizedSpace field value if set, zero value otherwise.

func (*DSourceUsageData) GetUnvirtualizedSpaceOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageData) HasActualSpace() bool

HasActualSpace returns a boolean if a field has been set.

func (*DSourceUsageData) HasDependantVdbs added in v1.2.0

func (o *DSourceUsageData) HasDependantVdbs() bool

HasDependantVdbs returns a boolean if a field has been set.

func (*DSourceUsageData) HasEngineName added in v1.2.0

func (o *DSourceUsageData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DSourceUsageData) HasName added in v1.2.0

func (o *DSourceUsageData) HasName() bool

HasName returns a boolean if a field has been set.

func (*DSourceUsageData) HasUnvirtualizedSpace added in v1.2.0

func (o *DSourceUsageData) HasUnvirtualizedSpace() bool

HasUnvirtualizedSpace returns a boolean if a field has been set.

func (DSourceUsageData) MarshalJSON added in v1.2.0

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

func (*DSourceUsageData) SetActualSpace added in v1.2.0

func (o *DSourceUsageData) SetActualSpace(v int64)

SetActualSpace gets a reference to the given int64 and assigns it to the ActualSpace field.

func (*DSourceUsageData) SetDependantVdbs added in v1.2.0

func (o *DSourceUsageData) SetDependantVdbs(v int32)

SetDependantVdbs gets a reference to the given int32 and assigns it to the DependantVdbs field.

func (*DSourceUsageData) SetEngineName added in v1.2.0

func (o *DSourceUsageData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DSourceUsageData) SetName added in v1.2.0

func (o *DSourceUsageData) SetName(v string)

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

func (*DSourceUsageData) SetUnvirtualizedSpace added in v1.2.0

func (o *DSourceUsageData) SetUnvirtualizedSpace(v int64)

SetUnvirtualizedSpace gets a reference to the given int64 and assigns it to the UnvirtualizedSpace field.

func (DSourceUsageData) ToMap added in v1.6.0

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

type DSourceUsageReportResponse added in v1.2.0

type DSourceUsageReportResponse struct {
	Items            []DSourceUsageData         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

DSourceUsageReportResponse struct for DSourceUsageReportResponse

func NewDSourceUsageReportResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*DSourceUsageReportResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageReportResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*DSourceUsageReportResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *DSourceUsageReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*DSourceUsageReportResponse) HasResponseMetadata added in v1.2.0

func (o *DSourceUsageReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (DSourceUsageReportResponse) MarshalJSON added in v1.2.0

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

func (*DSourceUsageReportResponse) SetItems added in v1.2.0

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

func (*DSourceUsageReportResponse) SetResponseMetadata added in v1.2.0

func (o *DSourceUsageReportResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (DSourceUsageReportResponse) ToMap added in v1.6.0

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

type DSourcesApiService

type DSourcesApiService service

DSourcesApiService DSourcesApi service

func (*DSourcesApiService) CreateTagsDsource added in v1.1.0

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 added in v1.1.0

func (a *DSourcesApiService) CreateTagsDsourceExecute(r ApiCreateTagsDsourceRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*DSourcesApiService) DeleteDsource added in v1.6.0

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 added in v1.6.0

func (a *DSourcesApiService) DeleteDsourceExecute(r ApiDeleteDsourceRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

func (*DSourcesApiService) DeleteTagsDsource added in v1.2.0

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 added in v1.2.0

func (a *DSourcesApiService) DeleteTagsDsourceExecute(r ApiDeleteTagsDsourceRequest) (*http.Response, error)

Execute executes the request

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) GetDsourceLinkingDefaults added in v1.6.0

func (a *DSourcesApiService) GetDsourceLinkingDefaults(ctx context.Context) ApiGetDsourceLinkingDefaultsRequest

GetDsourceLinkingDefaults Get defaults for dSource linking.

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

func (*DSourcesApiService) GetDsourceLinkingDefaultsExecute added in v1.6.0

Execute executes the request

@return LinkDSourceParameters

func (*DSourcesApiService) GetDsourceSnapshots added in v1.2.0

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 added in v1.2.0

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) GetTagsDsource added in v1.1.0

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 added in v1.1.0

func (a *DSourcesApiService) GetTagsDsourceExecute(r ApiGetTagsDsourceRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*DSourcesApiService) LinkDatabase added in v1.6.0

LinkDatabase Link a database to Delphix engine.

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

func (*DSourcesApiService) LinkDatabaseExecute added in v1.6.0

Execute executes the request

@return LinkDSourceResponse

func (*DSourcesApiService) SearchDsources added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchDSourcesResponse

func (*DSourcesApiService) SnapshotDsource added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SnapshotDSourceResponse

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 added in v1.6.0

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"`
}

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) 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) 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) 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 added in v1.6.0

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

type DataPointFromBookmarkParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DataPointFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*DataPointFromBookmarkParameters) GetBookmarkIdOk added in v1.2.0

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 added in v1.2.0

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

func (*DataPointFromBookmarkParameters) SetBookmarkId added in v1.2.0

func (o *DataPointFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (DataPointFromBookmarkParameters) ToMap added in v1.6.0

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

type DatabaseTemplate added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) GetDescription() string

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

func (*DatabaseTemplate) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) GetId() string

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

func (*DatabaseTemplate) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) GetName() string

GetName returns the Name field value

func (*DatabaseTemplate) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*DatabaseTemplate) GetParametersOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) GetSourceType() string

GetSourceType returns the SourceType field value

func (*DatabaseTemplate) GetSourceTypeOk added in v1.6.0

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 added in v1.6.0

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

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

func (*DatabaseTemplate) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DatabaseTemplate) HasId added in v1.6.0

func (o *DatabaseTemplate) HasId() bool

HasId returns a boolean if a field has been set.

func (*DatabaseTemplate) HasParameters added in v1.6.0

func (o *DatabaseTemplate) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*DatabaseTemplate) HasTags added in v1.6.0

func (o *DatabaseTemplate) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DatabaseTemplate) MarshalJSON added in v1.6.0

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

func (*DatabaseTemplate) SetDescription added in v1.6.0

func (o *DatabaseTemplate) SetDescription(v string)

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

func (*DatabaseTemplate) SetId added in v1.6.0

func (o *DatabaseTemplate) SetId(v string)

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

func (*DatabaseTemplate) SetName added in v1.6.0

func (o *DatabaseTemplate) SetName(v string)

SetName sets field value

func (*DatabaseTemplate) SetParameters added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplate) SetSourceType(v string)

SetSourceType sets field value

func (*DatabaseTemplate) SetTags added in v1.6.0

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

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

func (DatabaseTemplate) ToMap added in v1.6.0

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

type DatabaseTemplateCreateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) GetDescription() string

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

func (*DatabaseTemplateCreateParameters) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwner() bool

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

func (*DatabaseTemplateCreateParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.6.0

GetName returns the Name field value

func (*DatabaseTemplateCreateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*DatabaseTemplateCreateParameters) GetParametersOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) GetSourceType() string

GetSourceType returns the SourceType field value

func (*DatabaseTemplateCreateParameters) GetSourceTypeOk added in v1.6.0

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 added in v1.6.0

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

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

func (*DatabaseTemplateCreateParameters) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasMakeCurrentAccountOwner added in v1.6.0

func (o *DatabaseTemplateCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasParameters added in v1.6.0

func (o *DatabaseTemplateCreateParameters) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*DatabaseTemplateCreateParameters) HasTags added in v1.6.0

HasTags returns a boolean if a field has been set.

func (DatabaseTemplateCreateParameters) MarshalJSON added in v1.6.0

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

func (*DatabaseTemplateCreateParameters) SetDescription added in v1.6.0

func (o *DatabaseTemplateCreateParameters) SetDescription(v string)

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

func (*DatabaseTemplateCreateParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *DatabaseTemplateCreateParameters) SetMakeCurrentAccountOwner(v bool)

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

func (*DatabaseTemplateCreateParameters) SetName added in v1.6.0

SetName sets field value

func (*DatabaseTemplateCreateParameters) SetParameters added in v1.6.0

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 added in v1.6.0

func (o *DatabaseTemplateCreateParameters) SetSourceType(v string)

SetSourceType sets field value

func (*DatabaseTemplateCreateParameters) SetTags added in v1.6.0

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

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

func (DatabaseTemplateCreateParameters) ToMap added in v1.6.0

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

type DatabaseTemplatesApiService added in v1.6.0

type DatabaseTemplatesApiService service

DatabaseTemplatesApiService DatabaseTemplatesApi service

func (*DatabaseTemplatesApiService) CreateDatabaseTemplate added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return CreateDatabaseTemplateResponse

func (*DatabaseTemplatesApiService) CreateDatabaseTemplateTags added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TagsResponse

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplate added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DeleteDatabaseTemplateResponse

func (*DatabaseTemplatesApiService) DeleteDatabaseTemplateTag added in v1.6.0

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 added in v1.6.0

func (a *DatabaseTemplatesApiService) DeleteDatabaseTemplateTagExecute(r ApiDeleteDatabaseTemplateTagRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) GetDatabaseTemplateById added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DatabaseTemplate

func (*DatabaseTemplatesApiService) GetDatabaseTemplateTags added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TagsResponse

func (*DatabaseTemplatesApiService) GetDatabaseTemplates added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListDatabaseTemplatesResponse

func (*DatabaseTemplatesApiService) ImportDatabaseTemplates added in v1.6.0

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 added in v1.6.0

func (a *DatabaseTemplatesApiService) ImportDatabaseTemplatesExecute(r ApiImportDatabaseTemplatesRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) SearchDatabaseTemplates added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchDatabaseTemplatesResponse

func (*DatabaseTemplatesApiService) UndoImportDatabaseTemplates added in v1.6.0

UndoImportDatabaseTemplates Undo an import of DatabaseTemplates on a engine.

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

func (*DatabaseTemplatesApiService) UndoImportDatabaseTemplatesExecute added in v1.6.0

func (a *DatabaseTemplatesApiService) UndoImportDatabaseTemplatesExecute(r ApiUndoImportDatabaseTemplatesRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseTemplatesApiService) UpdateDatabaseTemplate added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UpdateDatabaseTemplateResponse

type DatasetGroup added in v1.6.0

type DatasetGroup struct {
	// The dataset group ID.
	Id *string `json:"id,omitempty"`
	// The name of this dataset group.
	Name *string `json:"name,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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DatasetGroup) GetEngineId() string

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

func (*DatasetGroup) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *DatasetGroup) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*DatasetGroup) GetEngineNameOk added in v1.6.0

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 added in v1.6.0

func (o *DatasetGroup) GetId() string

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

func (*DatasetGroup) GetIdOk added in v1.6.0

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) GetName added in v1.6.0

func (o *DatasetGroup) GetName() string

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

func (*DatasetGroup) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *DatasetGroup) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*DatasetGroup) GetNamespaceOk added in v1.6.0

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 added in v1.6.0

func (o *DatasetGroup) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*DatasetGroup) HasEngineName added in v1.6.0

func (o *DatasetGroup) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*DatasetGroup) HasId added in v1.6.0

func (o *DatasetGroup) HasId() bool

HasId returns a boolean if a field has been set.

func (*DatasetGroup) HasName added in v1.6.0

func (o *DatasetGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (*DatasetGroup) HasNamespace added in v1.6.0

func (o *DatasetGroup) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (DatasetGroup) MarshalJSON added in v1.6.0

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

func (*DatasetGroup) SetEngineId added in v1.6.0

func (o *DatasetGroup) SetEngineId(v string)

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

func (*DatasetGroup) SetEngineName added in v1.6.0

func (o *DatasetGroup) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*DatasetGroup) SetId added in v1.6.0

func (o *DatasetGroup) SetId(v string)

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

func (*DatasetGroup) SetName added in v1.6.0

func (o *DatasetGroup) SetName(v string)

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

func (*DatasetGroup) SetNamespace added in v1.6.0

func (o *DatasetGroup) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (DatasetGroup) ToMap added in v1.6.0

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

type DeleteDSourceRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteDSourceRequest) GetDsourceId() string

GetDsourceId returns the DsourceId field value

func (*DeleteDSourceRequest) GetDsourceIdOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteDSourceRequest) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetForceOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteDSourceRequest) GetOraclePassword() string

GetOraclePassword returns the OraclePassword field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetOraclePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteDSourceRequest) GetOracleUsername() string

GetOracleUsername returns the OracleUsername field value if set, zero value otherwise.

func (*DeleteDSourceRequest) GetOracleUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteDSourceRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*DeleteDSourceRequest) HasOraclePassword added in v1.6.0

func (o *DeleteDSourceRequest) HasOraclePassword() bool

HasOraclePassword returns a boolean if a field has been set.

func (*DeleteDSourceRequest) HasOracleUsername added in v1.6.0

func (o *DeleteDSourceRequest) HasOracleUsername() bool

HasOracleUsername returns a boolean if a field has been set.

func (DeleteDSourceRequest) MarshalJSON added in v1.6.0

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

func (*DeleteDSourceRequest) SetDsourceId added in v1.6.0

func (o *DeleteDSourceRequest) SetDsourceId(v string)

SetDsourceId sets field value

func (*DeleteDSourceRequest) SetForce added in v1.6.0

func (o *DeleteDSourceRequest) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (*DeleteDSourceRequest) SetOraclePassword added in v1.6.0

func (o *DeleteDSourceRequest) SetOraclePassword(v string)

SetOraclePassword gets a reference to the given string and assigns it to the OraclePassword field.

func (*DeleteDSourceRequest) SetOracleUsername added in v1.6.0

func (o *DeleteDSourceRequest) SetOracleUsername(v string)

SetOracleUsername gets a reference to the given string and assigns it to the OracleUsername field.

func (DeleteDSourceRequest) ToMap added in v1.6.0

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

type DeleteDatabaseTemplateResponse added in v1.6.0

type DeleteDatabaseTemplateResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteDatabaseTemplateResponse struct for DeleteDatabaseTemplateResponse

func NewDeleteDatabaseTemplateResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteDatabaseTemplateResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

HasJob returns a boolean if a field has been set.

func (DeleteDatabaseTemplateResponse) MarshalJSON added in v1.6.0

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

func (*DeleteDatabaseTemplateResponse) SetJob added in v1.6.0

func (o *DeleteDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteDatabaseTemplateResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *DeleteEngineResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEngineResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DeleteEngineResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEngineResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *DeleteEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DeleteEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEnvironmentResponse) ToMap added in v1.6.0

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

type DeleteEnvironmentUserResponse added in v1.2.0

type DeleteEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteEnvironmentUserResponse struct for DeleteEnvironmentUserResponse

func NewDeleteEnvironmentUserResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DeleteEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteEnvironmentUserResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *DeleteEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteEnvironmentUserResponse) MarshalJSON added in v1.2.0

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

func (*DeleteEnvironmentUserResponse) SetJob added in v1.2.0

func (o *DeleteEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteEnvironmentUserResponse) ToMap added in v1.6.0

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

type DeleteHostResponse added in v1.6.0

type DeleteHostResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteHostResponse struct for DeleteHostResponse

func NewDeleteHostResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteHostResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteHostResponse) MarshalJSON added in v1.6.0

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

func (*DeleteHostResponse) SetJob added in v1.6.0

func (o *DeleteHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteHostResponse) ToMap added in v1.6.0

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

type DeleteMaskingJobResponse added in v1.6.0

type DeleteMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteMaskingJobResponse struct for DeleteMaskingJobResponse

func NewDeleteMaskingJobResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteMaskingJobResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteMaskingJobResponse) MarshalJSON added in v1.6.0

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

func (*DeleteMaskingJobResponse) SetJob added in v1.6.0

func (o *DeleteMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteMaskingJobResponse) ToMap added in v1.6.0

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

type DeleteScopeObjectTags added in v1.6.0

type DeleteScopeObjectTags struct {
	// List of scope tags to be deleted
	Tags []ScopeTag `json:"tags,omitempty"`
}

DeleteScopeObjectTags struct for DeleteScopeObjectTags

func NewDeleteScopeObjectTags added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteScopeObjectTags) GetTags() []ScopeTag

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

func (*DeleteScopeObjectTags) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteScopeObjectTags) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DeleteScopeObjectTags) MarshalJSON added in v1.6.0

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

func (*DeleteScopeObjectTags) SetTags added in v1.6.0

func (o *DeleteScopeObjectTags) SetTags(v []ScopeTag)

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

func (DeleteScopeObjectTags) ToMap added in v1.6.0

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

type DeleteScopedObjectItem added in v1.6.0

type DeleteScopedObjectItem struct {
	// List of scoped objects to be deleted
	Objects []ScopedObjectItem `json:"objects"`
}

DeleteScopedObjectItem struct for DeleteScopedObjectItem

func NewDeleteScopedObjectItem added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

GetObjects returns the Objects field value

func (*DeleteScopedObjectItem) GetObjectsOk added in v1.6.0

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 added in v1.6.0

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

func (*DeleteScopedObjectItem) SetObjects added in v1.6.0

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

SetObjects sets field value

func (DeleteScopedObjectItem) ToMap added in v1.6.0

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

type DeleteSnapshotResponse added in v1.6.0

type DeleteSnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteSnapshotResponse struct for DeleteSnapshotResponse

func NewDeleteSnapshotResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteSnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteSnapshotResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteSnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteSnapshotResponse) MarshalJSON added in v1.6.0

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

func (*DeleteSnapshotResponse) SetJob added in v1.6.0

func (o *DeleteSnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteSnapshotResponse) ToMap added in v1.6.0

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

type DeleteTag added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *DeleteTag) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*DeleteTag) GetKeyOk added in v1.1.0

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 added in v1.6.0

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

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

func (*DeleteTag) GetTagsOk added in v1.6.0

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 added in v1.1.0

func (o *DeleteTag) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*DeleteTag) GetValueOk added in v1.1.0

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 added in v1.6.0

func (o *DeleteTag) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*DeleteTag) HasTags added in v1.6.0

func (o *DeleteTag) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*DeleteTag) HasValue added in v1.1.0

func (o *DeleteTag) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DeleteTag) MarshalJSON added in v1.1.0

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

func (*DeleteTag) SetKey added in v1.1.0

func (o *DeleteTag) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*DeleteTag) SetTags added in v1.6.0

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

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

func (*DeleteTag) SetValue added in v1.1.0

func (o *DeleteTag) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (DeleteTag) ToMap added in v1.6.0

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

type DeleteTimeflowResponse added in v1.6.0

type DeleteTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

DeleteTimeflowResponse struct for DeleteTimeflowResponse

func NewDeleteTimeflowResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *DeleteTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteTimeflowResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *DeleteTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (DeleteTimeflowResponse) MarshalJSON added in v1.6.0

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

func (*DeleteTimeflowResponse) SetJob added in v1.6.0

func (o *DeleteTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteTimeflowResponse) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *DeleteVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DeleteVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DeleteVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DeleteVDBResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *DisableEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DisableEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DisableEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DisableEnvironmentResponse) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *DisableVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*DisableVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *DisableVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (DisableVDBResponse) ToMap added in v1.6.0

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

type Domain added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetEmailAttr() string

GetEmailAttr returns the EmailAttr field value if set, zero value otherwise.

func (*Domain) GetEmailAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetFirstNameAttr() string

GetFirstNameAttr returns the FirstNameAttr field value if set, zero value otherwise.

func (*Domain) GetFirstNameAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetGroupAttr() string

GetGroupAttr returns the GroupAttr field value if set, zero value otherwise.

func (*Domain) GetGroupAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetLastNameAttr() string

GetLastNameAttr returns the LastNameAttr field value if set, zero value otherwise.

func (*Domain) GetLastNameAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetMsadDomainName() string

GetMsadDomainName returns the MsadDomainName field value if set, zero value otherwise.

func (*Domain) GetMsadDomainNameOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetObjectClassAttr() string

GetObjectClassAttr returns the ObjectClassAttr field value if set, zero value otherwise.

func (*Domain) GetObjectClassAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetSearchAttr() string

GetSearchAttr returns the SearchAttr field value if set, zero value otherwise.

func (*Domain) GetSearchAttrOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetSearchBase() string

GetSearchBase returns the SearchBase field value if set, zero value otherwise.

func (*Domain) GetSearchBaseOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) GetUsernamePattern() string

GetUsernamePattern returns the UsernamePattern field value if set, zero value otherwise.

func (*Domain) GetUsernamePatternOk added in v1.6.0

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 added in v1.6.0

func (o *Domain) HasEmailAttr() bool

HasEmailAttr returns a boolean if a field has been set.

func (*Domain) HasFirstNameAttr added in v1.6.0

func (o *Domain) HasFirstNameAttr() bool

HasFirstNameAttr returns a boolean if a field has been set.

func (*Domain) HasGroupAttr added in v1.6.0

func (o *Domain) HasGroupAttr() bool

HasGroupAttr returns a boolean if a field has been set.

func (*Domain) HasLastNameAttr added in v1.6.0

func (o *Domain) HasLastNameAttr() bool

HasLastNameAttr returns a boolean if a field has been set.

func (*Domain) HasMsadDomainName added in v1.6.0

func (o *Domain) HasMsadDomainName() bool

HasMsadDomainName returns a boolean if a field has been set.

func (*Domain) HasObjectClassAttr added in v1.6.0

func (o *Domain) HasObjectClassAttr() bool

HasObjectClassAttr returns a boolean if a field has been set.

func (*Domain) HasSearchAttr added in v1.6.0

func (o *Domain) HasSearchAttr() bool

HasSearchAttr returns a boolean if a field has been set.

func (*Domain) HasSearchBase added in v1.6.0

func (o *Domain) HasSearchBase() bool

HasSearchBase returns a boolean if a field has been set.

func (*Domain) HasUsernamePattern added in v1.6.0

func (o *Domain) HasUsernamePattern() bool

HasUsernamePattern returns a boolean if a field has been set.

func (Domain) MarshalJSON added in v1.6.0

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

func (*Domain) SetEmailAttr added in v1.6.0

func (o *Domain) SetEmailAttr(v string)

SetEmailAttr gets a reference to the given string and assigns it to the EmailAttr field.

func (*Domain) SetFirstNameAttr added in v1.6.0

func (o *Domain) SetFirstNameAttr(v string)

SetFirstNameAttr gets a reference to the given string and assigns it to the FirstNameAttr field.

func (*Domain) SetGroupAttr added in v1.6.0

func (o *Domain) SetGroupAttr(v string)

SetGroupAttr gets a reference to the given string and assigns it to the GroupAttr field.

func (*Domain) SetLastNameAttr added in v1.6.0

func (o *Domain) SetLastNameAttr(v string)

SetLastNameAttr gets a reference to the given string and assigns it to the LastNameAttr field.

func (*Domain) SetMsadDomainName added in v1.6.0

func (o *Domain) SetMsadDomainName(v string)

SetMsadDomainName gets a reference to the given string and assigns it to the MsadDomainName field.

func (*Domain) SetObjectClassAttr added in v1.6.0

func (o *Domain) SetObjectClassAttr(v string)

SetObjectClassAttr gets a reference to the given string and assigns it to the ObjectClassAttr field.

func (*Domain) SetSearchAttr added in v1.6.0

func (o *Domain) SetSearchAttr(v string)

SetSearchAttr gets a reference to the given string and assigns it to the SearchAttr field.

func (*Domain) SetSearchBase added in v1.6.0

func (o *Domain) SetSearchBase(v string)

SetSearchBase gets a reference to the given string and assigns it to the SearchBase field.

func (*Domain) SetUsernamePattern added in v1.6.0

func (o *Domain) SetUsernamePattern(v string)

SetUsernamePattern gets a reference to the given string and assigns it to the UsernamePattern field.

func (Domain) ToMap added in v1.6.0

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

type EffectiveScope added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *EffectiveScope) GetId() string

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

func (*EffectiveScope) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *EffectiveScope) GetName() string

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

func (*EffectiveScope) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *EffectiveScope) HasId() bool

HasId returns a boolean if a field has been set.

func (*EffectiveScope) HasName added in v1.6.0

func (o *EffectiveScope) HasName() bool

HasName returns a boolean if a field has been set.

func (EffectiveScope) MarshalJSON added in v1.6.0

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

func (*EffectiveScope) SetId added in v1.6.0

func (o *EffectiveScope) SetId(v string)

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

func (*EffectiveScope) SetName added in v1.6.0

func (o *EffectiveScope) SetName(v string)

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

func (EffectiveScope) ToMap added in v1.6.0

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 added in v1.2.0

func (o *EnableEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*EnableEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *EnableEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (EnableEnvironmentResponse) ToMap added in v1.6.0

func (o EnableEnvironmentResponse) 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 added in v1.6.0

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 added in v1.2.0

func (o *EnableVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*EnableVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *EnableVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (EnableVDBResponse) ToMap added in v1.6.0

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

type Engine

type Engine 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,omitempty"`
	// The hostname of this engine.
	Hostname *string `json:"hostname,omitempty"`
	// The registration status of this engine.
	RegistrationStatus NullableString `json:"registration_status,omitempty"`
	// The connection status of this engine.
	ConnectionStatus NullableString `json:"connection_status,omitempty"`
	// The last time a connection was established with this engine.
	LastConnectionTime NullableTime `json:"last_connection_time,omitempty"`
	// The total amount of storage allocated to the engine's boot partition, in bytes.
	BootStorageCapacity NullableInt64 `json:"boot_storage_capacity,omitempty"`
	// The total number of CPU cores on this engine.
	CpuCoreCount NullableInt32 `json:"cpu_core_count,omitempty"`
	// The model of the processors on this engine.
	CpuType NullableString `json:"cpu_type,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"`
	Tags            []Tag         `json:"tags,omitempty"`
}

Engine A Delphix Virtualization or Masking 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) GetBootStorageCapacity

func (o *Engine) GetBootStorageCapacity() int64

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

func (*Engine) GetBootStorageCapacityOk

func (o *Engine) GetBootStorageCapacityOk() (*int64, bool)

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

func (*Engine) GetConnectionStatus

func (o *Engine) GetConnectionStatus() string

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

func (*Engine) GetConnectionStatusOk

func (o *Engine) 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 (*Engine) GetCpuCoreCount

func (o *Engine) GetCpuCoreCount() int32

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

func (*Engine) GetCpuCoreCountOk

func (o *Engine) 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 (*Engine) GetCpuType

func (o *Engine) GetCpuType() string

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

func (*Engine) GetCpuTypeOk

func (o *Engine) GetCpuTypeOk() (*string, bool)

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

func (*Engine) GetDataStorageCapacity

func (o *Engine) GetDataStorageCapacity() int64

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

func (*Engine) GetDataStorageCapacityOk

func (o *Engine) 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 (*Engine) GetDataStorageUsed

func (o *Engine) GetDataStorageUsed() int64

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

func (*Engine) GetDataStorageUsedOk

func (o *Engine) 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 (*Engine) GetHostname

func (o *Engine) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*Engine) GetHostnameOk

func (o *Engine) 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 (*Engine) GetId

func (o *Engine) GetId() string

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

func (*Engine) GetIdOk

func (o *Engine) 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 (*Engine) GetLastConnectionTime

func (o *Engine) GetLastConnectionTime() time.Time

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

func (*Engine) GetLastConnectionTimeOk

func (o *Engine) GetLastConnectionTimeOk() (*time.Time, bool)

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

func (*Engine) GetMemorySize

func (o *Engine) GetMemorySize() int64

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

func (*Engine) GetMemorySizeOk

func (o *Engine) 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 (*Engine) GetName

func (o *Engine) GetName() string

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

func (*Engine) GetNameOk

func (o *Engine) 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 (*Engine) GetRegistrationStatus

func (o *Engine) GetRegistrationStatus() string

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

func (*Engine) GetRegistrationStatusOk

func (o *Engine) GetRegistrationStatusOk() (*string, bool)

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

func (*Engine) GetTags added in v1.2.0

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

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

func (*Engine) GetTagsOk added in v1.2.0

func (o *Engine) 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 (*Engine) GetType

func (o *Engine) GetType() string

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

func (*Engine) GetTypeOk

func (o *Engine) 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 (*Engine) GetUuid

func (o *Engine) GetUuid() string

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

func (*Engine) GetUuidOk

func (o *Engine) 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 (*Engine) GetVersion

func (o *Engine) GetVersion() string

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

func (*Engine) GetVersionOk

func (o *Engine) 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 (*Engine) HasBootStorageCapacity

func (o *Engine) HasBootStorageCapacity() bool

HasBootStorageCapacity returns a boolean if a field has been set.

func (*Engine) HasConnectionStatus

func (o *Engine) HasConnectionStatus() bool

HasConnectionStatus returns a boolean if a field has been set.

func (*Engine) HasCpuCoreCount

func (o *Engine) HasCpuCoreCount() bool

HasCpuCoreCount returns a boolean if a field has been set.

func (*Engine) HasCpuType

func (o *Engine) HasCpuType() bool

HasCpuType returns a boolean if a field has been set.

func (*Engine) HasDataStorageCapacity

func (o *Engine) HasDataStorageCapacity() bool

HasDataStorageCapacity returns a boolean if a field has been set.

func (*Engine) HasDataStorageUsed

func (o *Engine) HasDataStorageUsed() bool

HasDataStorageUsed returns a boolean if a field has been set.

func (*Engine) HasHostname

func (o *Engine) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*Engine) HasId

func (o *Engine) HasId() bool

HasId returns a boolean if a field has been set.

func (*Engine) HasLastConnectionTime

func (o *Engine) HasLastConnectionTime() bool

HasLastConnectionTime returns a boolean if a field has been set.

func (*Engine) HasMemorySize

func (o *Engine) HasMemorySize() bool

HasMemorySize returns a boolean if a field has been set.

func (*Engine) HasName

func (o *Engine) HasName() bool

HasName returns a boolean if a field has been set.

func (*Engine) HasRegistrationStatus

func (o *Engine) HasRegistrationStatus() bool

HasRegistrationStatus returns a boolean if a field has been set.

func (*Engine) HasTags added in v1.2.0

func (o *Engine) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Engine) HasType

func (o *Engine) HasType() bool

HasType returns a boolean if a field has been set.

func (*Engine) HasUuid

func (o *Engine) HasUuid() bool

HasUuid returns a boolean if a field has been set.

func (*Engine) HasVersion

func (o *Engine) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Engine) MarshalJSON

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

func (*Engine) SetBootStorageCapacity

func (o *Engine) SetBootStorageCapacity(v int64)

SetBootStorageCapacity gets a reference to the given NullableInt64 and assigns it to the BootStorageCapacity field.

func (*Engine) SetBootStorageCapacityNil

func (o *Engine) SetBootStorageCapacityNil()

SetBootStorageCapacityNil sets the value for BootStorageCapacity to be an explicit nil

func (*Engine) SetConnectionStatus

func (o *Engine) SetConnectionStatus(v string)

SetConnectionStatus gets a reference to the given NullableString and assigns it to the ConnectionStatus field.

func (*Engine) SetConnectionStatusNil

func (o *Engine) SetConnectionStatusNil()

SetConnectionStatusNil sets the value for ConnectionStatus to be an explicit nil

func (*Engine) SetCpuCoreCount

func (o *Engine) SetCpuCoreCount(v int32)

SetCpuCoreCount gets a reference to the given NullableInt32 and assigns it to the CpuCoreCount field.

func (*Engine) SetCpuCoreCountNil

func (o *Engine) SetCpuCoreCountNil()

SetCpuCoreCountNil sets the value for CpuCoreCount to be an explicit nil

func (*Engine) SetCpuType

func (o *Engine) SetCpuType(v string)

SetCpuType gets a reference to the given NullableString and assigns it to the CpuType field.

func (*Engine) SetCpuTypeNil

func (o *Engine) SetCpuTypeNil()

SetCpuTypeNil sets the value for CpuType to be an explicit nil

func (*Engine) SetDataStorageCapacity

func (o *Engine) SetDataStorageCapacity(v int64)

SetDataStorageCapacity gets a reference to the given NullableInt64 and assigns it to the DataStorageCapacity field.

func (*Engine) SetDataStorageCapacityNil

func (o *Engine) SetDataStorageCapacityNil()

SetDataStorageCapacityNil sets the value for DataStorageCapacity to be an explicit nil

func (*Engine) SetDataStorageUsed

func (o *Engine) SetDataStorageUsed(v int64)

SetDataStorageUsed gets a reference to the given NullableInt64 and assigns it to the DataStorageUsed field.

func (*Engine) SetDataStorageUsedNil

func (o *Engine) SetDataStorageUsedNil()

SetDataStorageUsedNil sets the value for DataStorageUsed to be an explicit nil

func (*Engine) SetHostname

func (o *Engine) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*Engine) SetId

func (o *Engine) SetId(v string)

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

func (*Engine) SetLastConnectionTime

func (o *Engine) SetLastConnectionTime(v time.Time)

SetLastConnectionTime gets a reference to the given NullableTime and assigns it to the LastConnectionTime field.

func (*Engine) SetLastConnectionTimeNil

func (o *Engine) SetLastConnectionTimeNil()

SetLastConnectionTimeNil sets the value for LastConnectionTime to be an explicit nil

func (*Engine) SetMemorySize

func (o *Engine) SetMemorySize(v int64)

SetMemorySize gets a reference to the given NullableInt64 and assigns it to the MemorySize field.

func (*Engine) SetMemorySizeNil

func (o *Engine) SetMemorySizeNil()

SetMemorySizeNil sets the value for MemorySize to be an explicit nil

func (*Engine) SetName

func (o *Engine) SetName(v string)

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

func (*Engine) SetRegistrationStatus

func (o *Engine) SetRegistrationStatus(v string)

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

func (*Engine) SetRegistrationStatusNil

func (o *Engine) SetRegistrationStatusNil()

SetRegistrationStatusNil sets the value for RegistrationStatus to be an explicit nil

func (*Engine) SetTags added in v1.2.0

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

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

func (*Engine) SetType

func (o *Engine) SetType(v string)

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

func (*Engine) SetTypeNil

func (o *Engine) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*Engine) SetUuid

func (o *Engine) SetUuid(v string)

SetUuid gets a reference to the given NullableString and assigns it to the Uuid field.

func (*Engine) SetUuidNil

func (o *Engine) SetUuidNil()

SetUuidNil sets the value for Uuid to be an explicit nil

func (*Engine) SetVersion

func (o *Engine) SetVersion(v string)

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

func (*Engine) SetVersionNil

func (o *Engine) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (Engine) ToMap added in v1.6.0

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

func (*Engine) UnsetBootStorageCapacity

func (o *Engine) UnsetBootStorageCapacity()

UnsetBootStorageCapacity ensures that no value is present for BootStorageCapacity, not even an explicit nil

func (*Engine) UnsetConnectionStatus

func (o *Engine) UnsetConnectionStatus()

UnsetConnectionStatus ensures that no value is present for ConnectionStatus, not even an explicit nil

func (*Engine) UnsetCpuCoreCount

func (o *Engine) UnsetCpuCoreCount()

UnsetCpuCoreCount ensures that no value is present for CpuCoreCount, not even an explicit nil

func (*Engine) UnsetCpuType

func (o *Engine) UnsetCpuType()

UnsetCpuType ensures that no value is present for CpuType, not even an explicit nil

func (*Engine) UnsetDataStorageCapacity

func (o *Engine) UnsetDataStorageCapacity()

UnsetDataStorageCapacity ensures that no value is present for DataStorageCapacity, not even an explicit nil

func (*Engine) UnsetDataStorageUsed

func (o *Engine) UnsetDataStorageUsed()

UnsetDataStorageUsed ensures that no value is present for DataStorageUsed, not even an explicit nil

func (*Engine) UnsetLastConnectionTime

func (o *Engine) UnsetLastConnectionTime()

UnsetLastConnectionTime ensures that no value is present for LastConnectionTime, not even an explicit nil

func (*Engine) UnsetMemorySize

func (o *Engine) UnsetMemorySize()

UnsetMemorySize ensures that no value is present for MemorySize, not even an explicit nil

func (*Engine) UnsetRegistrationStatus

func (o *Engine) UnsetRegistrationStatus()

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

func (*Engine) UnsetType

func (o *Engine) UnsetType()

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

func (*Engine) UnsetUuid

func (o *Engine) UnsetUuid()

UnsetUuid ensures that no value is present for Uuid, not even an explicit nil

func (*Engine) UnsetVersion

func (o *Engine) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type EngineIdBody added in v1.6.0

type EngineIdBody struct {
	EngineId *string `json:"engine_id,omitempty"`
}

EngineIdBody The ID of the registered engine.

func NewEngineIdBody added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *EngineIdBody) GetEngineId() string

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

func (*EngineIdBody) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *EngineIdBody) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (EngineIdBody) MarshalJSON added in v1.6.0

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

func (*EngineIdBody) SetEngineId added in v1.6.0

func (o *EngineIdBody) SetEngineId(v string)

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

func (EngineIdBody) ToMap added in v1.6.0

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_path propery.
	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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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

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

func (*EngineRegistrationParameter) GetTagsOk added in v1.2.0

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 added in v1.6.0

func (o *EngineRegistrationParameter) HasHashicorpVaultMaskingPasswordCommandArgs() bool

HasHashicorpVaultMaskingPasswordCommandArgs returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasHashicorpVaultMaskingUsernameCommandArgs added in v1.6.0

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 added in v1.6.0

func (o *EngineRegistrationParameter) HasMaskingHashicorpVaultId() bool

HasMaskingHashicorpVaultId returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasMaskingPassword added in v1.6.0

func (o *EngineRegistrationParameter) HasMaskingPassword() bool

HasMaskingPassword returns a boolean if a field has been set.

func (*EngineRegistrationParameter) HasMaskingUsername added in v1.6.0

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 added in v1.2.0

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 added in v1.6.0

func (o *EngineRegistrationParameter) SetHashicorpVaultMaskingPasswordCommandArgs(v []string)

SetHashicorpVaultMaskingPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingPasswordCommandArgs field.

func (*EngineRegistrationParameter) SetHashicorpVaultMaskingUsernameCommandArgs added in v1.6.0

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 added in v1.6.0

func (o *EngineRegistrationParameter) SetMaskingHashicorpVaultId(v int64)

SetMaskingHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the MaskingHashicorpVaultId field.

func (*EngineRegistrationParameter) SetMaskingHashicorpVaultIdNil added in v1.6.0

func (o *EngineRegistrationParameter) SetMaskingHashicorpVaultIdNil()

SetMaskingHashicorpVaultIdNil sets the value for MaskingHashicorpVaultId to be an explicit nil

func (*EngineRegistrationParameter) SetMaskingPassword added in v1.6.0

func (o *EngineRegistrationParameter) SetMaskingPassword(v string)

SetMaskingPassword gets a reference to the given NullableString and assigns it to the MaskingPassword field.

func (*EngineRegistrationParameter) SetMaskingPasswordNil added in v1.6.0

func (o *EngineRegistrationParameter) SetMaskingPasswordNil()

SetMaskingPasswordNil sets the value for MaskingPassword to be an explicit nil

func (*EngineRegistrationParameter) SetMaskingUsername added in v1.6.0

func (o *EngineRegistrationParameter) SetMaskingUsername(v string)

SetMaskingUsername gets a reference to the given NullableString and assigns it to the MaskingUsername field.

func (*EngineRegistrationParameter) SetMaskingUsernameNil added in v1.6.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

func (o *EngineRegistrationParameter) UnsetMaskingHashicorpVaultId()

UnsetMaskingHashicorpVaultId ensures that no value is present for MaskingHashicorpVaultId, not even an explicit nil

func (*EngineRegistrationParameter) UnsetMaskingPassword added in v1.6.0

func (o *EngineRegistrationParameter) UnsetMaskingPassword()

UnsetMaskingPassword ensures that no value is present for MaskingPassword, not even an explicit nil

func (*EngineRegistrationParameter) UnsetMaskingUsername added in v1.6.0

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 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"`
	// 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 added in v1.6.0

func (o *Environment) GetClusterHome() string

GetClusterHome returns the ClusterHome field value if set, zero value otherwise.

func (*Environment) GetClusterHomeOk added in v1.6.0

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) GetIsWindowsTarget added in v1.6.0

func (o *Environment) GetIsWindowsTarget() bool

GetIsWindowsTarget returns the IsWindowsTarget field value if set, zero value otherwise.

func (*Environment) GetIsWindowsTargetOk added in v1.6.0

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 added in v1.6.0

func (o *Environment) GetListeners() []OracleListener

GetListeners returns the Listeners field value if set, zero value otherwise.

func (*Environment) GetListenersOk added in v1.6.0

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) 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 added in v1.2.0

func (o *Environment) GetRepositories() []Repository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*Environment) GetRepositoriesOk added in v1.2.0

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) GetTags added in v1.2.0

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

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

func (*Environment) GetTagsOk added in v1.2.0

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 added in v1.6.0

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) HasIsWindowsTarget added in v1.6.0

func (o *Environment) HasIsWindowsTarget() bool

HasIsWindowsTarget returns a boolean if a field has been set.

func (*Environment) HasListeners added in v1.6.0

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) HasRepositories added in v1.2.0

func (o *Environment) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (*Environment) HasTags added in v1.2.0

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 added in v1.6.0

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) SetIsWindowsTarget added in v1.6.0

func (o *Environment) SetIsWindowsTarget(v bool)

SetIsWindowsTarget gets a reference to the given bool and assigns it to the IsWindowsTarget field.

func (*Environment) SetListeners added in v1.6.0

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) SetNamespaceNil

func (o *Environment) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Environment) SetRepositories added in v1.2.0

func (o *Environment) SetRepositories(v []Repository)

SetRepositories gets a reference to the given []Repository and assigns it to the Repositories field.

func (*Environment) SetTags added in v1.2.0

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

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

func (Environment) ToMap added in v1.6.0

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"`
	// 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"`
	// 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 added in v1.2.0

func (o *EnvironmentCreateParameters) GetAseDbUseKerberosAuthentication() bool

GetAseDbUseKerberosAuthentication returns the AseDbUseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetAseDbUseKerberosAuthenticationOk added in v1.2.0

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) 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 added in v1.6.0

func (o *EnvironmentCreateParameters) GetConnectorAuthenticationKey() string

GetConnectorAuthenticationKey returns the ConnectorAuthenticationKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetConnectorAuthenticationKeyOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentCreateParameters) GetMakeCurrentAccountOwner() bool

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

func (*EnvironmentCreateParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.2.0

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

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

func (*EnvironmentCreateParameters) GetTagsOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentCreateParameters) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetUseEnginePublicKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentCreateParameters) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentCreateParameters) GetUseKerberosAuthenticationOk added in v1.2.0

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) 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 added in v1.2.0

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) HasClusterHome

func (o *EnvironmentCreateParameters) HasClusterHome() bool

HasClusterHome returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasConnectorAuthenticationKey added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentCreateParameters) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*EnvironmentCreateParameters) HasUseKerberosAuthentication added in v1.2.0

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) 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 added in v1.2.0

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) 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentCreateParameters) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*EnvironmentCreateParameters) SetUseKerberosAuthentication added in v1.2.0

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) ToMap added in v1.6.0

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

type EnvironmentRepository added in v1.6.0

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"`
	// The environment ID.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

EnvironmentRepository A repository corresponding to the environment.

func NewEnvironmentRepository added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetAllowProvisioning() bool

GetAllowProvisioning returns the AllowProvisioning field value if set, zero value otherwise.

func (*EnvironmentRepository) GetAllowProvisioningOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetBits() int32

GetBits returns the Bits field value if set, zero value otherwise.

func (*EnvironmentRepository) GetBitsOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*EnvironmentRepository) GetDatabaseTypeOk added in v1.6.0

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) GetDumpHistoryFile added in v1.6.0

func (o *EnvironmentRepository) GetDumpHistoryFile() string

GetDumpHistoryFile returns the DumpHistoryFile field value if set, zero value otherwise.

func (*EnvironmentRepository) GetDumpHistoryFileOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetEnvironmentId() string

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

func (*EnvironmentRepository) GetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetFulltextInstalled() bool

GetFulltextInstalled returns the FulltextInstalled field value if set, zero value otherwise.

func (*EnvironmentRepository) GetFulltextInstalledOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetId() string

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

func (*EnvironmentRepository) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetInstallGroup() string

GetInstallGroup returns the InstallGroup field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallGroupOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetInstallUser() string

GetInstallUser returns the InstallUser field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallUserOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetInstallationHome() string

GetInstallationHome returns the InstallationHome field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallationHomeOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetInstallationPath() string

GetInstallationPath returns the InstallationPath field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInstallationPathOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetInternalVersion() int64

GetInternalVersion returns the InternalVersion field value if set, zero value otherwise.

func (*EnvironmentRepository) GetInternalVersionOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetIsStaging() bool

GetIsStaging returns the IsStaging field value if set, zero value otherwise.

func (*EnvironmentRepository) GetIsStagingOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetMssqlClusterInstancesName() []string

GetMssqlClusterInstancesName returns the MssqlClusterInstancesName field value if set, zero value otherwise.

func (*EnvironmentRepository) GetMssqlClusterInstancesNameOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetMssqlClusterInstancesVersion() []string

GetMssqlClusterInstancesVersion returns the MssqlClusterInstancesVersion field value if set, zero value otherwise.

func (*EnvironmentRepository) GetMssqlClusterInstancesVersionOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetName() string

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

func (*EnvironmentRepository) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetOracleBase() string

GetOracleBase returns the OracleBase field value if set, zero value otherwise.

func (*EnvironmentRepository) GetOracleBaseOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*EnvironmentRepository) GetOwnerOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*EnvironmentRepository) GetPageSizeOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetPorts() []int64

GetPorts returns the Ports field value if set, zero value otherwise.

func (*EnvironmentRepository) GetPortsOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetRac() bool

GetRac returns the Rac field value if set, zero value otherwise.

func (*EnvironmentRepository) GetRacOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) GetVersion() string

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

func (*EnvironmentRepository) GetVersionOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepository) HasAllowProvisioning() bool

HasAllowProvisioning returns a boolean if a field has been set.

func (*EnvironmentRepository) HasBits added in v1.6.0

func (o *EnvironmentRepository) HasBits() bool

HasBits returns a boolean if a field has been set.

func (*EnvironmentRepository) HasDatabaseType added in v1.6.0

func (o *EnvironmentRepository) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*EnvironmentRepository) HasDumpHistoryFile added in v1.6.0

func (o *EnvironmentRepository) HasDumpHistoryFile() bool

HasDumpHistoryFile returns a boolean if a field has been set.

func (*EnvironmentRepository) HasEnvironmentId added in v1.6.0

func (o *EnvironmentRepository) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*EnvironmentRepository) HasFulltextInstalled added in v1.6.0

func (o *EnvironmentRepository) HasFulltextInstalled() bool

HasFulltextInstalled returns a boolean if a field has been set.

func (*EnvironmentRepository) HasId added in v1.6.0

func (o *EnvironmentRepository) HasId() bool

HasId returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallGroup added in v1.6.0

func (o *EnvironmentRepository) HasInstallGroup() bool

HasInstallGroup returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallUser added in v1.6.0

func (o *EnvironmentRepository) HasInstallUser() bool

HasInstallUser returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallationHome added in v1.6.0

func (o *EnvironmentRepository) HasInstallationHome() bool

HasInstallationHome returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInstallationPath added in v1.6.0

func (o *EnvironmentRepository) HasInstallationPath() bool

HasInstallationPath returns a boolean if a field has been set.

func (*EnvironmentRepository) HasInternalVersion added in v1.6.0

func (o *EnvironmentRepository) HasInternalVersion() bool

HasInternalVersion returns a boolean if a field has been set.

func (*EnvironmentRepository) HasIsStaging added in v1.6.0

func (o *EnvironmentRepository) HasIsStaging() bool

HasIsStaging returns a boolean if a field has been set.

func (*EnvironmentRepository) HasMssqlClusterInstancesName added in v1.6.0

func (o *EnvironmentRepository) HasMssqlClusterInstancesName() bool

HasMssqlClusterInstancesName returns a boolean if a field has been set.

func (*EnvironmentRepository) HasMssqlClusterInstancesVersion added in v1.6.0

func (o *EnvironmentRepository) HasMssqlClusterInstancesVersion() bool

HasMssqlClusterInstancesVersion returns a boolean if a field has been set.

func (*EnvironmentRepository) HasName added in v1.6.0

func (o *EnvironmentRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnvironmentRepository) HasOracleBase added in v1.6.0

func (o *EnvironmentRepository) HasOracleBase() bool

HasOracleBase returns a boolean if a field has been set.

func (*EnvironmentRepository) HasOwner added in v1.6.0

func (o *EnvironmentRepository) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*EnvironmentRepository) HasPageSize added in v1.6.0

func (o *EnvironmentRepository) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*EnvironmentRepository) HasPorts added in v1.6.0

func (o *EnvironmentRepository) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*EnvironmentRepository) HasRac added in v1.6.0

func (o *EnvironmentRepository) HasRac() bool

HasRac returns a boolean if a field has been set.

func (*EnvironmentRepository) HasVersion added in v1.6.0

func (o *EnvironmentRepository) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EnvironmentRepository) MarshalJSON added in v1.6.0

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

func (*EnvironmentRepository) SetAllowProvisioning added in v1.6.0

func (o *EnvironmentRepository) SetAllowProvisioning(v bool)

SetAllowProvisioning gets a reference to the given bool and assigns it to the AllowProvisioning field.

func (*EnvironmentRepository) SetBits added in v1.6.0

func (o *EnvironmentRepository) SetBits(v int32)

SetBits gets a reference to the given int32 and assigns it to the Bits field.

func (*EnvironmentRepository) SetDatabaseType added in v1.6.0

func (o *EnvironmentRepository) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*EnvironmentRepository) SetDumpHistoryFile added in v1.6.0

func (o *EnvironmentRepository) SetDumpHistoryFile(v string)

SetDumpHistoryFile gets a reference to the given string and assigns it to the DumpHistoryFile field.

func (*EnvironmentRepository) SetEnvironmentId added in v1.6.0

func (o *EnvironmentRepository) SetEnvironmentId(v string)

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

func (*EnvironmentRepository) SetFulltextInstalled added in v1.6.0

func (o *EnvironmentRepository) SetFulltextInstalled(v bool)

SetFulltextInstalled gets a reference to the given bool and assigns it to the FulltextInstalled field.

func (*EnvironmentRepository) SetId added in v1.6.0

func (o *EnvironmentRepository) SetId(v string)

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

func (*EnvironmentRepository) SetInstallGroup added in v1.6.0

func (o *EnvironmentRepository) SetInstallGroup(v string)

SetInstallGroup gets a reference to the given string and assigns it to the InstallGroup field.

func (*EnvironmentRepository) SetInstallUser added in v1.6.0

func (o *EnvironmentRepository) SetInstallUser(v string)

SetInstallUser gets a reference to the given string and assigns it to the InstallUser field.

func (*EnvironmentRepository) SetInstallationHome added in v1.6.0

func (o *EnvironmentRepository) SetInstallationHome(v string)

SetInstallationHome gets a reference to the given string and assigns it to the InstallationHome field.

func (*EnvironmentRepository) SetInstallationPath added in v1.6.0

func (o *EnvironmentRepository) SetInstallationPath(v string)

SetInstallationPath gets a reference to the given string and assigns it to the InstallationPath field.

func (*EnvironmentRepository) SetInternalVersion added in v1.6.0

func (o *EnvironmentRepository) SetInternalVersion(v int64)

SetInternalVersion gets a reference to the given int64 and assigns it to the InternalVersion field.

func (*EnvironmentRepository) SetIsStaging added in v1.6.0

func (o *EnvironmentRepository) SetIsStaging(v bool)

SetIsStaging gets a reference to the given bool and assigns it to the IsStaging field.

func (*EnvironmentRepository) SetMssqlClusterInstancesName added in v1.6.0

func (o *EnvironmentRepository) SetMssqlClusterInstancesName(v []string)

SetMssqlClusterInstancesName gets a reference to the given []string and assigns it to the MssqlClusterInstancesName field.

func (*EnvironmentRepository) SetMssqlClusterInstancesVersion added in v1.6.0

func (o *EnvironmentRepository) SetMssqlClusterInstancesVersion(v []string)

SetMssqlClusterInstancesVersion gets a reference to the given []string and assigns it to the MssqlClusterInstancesVersion field.

func (*EnvironmentRepository) SetName added in v1.6.0

func (o *EnvironmentRepository) SetName(v string)

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

func (*EnvironmentRepository) SetOracleBase added in v1.6.0

func (o *EnvironmentRepository) SetOracleBase(v string)

SetOracleBase gets a reference to the given string and assigns it to the OracleBase field.

func (*EnvironmentRepository) SetOwner added in v1.6.0

func (o *EnvironmentRepository) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*EnvironmentRepository) SetPageSize added in v1.6.0

func (o *EnvironmentRepository) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*EnvironmentRepository) SetPorts added in v1.6.0

func (o *EnvironmentRepository) SetPorts(v []int64)

SetPorts gets a reference to the given []int64 and assigns it to the Ports field.

func (*EnvironmentRepository) SetRac added in v1.6.0

func (o *EnvironmentRepository) SetRac(v bool)

SetRac gets a reference to the given bool and assigns it to the Rac field.

func (*EnvironmentRepository) SetVersion added in v1.6.0

func (o *EnvironmentRepository) SetVersion(v string)

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

func (EnvironmentRepository) ToMap added in v1.6.0

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

type EnvironmentRepositoryAllOf added in v1.6.0

type EnvironmentRepositoryAllOf struct {
	// The environment ID.
	EnvironmentId *string `json:"environment_id,omitempty"`
}

EnvironmentRepositoryAllOf struct for EnvironmentRepositoryAllOf

func NewEnvironmentRepositoryAllOf added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepositoryAllOf) GetEnvironmentId() string

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

func (*EnvironmentRepositoryAllOf) GetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *EnvironmentRepositoryAllOf) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (EnvironmentRepositoryAllOf) MarshalJSON added in v1.6.0

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

func (*EnvironmentRepositoryAllOf) SetEnvironmentId added in v1.6.0

func (o *EnvironmentRepositoryAllOf) SetEnvironmentId(v string)

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

func (EnvironmentRepositoryAllOf) ToMap added in v1.6.0

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

type EnvironmentUpdateParameters added in v1.1.0

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"`
	// 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 added in v1.1.0

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 added in v1.1.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryString() string

GetAseDbCyberarkVaultQueryString returns the AseDbCyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbCyberarkVaultQueryStringOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngine() string

GetAseDbHashicorpVaultEngine returns the AseDbHashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultEngineOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKey() string

GetAseDbHashicorpVaultSecretKey returns the AseDbHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPath() string

GetAseDbHashicorpVaultSecretPath returns the AseDbHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultSecretPathOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKey() string

GetAseDbHashicorpVaultUsernameKey returns the AseDbHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbHashicorpVaultUsernameKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbPassword() string

GetAseDbPassword returns the AseDbPassword field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbUseKerberosAuthentication() bool

GetAseDbUseKerberosAuthentication returns the AseDbUseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbUseKerberosAuthenticationOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbUsername() string

GetAseDbUsername returns the AseDbUsername field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbUsernameOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetAseDbVault() string

GetAseDbVault returns the AseDbVault field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetAseDbVaultOk added in v1.2.0

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) GetClusterAddress added in v1.2.0

func (o *EnvironmentUpdateParameters) GetClusterAddress() string

GetClusterAddress returns the ClusterAddress field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetClusterAddressOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) GetClusterHome() string

GetClusterHome returns the ClusterHome field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetClusterHomeOk added in v1.2.0

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 added in v1.1.0

func (o *EnvironmentUpdateParameters) GetDescription() string

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

func (*EnvironmentUpdateParameters) GetDescriptionOk added in v1.1.0

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 added in v1.1.0

func (o *EnvironmentUpdateParameters) GetName() string

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

func (*EnvironmentUpdateParameters) GetNameOk added in v1.1.0

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 added in v1.1.0

func (o *EnvironmentUpdateParameters) GetStagingEnvironment() string

GetStagingEnvironment returns the StagingEnvironment field value if set, zero value otherwise.

func (*EnvironmentUpdateParameters) GetStagingEnvironmentOk added in v1.1.0

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 added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbCyberarkVaultQueryString() bool

HasAseDbCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultEngine added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultEngine() bool

HasAseDbHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretKey added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretKey() bool

HasAseDbHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretPath added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultSecretPath() bool

HasAseDbHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbHashicorpVaultUsernameKey added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbHashicorpVaultUsernameKey() bool

HasAseDbHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbPassword added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbPassword() bool

HasAseDbPassword returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbUseKerberosAuthentication added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbUseKerberosAuthentication() bool

HasAseDbUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbUsername added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbUsername() bool

HasAseDbUsername returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasAseDbVault added in v1.2.0

func (o *EnvironmentUpdateParameters) HasAseDbVault() bool

HasAseDbVault returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasClusterAddress added in v1.2.0

func (o *EnvironmentUpdateParameters) HasClusterAddress() bool

HasClusterAddress returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasClusterHome added in v1.2.0

func (o *EnvironmentUpdateParameters) HasClusterHome() bool

HasClusterHome returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasDescription added in v1.1.0

func (o *EnvironmentUpdateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasName added in v1.1.0

func (o *EnvironmentUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnvironmentUpdateParameters) HasStagingEnvironment added in v1.1.0

func (o *EnvironmentUpdateParameters) HasStagingEnvironment() bool

HasStagingEnvironment returns a boolean if a field has been set.

func (EnvironmentUpdateParameters) MarshalJSON added in v1.1.0

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

func (*EnvironmentUpdateParameters) SetAseDbCyberarkVaultQueryString added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbCyberarkVaultQueryString(v string)

SetAseDbCyberarkVaultQueryString gets a reference to the given string and assigns it to the AseDbCyberarkVaultQueryString field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultEngine added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultEngine(v string)

SetAseDbHashicorpVaultEngine gets a reference to the given string and assigns it to the AseDbHashicorpVaultEngine field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretKey added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretKey(v string)

SetAseDbHashicorpVaultSecretKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretKey field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretPath added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultSecretPath(v string)

SetAseDbHashicorpVaultSecretPath gets a reference to the given string and assigns it to the AseDbHashicorpVaultSecretPath field.

func (*EnvironmentUpdateParameters) SetAseDbHashicorpVaultUsernameKey added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbHashicorpVaultUsernameKey(v string)

SetAseDbHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the AseDbHashicorpVaultUsernameKey field.

func (*EnvironmentUpdateParameters) SetAseDbPassword added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbPassword(v string)

SetAseDbPassword gets a reference to the given string and assigns it to the AseDbPassword field.

func (*EnvironmentUpdateParameters) SetAseDbUseKerberosAuthentication added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbUseKerberosAuthentication(v bool)

SetAseDbUseKerberosAuthentication gets a reference to the given bool and assigns it to the AseDbUseKerberosAuthentication field.

func (*EnvironmentUpdateParameters) SetAseDbUsername added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbUsername(v string)

SetAseDbUsername gets a reference to the given string and assigns it to the AseDbUsername field.

func (*EnvironmentUpdateParameters) SetAseDbVault added in v1.2.0

func (o *EnvironmentUpdateParameters) SetAseDbVault(v string)

SetAseDbVault gets a reference to the given string and assigns it to the AseDbVault field.

func (*EnvironmentUpdateParameters) SetClusterAddress added in v1.2.0

func (o *EnvironmentUpdateParameters) SetClusterAddress(v string)

SetClusterAddress gets a reference to the given string and assigns it to the ClusterAddress field.

func (*EnvironmentUpdateParameters) SetClusterHome added in v1.2.0

func (o *EnvironmentUpdateParameters) SetClusterHome(v string)

SetClusterHome gets a reference to the given string and assigns it to the ClusterHome field.

func (*EnvironmentUpdateParameters) SetDescription added in v1.1.0

func (o *EnvironmentUpdateParameters) SetDescription(v string)

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

func (*EnvironmentUpdateParameters) SetName added in v1.1.0

func (o *EnvironmentUpdateParameters) SetName(v string)

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

func (*EnvironmentUpdateParameters) SetStagingEnvironment added in v1.1.0

func (o *EnvironmentUpdateParameters) SetStagingEnvironment(v string)

SetStagingEnvironment gets a reference to the given string and assigns it to the StagingEnvironment field.

func (EnvironmentUpdateParameters) ToMap added in v1.6.0

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

type EnvironmentUser added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.2.0

func (o *EnvironmentUser) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*EnvironmentUser) GetAuthTypeOk added in v1.2.0

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 added in v1.1.0

func (o *EnvironmentUser) GetPrimaryUser() bool

GetPrimaryUser returns the PrimaryUser field value if set, zero value otherwise.

func (*EnvironmentUser) GetPrimaryUserOk added in v1.1.0

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 added in v1.1.0

func (o *EnvironmentUser) GetUserRef() string

GetUserRef returns the UserRef field value if set, zero value otherwise.

func (*EnvironmentUser) GetUserRefOk added in v1.1.0

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 added in v1.1.0

func (o *EnvironmentUser) GetUsername() string

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

func (*EnvironmentUser) GetUsernameOk added in v1.1.0

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 added in v1.2.0

func (o *EnvironmentUser) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*EnvironmentUser) HasPrimaryUser added in v1.1.0

func (o *EnvironmentUser) HasPrimaryUser() bool

HasPrimaryUser returns a boolean if a field has been set.

func (*EnvironmentUser) HasUserRef added in v1.1.0

func (o *EnvironmentUser) HasUserRef() bool

HasUserRef returns a boolean if a field has been set.

func (*EnvironmentUser) HasUsername added in v1.1.0

func (o *EnvironmentUser) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EnvironmentUser) MarshalJSON added in v1.1.0

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

func (*EnvironmentUser) SetAuthType added in v1.2.0

func (o *EnvironmentUser) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*EnvironmentUser) SetPrimaryUser added in v1.1.0

func (o *EnvironmentUser) SetPrimaryUser(v bool)

SetPrimaryUser gets a reference to the given bool and assigns it to the PrimaryUser field.

func (*EnvironmentUser) SetUserRef added in v1.1.0

func (o *EnvironmentUser) SetUserRef(v string)

SetUserRef gets a reference to the given string and assigns it to the UserRef field.

func (*EnvironmentUser) SetUsername added in v1.1.0

func (o *EnvironmentUser) SetUsername(v string)

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

func (EnvironmentUser) ToMap added in v1.6.0

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

type EnvironmentUserParams added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetCyberarkVaultQueryString() string

GetCyberarkVaultQueryString returns the CyberarkVaultQueryString field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetCyberarkVaultQueryStringOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetHashicorpVaultEngine() string

GetHashicorpVaultEngine returns the HashicorpVaultEngine field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultEngineOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetHashicorpVaultSecretKey() string

GetHashicorpVaultSecretKey returns the HashicorpVaultSecretKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultSecretKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetHashicorpVaultSecretPath() string

GetHashicorpVaultSecretPath returns the HashicorpVaultSecretPath field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultSecretPathOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetHashicorpVaultUsernameKey() string

GetHashicorpVaultUsernameKey returns the HashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetHashicorpVaultUsernameKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetPassword() string

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

func (*EnvironmentUserParams) GetPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetUseEnginePublicKey() bool

GetUseEnginePublicKey returns the UseEnginePublicKey field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetUseEnginePublicKeyOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetUseKerberosAuthentication() bool

GetUseKerberosAuthentication returns the UseKerberosAuthentication field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetUseKerberosAuthenticationOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetUsername() string

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

func (*EnvironmentUserParams) GetUsernameOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetVault() string

GetVault returns the Vault field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetVaultOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) GetVaultUsername() string

GetVaultUsername returns the VaultUsername field value if set, zero value otherwise.

func (*EnvironmentUserParams) GetVaultUsernameOk added in v1.2.0

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 added in v1.2.0

func (o *EnvironmentUserParams) HasCyberarkVaultQueryString() bool

HasCyberarkVaultQueryString returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultEngine added in v1.2.0

func (o *EnvironmentUserParams) HasHashicorpVaultEngine() bool

HasHashicorpVaultEngine returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultSecretKey added in v1.2.0

func (o *EnvironmentUserParams) HasHashicorpVaultSecretKey() bool

HasHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultSecretPath added in v1.2.0

func (o *EnvironmentUserParams) HasHashicorpVaultSecretPath() bool

HasHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasHashicorpVaultUsernameKey added in v1.2.0

func (o *EnvironmentUserParams) HasHashicorpVaultUsernameKey() bool

HasHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasPassword added in v1.2.0

func (o *EnvironmentUserParams) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUseEnginePublicKey added in v1.2.0

func (o *EnvironmentUserParams) HasUseEnginePublicKey() bool

HasUseEnginePublicKey returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUseKerberosAuthentication added in v1.2.0

func (o *EnvironmentUserParams) HasUseKerberosAuthentication() bool

HasUseKerberosAuthentication returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasUsername added in v1.2.0

func (o *EnvironmentUserParams) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasVault added in v1.2.0

func (o *EnvironmentUserParams) HasVault() bool

HasVault returns a boolean if a field has been set.

func (*EnvironmentUserParams) HasVaultUsername added in v1.2.0

func (o *EnvironmentUserParams) HasVaultUsername() bool

HasVaultUsername returns a boolean if a field has been set.

func (EnvironmentUserParams) MarshalJSON added in v1.2.0

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

func (*EnvironmentUserParams) SetCyberarkVaultQueryString added in v1.2.0

func (o *EnvironmentUserParams) SetCyberarkVaultQueryString(v string)

SetCyberarkVaultQueryString gets a reference to the given string and assigns it to the CyberarkVaultQueryString field.

func (*EnvironmentUserParams) SetHashicorpVaultEngine added in v1.2.0

func (o *EnvironmentUserParams) SetHashicorpVaultEngine(v string)

SetHashicorpVaultEngine gets a reference to the given string and assigns it to the HashicorpVaultEngine field.

func (*EnvironmentUserParams) SetHashicorpVaultSecretKey added in v1.2.0

func (o *EnvironmentUserParams) SetHashicorpVaultSecretKey(v string)

SetHashicorpVaultSecretKey gets a reference to the given string and assigns it to the HashicorpVaultSecretKey field.

func (*EnvironmentUserParams) SetHashicorpVaultSecretPath added in v1.2.0

func (o *EnvironmentUserParams) SetHashicorpVaultSecretPath(v string)

SetHashicorpVaultSecretPath gets a reference to the given string and assigns it to the HashicorpVaultSecretPath field.

func (*EnvironmentUserParams) SetHashicorpVaultUsernameKey added in v1.2.0

func (o *EnvironmentUserParams) SetHashicorpVaultUsernameKey(v string)

SetHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the HashicorpVaultUsernameKey field.

func (*EnvironmentUserParams) SetPassword added in v1.2.0

func (o *EnvironmentUserParams) SetPassword(v string)

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

func (*EnvironmentUserParams) SetUseEnginePublicKey added in v1.2.0

func (o *EnvironmentUserParams) SetUseEnginePublicKey(v bool)

SetUseEnginePublicKey gets a reference to the given bool and assigns it to the UseEnginePublicKey field.

func (*EnvironmentUserParams) SetUseKerberosAuthentication added in v1.2.0

func (o *EnvironmentUserParams) SetUseKerberosAuthentication(v bool)

SetUseKerberosAuthentication gets a reference to the given bool and assigns it to the UseKerberosAuthentication field.

func (*EnvironmentUserParams) SetUsername added in v1.2.0

func (o *EnvironmentUserParams) SetUsername(v string)

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

func (*EnvironmentUserParams) SetVault added in v1.2.0

func (o *EnvironmentUserParams) SetVault(v string)

SetVault gets a reference to the given string and assigns it to the Vault field.

func (*EnvironmentUserParams) SetVaultUsername added in v1.2.0

func (o *EnvironmentUserParams) SetVaultUsername(v string)

SetVaultUsername gets a reference to the given string and assigns it to the VaultUsername field.

func (EnvironmentUserParams) ToMap added in v1.6.0

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

type EnvironmentsApiService

type EnvironmentsApiService service

EnvironmentsApiService EnvironmentsApi service

func (*EnvironmentsApiService) CreateEnvironment added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return CreateEnvironmentResponse

func (*EnvironmentsApiService) CreateEnvironmentTags added in v1.1.0

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 added in v1.1.0

func (a *EnvironmentsApiService) CreateEnvironmentTagsExecute(r ApiCreateEnvironmentTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*EnvironmentsApiService) CreateEnvironmentUser added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return CreateEnvironmentUserResponse

func (*EnvironmentsApiService) CreateHost added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

func (a *EnvironmentsApiService) DeleteEnvironmentTagsExecute(r ApiDeleteEnvironmentTagsRequest) (*http.Response, error)

Execute executes the request

func (*EnvironmentsApiService) DeleteEnvironmentUser added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return DeleteEnvironmentUserResponse

func (*EnvironmentsApiService) DeleteHost added in v1.6.0

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 added in v1.6.0

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 added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return TagsResponse

func (*EnvironmentsApiService) ListEnvironmentUsers added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return ListEnvironmentUsers

func (*EnvironmentsApiService) PrimaryEnvironmentUser added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchEnvironmentsResponse

func (*EnvironmentsApiService) SnapshotCompatibleRepositories added in v1.6.0

func (a *EnvironmentsApiService) SnapshotCompatibleRepositories(ctx context.Context) ApiSnapshotCompatibleRepositoriesRequest

SnapshotCompatibleRepositories 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 ApiSnapshotCompatibleRepositoriesRequest

func (*EnvironmentsApiService) SnapshotCompatibleRepositoriesExecute added in v1.6.0

Execute executes the request

@return SnapshotCompatibleRepositories

func (*EnvironmentsApiService) UpdateEnvironment added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return UpdateEnvironmentResponse

func (*EnvironmentsApiService) UpdateEnvironmentUser added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return UpdateEnvironmentUserResponse

func (*EnvironmentsApiService) UpdateHost added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UpdateHostResponse

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 added in v1.6.0

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

type ErrorResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ErrorResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorDescription added in v1.6.0

func (o *ErrorResponse) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorDescriptionOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorResponse) HasErrorDescription added in v1.6.0

func (o *ErrorResponse) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON added in v1.6.0

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

func (*ErrorResponse) SetError added in v1.6.0

func (o *ErrorResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorResponse) SetErrorDescription added in v1.6.0

func (o *ErrorResponse) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (ErrorResponse) ToMap added in v1.6.0

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

type ExecuteMaskingJobParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ExecuteMaskingJobParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*ExecuteMaskingJobParameters) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

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

func (*ExecuteMaskingJobParameters) SetEngineId added in v1.6.0

func (o *ExecuteMaskingJobParameters) SetEngineId(v string)

SetEngineId sets field value

func (ExecuteMaskingJobParameters) ToMap added in v1.6.0

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

type ExecuteMaskingJobResponse added in v1.6.0

type ExecuteMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

ExecuteMaskingJobResponse struct for ExecuteMaskingJobResponse

func NewExecuteMaskingJobResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ExecuteMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*ExecuteMaskingJobResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *ExecuteMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (ExecuteMaskingJobResponse) MarshalJSON added in v1.6.0

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

func (*ExecuteMaskingJobResponse) SetJob added in v1.6.0

func (o *ExecuteMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (ExecuteMaskingJobResponse) ToMap added in v1.6.0

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

type Execution added in v1.6.0

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"`
	// 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 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"`
}

Execution The execution of a masking or profile job.

func NewExecution added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetBytesProcessed() int64

GetBytesProcessed returns the BytesProcessed field value if set, zero value otherwise.

func (*Execution) GetBytesProcessedOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetBytesTotal() int64

GetBytesTotal returns the BytesTotal field value if set, zero value otherwise.

func (*Execution) GetBytesTotalOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*Execution) GetEndTimeOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetEngineId() string

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

func (*Execution) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*Execution) GetEngineNameOk added in v1.6.0

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) GetId added in v1.6.0

func (o *Execution) GetId() string

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

func (*Execution) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*Execution) GetMaskingJobIdOk added in v1.6.0

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) GetRowsMasked added in v1.6.0

func (o *Execution) GetRowsMasked() int64

GetRowsMasked returns the RowsMasked field value if set, zero value otherwise.

func (*Execution) GetRowsMaskedOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetRowsTotal() int64

GetRowsTotal returns the RowsTotal field value if set, zero value otherwise.

func (*Execution) GetRowsTotalOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetSourceConnectorId() string

GetSourceConnectorId returns the SourceConnectorId field value if set, zero value otherwise.

func (*Execution) GetSourceConnectorIdOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*Execution) GetStartTimeOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Execution) GetStatusOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetSubmitTime() time.Time

GetSubmitTime returns the SubmitTime field value if set, zero value otherwise.

func (*Execution) GetSubmitTimeOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetTargetConnectorId() string

GetTargetConnectorId returns the TargetConnectorId field value if set, zero value otherwise.

func (*Execution) GetTargetConnectorIdOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) GetTaskEvents() []TaskEvent

GetTaskEvents returns the TaskEvents field value if set, zero value otherwise.

func (*Execution) GetTaskEventsOk added in v1.6.0

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 added in v1.6.0

func (o *Execution) HasBytesProcessed() bool

HasBytesProcessed returns a boolean if a field has been set.

func (*Execution) HasBytesTotal added in v1.6.0

func (o *Execution) HasBytesTotal() bool

HasBytesTotal returns a boolean if a field has been set.

func (*Execution) HasEndTime added in v1.6.0

func (o *Execution) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*Execution) HasEngineId added in v1.6.0

func (o *Execution) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Execution) HasEngineName added in v1.6.0

func (o *Execution) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*Execution) HasId added in v1.6.0

func (o *Execution) HasId() bool

HasId returns a boolean if a field has been set.

func (*Execution) HasMaskingJobId added in v1.6.0

func (o *Execution) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (*Execution) HasRowsMasked added in v1.6.0

func (o *Execution) HasRowsMasked() bool

HasRowsMasked returns a boolean if a field has been set.

func (*Execution) HasRowsTotal added in v1.6.0

func (o *Execution) HasRowsTotal() bool

HasRowsTotal returns a boolean if a field has been set.

func (*Execution) HasSourceConnectorId added in v1.6.0

func (o *Execution) HasSourceConnectorId() bool

HasSourceConnectorId returns a boolean if a field has been set.

func (*Execution) HasStartTime added in v1.6.0

func (o *Execution) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*Execution) HasStatus added in v1.6.0

func (o *Execution) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Execution) HasSubmitTime added in v1.6.0

func (o *Execution) HasSubmitTime() bool

HasSubmitTime returns a boolean if a field has been set.

func (*Execution) HasTargetConnectorId added in v1.6.0

func (o *Execution) HasTargetConnectorId() bool

HasTargetConnectorId returns a boolean if a field has been set.

func (*Execution) HasTaskEvents added in v1.6.0

func (o *Execution) HasTaskEvents() bool

HasTaskEvents returns a boolean if a field has been set.

func (Execution) MarshalJSON added in v1.6.0

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

func (*Execution) SetBytesProcessed added in v1.6.0

func (o *Execution) SetBytesProcessed(v int64)

SetBytesProcessed gets a reference to the given int64 and assigns it to the BytesProcessed field.

func (*Execution) SetBytesTotal added in v1.6.0

func (o *Execution) SetBytesTotal(v int64)

SetBytesTotal gets a reference to the given int64 and assigns it to the BytesTotal field.

func (*Execution) SetEndTime added in v1.6.0

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 added in v1.6.0

func (o *Execution) SetEngineId(v string)

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

func (*Execution) SetEngineName added in v1.6.0

func (o *Execution) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*Execution) SetId added in v1.6.0

func (o *Execution) SetId(v string)

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

func (*Execution) SetMaskingJobId added in v1.6.0

func (o *Execution) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (*Execution) SetRowsMasked added in v1.6.0

func (o *Execution) SetRowsMasked(v int64)

SetRowsMasked gets a reference to the given int64 and assigns it to the RowsMasked field.

func (*Execution) SetRowsTotal added in v1.6.0

func (o *Execution) SetRowsTotal(v int64)

SetRowsTotal gets a reference to the given int64 and assigns it to the RowsTotal field.

func (*Execution) SetSourceConnectorId added in v1.6.0

func (o *Execution) SetSourceConnectorId(v string)

SetSourceConnectorId gets a reference to the given string and assigns it to the SourceConnectorId field.

func (*Execution) SetStartTime added in v1.6.0

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 added in v1.6.0

func (o *Execution) SetStatus(v string)

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

func (*Execution) SetSubmitTime added in v1.6.0

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 added in v1.6.0

func (o *Execution) SetTargetConnectorId(v string)

SetTargetConnectorId gets a reference to the given string and assigns it to the TargetConnectorId field.

func (*Execution) SetTaskEvents added in v1.6.0

func (o *Execution) SetTaskEvents(v []TaskEvent)

SetTaskEvents gets a reference to the given []TaskEvent and assigns it to the TaskEvents field.

func (Execution) ToMap added in v1.6.0

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

type ExecutionCancelParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ExecutionCancelParameters) GetExpectedStatus() string

GetExpectedStatus returns the ExpectedStatus field value if set, zero value otherwise.

func (*ExecutionCancelParameters) GetExpectedStatusOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionCancelParameters) HasExpectedStatus() bool

HasExpectedStatus returns a boolean if a field has been set.

func (ExecutionCancelParameters) MarshalJSON added in v1.6.0

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

func (*ExecutionCancelParameters) SetExpectedStatus added in v1.6.0

func (o *ExecutionCancelParameters) SetExpectedStatus(v string)

SetExpectedStatus gets a reference to the given string and assigns it to the ExpectedStatus field.

func (ExecutionCancelParameters) ToMap added in v1.6.0

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

type ExecutionEvent added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetAlgorithmName() string

GetAlgorithmName returns the AlgorithmName field value if set, zero value otherwise.

func (*ExecutionEvent) GetAlgorithmNameOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ExecutionEvent) GetCauseOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ExecutionEvent) GetCountOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetEventType() string

GetEventType returns the EventType field value if set, zero value otherwise.

func (*ExecutionEvent) GetEventTypeOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetExceptionDetail() string

GetExceptionDetail returns the ExceptionDetail field value if set, zero value otherwise.

func (*ExecutionEvent) GetExceptionDetailOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetExceptionType() string

GetExceptionType returns the ExceptionType field value if set, zero value otherwise.

func (*ExecutionEvent) GetExceptionTypeOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*ExecutionEvent) GetExecutionIdOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetId() string

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

func (*ExecutionEvent) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetMaskedObjectName() string

GetMaskedObjectName returns the MaskedObjectName field value if set, zero value otherwise.

func (*ExecutionEvent) GetMaskedObjectNameOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*ExecutionEvent) GetSeverityOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ExecutionEvent) GetTimestampOk added in v1.6.0

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 added in v1.6.0

func (o *ExecutionEvent) HasAlgorithmName() bool

HasAlgorithmName returns a boolean if a field has been set.

func (*ExecutionEvent) HasCause added in v1.6.0

func (o *ExecutionEvent) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ExecutionEvent) HasCount added in v1.6.0

func (o *ExecutionEvent) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ExecutionEvent) HasEventType added in v1.6.0

func (o *ExecutionEvent) HasEventType() bool

HasEventType returns a boolean if a field has been set.

func (*ExecutionEvent) HasExceptionDetail added in v1.6.0

func (o *ExecutionEvent) HasExceptionDetail() bool

HasExceptionDetail returns a boolean if a field has been set.

func (*ExecutionEvent) HasExceptionType added in v1.6.0

func (o *ExecutionEvent) HasExceptionType() bool

HasExceptionType returns a boolean if a field has been set.

func (*ExecutionEvent) HasExecutionId added in v1.6.0

func (o *ExecutionEvent) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*ExecutionEvent) HasId added in v1.6.0

func (o *ExecutionEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionEvent) HasMaskedObjectName added in v1.6.0

func (o *ExecutionEvent) HasMaskedObjectName() bool

HasMaskedObjectName returns a boolean if a field has been set.

func (*ExecutionEvent) HasSeverity added in v1.6.0

func (o *ExecutionEvent) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*ExecutionEvent) HasTimestamp added in v1.6.0

func (o *ExecutionEvent) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ExecutionEvent) MarshalJSON added in v1.6.0

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

func (*ExecutionEvent) SetAlgorithmName added in v1.6.0

func (o *ExecutionEvent) SetAlgorithmName(v string)

SetAlgorithmName gets a reference to the given string and assigns it to the AlgorithmName field.

func (*ExecutionEvent) SetCause added in v1.6.0

func (o *ExecutionEvent) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ExecutionEvent) SetCount added in v1.6.0

func (o *ExecutionEvent) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ExecutionEvent) SetEventType added in v1.6.0

func (o *ExecutionEvent) SetEventType(v string)

SetEventType gets a reference to the given string and assigns it to the EventType field.

func (*ExecutionEvent) SetExceptionDetail added in v1.6.0

func (o *ExecutionEvent) SetExceptionDetail(v string)

SetExceptionDetail gets a reference to the given string and assigns it to the ExceptionDetail field.

func (*ExecutionEvent) SetExceptionType added in v1.6.0

func (o *ExecutionEvent) SetExceptionType(v string)

SetExceptionType gets a reference to the given string and assigns it to the ExceptionType field.

func (*ExecutionEvent) SetExecutionId added in v1.6.0

func (o *ExecutionEvent) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*ExecutionEvent) SetId added in v1.6.0

func (o *ExecutionEvent) SetId(v string)

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

func (*ExecutionEvent) SetMaskedObjectName added in v1.6.0

func (o *ExecutionEvent) SetMaskedObjectName(v string)

SetMaskedObjectName gets a reference to the given string and assigns it to the MaskedObjectName field.

func (*ExecutionEvent) SetSeverity added in v1.6.0

func (o *ExecutionEvent) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*ExecutionEvent) SetTimestamp added in v1.6.0

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 added in v1.6.0

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

type ExecutionsApiService added in v1.6.0

type ExecutionsApiService service

ExecutionsApiService ExecutionsApi service

func (*ExecutionsApiService) CancelExecution added in v1.6.0

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 added in v1.6.0

func (a *ExecutionsApiService) CancelExecutionExecute(r ApiCancelExecutionRequest) (*http.Response, error)

Execute executes the request

func (*ExecutionsApiService) GetExecutionById added in v1.6.0

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 added in v1.6.0

func (a *ExecutionsApiService) GetExecutionByIdExecute(r ApiGetExecutionByIdRequest) (*Execution, *http.Response, error)

Execute executes the request

@return Execution

func (*ExecutionsApiService) GetExecutionEvents added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListExecutionEventsResponse

func (*ExecutionsApiService) GetExecutions added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListExecutionsResponse

func (*ExecutionsApiService) SearchExecutionEvents added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchExecutionEventsResponse

func (*ExecutionsApiService) SearchExecutions added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchExecutionsResponse

type FindByLocationResponse added in v1.6.0

type FindByLocationResponse struct {
	Items []Snapshot `json:"items,omitempty"`
}

FindByLocationResponse struct for FindByLocationResponse

func NewFindByLocationResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *FindByLocationResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*FindByLocationResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *FindByLocationResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (FindByLocationResponse) MarshalJSON added in v1.6.0

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

func (*FindByLocationResponse) SetItems added in v1.6.0

func (o *FindByLocationResponse) SetItems(v []Snapshot)

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

func (FindByLocationResponse) ToMap added in v1.6.0

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

type FindByTimestampResponse added in v1.6.0

type FindByTimestampResponse struct {
	Items []Snapshot `json:"items,omitempty"`
}

FindByTimestampResponse struct for FindByTimestampResponse

func NewFindByTimestampResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *FindByTimestampResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*FindByTimestampResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *FindByTimestampResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (FindByTimestampResponse) MarshalJSON added in v1.6.0

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

func (*FindByTimestampResponse) SetItems added in v1.6.0

func (o *FindByTimestampResponse) SetItems(v []Snapshot)

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

func (FindByTimestampResponse) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *GlobalProperties) GetDisableUsernamePassword() bool

GetDisableUsernamePassword returns the DisableUsernamePassword field value if set, zero value otherwise.

func (*GlobalProperties) GetDisableUsernamePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *GlobalProperties) HasDisableUsernamePassword() bool

HasDisableUsernamePassword returns a boolean if a field has been set.

func (GlobalProperties) MarshalJSON added in v1.6.0

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

func (*GlobalProperties) SetDisableUsernamePassword added in v1.6.0

func (o *GlobalProperties) SetDisableUsernamePassword(v bool)

SetDisableUsernamePassword gets a reference to the given bool and assigns it to the DisableUsernamePassword field.

func (GlobalProperties) ToMap added in v1.6.0

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

type GroupsApiService added in v1.6.0

type GroupsApiService service

GroupsApiService GroupsApi service

func (*GroupsApiService) GetDatasetGroupById added in v1.6.0

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 added in v1.6.0

func (a *GroupsApiService) GetDatasetGroupByIdExecute(r ApiGetDatasetGroupByIdRequest) (*DatasetGroup, *http.Response, error)

Execute executes the request

@return DatasetGroup

func (*GroupsApiService) GetDatasetGroups added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListGroupsResponse

func (*GroupsApiService) SearchDatasetGroups added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (*HashicorpVault) GetTagsOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

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

func (HashicorpVault) ToMap added in v1.6.0

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 added in v1.2.0

func (o *Hook) GetElementId() string

GetElementId returns the ElementId field value if set, zero value otherwise.

func (*Hook) GetElementIdOk added in v1.2.0

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 added in v1.2.0

func (o *Hook) GetHasCredentials() bool

GetHasCredentials returns the HasCredentials field value if set, zero value otherwise.

func (*Hook) GetHasCredentialsOk added in v1.2.0

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 added in v1.2.0

func (o *Hook) HasElementId() bool

HasElementId returns a boolean if a field has been set.

func (*Hook) HasHasCredentials added in v1.2.0

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 added in v1.2.0

func (o *Hook) SetElementId(v string)

SetElementId gets a reference to the given string and assigns it to the ElementId field.

func (*Hook) SetHasCredentials added in v1.2.0

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 added in v1.6.0

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 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 added in v1.2.0

func (o *Host) GetAvailable() bool

GetAvailable returns the Available field value if set, zero value otherwise.

func (*Host) GetAvailableOk added in v1.2.0

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 added in v1.2.0

func (o *Host) GetAvailableTimestamp() time.Time

GetAvailableTimestamp returns the AvailableTimestamp field value if set, zero value otherwise.

func (*Host) GetAvailableTimestampOk added in v1.2.0

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 added in v1.6.0

func (o *Host) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*Host) GetDspKeystoreAliasOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*Host) GetDspKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*Host) GetDspTruststorePathOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetId() string

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

func (*Host) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*Host) GetJavaHomeOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*Host) GetNfsAddressesOk added in v1.6.0

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 added in v1.2.0

func (o *Host) GetNotAvailableReason() string

GetNotAvailableReason returns the NotAvailableReason field value if set, zero value otherwise.

func (*Host) GetNotAvailableReasonOk added in v1.2.0

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 added in v1.6.0

func (o *Host) GetOracleClusterNodeDiscovered() bool

GetOracleClusterNodeDiscovered returns the OracleClusterNodeDiscovered field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeDiscoveredOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetOracleClusterNodeEnabled() bool

GetOracleClusterNodeEnabled returns the OracleClusterNodeEnabled field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeEnabledOk added in v1.6.0

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) GetOracleClusterNodeName added in v1.6.0

func (o *Host) GetOracleClusterNodeName() string

GetOracleClusterNodeName returns the OracleClusterNodeName field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeNameOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetOracleClusterNodeReference() string

GetOracleClusterNodeReference returns the OracleClusterNodeReference field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeReferenceOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*Host) GetOracleClusterNodeVirtualIpsOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*Host) GetOracleTdeKeystoresRootPathOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetProcessorType() string

GetProcessorType returns the ProcessorType field value if set, zero value otherwise.

func (*Host) GetProcessorTypeOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetSshPort() int32

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*Host) GetSshPortOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*Host) GetTimezoneOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*Host) GetToolkitPathOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetWindowsClusterNodeDiscovered() bool

GetWindowsClusterNodeDiscovered returns the WindowsClusterNodeDiscovered field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeDiscoveredOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetWindowsClusterNodeName() string

GetWindowsClusterNodeName returns the WindowsClusterNodeName field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeNameOk added in v1.6.0

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 added in v1.6.0

func (o *Host) GetWindowsClusterNodeReference() string

GetWindowsClusterNodeReference returns the WindowsClusterNodeReference field value if set, zero value otherwise.

func (*Host) GetWindowsClusterNodeReferenceOk added in v1.6.0

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 added in v1.2.0

func (o *Host) HasAvailable() bool

HasAvailable returns a boolean if a field has been set.

func (*Host) HasAvailableTimestamp added in v1.2.0

func (o *Host) HasAvailableTimestamp() bool

HasAvailableTimestamp returns a boolean if a field has been set.

func (*Host) HasDspKeystoreAlias added in v1.6.0

func (o *Host) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*Host) HasDspKeystorePath added in v1.6.0

func (o *Host) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*Host) HasDspTruststorePath added in v1.6.0

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 added in v1.6.0

func (o *Host) HasId() bool

HasId returns a boolean if a field has been set.

func (*Host) HasJavaHome added in v1.6.0

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 added in v1.6.0

func (o *Host) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*Host) HasNotAvailableReason added in v1.2.0

func (o *Host) HasNotAvailableReason() bool

HasNotAvailableReason returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeDiscovered added in v1.6.0

func (o *Host) HasOracleClusterNodeDiscovered() bool

HasOracleClusterNodeDiscovered returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeEnabled added in v1.6.0

func (o *Host) HasOracleClusterNodeEnabled() bool

HasOracleClusterNodeEnabled returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeName added in v1.6.0

func (o *Host) HasOracleClusterNodeName() bool

HasOracleClusterNodeName returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeReference added in v1.6.0

func (o *Host) HasOracleClusterNodeReference() bool

HasOracleClusterNodeReference returns a boolean if a field has been set.

func (*Host) HasOracleClusterNodeVirtualIps added in v1.6.0

func (o *Host) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*Host) HasOracleTdeKeystoresRootPath added in v1.6.0

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 added in v1.6.0

func (o *Host) HasProcessorType() bool

HasProcessorType returns a boolean if a field has been set.

func (*Host) HasSshPort added in v1.6.0

func (o *Host) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*Host) HasTimezone added in v1.6.0

func (o *Host) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*Host) HasToolkitPath added in v1.6.0

func (o *Host) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeDiscovered added in v1.6.0

func (o *Host) HasWindowsClusterNodeDiscovered() bool

HasWindowsClusterNodeDiscovered returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeName added in v1.6.0

func (o *Host) HasWindowsClusterNodeName() bool

HasWindowsClusterNodeName returns a boolean if a field has been set.

func (*Host) HasWindowsClusterNodeReference added in v1.6.0

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 added in v1.2.0

func (o *Host) SetAvailable(v bool)

SetAvailable gets a reference to the given bool and assigns it to the Available field.

func (*Host) SetAvailableTimestamp added in v1.2.0

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 added in v1.6.0

func (o *Host) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*Host) SetDspKeystorePath added in v1.6.0

func (o *Host) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*Host) SetDspTruststorePath added in v1.6.0

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 added in v1.6.0

func (o *Host) SetId(v string)

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

func (*Host) SetJavaHome added in v1.6.0

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 added in v1.6.0

func (o *Host) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*Host) SetNotAvailableReason added in v1.2.0

func (o *Host) SetNotAvailableReason(v string)

SetNotAvailableReason gets a reference to the given string and assigns it to the NotAvailableReason field.

func (*Host) SetOracleClusterNodeDiscovered added in v1.6.0

func (o *Host) SetOracleClusterNodeDiscovered(v bool)

SetOracleClusterNodeDiscovered gets a reference to the given bool and assigns it to the OracleClusterNodeDiscovered field.

func (*Host) SetOracleClusterNodeEnabled added in v1.6.0

func (o *Host) SetOracleClusterNodeEnabled(v bool)

SetOracleClusterNodeEnabled gets a reference to the given bool and assigns it to the OracleClusterNodeEnabled field.

func (*Host) SetOracleClusterNodeName added in v1.6.0

func (o *Host) SetOracleClusterNodeName(v string)

SetOracleClusterNodeName gets a reference to the given string and assigns it to the OracleClusterNodeName field.

func (*Host) SetOracleClusterNodeReference added in v1.6.0

func (o *Host) SetOracleClusterNodeReference(v string)

SetOracleClusterNodeReference gets a reference to the given string and assigns it to the OracleClusterNodeReference field.

func (*Host) SetOracleClusterNodeVirtualIps added in v1.6.0

func (o *Host) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*Host) SetOracleTdeKeystoresRootPath added in v1.6.0

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 added in v1.6.0

func (o *Host) SetProcessorType(v string)

SetProcessorType gets a reference to the given string and assigns it to the ProcessorType field.

func (*Host) SetSshPort added in v1.6.0

func (o *Host) SetSshPort(v int32)

SetSshPort gets a reference to the given int32 and assigns it to the SshPort field.

func (*Host) SetTimezone added in v1.6.0

func (o *Host) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*Host) SetToolkitPath added in v1.6.0

func (o *Host) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (*Host) SetWindowsClusterNodeDiscovered added in v1.6.0

func (o *Host) SetWindowsClusterNodeDiscovered(v bool)

SetWindowsClusterNodeDiscovered gets a reference to the given bool and assigns it to the WindowsClusterNodeDiscovered field.

func (*Host) SetWindowsClusterNodeName added in v1.6.0

func (o *Host) SetWindowsClusterNodeName(v string)

SetWindowsClusterNodeName gets a reference to the given string and assigns it to the WindowsClusterNodeName field.

func (*Host) SetWindowsClusterNodeReference added in v1.6.0

func (o *Host) SetWindowsClusterNodeReference(v string)

SetWindowsClusterNodeReference gets a reference to the given string and assigns it to the WindowsClusterNodeReference field.

func (Host) ToMap added in v1.6.0

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

type HostCreateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystoreAliasOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetDspKeystorePassword() string

GetDspKeystorePassword returns the DspKeystorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetDspTruststorePassword() string

GetDspTruststorePassword returns the DspTruststorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspTruststorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*HostCreateParameters) GetDspTruststorePathOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HostCreateParameters) GetHostnameOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*HostCreateParameters) GetJavaHomeOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetName() string

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

func (*HostCreateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*HostCreateParameters) GetNfsAddressesOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleClusterNodeVirtualIpsOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetOracleJdbcKeystorePassword() string

GetOracleJdbcKeystorePassword returns the OracleJdbcKeystorePassword field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleJdbcKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*HostCreateParameters) GetOracleTdeKeystoresRootPathOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetPrivilegeElevationProfileReference() string

GetPrivilegeElevationProfileReference returns the PrivilegeElevationProfileReference field value if set, zero value otherwise.

func (*HostCreateParameters) GetPrivilegeElevationProfileReferenceOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetSshPort() int32

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*HostCreateParameters) GetSshPortOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetSshVerificationStrategy() SSHVerificationStrategy

GetSshVerificationStrategy returns the SshVerificationStrategy field value if set, zero value otherwise.

func (*HostCreateParameters) GetSshVerificationStrategyOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*HostCreateParameters) GetToolkitPathOk added in v1.6.0

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 added in v1.6.0

func (o *HostCreateParameters) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspKeystorePassword added in v1.6.0

func (o *HostCreateParameters) HasDspKeystorePassword() bool

HasDspKeystorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspKeystorePath added in v1.6.0

func (o *HostCreateParameters) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspTruststorePassword added in v1.6.0

func (o *HostCreateParameters) HasDspTruststorePassword() bool

HasDspTruststorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasDspTruststorePath added in v1.6.0

func (o *HostCreateParameters) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*HostCreateParameters) HasHostname added in v1.6.0

func (o *HostCreateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HostCreateParameters) HasJavaHome added in v1.6.0

func (o *HostCreateParameters) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*HostCreateParameters) HasName added in v1.6.0

func (o *HostCreateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*HostCreateParameters) HasNfsAddresses added in v1.6.0

func (o *HostCreateParameters) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleClusterNodeVirtualIps added in v1.6.0

func (o *HostCreateParameters) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleJdbcKeystorePassword added in v1.6.0

func (o *HostCreateParameters) HasOracleJdbcKeystorePassword() bool

HasOracleJdbcKeystorePassword returns a boolean if a field has been set.

func (*HostCreateParameters) HasOracleTdeKeystoresRootPath added in v1.6.0

func (o *HostCreateParameters) HasOracleTdeKeystoresRootPath() bool

HasOracleTdeKeystoresRootPath returns a boolean if a field has been set.

func (*HostCreateParameters) HasPrivilegeElevationProfileReference added in v1.6.0

func (o *HostCreateParameters) HasPrivilegeElevationProfileReference() bool

HasPrivilegeElevationProfileReference returns a boolean if a field has been set.

func (*HostCreateParameters) HasSshPort added in v1.6.0

func (o *HostCreateParameters) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*HostCreateParameters) HasSshVerificationStrategy added in v1.6.0

func (o *HostCreateParameters) HasSshVerificationStrategy() bool

HasSshVerificationStrategy returns a boolean if a field has been set.

func (*HostCreateParameters) HasToolkitPath added in v1.6.0

func (o *HostCreateParameters) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (HostCreateParameters) MarshalJSON added in v1.6.0

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

func (*HostCreateParameters) SetDspKeystoreAlias added in v1.6.0

func (o *HostCreateParameters) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*HostCreateParameters) SetDspKeystorePassword added in v1.6.0

func (o *HostCreateParameters) SetDspKeystorePassword(v string)

SetDspKeystorePassword gets a reference to the given string and assigns it to the DspKeystorePassword field.

func (*HostCreateParameters) SetDspKeystorePath added in v1.6.0

func (o *HostCreateParameters) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*HostCreateParameters) SetDspTruststorePassword added in v1.6.0

func (o *HostCreateParameters) SetDspTruststorePassword(v string)

SetDspTruststorePassword gets a reference to the given string and assigns it to the DspTruststorePassword field.

func (*HostCreateParameters) SetDspTruststorePath added in v1.6.0

func (o *HostCreateParameters) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*HostCreateParameters) SetHostname added in v1.6.0

func (o *HostCreateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HostCreateParameters) SetJavaHome added in v1.6.0

func (o *HostCreateParameters) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*HostCreateParameters) SetName added in v1.6.0

func (o *HostCreateParameters) SetName(v string)

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

func (*HostCreateParameters) SetNfsAddresses added in v1.6.0

func (o *HostCreateParameters) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*HostCreateParameters) SetOracleClusterNodeVirtualIps added in v1.6.0

func (o *HostCreateParameters) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*HostCreateParameters) SetOracleJdbcKeystorePassword added in v1.6.0

func (o *HostCreateParameters) SetOracleJdbcKeystorePassword(v string)

SetOracleJdbcKeystorePassword gets a reference to the given string and assigns it to the OracleJdbcKeystorePassword field.

func (*HostCreateParameters) SetOracleTdeKeystoresRootPath added in v1.6.0

func (o *HostCreateParameters) SetOracleTdeKeystoresRootPath(v string)

SetOracleTdeKeystoresRootPath gets a reference to the given string and assigns it to the OracleTdeKeystoresRootPath field.

func (*HostCreateParameters) SetPrivilegeElevationProfileReference added in v1.6.0

func (o *HostCreateParameters) SetPrivilegeElevationProfileReference(v string)

SetPrivilegeElevationProfileReference gets a reference to the given string and assigns it to the PrivilegeElevationProfileReference field.

func (*HostCreateParameters) SetSshPort added in v1.6.0

func (o *HostCreateParameters) SetSshPort(v int32)

SetSshPort gets a reference to the given int32 and assigns it to the SshPort field.

func (*HostCreateParameters) SetSshVerificationStrategy added in v1.6.0

func (o *HostCreateParameters) SetSshVerificationStrategy(v SSHVerificationStrategy)

SetSshVerificationStrategy gets a reference to the given SSHVerificationStrategy and assigns it to the SshVerificationStrategy field.

func (*HostCreateParameters) SetToolkitPath added in v1.6.0

func (o *HostCreateParameters) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (HostCreateParameters) ToMap added in v1.6.0

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

type HostUpdateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetConnectorAuthenticationKey() string

GetConnectorAuthenticationKey returns the ConnectorAuthenticationKey field value if set, zero value otherwise.

func (*HostUpdateParameters) GetConnectorAuthenticationKeyOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetConnectorPort() int32

GetConnectorPort returns the ConnectorPort field value if set, zero value otherwise.

func (*HostUpdateParameters) GetConnectorPortOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetDspKeystoreAlias() string

GetDspKeystoreAlias returns the DspKeystoreAlias field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystoreAliasOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetDspKeystorePassword() string

GetDspKeystorePassword returns the DspKeystorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetDspKeystorePath() string

GetDspKeystorePath returns the DspKeystorePath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetDspTruststorePassword() string

GetDspTruststorePassword returns the DspTruststorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspTruststorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetDspTruststorePath() string

GetDspTruststorePath returns the DspTruststorePath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetDspTruststorePathOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*HostUpdateParameters) GetHostnameOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetJavaHome() string

GetJavaHome returns the JavaHome field value if set, zero value otherwise.

func (*HostUpdateParameters) GetJavaHomeOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetNfsAddresses() []string

GetNfsAddresses returns the NfsAddresses field value if set, zero value otherwise.

func (*HostUpdateParameters) GetNfsAddressesOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetOracleClusterNodeEnabled() bool

GetOracleClusterNodeEnabled returns the OracleClusterNodeEnabled field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetOracleClusterNodeName() string

GetOracleClusterNodeName returns the OracleClusterNodeName field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeNameOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetOracleClusterNodeVirtualIps() []OracleVirtualIP

GetOracleClusterNodeVirtualIps returns the OracleClusterNodeVirtualIps field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleClusterNodeVirtualIpsOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetOracleJdbcKeystorePassword() string

GetOracleJdbcKeystorePassword returns the OracleJdbcKeystorePassword field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleJdbcKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetOracleTdeKeystoresRootPath() string

GetOracleTdeKeystoresRootPath returns the OracleTdeKeystoresRootPath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetOracleTdeKeystoresRootPathOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetSshPort() int64

GetSshPort returns the SshPort field value if set, zero value otherwise.

func (*HostUpdateParameters) GetSshPortOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetSshVerificationStrategy() SSHVerificationStrategy

GetSshVerificationStrategy returns the SshVerificationStrategy field value if set, zero value otherwise.

func (*HostUpdateParameters) GetSshVerificationStrategyOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) GetToolkitPath() string

GetToolkitPath returns the ToolkitPath field value if set, zero value otherwise.

func (*HostUpdateParameters) GetToolkitPathOk added in v1.6.0

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 added in v1.6.0

func (o *HostUpdateParameters) HasConnectorAuthenticationKey() bool

HasConnectorAuthenticationKey returns a boolean if a field has been set.

func (*HostUpdateParameters) HasConnectorPort added in v1.6.0

func (o *HostUpdateParameters) HasConnectorPort() bool

HasConnectorPort returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystoreAlias added in v1.6.0

func (o *HostUpdateParameters) HasDspKeystoreAlias() bool

HasDspKeystoreAlias returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystorePassword added in v1.6.0

func (o *HostUpdateParameters) HasDspKeystorePassword() bool

HasDspKeystorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspKeystorePath added in v1.6.0

func (o *HostUpdateParameters) HasDspKeystorePath() bool

HasDspKeystorePath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspTruststorePassword added in v1.6.0

func (o *HostUpdateParameters) HasDspTruststorePassword() bool

HasDspTruststorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasDspTruststorePath added in v1.6.0

func (o *HostUpdateParameters) HasDspTruststorePath() bool

HasDspTruststorePath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasHostname added in v1.6.0

func (o *HostUpdateParameters) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*HostUpdateParameters) HasJavaHome added in v1.6.0

func (o *HostUpdateParameters) HasJavaHome() bool

HasJavaHome returns a boolean if a field has been set.

func (*HostUpdateParameters) HasNfsAddresses added in v1.6.0

func (o *HostUpdateParameters) HasNfsAddresses() bool

HasNfsAddresses returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeEnabled added in v1.6.0

func (o *HostUpdateParameters) HasOracleClusterNodeEnabled() bool

HasOracleClusterNodeEnabled returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeName added in v1.6.0

func (o *HostUpdateParameters) HasOracleClusterNodeName() bool

HasOracleClusterNodeName returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleClusterNodeVirtualIps added in v1.6.0

func (o *HostUpdateParameters) HasOracleClusterNodeVirtualIps() bool

HasOracleClusterNodeVirtualIps returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleJdbcKeystorePassword added in v1.6.0

func (o *HostUpdateParameters) HasOracleJdbcKeystorePassword() bool

HasOracleJdbcKeystorePassword returns a boolean if a field has been set.

func (*HostUpdateParameters) HasOracleTdeKeystoresRootPath added in v1.6.0

func (o *HostUpdateParameters) HasOracleTdeKeystoresRootPath() bool

HasOracleTdeKeystoresRootPath returns a boolean if a field has been set.

func (*HostUpdateParameters) HasSshPort added in v1.6.0

func (o *HostUpdateParameters) HasSshPort() bool

HasSshPort returns a boolean if a field has been set.

func (*HostUpdateParameters) HasSshVerificationStrategy added in v1.6.0

func (o *HostUpdateParameters) HasSshVerificationStrategy() bool

HasSshVerificationStrategy returns a boolean if a field has been set.

func (*HostUpdateParameters) HasToolkitPath added in v1.6.0

func (o *HostUpdateParameters) HasToolkitPath() bool

HasToolkitPath returns a boolean if a field has been set.

func (HostUpdateParameters) MarshalJSON added in v1.6.0

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

func (*HostUpdateParameters) SetConnectorAuthenticationKey added in v1.6.0

func (o *HostUpdateParameters) SetConnectorAuthenticationKey(v string)

SetConnectorAuthenticationKey gets a reference to the given string and assigns it to the ConnectorAuthenticationKey field.

func (*HostUpdateParameters) SetConnectorPort added in v1.6.0

func (o *HostUpdateParameters) SetConnectorPort(v int32)

SetConnectorPort gets a reference to the given int32 and assigns it to the ConnectorPort field.

func (*HostUpdateParameters) SetDspKeystoreAlias added in v1.6.0

func (o *HostUpdateParameters) SetDspKeystoreAlias(v string)

SetDspKeystoreAlias gets a reference to the given string and assigns it to the DspKeystoreAlias field.

func (*HostUpdateParameters) SetDspKeystorePassword added in v1.6.0

func (o *HostUpdateParameters) SetDspKeystorePassword(v string)

SetDspKeystorePassword gets a reference to the given string and assigns it to the DspKeystorePassword field.

func (*HostUpdateParameters) SetDspKeystorePath added in v1.6.0

func (o *HostUpdateParameters) SetDspKeystorePath(v string)

SetDspKeystorePath gets a reference to the given string and assigns it to the DspKeystorePath field.

func (*HostUpdateParameters) SetDspTruststorePassword added in v1.6.0

func (o *HostUpdateParameters) SetDspTruststorePassword(v string)

SetDspTruststorePassword gets a reference to the given string and assigns it to the DspTruststorePassword field.

func (*HostUpdateParameters) SetDspTruststorePath added in v1.6.0

func (o *HostUpdateParameters) SetDspTruststorePath(v string)

SetDspTruststorePath gets a reference to the given string and assigns it to the DspTruststorePath field.

func (*HostUpdateParameters) SetHostname added in v1.6.0

func (o *HostUpdateParameters) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*HostUpdateParameters) SetJavaHome added in v1.6.0

func (o *HostUpdateParameters) SetJavaHome(v string)

SetJavaHome gets a reference to the given string and assigns it to the JavaHome field.

func (*HostUpdateParameters) SetNfsAddresses added in v1.6.0

func (o *HostUpdateParameters) SetNfsAddresses(v []string)

SetNfsAddresses gets a reference to the given []string and assigns it to the NfsAddresses field.

func (*HostUpdateParameters) SetOracleClusterNodeEnabled added in v1.6.0

func (o *HostUpdateParameters) SetOracleClusterNodeEnabled(v bool)

SetOracleClusterNodeEnabled gets a reference to the given bool and assigns it to the OracleClusterNodeEnabled field.

func (*HostUpdateParameters) SetOracleClusterNodeName added in v1.6.0

func (o *HostUpdateParameters) SetOracleClusterNodeName(v string)

SetOracleClusterNodeName gets a reference to the given string and assigns it to the OracleClusterNodeName field.

func (*HostUpdateParameters) SetOracleClusterNodeVirtualIps added in v1.6.0

func (o *HostUpdateParameters) SetOracleClusterNodeVirtualIps(v []OracleVirtualIP)

SetOracleClusterNodeVirtualIps gets a reference to the given []OracleVirtualIP and assigns it to the OracleClusterNodeVirtualIps field.

func (*HostUpdateParameters) SetOracleJdbcKeystorePassword added in v1.6.0

func (o *HostUpdateParameters) SetOracleJdbcKeystorePassword(v string)

SetOracleJdbcKeystorePassword gets a reference to the given string and assigns it to the OracleJdbcKeystorePassword field.

func (*HostUpdateParameters) SetOracleTdeKeystoresRootPath added in v1.6.0

func (o *HostUpdateParameters) SetOracleTdeKeystoresRootPath(v string)

SetOracleTdeKeystoresRootPath gets a reference to the given string and assigns it to the OracleTdeKeystoresRootPath field.

func (*HostUpdateParameters) SetSshPort added in v1.6.0

func (o *HostUpdateParameters) SetSshPort(v int64)

SetSshPort gets a reference to the given int64 and assigns it to the SshPort field.

func (*HostUpdateParameters) SetSshVerificationStrategy added in v1.6.0

func (o *HostUpdateParameters) SetSshVerificationStrategy(v SSHVerificationStrategy)

SetSshVerificationStrategy gets a reference to the given SSHVerificationStrategy and assigns it to the SshVerificationStrategy field.

func (*HostUpdateParameters) SetToolkitPath added in v1.6.0

func (o *HostUpdateParameters) SetToolkitPath(v string)

SetToolkitPath gets a reference to the given string and assigns it to the ToolkitPath field.

func (HostUpdateParameters) ToMap added in v1.6.0

func (o HostUpdateParameters) 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"`
	// The type of job being done.
	Type *string `json:"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"`
	Tags    []Tag   `json:"tags,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) 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) 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 added in v1.6.0

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

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

func (*Job) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Job) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*Job) GetTraceIdOk added in v1.6.0

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.

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.

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 added in v1.6.0

func (o *Job) GetWarningMessage() string

GetWarningMessage returns the WarningMessage field value if set, zero value otherwise.

func (*Job) GetWarningMessageOk added in v1.6.0

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) 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) 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) 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) 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 added in v1.6.0

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 added in v1.6.0

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.

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 added in v1.6.0

func (o *Job) SetWarningMessage(v string)

SetWarningMessage gets a reference to the given string and assigns it to the WarningMessage field.

func (Job) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (a *JobsApiService) CreateJobTagsExecute(r ApiCreateJobTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*JobsApiService) DeleteJobTag added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (a *JobsApiService) GetJobTagsExecute(r ApiGetJobTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*JobsApiService) GetJobs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListJobsResponse

func (*JobsApiService) SearchJobs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchJobsResponse

type LDAPConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetAutoCreateUsers() bool

GetAutoCreateUsers returns the AutoCreateUsers field value if set, zero value otherwise.

func (*LDAPConfigParams) GetAutoCreateUsersOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetDomains() []Domain

GetDomains returns the Domains field value if set, zero value otherwise.

func (*LDAPConfigParams) GetDomainsOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*LDAPConfigParams) GetEnableSslOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetEnabled() bool

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

func (*LDAPConfigParams) GetEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*LDAPConfigParams) GetHostnameOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetInsecureSsl() bool

GetInsecureSsl returns the InsecureSsl field value if set, zero value otherwise.

func (*LDAPConfigParams) GetInsecureSslOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*LDAPConfigParams) GetPortOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetTruststoreFilename() string

GetTruststoreFilename returns the TruststoreFilename field value if set, zero value otherwise.

func (*LDAPConfigParams) GetTruststoreFilenameOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetTruststorePassword() string

GetTruststorePassword returns the TruststorePassword field value if set, zero value otherwise.

func (*LDAPConfigParams) GetTruststorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) GetUnsafeSslHostnameCheck() bool

GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field value if set, zero value otherwise.

func (*LDAPConfigParams) GetUnsafeSslHostnameCheckOk added in v1.6.0

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 added in v1.6.0

func (o *LDAPConfigParams) HasAutoCreateUsers() bool

HasAutoCreateUsers returns a boolean if a field has been set.

func (*LDAPConfigParams) HasDomains added in v1.6.0

func (o *LDAPConfigParams) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*LDAPConfigParams) HasEnableSsl added in v1.6.0

func (o *LDAPConfigParams) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*LDAPConfigParams) HasEnabled added in v1.6.0

func (o *LDAPConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LDAPConfigParams) HasHostname added in v1.6.0

func (o *LDAPConfigParams) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*LDAPConfigParams) HasInsecureSsl added in v1.6.0

func (o *LDAPConfigParams) HasInsecureSsl() bool

HasInsecureSsl returns a boolean if a field has been set.

func (*LDAPConfigParams) HasPort added in v1.6.0

func (o *LDAPConfigParams) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*LDAPConfigParams) HasTruststoreFilename added in v1.6.0

func (o *LDAPConfigParams) HasTruststoreFilename() bool

HasTruststoreFilename returns a boolean if a field has been set.

func (*LDAPConfigParams) HasTruststorePassword added in v1.6.0

func (o *LDAPConfigParams) HasTruststorePassword() bool

HasTruststorePassword returns a boolean if a field has been set.

func (*LDAPConfigParams) HasUnsafeSslHostnameCheck added in v1.6.0

func (o *LDAPConfigParams) HasUnsafeSslHostnameCheck() bool

HasUnsafeSslHostnameCheck returns a boolean if a field has been set.

func (LDAPConfigParams) MarshalJSON added in v1.6.0

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

func (*LDAPConfigParams) SetAutoCreateUsers added in v1.6.0

func (o *LDAPConfigParams) SetAutoCreateUsers(v bool)

SetAutoCreateUsers gets a reference to the given bool and assigns it to the AutoCreateUsers field.

func (*LDAPConfigParams) SetDomains added in v1.6.0

func (o *LDAPConfigParams) SetDomains(v []Domain)

SetDomains gets a reference to the given []Domain and assigns it to the Domains field.

func (*LDAPConfigParams) SetEnableSsl added in v1.6.0

func (o *LDAPConfigParams) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*LDAPConfigParams) SetEnabled added in v1.6.0

func (o *LDAPConfigParams) SetEnabled(v bool)

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

func (*LDAPConfigParams) SetHostname added in v1.6.0

func (o *LDAPConfigParams) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*LDAPConfigParams) SetInsecureSsl added in v1.6.0

func (o *LDAPConfigParams) SetInsecureSsl(v bool)

SetInsecureSsl gets a reference to the given bool and assigns it to the InsecureSsl field.

func (*LDAPConfigParams) SetPort added in v1.6.0

func (o *LDAPConfigParams) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*LDAPConfigParams) SetTruststoreFilename added in v1.6.0

func (o *LDAPConfigParams) SetTruststoreFilename(v string)

SetTruststoreFilename gets a reference to the given string and assigns it to the TruststoreFilename field.

func (*LDAPConfigParams) SetTruststorePassword added in v1.6.0

func (o *LDAPConfigParams) SetTruststorePassword(v string)

SetTruststorePassword gets a reference to the given string and assigns it to the TruststorePassword field.

func (*LDAPConfigParams) SetUnsafeSslHostnameCheck added in v1.6.0

func (o *LDAPConfigParams) SetUnsafeSslHostnameCheck(v bool)

SetUnsafeSslHostnameCheck gets a reference to the given bool and assigns it to the UnsafeSslHostnameCheck field.

func (LDAPConfigParams) ToMap added in v1.6.0

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

type LdapConfigValidateParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LdapConfigValidateParameter) GetPassword() string

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

func (*LdapConfigValidateParameter) GetPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *LdapConfigValidateParameter) GetUsername() string

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

func (*LdapConfigValidateParameter) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *LdapConfigValidateParameter) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*LdapConfigValidateParameter) HasUsername added in v1.6.0

func (o *LdapConfigValidateParameter) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (LdapConfigValidateParameter) MarshalJSON added in v1.6.0

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

func (*LdapConfigValidateParameter) SetPassword added in v1.6.0

func (o *LdapConfigValidateParameter) SetPassword(v string)

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

func (*LdapConfigValidateParameter) SetUsername added in v1.6.0

func (o *LdapConfigValidateParameter) SetUsername(v string)

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

func (LdapConfigValidateParameter) ToMap added in v1.6.0

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

type LdapValidateResponse added in v1.6.0

type LdapValidateResponse struct {
	// Validation message for LDAP config.
	Message *string `json:"message,omitempty"`
}

LdapValidateResponse struct for LdapValidateResponse

func NewLdapValidateResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LdapValidateResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*LdapValidateResponse) GetMessageOk added in v1.6.0

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 added in v1.6.0

func (o *LdapValidateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (LdapValidateResponse) MarshalJSON added in v1.6.0

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

func (*LdapValidateResponse) SetMessage added in v1.6.0

func (o *LdapValidateResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (LdapValidateResponse) ToMap added in v1.6.0

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

type LinkDSourceDefaultRequest added in v1.6.0

type LinkDSourceDefaultRequest struct {
	// The ID of the source to be linked.
	SourceId string `json:"source_id"`
}

LinkDSourceDefaultRequest struct for LinkDSourceDefaultRequest

func NewLinkDSourceDefaultRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LinkDSourceDefaultRequest) GetSourceId() string

GetSourceId returns the SourceId field value

func (*LinkDSourceDefaultRequest) GetSourceIdOk added in v1.6.0

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 added in v1.6.0

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

func (*LinkDSourceDefaultRequest) SetSourceId added in v1.6.0

func (o *LinkDSourceDefaultRequest) SetSourceId(v string)

SetSourceId sets field value

func (LinkDSourceDefaultRequest) ToMap added in v1.6.0

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

type LinkDSourceParameters added in v1.6.0

type LinkDSourceParameters 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"`
	// Id of the environment user to use for linking.
	EnvironmentUserId *string `json:"environment_user_id,omitempty"`
	// The notes/description for the dSource.
	Description *string `json:"description,omitempty"`
	// Non-SYS database user to access this database. Only required for username-password auth (Oracle only).
	OracleNonSysUsername *string `json:"oracle_non_sys_username,omitempty"`
	// Password for non sys user authentication (Oracle only).
	OracleNonSysPassword *string `json:"oracle_non_sys_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials (Oracle only).
	OracleNonSysVault *string `json:"oracle_non_sys_vault,omitempty"`
	// Vault engine name where the credential is stored (Oracle only).
	OracleNonSysHashicorpVaultEngine *string `json:"oracle_non_sys_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored (Oracle only).
	OracleNonSysHashicorpVaultSecretPath *string `json:"oracle_non_sys_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store (Oracle only).
	OracleNonSysHashicorpVaultUsernameKey *string `json:"oracle_non_sys_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store (Oracle only).
	OracleNonSysHashicorpVaultSecretKey *string `json:"oracle_non_sys_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (Oracle only).
	OracleNonSysAzureVaultName *string `json:"oracle_non_sys_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (Oracle only).
	OracleNonSysAzureVaultUsernameKey *string `json:"oracle_non_sys_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (Oracle only).
	OracleNonSysAzureVaultSecretKey *string `json:"oracle_non_sys_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault (Oracle only).
	OracleNonSysCyberarkVaultQueryString *string `json:"oracle_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 (Oracle only).
	OracleFallbackUsername *string `json:"oracle_fallback_username,omitempty"`
	// Password for fallback username (Oracle only).
	OracleFallbackPassword *string `json:"oracle_fallback_password,omitempty"`
	// The name or reference of the vault from which to read the database credentials (Oracle only).
	OracleFallbackVault *string `json:"oracle_fallback_vault,omitempty"`
	// Vault engine name where the credential is stored (Oracle only).
	OracleFallbackHashicorpVaultEngine *string `json:"oracle_fallback_hashicorp_vault_engine,omitempty"`
	// Path in the vault engine where the credential is stored (Oracle only).
	OracleFallbackHashicorpVaultSecretPath *string `json:"oracle_fallback_hashicorp_vault_secret_path,omitempty"`
	// Hashicorp vault key for the username in the key-value store (Oracle only).
	OracleFallbackHashicorpVaultUsernameKey *string `json:"oracle_fallback_hashicorp_vault_username_key,omitempty"`
	// Hashicorp vault key for the password in the key-value store (Oracle only).
	OracleFallbackHashicorpVaultSecretKey *string `json:"oracle_fallback_hashicorp_vault_secret_key,omitempty"`
	// Azure key vault name (Oracle only).
	OracleFallbackAzureVaultName *string `json:"oracle_fallback_azure_vault_name,omitempty"`
	// Azure vault key for the username in the key-value store (Oracle only).
	OracleFallbackAzureVaultUsernameKey *string `json:"oracle_fallback_azure_vault_username_key,omitempty"`
	// Azure vault key for the password in the key-value store (Oracle only).
	OracleFallbackAzureVaultSecretKey *string `json:"oracle_fallback_azure_vault_secret_key,omitempty"`
	// Query to find a credential in the CyberArk vault (Oracle only).
	OracleFallbackCyberarkVaultQueryString *string `json:"oracle_fallback_cyberark_vault_query_string,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"`
	// True if LogSync should run for this database.
	LogSyncEnabled *bool `json:"log_sync_enabled,omitempty"`
	// External file path.
	ExternalFilePath *string `json:"external_file_path,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 and before running the LogSync.
	OpsPreLogSync []SourceOperation `json:"ops_pre_log_sync,omitempty"`
	// Operations to perform after syncing a created dSource.
	OpsPostSync []SourceOperation `json:"ops_post_sync,omitempty"`
}

LinkDSourceParameters struct for LinkDSourceParameters

func NewLinkDSourceParameters added in v1.6.0

func NewLinkDSourceParameters(sourceId string) *LinkDSourceParameters

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

func NewLinkDSourceParametersWithDefaults added in v1.6.0

func NewLinkDSourceParametersWithDefaults() *LinkDSourceParameters

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

func (*LinkDSourceParameters) GetBackupLevelEnabled added in v1.6.0

func (o *LinkDSourceParameters) GetBackupLevelEnabled() bool

GetBackupLevelEnabled returns the BackupLevelEnabled field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetBackupLevelEnabledOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetBandwidthLimit added in v1.6.0

func (o *LinkDSourceParameters) GetBandwidthLimit() int32

GetBandwidthLimit returns the BandwidthLimit field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetBandwidthLimitOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetCheckLogical added in v1.6.0

func (o *LinkDSourceParameters) GetCheckLogical() bool

GetCheckLogical returns the CheckLogical field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetCheckLogicalOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetCompressedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) GetCompressedLinkingEnabled() bool

GetCompressedLinkingEnabled returns the CompressedLinkingEnabled field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetCompressedLinkingEnabledOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetDescription added in v1.6.0

func (o *LinkDSourceParameters) GetDescription() string

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

func (*LinkDSourceParameters) GetDescriptionOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetDiagnoseNoLoggingFaults added in v1.6.0

func (o *LinkDSourceParameters) GetDiagnoseNoLoggingFaults() bool

GetDiagnoseNoLoggingFaults returns the DiagnoseNoLoggingFaults field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetDiagnoseNoLoggingFaultsOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetDoNotResume added in v1.6.0

func (o *LinkDSourceParameters) GetDoNotResume() bool

GetDoNotResume returns the DoNotResume field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetDoNotResumeOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetDoubleSync added in v1.6.0

func (o *LinkDSourceParameters) GetDoubleSync() bool

GetDoubleSync returns the DoubleSync field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetDoubleSyncOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetEncryptedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) GetEncryptedLinkingEnabled() bool

GetEncryptedLinkingEnabled returns the EncryptedLinkingEnabled field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetEncryptedLinkingEnabledOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetEnvironmentUserId added in v1.6.0

func (o *LinkDSourceParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetEnvironmentUserIdOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetExternalFilePath added in v1.6.0

func (o *LinkDSourceParameters) GetExternalFilePath() string

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

func (*LinkDSourceParameters) GetExternalFilePathOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetFilesForFullBackup added in v1.6.0

func (o *LinkDSourceParameters) GetFilesForFullBackup() []int32

GetFilesForFullBackup returns the FilesForFullBackup field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetFilesForFullBackupOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetFilesPerSet added in v1.6.0

func (o *LinkDSourceParameters) GetFilesPerSet() int32

GetFilesPerSet returns the FilesPerSet field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetFilesPerSetOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetForceFullBackup added in v1.6.0

func (o *LinkDSourceParameters) GetForceFullBackup() bool

GetForceFullBackup returns the ForceFullBackup field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetForceFullBackupOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetGroupId added in v1.6.0

func (o *LinkDSourceParameters) GetGroupId() string

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

func (*LinkDSourceParameters) GetGroupIdOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetLinkNow added in v1.6.0

func (o *LinkDSourceParameters) GetLinkNow() bool

GetLinkNow returns the LinkNow field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetLinkNowOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetLogSyncEnabled added in v1.6.0

func (o *LinkDSourceParameters) GetLogSyncEnabled() bool

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

func (*LinkDSourceParameters) GetLogSyncEnabledOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetLogSyncInterval added in v1.6.0

func (o *LinkDSourceParameters) GetLogSyncInterval() int32

GetLogSyncInterval returns the LogSyncInterval field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetLogSyncIntervalOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetLogSyncMode added in v1.6.0

func (o *LinkDSourceParameters) GetLogSyncMode() string

GetLogSyncMode returns the LogSyncMode field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetLogSyncModeOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetMakeCurrentAccountOwner added in v1.6.0

func (o *LinkDSourceParameters) GetMakeCurrentAccountOwner() bool

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

func (*LinkDSourceParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetName added in v1.6.0

func (o *LinkDSourceParameters) GetName() string

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

func (*LinkDSourceParameters) GetNameOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetNumberOfConnections added in v1.6.0

func (o *LinkDSourceParameters) GetNumberOfConnections() int32

GetNumberOfConnections returns the NumberOfConnections field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetNumberOfConnectionsOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetOpsPostSync added in v1.6.0

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

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

func (*LinkDSourceParameters) GetOpsPostSyncOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetOpsPreLogSync added in v1.6.0

func (o *LinkDSourceParameters) GetOpsPreLogSync() []SourceOperation

GetOpsPreLogSync returns the OpsPreLogSync field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOpsPreLogSyncOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetOpsPreSync added in v1.6.0

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

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

func (*LinkDSourceParameters) GetOpsPreSyncOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetOracleFallbackAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultName() string

GetOracleFallbackAzureVaultName returns the OracleFallbackAzureVaultName field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackAzureVaultNameOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultNameOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultSecretKey() string

GetOracleFallbackAzureVaultSecretKey returns the OracleFallbackAzureVaultSecretKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackAzureVaultSecretKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultSecretKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultUsernameKey() string

GetOracleFallbackAzureVaultUsernameKey returns the OracleFallbackAzureVaultUsernameKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackAzureVaultUsernameKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackAzureVaultUsernameKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackCyberarkVaultQueryString() string

GetOracleFallbackCyberarkVaultQueryString returns the OracleFallbackCyberarkVaultQueryString field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackCyberarkVaultQueryStringOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackCyberarkVaultQueryStringOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultEngine() string

GetOracleFallbackHashicorpVaultEngine returns the OracleFallbackHashicorpVaultEngine field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultEngineOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultEngineOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretKey() string

GetOracleFallbackHashicorpVaultSecretKey returns the OracleFallbackHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretPath() string

GetOracleFallbackHashicorpVaultSecretPath returns the OracleFallbackHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretPathOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultSecretPathOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultUsernameKey() string

GetOracleFallbackHashicorpVaultUsernameKey returns the OracleFallbackHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackHashicorpVaultUsernameKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackPassword added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackPassword() string

GetOracleFallbackPassword returns the OracleFallbackPassword field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackPasswordOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackPasswordOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackUsername added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackUsername() string

GetOracleFallbackUsername returns the OracleFallbackUsername field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackUsernameOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackUsernameOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleFallbackVault added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackVault() string

GetOracleFallbackVault returns the OracleFallbackVault field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleFallbackVaultOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleFallbackVaultOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultName() string

GetOracleNonSysAzureVaultName returns the OracleNonSysAzureVaultName field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultNameOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultNameOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultSecretKey() string

GetOracleNonSysAzureVaultSecretKey returns the OracleNonSysAzureVaultSecretKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultSecretKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultSecretKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultUsernameKey() string

GetOracleNonSysAzureVaultUsernameKey returns the OracleNonSysAzureVaultUsernameKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysAzureVaultUsernameKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysAzureVaultUsernameKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysCyberarkVaultQueryString() string

GetOracleNonSysCyberarkVaultQueryString returns the OracleNonSysCyberarkVaultQueryString field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysCyberarkVaultQueryStringOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysCyberarkVaultQueryStringOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultEngine() string

GetOracleNonSysHashicorpVaultEngine returns the OracleNonSysHashicorpVaultEngine field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultEngineOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultEngineOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretKey() string

GetOracleNonSysHashicorpVaultSecretKey returns the OracleNonSysHashicorpVaultSecretKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretPath() string

GetOracleNonSysHashicorpVaultSecretPath returns the OracleNonSysHashicorpVaultSecretPath field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretPathOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultSecretPathOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultUsernameKey() string

GetOracleNonSysHashicorpVaultUsernameKey returns the OracleNonSysHashicorpVaultUsernameKey field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysHashicorpVaultUsernameKeyOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysHashicorpVaultUsernameKeyOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysPassword added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysPassword() string

GetOracleNonSysPassword returns the OracleNonSysPassword field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysPasswordOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysPasswordOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysUsername added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysUsername() string

GetOracleNonSysUsername returns the OracleNonSysUsername field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysUsernameOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysUsernameOk() (*string, bool)

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

func (*LinkDSourceParameters) GetOracleNonSysVault added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysVault() string

GetOracleNonSysVault returns the OracleNonSysVault field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetOracleNonSysVaultOk added in v1.6.0

func (o *LinkDSourceParameters) GetOracleNonSysVaultOk() (*string, bool)

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

func (*LinkDSourceParameters) GetPreProvisioningEnabled added in v1.6.0

func (o *LinkDSourceParameters) GetPreProvisioningEnabled() bool

GetPreProvisioningEnabled returns the PreProvisioningEnabled field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetPreProvisioningEnabledOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetRmanChannels added in v1.6.0

func (o *LinkDSourceParameters) GetRmanChannels() int32

GetRmanChannels returns the RmanChannels field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetRmanChannelsOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetSkipSpaceCheck added in v1.6.0

func (o *LinkDSourceParameters) GetSkipSpaceCheck() bool

GetSkipSpaceCheck returns the SkipSpaceCheck field value if set, zero value otherwise.

func (*LinkDSourceParameters) GetSkipSpaceCheckOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) GetSourceId added in v1.6.0

func (o *LinkDSourceParameters) GetSourceId() string

GetSourceId returns the SourceId field value

func (*LinkDSourceParameters) GetSourceIdOk added in v1.6.0

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

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

func (*LinkDSourceParameters) GetTags added in v1.6.0

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

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

func (*LinkDSourceParameters) GetTagsOk added in v1.6.0

func (o *LinkDSourceParameters) 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 (*LinkDSourceParameters) HasBackupLevelEnabled added in v1.6.0

func (o *LinkDSourceParameters) HasBackupLevelEnabled() bool

HasBackupLevelEnabled returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasBandwidthLimit added in v1.6.0

func (o *LinkDSourceParameters) HasBandwidthLimit() bool

HasBandwidthLimit returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasCheckLogical added in v1.6.0

func (o *LinkDSourceParameters) HasCheckLogical() bool

HasCheckLogical returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasCompressedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) HasCompressedLinkingEnabled() bool

HasCompressedLinkingEnabled returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasDescription added in v1.6.0

func (o *LinkDSourceParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasDiagnoseNoLoggingFaults added in v1.6.0

func (o *LinkDSourceParameters) HasDiagnoseNoLoggingFaults() bool

HasDiagnoseNoLoggingFaults returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasDoNotResume added in v1.6.0

func (o *LinkDSourceParameters) HasDoNotResume() bool

HasDoNotResume returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasDoubleSync added in v1.6.0

func (o *LinkDSourceParameters) HasDoubleSync() bool

HasDoubleSync returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasEncryptedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) HasEncryptedLinkingEnabled() bool

HasEncryptedLinkingEnabled returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasEnvironmentUserId added in v1.6.0

func (o *LinkDSourceParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasExternalFilePath added in v1.6.0

func (o *LinkDSourceParameters) HasExternalFilePath() bool

HasExternalFilePath returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasFilesForFullBackup added in v1.6.0

func (o *LinkDSourceParameters) HasFilesForFullBackup() bool

HasFilesForFullBackup returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasFilesPerSet added in v1.6.0

func (o *LinkDSourceParameters) HasFilesPerSet() bool

HasFilesPerSet returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasForceFullBackup added in v1.6.0

func (o *LinkDSourceParameters) HasForceFullBackup() bool

HasForceFullBackup returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasGroupId added in v1.6.0

func (o *LinkDSourceParameters) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasLinkNow added in v1.6.0

func (o *LinkDSourceParameters) HasLinkNow() bool

HasLinkNow returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasLogSyncEnabled added in v1.6.0

func (o *LinkDSourceParameters) HasLogSyncEnabled() bool

HasLogSyncEnabled returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasLogSyncInterval added in v1.6.0

func (o *LinkDSourceParameters) HasLogSyncInterval() bool

HasLogSyncInterval returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasLogSyncMode added in v1.6.0

func (o *LinkDSourceParameters) HasLogSyncMode() bool

HasLogSyncMode returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasMakeCurrentAccountOwner added in v1.6.0

func (o *LinkDSourceParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasName added in v1.6.0

func (o *LinkDSourceParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasNumberOfConnections added in v1.6.0

func (o *LinkDSourceParameters) HasNumberOfConnections() bool

HasNumberOfConnections returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOpsPostSync added in v1.6.0

func (o *LinkDSourceParameters) HasOpsPostSync() bool

HasOpsPostSync returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOpsPreLogSync added in v1.6.0

func (o *LinkDSourceParameters) HasOpsPreLogSync() bool

HasOpsPreLogSync returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOpsPreSync added in v1.6.0

func (o *LinkDSourceParameters) HasOpsPreSync() bool

HasOpsPreSync returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackAzureVaultName() bool

HasOracleFallbackAzureVaultName returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackAzureVaultSecretKey() bool

HasOracleFallbackAzureVaultSecretKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackAzureVaultUsernameKey() bool

HasOracleFallbackAzureVaultUsernameKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackCyberarkVaultQueryString() bool

HasOracleFallbackCyberarkVaultQueryString returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackHashicorpVaultEngine() bool

HasOracleFallbackHashicorpVaultEngine returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackHashicorpVaultSecretKey() bool

HasOracleFallbackHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackHashicorpVaultSecretPath() bool

HasOracleFallbackHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackHashicorpVaultUsernameKey() bool

HasOracleFallbackHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackPassword added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackPassword() bool

HasOracleFallbackPassword returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackUsername added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackUsername() bool

HasOracleFallbackUsername returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleFallbackVault added in v1.6.0

func (o *LinkDSourceParameters) HasOracleFallbackVault() bool

HasOracleFallbackVault returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysAzureVaultName() bool

HasOracleNonSysAzureVaultName returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysAzureVaultSecretKey() bool

HasOracleNonSysAzureVaultSecretKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysAzureVaultUsernameKey() bool

HasOracleNonSysAzureVaultUsernameKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysCyberarkVaultQueryString() bool

HasOracleNonSysCyberarkVaultQueryString returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysHashicorpVaultEngine() bool

HasOracleNonSysHashicorpVaultEngine returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysHashicorpVaultSecretKey() bool

HasOracleNonSysHashicorpVaultSecretKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysHashicorpVaultSecretPath() bool

HasOracleNonSysHashicorpVaultSecretPath returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysHashicorpVaultUsernameKey() bool

HasOracleNonSysHashicorpVaultUsernameKey returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysPassword added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysPassword() bool

HasOracleNonSysPassword returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysUsername added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysUsername() bool

HasOracleNonSysUsername returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasOracleNonSysVault added in v1.6.0

func (o *LinkDSourceParameters) HasOracleNonSysVault() bool

HasOracleNonSysVault returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasPreProvisioningEnabled added in v1.6.0

func (o *LinkDSourceParameters) HasPreProvisioningEnabled() bool

HasPreProvisioningEnabled returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasRmanChannels added in v1.6.0

func (o *LinkDSourceParameters) HasRmanChannels() bool

HasRmanChannels returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasSkipSpaceCheck added in v1.6.0

func (o *LinkDSourceParameters) HasSkipSpaceCheck() bool

HasSkipSpaceCheck returns a boolean if a field has been set.

func (*LinkDSourceParameters) HasTags added in v1.6.0

func (o *LinkDSourceParameters) HasTags() bool

HasTags returns a boolean if a field has been set.

func (LinkDSourceParameters) MarshalJSON added in v1.6.0

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

func (*LinkDSourceParameters) SetBackupLevelEnabled added in v1.6.0

func (o *LinkDSourceParameters) SetBackupLevelEnabled(v bool)

SetBackupLevelEnabled gets a reference to the given bool and assigns it to the BackupLevelEnabled field.

func (*LinkDSourceParameters) SetBandwidthLimit added in v1.6.0

func (o *LinkDSourceParameters) SetBandwidthLimit(v int32)

SetBandwidthLimit gets a reference to the given int32 and assigns it to the BandwidthLimit field.

func (*LinkDSourceParameters) SetCheckLogical added in v1.6.0

func (o *LinkDSourceParameters) SetCheckLogical(v bool)

SetCheckLogical gets a reference to the given bool and assigns it to the CheckLogical field.

func (*LinkDSourceParameters) SetCompressedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) SetCompressedLinkingEnabled(v bool)

SetCompressedLinkingEnabled gets a reference to the given bool and assigns it to the CompressedLinkingEnabled field.

func (*LinkDSourceParameters) SetDescription added in v1.6.0

func (o *LinkDSourceParameters) SetDescription(v string)

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

func (*LinkDSourceParameters) SetDiagnoseNoLoggingFaults added in v1.6.0

func (o *LinkDSourceParameters) SetDiagnoseNoLoggingFaults(v bool)

SetDiagnoseNoLoggingFaults gets a reference to the given bool and assigns it to the DiagnoseNoLoggingFaults field.

func (*LinkDSourceParameters) SetDoNotResume added in v1.6.0

func (o *LinkDSourceParameters) SetDoNotResume(v bool)

SetDoNotResume gets a reference to the given bool and assigns it to the DoNotResume field.

func (*LinkDSourceParameters) SetDoubleSync added in v1.6.0

func (o *LinkDSourceParameters) SetDoubleSync(v bool)

SetDoubleSync gets a reference to the given bool and assigns it to the DoubleSync field.

func (*LinkDSourceParameters) SetEncryptedLinkingEnabled added in v1.6.0

func (o *LinkDSourceParameters) SetEncryptedLinkingEnabled(v bool)

SetEncryptedLinkingEnabled gets a reference to the given bool and assigns it to the EncryptedLinkingEnabled field.

func (*LinkDSourceParameters) SetEnvironmentUserId added in v1.6.0

func (o *LinkDSourceParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*LinkDSourceParameters) SetExternalFilePath added in v1.6.0

func (o *LinkDSourceParameters) SetExternalFilePath(v string)

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

func (*LinkDSourceParameters) SetFilesForFullBackup added in v1.6.0

func (o *LinkDSourceParameters) SetFilesForFullBackup(v []int32)

SetFilesForFullBackup gets a reference to the given []int32 and assigns it to the FilesForFullBackup field.

func (*LinkDSourceParameters) SetFilesPerSet added in v1.6.0

func (o *LinkDSourceParameters) SetFilesPerSet(v int32)

SetFilesPerSet gets a reference to the given int32 and assigns it to the FilesPerSet field.

func (*LinkDSourceParameters) SetForceFullBackup added in v1.6.0

func (o *LinkDSourceParameters) SetForceFullBackup(v bool)

SetForceFullBackup gets a reference to the given bool and assigns it to the ForceFullBackup field.

func (*LinkDSourceParameters) SetGroupId added in v1.6.0

func (o *LinkDSourceParameters) SetGroupId(v string)

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

func (*LinkDSourceParameters) SetLinkNow added in v1.6.0

func (o *LinkDSourceParameters) SetLinkNow(v bool)

SetLinkNow gets a reference to the given bool and assigns it to the LinkNow field.

func (*LinkDSourceParameters) SetLogSyncEnabled added in v1.6.0

func (o *LinkDSourceParameters) SetLogSyncEnabled(v bool)

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

func (*LinkDSourceParameters) SetLogSyncInterval added in v1.6.0

func (o *LinkDSourceParameters) SetLogSyncInterval(v int32)

SetLogSyncInterval gets a reference to the given int32 and assigns it to the LogSyncInterval field.

func (*LinkDSourceParameters) SetLogSyncMode added in v1.6.0

func (o *LinkDSourceParameters) SetLogSyncMode(v string)

SetLogSyncMode gets a reference to the given string and assigns it to the LogSyncMode field.

func (*LinkDSourceParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *LinkDSourceParameters) SetMakeCurrentAccountOwner(v bool)

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

func (*LinkDSourceParameters) SetName added in v1.6.0

func (o *LinkDSourceParameters) SetName(v string)

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

func (*LinkDSourceParameters) SetNumberOfConnections added in v1.6.0

func (o *LinkDSourceParameters) SetNumberOfConnections(v int32)

SetNumberOfConnections gets a reference to the given int32 and assigns it to the NumberOfConnections field.

func (*LinkDSourceParameters) SetOpsPostSync added in v1.6.0

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

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

func (*LinkDSourceParameters) SetOpsPreLogSync added in v1.6.0

func (o *LinkDSourceParameters) SetOpsPreLogSync(v []SourceOperation)

SetOpsPreLogSync gets a reference to the given []SourceOperation and assigns it to the OpsPreLogSync field.

func (*LinkDSourceParameters) SetOpsPreSync added in v1.6.0

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

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

func (*LinkDSourceParameters) SetOracleFallbackAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackAzureVaultName(v string)

SetOracleFallbackAzureVaultName gets a reference to the given string and assigns it to the OracleFallbackAzureVaultName field.

func (*LinkDSourceParameters) SetOracleFallbackAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackAzureVaultSecretKey(v string)

SetOracleFallbackAzureVaultSecretKey gets a reference to the given string and assigns it to the OracleFallbackAzureVaultSecretKey field.

func (*LinkDSourceParameters) SetOracleFallbackAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackAzureVaultUsernameKey(v string)

SetOracleFallbackAzureVaultUsernameKey gets a reference to the given string and assigns it to the OracleFallbackAzureVaultUsernameKey field.

func (*LinkDSourceParameters) SetOracleFallbackCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackCyberarkVaultQueryString(v string)

SetOracleFallbackCyberarkVaultQueryString gets a reference to the given string and assigns it to the OracleFallbackCyberarkVaultQueryString field.

func (*LinkDSourceParameters) SetOracleFallbackHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackHashicorpVaultEngine(v string)

SetOracleFallbackHashicorpVaultEngine gets a reference to the given string and assigns it to the OracleFallbackHashicorpVaultEngine field.

func (*LinkDSourceParameters) SetOracleFallbackHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackHashicorpVaultSecretKey(v string)

SetOracleFallbackHashicorpVaultSecretKey gets a reference to the given string and assigns it to the OracleFallbackHashicorpVaultSecretKey field.

func (*LinkDSourceParameters) SetOracleFallbackHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackHashicorpVaultSecretPath(v string)

SetOracleFallbackHashicorpVaultSecretPath gets a reference to the given string and assigns it to the OracleFallbackHashicorpVaultSecretPath field.

func (*LinkDSourceParameters) SetOracleFallbackHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackHashicorpVaultUsernameKey(v string)

SetOracleFallbackHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the OracleFallbackHashicorpVaultUsernameKey field.

func (*LinkDSourceParameters) SetOracleFallbackPassword added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackPassword(v string)

SetOracleFallbackPassword gets a reference to the given string and assigns it to the OracleFallbackPassword field.

func (*LinkDSourceParameters) SetOracleFallbackUsername added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackUsername(v string)

SetOracleFallbackUsername gets a reference to the given string and assigns it to the OracleFallbackUsername field.

func (*LinkDSourceParameters) SetOracleFallbackVault added in v1.6.0

func (o *LinkDSourceParameters) SetOracleFallbackVault(v string)

SetOracleFallbackVault gets a reference to the given string and assigns it to the OracleFallbackVault field.

func (*LinkDSourceParameters) SetOracleNonSysAzureVaultName added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysAzureVaultName(v string)

SetOracleNonSysAzureVaultName gets a reference to the given string and assigns it to the OracleNonSysAzureVaultName field.

func (*LinkDSourceParameters) SetOracleNonSysAzureVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysAzureVaultSecretKey(v string)

SetOracleNonSysAzureVaultSecretKey gets a reference to the given string and assigns it to the OracleNonSysAzureVaultSecretKey field.

func (*LinkDSourceParameters) SetOracleNonSysAzureVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysAzureVaultUsernameKey(v string)

SetOracleNonSysAzureVaultUsernameKey gets a reference to the given string and assigns it to the OracleNonSysAzureVaultUsernameKey field.

func (*LinkDSourceParameters) SetOracleNonSysCyberarkVaultQueryString added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysCyberarkVaultQueryString(v string)

SetOracleNonSysCyberarkVaultQueryString gets a reference to the given string and assigns it to the OracleNonSysCyberarkVaultQueryString field.

func (*LinkDSourceParameters) SetOracleNonSysHashicorpVaultEngine added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysHashicorpVaultEngine(v string)

SetOracleNonSysHashicorpVaultEngine gets a reference to the given string and assigns it to the OracleNonSysHashicorpVaultEngine field.

func (*LinkDSourceParameters) SetOracleNonSysHashicorpVaultSecretKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysHashicorpVaultSecretKey(v string)

SetOracleNonSysHashicorpVaultSecretKey gets a reference to the given string and assigns it to the OracleNonSysHashicorpVaultSecretKey field.

func (*LinkDSourceParameters) SetOracleNonSysHashicorpVaultSecretPath added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysHashicorpVaultSecretPath(v string)

SetOracleNonSysHashicorpVaultSecretPath gets a reference to the given string and assigns it to the OracleNonSysHashicorpVaultSecretPath field.

func (*LinkDSourceParameters) SetOracleNonSysHashicorpVaultUsernameKey added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysHashicorpVaultUsernameKey(v string)

SetOracleNonSysHashicorpVaultUsernameKey gets a reference to the given string and assigns it to the OracleNonSysHashicorpVaultUsernameKey field.

func (*LinkDSourceParameters) SetOracleNonSysPassword added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysPassword(v string)

SetOracleNonSysPassword gets a reference to the given string and assigns it to the OracleNonSysPassword field.

func (*LinkDSourceParameters) SetOracleNonSysUsername added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysUsername(v string)

SetOracleNonSysUsername gets a reference to the given string and assigns it to the OracleNonSysUsername field.

func (*LinkDSourceParameters) SetOracleNonSysVault added in v1.6.0

func (o *LinkDSourceParameters) SetOracleNonSysVault(v string)

SetOracleNonSysVault gets a reference to the given string and assigns it to the OracleNonSysVault field.

func (*LinkDSourceParameters) SetPreProvisioningEnabled added in v1.6.0

func (o *LinkDSourceParameters) SetPreProvisioningEnabled(v bool)

SetPreProvisioningEnabled gets a reference to the given bool and assigns it to the PreProvisioningEnabled field.

func (*LinkDSourceParameters) SetRmanChannels added in v1.6.0

func (o *LinkDSourceParameters) SetRmanChannels(v int32)

SetRmanChannels gets a reference to the given int32 and assigns it to the RmanChannels field.

func (*LinkDSourceParameters) SetSkipSpaceCheck added in v1.6.0

func (o *LinkDSourceParameters) SetSkipSpaceCheck(v bool)

SetSkipSpaceCheck gets a reference to the given bool and assigns it to the SkipSpaceCheck field.

func (*LinkDSourceParameters) SetSourceId added in v1.6.0

func (o *LinkDSourceParameters) SetSourceId(v string)

SetSourceId sets field value

func (*LinkDSourceParameters) SetTags added in v1.6.0

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

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

func (LinkDSourceParameters) ToMap added in v1.6.0

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

type LinkDSourceResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LinkDSourceResponse) GetDsourceId() string

GetDsourceId returns the DsourceId field value if set, zero value otherwise.

func (*LinkDSourceResponse) GetDsourceIdOk added in v1.6.0

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 added in v1.6.0

func (o *LinkDSourceResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*LinkDSourceResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *LinkDSourceResponse) HasDsourceId() bool

HasDsourceId returns a boolean if a field has been set.

func (*LinkDSourceResponse) HasJob added in v1.6.0

func (o *LinkDSourceResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (LinkDSourceResponse) MarshalJSON added in v1.6.0

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

func (*LinkDSourceResponse) SetDsourceId added in v1.6.0

func (o *LinkDSourceResponse) SetDsourceId(v string)

SetDsourceId gets a reference to the given string and assigns it to the DsourceId field.

func (*LinkDSourceResponse) SetJob added in v1.6.0

func (o *LinkDSourceResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (LinkDSourceResponse) ToMap added in v1.6.0

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

type ListAccessGroupsResponse added in v1.6.0

type ListAccessGroupsResponse struct {
	Items            []AccessGroup              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListAccessGroupsResponse struct for ListAccessGroupsResponse

func NewListAccessGroupsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListAccessGroupsResponse) GetItems() []AccessGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListAccessGroupsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListAccessGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListAccessGroupsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListAccessGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAccessGroupsResponse) HasResponseMetadata added in v1.6.0

func (o *ListAccessGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListAccessGroupsResponse) MarshalJSON added in v1.6.0

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

func (*ListAccessGroupsResponse) SetItems added in v1.6.0

func (o *ListAccessGroupsResponse) SetItems(v []AccessGroup)

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

func (*ListAccessGroupsResponse) SetResponseMetadata added in v1.6.0

func (o *ListAccessGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListAccessGroupsResponse) ToMap added in v1.6.0

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

type ListAccountsResponse added in v1.6.0

type ListAccountsResponse struct {
	Items            []Account                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListAccountsResponse struct for ListAccountsResponse

func NewListAccountsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListAccountsResponse) GetItems() []Account

GetItems returns the Items field value if set, zero value otherwise.

func (*ListAccountsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListAccountsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListAccountsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListAccountsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListAccountsResponse) HasResponseMetadata added in v1.6.0

func (o *ListAccountsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListAccountsResponse) MarshalJSON added in v1.6.0

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

func (*ListAccountsResponse) SetItems added in v1.6.0

func (o *ListAccountsResponse) SetItems(v []Account)

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

func (*ListAccountsResponse) SetResponseMetadata added in v1.6.0

func (o *ListAccountsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListAccountsResponse) ToMap added in v1.6.0

func (o ListAccountsResponse) 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 added in v1.2.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListBookmarksByVDBGroupsResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListBookmarksByVDBGroupsResponse) ToMap added in v1.6.0

func (o ListBookmarksByVDBGroupsResponse) 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 added in v1.2.0

func (o *ListBookmarksResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListBookmarksResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ListBookmarksResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListBookmarksResponse) ToMap added in v1.6.0

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

type ListCDBsResponse added in v1.6.0

type ListCDBsResponse struct {
	Items            []CDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListCDBsResponse struct for ListCDBsResponse

func NewListCDBsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListCDBsResponse) GetItems() []CDB

GetItems returns the Items field value if set, zero value otherwise.

func (*ListCDBsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListCDBsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListCDBsResponse) HasResponseMetadata added in v1.6.0

func (o *ListCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListCDBsResponse) MarshalJSON added in v1.6.0

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

func (*ListCDBsResponse) SetItems added in v1.6.0

func (o *ListCDBsResponse) SetItems(v []CDB)

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

func (*ListCDBsResponse) SetResponseMetadata added in v1.6.0

func (o *ListCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListCDBsResponse) ToMap added in v1.6.0

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

type ListConnectorsResponse added in v1.6.0

type ListConnectorsResponse struct {
	Items            []Connector                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListConnectorsResponse struct for ListConnectorsResponse

func NewListConnectorsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListConnectorsResponse) GetItems() []Connector

GetItems returns the Items field value if set, zero value otherwise.

func (*ListConnectorsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListConnectorsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListConnectorsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListConnectorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListConnectorsResponse) HasResponseMetadata added in v1.6.0

func (o *ListConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListConnectorsResponse) MarshalJSON added in v1.6.0

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

func (*ListConnectorsResponse) SetItems added in v1.6.0

func (o *ListConnectorsResponse) SetItems(v []Connector)

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

func (*ListConnectorsResponse) SetResponseMetadata added in v1.6.0

func (o *ListConnectorsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListConnectorsResponse) ToMap added in v1.6.0

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 added in v1.6.0

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

type ListDatabaseTemplatesResponse added in v1.6.0

type ListDatabaseTemplatesResponse struct {
	Items            []DatabaseTemplate         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListDatabaseTemplatesResponse struct for ListDatabaseTemplatesResponse

func NewListDatabaseTemplatesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListDatabaseTemplatesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListDatabaseTemplatesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListDatabaseTemplatesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListDatabaseTemplatesResponse) HasResponseMetadata added in v1.6.0

func (o *ListDatabaseTemplatesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListDatabaseTemplatesResponse) MarshalJSON added in v1.6.0

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

func (*ListDatabaseTemplatesResponse) SetItems added in v1.6.0

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

func (*ListDatabaseTemplatesResponse) SetResponseMetadata added in v1.6.0

func (o *ListDatabaseTemplatesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListDatabaseTemplatesResponse) ToMap added in v1.6.0

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

type ListEnvironmentUsers added in v1.1.0

type ListEnvironmentUsers struct {
	// List of users
	Users []EnvironmentUser `json:"users,omitempty"`
}

ListEnvironmentUsers struct for ListEnvironmentUsers

func NewListEnvironmentUsers added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *ListEnvironmentUsers) GetUsers() []EnvironmentUser

GetUsers returns the Users field value if set, zero value otherwise.

func (*ListEnvironmentUsers) GetUsersOk added in v1.1.0

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 added in v1.1.0

func (o *ListEnvironmentUsers) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (ListEnvironmentUsers) MarshalJSON added in v1.1.0

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

func (*ListEnvironmentUsers) SetUsers added in v1.1.0

func (o *ListEnvironmentUsers) SetUsers(v []EnvironmentUser)

SetUsers gets a reference to the given []EnvironmentUser and assigns it to the Users field.

func (ListEnvironmentUsers) ToMap added in v1.6.0

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 added in v1.6.0

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

type ListExecutionEventsResponse added in v1.6.0

type ListExecutionEventsResponse struct {
	Items            []ExecutionEvent           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListExecutionEventsResponse struct for ListExecutionEventsResponse

func NewListExecutionEventsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListExecutionEventsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListExecutionEventsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListExecutionEventsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListExecutionEventsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListExecutionEventsResponse) HasResponseMetadata added in v1.6.0

func (o *ListExecutionEventsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListExecutionEventsResponse) MarshalJSON added in v1.6.0

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

func (*ListExecutionEventsResponse) SetItems added in v1.6.0

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

func (*ListExecutionEventsResponse) SetResponseMetadata added in v1.6.0

func (o *ListExecutionEventsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListExecutionEventsResponse) ToMap added in v1.6.0

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

type ListExecutionsResponse added in v1.6.0

type ListExecutionsResponse struct {
	Items            []Execution                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListExecutionsResponse struct for ListExecutionsResponse

func NewListExecutionsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListExecutionsResponse) GetItems() []Execution

GetItems returns the Items field value if set, zero value otherwise.

func (*ListExecutionsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListExecutionsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListExecutionsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListExecutionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListExecutionsResponse) HasResponseMetadata added in v1.6.0

func (o *ListExecutionsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListExecutionsResponse) MarshalJSON added in v1.6.0

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

func (*ListExecutionsResponse) SetItems added in v1.6.0

func (o *ListExecutionsResponse) SetItems(v []Execution)

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

func (*ListExecutionsResponse) SetResponseMetadata added in v1.6.0

func (o *ListExecutionsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListExecutionsResponse) ToMap added in v1.6.0

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

type ListGroupsResponse added in v1.6.0

type ListGroupsResponse struct {
	Items            []DatasetGroup             `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListGroupsResponse struct for ListGroupsResponse

func NewListGroupsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListGroupsResponse) GetItems() []DatasetGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*ListGroupsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListGroupsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListGroupsResponse) HasResponseMetadata added in v1.6.0

func (o *ListGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListGroupsResponse) MarshalJSON added in v1.6.0

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

func (*ListGroupsResponse) SetItems added in v1.6.0

func (o *ListGroupsResponse) SetItems(v []DatasetGroup)

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

func (*ListGroupsResponse) SetResponseMetadata added in v1.6.0

func (o *ListGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListGroupsResponse) ToMap added in v1.6.0

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

type ListHashicorpVaultsResponse added in v1.2.0

type ListHashicorpVaultsResponse struct {
	Items            []HashicorpVault           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListHashicorpVaultsResponse struct for ListHashicorpVaultsResponse

func NewListHashicorpVaultsResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListHashicorpVaultsResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *ListHashicorpVaultsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListHashicorpVaultsResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *ListHashicorpVaultsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListHashicorpVaultsResponse) HasResponseMetadata added in v1.2.0

func (o *ListHashicorpVaultsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListHashicorpVaultsResponse) MarshalJSON added in v1.2.0

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

func (*ListHashicorpVaultsResponse) SetItems added in v1.2.0

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

func (*ListHashicorpVaultsResponse) SetResponseMetadata added in v1.2.0

func (o *ListHashicorpVaultsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListHashicorpVaultsResponse) ToMap added in v1.6.0

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

type ListJobsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListJobsResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ListJobsResponse) GetErrorsOk added in v1.6.0

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 added in v1.6.0

func (o *ListJobsResponse) GetItems() []Job

GetItems returns the Items field value if set, zero value otherwise.

func (*ListJobsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListJobsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListJobsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ListJobsResponse) HasItems added in v1.6.0

func (o *ListJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListJobsResponse) HasResponseMetadata added in v1.6.0

func (o *ListJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListJobsResponse) MarshalJSON added in v1.6.0

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

func (*ListJobsResponse) SetErrors added in v1.6.0

func (o *ListJobsResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ListJobsResponse) SetItems added in v1.6.0

func (o *ListJobsResponse) SetItems(v []Job)

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

func (*ListJobsResponse) SetResponseMetadata added in v1.6.0

func (o *ListJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListJobsResponse) ToMap added in v1.6.0

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

type ListMaskingJobSourceEnginesResponse added in v1.6.0

type ListMaskingJobSourceEnginesResponse struct {
	Items            []MaskingJobSourceEngine   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListMaskingJobSourceEnginesResponse struct for ListMaskingJobSourceEnginesResponse

func NewListMaskingJobSourceEnginesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListMaskingJobSourceEnginesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListMaskingJobSourceEnginesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

HasItems returns a boolean if a field has been set.

func (*ListMaskingJobSourceEnginesResponse) HasResponseMetadata added in v1.6.0

func (o *ListMaskingJobSourceEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListMaskingJobSourceEnginesResponse) MarshalJSON added in v1.6.0

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

func (*ListMaskingJobSourceEnginesResponse) SetItems added in v1.6.0

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

func (*ListMaskingJobSourceEnginesResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListMaskingJobSourceEnginesResponse) ToMap added in v1.6.0

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

type ListMaskingJobsResponse added in v1.6.0

type ListMaskingJobsResponse struct {
	Items            []MaskingJob               `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListMaskingJobsResponse struct for ListMaskingJobsResponse

func NewListMaskingJobsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListMaskingJobsResponse) GetItems() []MaskingJob

GetItems returns the Items field value if set, zero value otherwise.

func (*ListMaskingJobsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListMaskingJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListMaskingJobsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListMaskingJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListMaskingJobsResponse) HasResponseMetadata added in v1.6.0

func (o *ListMaskingJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListMaskingJobsResponse) MarshalJSON added in v1.6.0

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

func (*ListMaskingJobsResponse) SetItems added in v1.6.0

func (o *ListMaskingJobsResponse) SetItems(v []MaskingJob)

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

func (*ListMaskingJobsResponse) SetResponseMetadata added in v1.6.0

func (o *ListMaskingJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListMaskingJobsResponse) ToMap added in v1.6.0

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

type ListRegisteredEnginesResponse added in v1.2.0

type ListRegisteredEnginesResponse struct {
	Items            []RegisteredEngine         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListRegisteredEnginesResponse struct for ListRegisteredEnginesResponse

func NewListRegisteredEnginesResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListRegisteredEnginesResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListRegisteredEnginesResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *ListRegisteredEnginesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListRegisteredEnginesResponse) HasResponseMetadata added in v1.2.0

func (o *ListRegisteredEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListRegisteredEnginesResponse) MarshalJSON added in v1.2.0

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

func (*ListRegisteredEnginesResponse) SetItems added in v1.2.0

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

func (*ListRegisteredEnginesResponse) SetResponseMetadata added in v1.2.0

func (o *ListRegisteredEnginesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListRegisteredEnginesResponse) ToMap added in v1.6.0

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

type ListReportingScheduleResponse added in v1.2.0

type ListReportingScheduleResponse struct {
	Items            []ReportingSchedule        `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListReportingScheduleResponse struct for ListReportingScheduleResponse

func NewListReportingScheduleResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListReportingScheduleResponse) GetItemsOk added in v1.2.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListReportingScheduleResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.2.0

func (o *ListReportingScheduleResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListReportingScheduleResponse) HasResponseMetadata added in v1.6.0

func (o *ListReportingScheduleResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListReportingScheduleResponse) MarshalJSON added in v1.2.0

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

func (*ListReportingScheduleResponse) SetItems added in v1.2.0

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

func (*ListReportingScheduleResponse) SetResponseMetadata added in v1.6.0

func (o *ListReportingScheduleResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListReportingScheduleResponse) ToMap added in v1.6.0

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

type ListRolesResponse added in v1.6.0

type ListRolesResponse struct {
	Items []Role `json:"items,omitempty"`
}

ListRolesResponse struct for ListRolesResponse

func NewListRolesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListRolesResponse) GetItems() []Role

GetItems returns the Items field value if set, zero value otherwise.

func (*ListRolesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListRolesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListRolesResponse) MarshalJSON added in v1.6.0

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

func (*ListRolesResponse) SetItems added in v1.6.0

func (o *ListRolesResponse) SetItems(v []Role)

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

func (ListRolesResponse) ToMap added in v1.6.0

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

type ListSnapshotsResponse added in v1.2.0

type ListSnapshotsResponse struct {
	Items            []Snapshot                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListSnapshotsResponse struct for ListSnapshotsResponse

func NewListSnapshotsResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ListSnapshotsResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*ListSnapshotsResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *ListSnapshotsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListSnapshotsResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *ListSnapshotsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListSnapshotsResponse) HasResponseMetadata added in v1.2.0

func (o *ListSnapshotsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListSnapshotsResponse) MarshalJSON added in v1.2.0

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

func (*ListSnapshotsResponse) SetItems added in v1.2.0

func (o *ListSnapshotsResponse) SetItems(v []Snapshot)

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

func (*ListSnapshotsResponse) SetResponseMetadata added in v1.2.0

func (o *ListSnapshotsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListSnapshotsResponse) ToMap added in v1.6.0

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 added in v1.6.0

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

type ListTimeflowsResponse added in v1.6.0

type ListTimeflowsResponse struct {
	Items            []Timeflow                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListTimeflowsResponse struct for ListTimeflowsResponse

func NewListTimeflowsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListTimeflowsResponse) GetItems() []Timeflow

GetItems returns the Items field value if set, zero value otherwise.

func (*ListTimeflowsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListTimeflowsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListTimeflowsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListTimeflowsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListTimeflowsResponse) HasResponseMetadata added in v1.6.0

func (o *ListTimeflowsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListTimeflowsResponse) MarshalJSON added in v1.6.0

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

func (*ListTimeflowsResponse) SetItems added in v1.6.0

func (o *ListTimeflowsResponse) SetItems(v []Timeflow)

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

func (*ListTimeflowsResponse) SetResponseMetadata added in v1.6.0

func (o *ListTimeflowsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListTimeflowsResponse) ToMap added in v1.6.0

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

type ListVCDBsResponse added in v1.6.0

type ListVCDBsResponse struct {
	Items            []VCDB                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVCDBsResponse struct for ListVCDBsResponse

func NewListVCDBsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ListVCDBsResponse) GetItems() []VCDB

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVCDBsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *ListVCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVCDBsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *ListVCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVCDBsResponse) HasResponseMetadata added in v1.6.0

func (o *ListVCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVCDBsResponse) MarshalJSON added in v1.6.0

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

func (*ListVCDBsResponse) SetItems added in v1.6.0

func (o *ListVCDBsResponse) SetItems(v []VCDB)

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

func (*ListVCDBsResponse) SetResponseMetadata added in v1.6.0

func (o *ListVCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVCDBsResponse) ToMap added in v1.6.0

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 added in v1.2.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVDBGroupsByBookmarkResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVDBGroupsByBookmarkResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *ListVDBGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVDBGroupsResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ListVDBGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVDBGroupsResponse) ToMap added in v1.6.0

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 added in v1.6.0

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

type ListVirtualizationPoliciesResponse added in v1.6.0

type ListVirtualizationPoliciesResponse struct {
	Items            []VirtualizationPolicy     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

ListVirtualizationPoliciesResponse struct for ListVirtualizationPoliciesResponse

func NewListVirtualizationPoliciesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListVirtualizationPoliciesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*ListVirtualizationPoliciesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

HasItems returns a boolean if a field has been set.

func (*ListVirtualizationPoliciesResponse) HasResponseMetadata added in v1.6.0

func (o *ListVirtualizationPoliciesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (ListVirtualizationPoliciesResponse) MarshalJSON added in v1.6.0

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

func (*ListVirtualizationPoliciesResponse) SetItems added in v1.6.0

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

func (*ListVirtualizationPoliciesResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (ListVirtualizationPoliciesResponse) ToMap added in v1.6.0

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

type LoginApiService added in v1.6.0

type LoginApiService service

LoginApiService LoginApi service

func (*LoginApiService) AccountLogin added in v1.6.0

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 added in v1.6.0

func (a *LoginApiService) AccountLoginExecute(r ApiAccountLoginRequest) (*LoginToken, *http.Response, error)

Execute executes the request

@return LoginToken

func (*LoginApiService) TokenInfo added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TokenInfoResponse

type LoginToken added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *LoginToken) GetAccessToken() string

GetAccessToken returns the AccessToken field value

func (*LoginToken) GetAccessTokenOk added in v1.6.0

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 added in v1.6.0

func (o *LoginToken) GetExpiresIn() int64

GetExpiresIn returns the ExpiresIn field value

func (*LoginToken) GetExpiresInOk added in v1.6.0

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 added in v1.6.0

func (o *LoginToken) GetTokenType() string

GetTokenType returns the TokenType field value

func (*LoginToken) GetTokenTypeOk added in v1.6.0

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 added in v1.6.0

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

func (*LoginToken) SetAccessToken added in v1.6.0

func (o *LoginToken) SetAccessToken(v string)

SetAccessToken sets field value

func (*LoginToken) SetExpiresIn added in v1.6.0

func (o *LoginToken) SetExpiresIn(v int64)

SetExpiresIn sets field value

func (*LoginToken) SetTokenType added in v1.6.0

func (o *LoginToken) SetTokenType(v string)

SetTokenType sets field value

func (LoginToken) ToMap added in v1.6.0

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

type ManagementApiService

type ManagementApiService service

ManagementApiService ManagementApi service

func (*ManagementApiService) CreateEngineTags added in v1.2.0

func (a *ManagementApiService) CreateEngineTags(ctx context.Context, engineId string) ApiCreateEngineTagsRequest

CreateEngineTags Create 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 ApiCreateEngineTagsRequest

func (*ManagementApiService) CreateEngineTagsExecute added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

func (a *ManagementApiService) CreateHashicorpVaultTagsExecute(r ApiCreateHashicorpVaultTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ManagementApiService) DeleteEngineTags added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

func (a *ManagementApiService) DeleteHashicorpVaultTagExecute(r ApiDeleteHashicorpVaultTagRequest) (*http.Response, error)

Execute executes the request

func (*ManagementApiService) GetApiClassification added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return APIClassificationConfig

func (*ManagementApiService) GetEngineTags added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return LDAPConfigParams

func (*ManagementApiService) GetMetadataDatabase added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return MetadataDbInfo

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SAMLConfigParams

func (*ManagementApiService) GetSmtpConfig added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SMTPConfigParams

func (*ManagementApiService) ListProperties added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchEnginesResponse

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return APIClassificationConfig

func (*ManagementApiService) UpdateLdapConfig added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return LDAPConfigParams

func (*ManagementApiService) UpdateProperties added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return GlobalProperties

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SAMLConfigParams

func (*ManagementApiService) UpdateSmtpConfig added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SMTPConfigParams

func (*ManagementApiService) ValidateLdapConfig added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return LdapValidateResponse

func (*ManagementApiService) ValidateSmtpConfig added in v1.2.0

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 added in v1.2.0

func (a *ManagementApiService) ValidateSmtpConfigExecute(r ApiValidateSmtpConfigRequest) (*http.Response, error)

Execute executes the request

type MappedNullable added in v1.6.0

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

type MaskingJob added in v1.6.0

type MaskingJob struct {
	// The MaskingJob entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this MaskingJob.
	Name    *string         `json:"name,omitempty"`
	Ruleset *MaskingRuleset `json:"ruleset,omitempty"`
	// Whether this is an on-the-fly masking job.
	IsOnTheFlyMasking *bool `json:"is_on_the_fly_masking,omitempty"`
	// The date this MaskingJob was created.
	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 username of the Connector used by the MaskingJob.
	ConnectorUsername NullableString `json:"connector_username,omitempty"`
	// The password of the Connector used by the MaskingJob.
	ConnectorPassword NullableString `json:"connector_password,omitempty"`
	// The username of the source Connector used by the on-the-fly MaskingJob.
	OnTheFlySourceConnectorUsername NullableString `json:"on_the_fly_source_connector_username,omitempty"`
	// The password of the source Connector used by the on-the-fly MaskingJob.
	OnTheFlySourceConnectorPassword NullableString `json:"on_the_fly_source_connector_password,omitempty"`
	Tags                            []Tag          `json:"tags,omitempty"`
}

MaskingJob A masking job.

func NewMaskingJob added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) GetConnectorUsername added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*MaskingJob) GetCreationDateOk added in v1.6.0

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) GetId added in v1.6.0

func (o *MaskingJob) GetId() string

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

func (*MaskingJob) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJob) GetIsOnTheFlyMasking() bool

GetIsOnTheFlyMasking returns the IsOnTheFlyMasking field value if set, zero value otherwise.

func (*MaskingJob) GetIsOnTheFlyMaskingOk added in v1.6.0

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) GetLastCompletedExecutionDate added in v1.6.0

func (o *MaskingJob) GetLastCompletedExecutionDate() time.Time

GetLastCompletedExecutionDate returns the LastCompletedExecutionDate field value if set, zero value otherwise.

func (*MaskingJob) GetLastCompletedExecutionDateOk added in v1.6.0

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) GetLastExecutionStatus added in v1.6.0

func (o *MaskingJob) GetLastExecutionStatus() string

GetLastExecutionStatus returns the LastExecutionStatus field value if set, zero value otherwise.

func (*MaskingJob) GetLastExecutionStatusOk added in v1.6.0

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) GetName added in v1.6.0

func (o *MaskingJob) GetName() string

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

func (*MaskingJob) GetNameOk added in v1.6.0

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) GetOnTheFlySourceConnectorPassword added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) GetRuleset added in v1.6.0

func (o *MaskingJob) GetRuleset() MaskingRuleset

GetRuleset returns the Ruleset field value if set, zero value otherwise.

func (*MaskingJob) GetRulesetOk added in v1.6.0

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) GetTags added in v1.6.0

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

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

func (*MaskingJob) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJob) HasConnectorPassword() bool

HasConnectorPassword returns a boolean if a field has been set.

func (*MaskingJob) HasConnectorUsername added in v1.6.0

func (o *MaskingJob) HasConnectorUsername() bool

HasConnectorUsername returns a boolean if a field has been set.

func (*MaskingJob) HasCreationDate added in v1.6.0

func (o *MaskingJob) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*MaskingJob) HasId added in v1.6.0

func (o *MaskingJob) HasId() bool

HasId returns a boolean if a field has been set.

func (*MaskingJob) HasIsOnTheFlyMasking added in v1.6.0

func (o *MaskingJob) HasIsOnTheFlyMasking() bool

HasIsOnTheFlyMasking returns a boolean if a field has been set.

func (*MaskingJob) HasLastCompletedExecutionDate added in v1.6.0

func (o *MaskingJob) HasLastCompletedExecutionDate() bool

HasLastCompletedExecutionDate returns a boolean if a field has been set.

func (*MaskingJob) HasLastExecutionStatus added in v1.6.0

func (o *MaskingJob) HasLastExecutionStatus() bool

HasLastExecutionStatus returns a boolean if a field has been set.

func (*MaskingJob) HasName added in v1.6.0

func (o *MaskingJob) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaskingJob) HasOnTheFlySourceConnectorPassword added in v1.6.0

func (o *MaskingJob) HasOnTheFlySourceConnectorPassword() bool

HasOnTheFlySourceConnectorPassword returns a boolean if a field has been set.

func (*MaskingJob) HasOnTheFlySourceConnectorUsername added in v1.6.0

func (o *MaskingJob) HasOnTheFlySourceConnectorUsername() bool

HasOnTheFlySourceConnectorUsername returns a boolean if a field has been set.

func (*MaskingJob) HasRuleset added in v1.6.0

func (o *MaskingJob) HasRuleset() bool

HasRuleset returns a boolean if a field has been set.

func (*MaskingJob) HasTags added in v1.6.0

func (o *MaskingJob) HasTags() bool

HasTags returns a boolean if a field has been set.

func (MaskingJob) MarshalJSON added in v1.6.0

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

func (*MaskingJob) SetConnectorPassword added in v1.6.0

func (o *MaskingJob) SetConnectorPassword(v string)

SetConnectorPassword gets a reference to the given NullableString and assigns it to the ConnectorPassword field.

func (*MaskingJob) SetConnectorPasswordNil added in v1.6.0

func (o *MaskingJob) SetConnectorPasswordNil()

SetConnectorPasswordNil sets the value for ConnectorPassword to be an explicit nil

func (*MaskingJob) SetConnectorUsername added in v1.6.0

func (o *MaskingJob) SetConnectorUsername(v string)

SetConnectorUsername gets a reference to the given NullableString and assigns it to the ConnectorUsername field.

func (*MaskingJob) SetConnectorUsernameNil added in v1.6.0

func (o *MaskingJob) SetConnectorUsernameNil()

SetConnectorUsernameNil sets the value for ConnectorUsername to be an explicit nil

func (*MaskingJob) SetCreationDate added in v1.6.0

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) SetId added in v1.6.0

func (o *MaskingJob) SetId(v string)

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

func (*MaskingJob) SetIsOnTheFlyMasking added in v1.6.0

func (o *MaskingJob) SetIsOnTheFlyMasking(v bool)

SetIsOnTheFlyMasking gets a reference to the given bool and assigns it to the IsOnTheFlyMasking field.

func (*MaskingJob) SetLastCompletedExecutionDate added in v1.6.0

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) SetLastExecutionStatus added in v1.6.0

func (o *MaskingJob) SetLastExecutionStatus(v string)

SetLastExecutionStatus gets a reference to the given string and assigns it to the LastExecutionStatus field.

func (*MaskingJob) SetName added in v1.6.0

func (o *MaskingJob) SetName(v string)

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

func (*MaskingJob) SetOnTheFlySourceConnectorPassword added in v1.6.0

func (o *MaskingJob) SetOnTheFlySourceConnectorPassword(v string)

SetOnTheFlySourceConnectorPassword gets a reference to the given NullableString and assigns it to the OnTheFlySourceConnectorPassword field.

func (*MaskingJob) SetOnTheFlySourceConnectorPasswordNil added in v1.6.0

func (o *MaskingJob) SetOnTheFlySourceConnectorPasswordNil()

SetOnTheFlySourceConnectorPasswordNil sets the value for OnTheFlySourceConnectorPassword to be an explicit nil

func (*MaskingJob) SetOnTheFlySourceConnectorUsername added in v1.6.0

func (o *MaskingJob) SetOnTheFlySourceConnectorUsername(v string)

SetOnTheFlySourceConnectorUsername gets a reference to the given NullableString and assigns it to the OnTheFlySourceConnectorUsername field.

func (*MaskingJob) SetOnTheFlySourceConnectorUsernameNil added in v1.6.0

func (o *MaskingJob) SetOnTheFlySourceConnectorUsernameNil()

SetOnTheFlySourceConnectorUsernameNil sets the value for OnTheFlySourceConnectorUsername to be an explicit nil

func (*MaskingJob) SetRuleset added in v1.6.0

func (o *MaskingJob) SetRuleset(v MaskingRuleset)

SetRuleset gets a reference to the given MaskingRuleset and assigns it to the Ruleset field.

func (*MaskingJob) SetTags added in v1.6.0

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

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

func (MaskingJob) ToMap added in v1.6.0

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

func (*MaskingJob) UnsetConnectorPassword added in v1.6.0

func (o *MaskingJob) UnsetConnectorPassword()

UnsetConnectorPassword ensures that no value is present for ConnectorPassword, not even an explicit nil

func (*MaskingJob) UnsetConnectorUsername added in v1.6.0

func (o *MaskingJob) UnsetConnectorUsername()

UnsetConnectorUsername ensures that no value is present for ConnectorUsername, not even an explicit nil

func (*MaskingJob) UnsetOnTheFlySourceConnectorPassword added in v1.6.0

func (o *MaskingJob) UnsetOnTheFlySourceConnectorPassword()

UnsetOnTheFlySourceConnectorPassword ensures that no value is present for OnTheFlySourceConnectorPassword, not even an explicit nil

func (*MaskingJob) UnsetOnTheFlySourceConnectorUsername added in v1.6.0

func (o *MaskingJob) UnsetOnTheFlySourceConnectorUsername()

UnsetOnTheFlySourceConnectorUsername ensures that no value is present for OnTheFlySourceConnectorUsername, not even an explicit nil

type MaskingJobConnectorsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobConnectorsResponse) GetConnector() Connector

GetConnector returns the Connector field value if set, zero value otherwise.

func (*MaskingJobConnectorsResponse) GetConnectorOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobConnectorsResponse) GetOnTheFlyConnector() Connector

GetOnTheFlyConnector returns the OnTheFlyConnector field value if set, zero value otherwise.

func (*MaskingJobConnectorsResponse) GetOnTheFlyConnectorOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobConnectorsResponse) HasConnector() bool

HasConnector returns a boolean if a field has been set.

func (*MaskingJobConnectorsResponse) HasOnTheFlyConnector added in v1.6.0

func (o *MaskingJobConnectorsResponse) HasOnTheFlyConnector() bool

HasOnTheFlyConnector returns a boolean if a field has been set.

func (MaskingJobConnectorsResponse) MarshalJSON added in v1.6.0

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

func (*MaskingJobConnectorsResponse) SetConnector added in v1.6.0

func (o *MaskingJobConnectorsResponse) SetConnector(v Connector)

SetConnector gets a reference to the given Connector and assigns it to the Connector field.

func (*MaskingJobConnectorsResponse) SetOnTheFlyConnector added in v1.6.0

func (o *MaskingJobConnectorsResponse) SetOnTheFlyConnector(v Connector)

SetOnTheFlyConnector gets a reference to the given Connector and assigns it to the OnTheFlyConnector field.

func (MaskingJobConnectorsResponse) ToMap added in v1.6.0

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

type MaskingJobSourceEngine added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobSourceEngine) GetMaskingJobId() string

GetMaskingJobId returns the MaskingJobId field value if set, zero value otherwise.

func (*MaskingJobSourceEngine) GetMaskingJobIdOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobSourceEngine) GetSourceEngineId() string

GetSourceEngineId returns the SourceEngineId field value if set, zero value otherwise.

func (*MaskingJobSourceEngine) GetSourceEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingJobSourceEngine) HasMaskingJobId() bool

HasMaskingJobId returns a boolean if a field has been set.

func (*MaskingJobSourceEngine) HasSourceEngineId added in v1.6.0

func (o *MaskingJobSourceEngine) HasSourceEngineId() bool

HasSourceEngineId returns a boolean if a field has been set.

func (MaskingJobSourceEngine) MarshalJSON added in v1.6.0

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

func (*MaskingJobSourceEngine) SetMaskingJobId added in v1.6.0

func (o *MaskingJobSourceEngine) SetMaskingJobId(v string)

SetMaskingJobId gets a reference to the given string and assigns it to the MaskingJobId field.

func (*MaskingJobSourceEngine) SetSourceEngineId added in v1.6.0

func (o *MaskingJobSourceEngine) SetSourceEngineId(v string)

SetSourceEngineId gets a reference to the given string and assigns it to the SourceEngineId field.

func (MaskingJobSourceEngine) ToMap added in v1.6.0

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

type MaskingJobsApiService added in v1.6.0

type MaskingJobsApiService service

MaskingJobsApiService MaskingJobsApi service

func (*MaskingJobsApiService) CopyMaskingJob added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return CopyMaskingJobResponse

func (*MaskingJobsApiService) CreateMaskingJobTag added in v1.6.0

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 added in v1.6.0

func (a *MaskingJobsApiService) CreateMaskingJobTagExecute(r ApiCreateMaskingJobTagRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*MaskingJobsApiService) DeleteMaskingJob added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DeleteMaskingJobResponse

func (*MaskingJobsApiService) DeleteMaskingJobTag added in v1.6.0

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 added in v1.6.0

func (a *MaskingJobsApiService) DeleteMaskingJobTagExecute(r ApiDeleteMaskingJobTagRequest) (*http.Response, error)

Execute executes the request

func (*MaskingJobsApiService) ExecuteMaskingJob added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ExecuteMaskingJobResponse

func (*MaskingJobsApiService) GetMaskingJobById added in v1.6.0

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 added in v1.6.0

func (a *MaskingJobsApiService) GetMaskingJobByIdExecute(r ApiGetMaskingJobByIdRequest) (*MaskingJob, *http.Response, error)

Execute executes the request

@return MaskingJob

func (*MaskingJobsApiService) GetMaskingJobConnectors added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return MaskingJobConnectorsResponse

func (*MaskingJobsApiService) GetMaskingJobSourceEngines added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListMaskingJobSourceEnginesResponse

func (*MaskingJobsApiService) GetMaskingJobTag added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return TagsResponse

func (*MaskingJobsApiService) GetMaskingJobs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListMaskingJobsResponse

func (*MaskingJobsApiService) MigrateMaskingJob added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return MigrateMaskingJobResponse

func (*MaskingJobsApiService) SearchMaskingJobSourceEngines added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchMaskingJobSourceEnginesResponse

func (*MaskingJobsApiService) SearchMaskingJobs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchMaskingJobsResponse

func (*MaskingJobsApiService) UpdateMaskingJobById added in v1.6.0

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 added in v1.6.0

func (a *MaskingJobsApiService) UpdateMaskingJobByIdExecute(r ApiUpdateMaskingJobByIdRequest) (*MaskingJob, *http.Response, error)

Execute executes the request

@return MaskingJob

type MaskingRuleset added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MaskingRuleset) GetAlgorithms() []string

GetAlgorithms returns the Algorithms field value if set, zero value otherwise.

func (*MaskingRuleset) GetAlgorithmsOk added in v1.6.0

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 added in v1.6.0

func (o *MaskingRuleset) GetName() string

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

func (*MaskingRuleset) GetNameOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MaskingRuleset) HasAlgorithms() bool

HasAlgorithms returns a boolean if a field has been set.

func (*MaskingRuleset) HasName added in v1.6.0

func (o *MaskingRuleset) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaskingRuleset) HasRefreshDropsTables added in v1.6.0

func (o *MaskingRuleset) HasRefreshDropsTables() bool

HasRefreshDropsTables returns a boolean if a field has been set.

func (*MaskingRuleset) HasType added in v1.6.0

func (o *MaskingRuleset) HasType() bool

HasType returns a boolean if a field has been set.

func (MaskingRuleset) MarshalJSON added in v1.6.0

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

func (*MaskingRuleset) SetAlgorithms added in v1.6.0

func (o *MaskingRuleset) SetAlgorithms(v []string)

SetAlgorithms gets a reference to the given []string and assigns it to the Algorithms field.

func (*MaskingRuleset) SetName added in v1.6.0

func (o *MaskingRuleset) SetName(v string)

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

func (*MaskingRuleset) SetRefreshDropsTables added in v1.6.0

func (o *MaskingRuleset) SetRefreshDropsTables(v bool)

SetRefreshDropsTables gets a reference to the given NullableBool and assigns it to the RefreshDropsTables field.

func (*MaskingRuleset) SetRefreshDropsTablesNil added in v1.6.0

func (o *MaskingRuleset) SetRefreshDropsTablesNil()

SetRefreshDropsTablesNil sets the value for RefreshDropsTables to be an explicit nil

func (*MaskingRuleset) SetType added in v1.6.0

func (o *MaskingRuleset) SetType(v string)

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

func (*MaskingRuleset) SetTypeNil added in v1.6.0

func (o *MaskingRuleset) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (MaskingRuleset) ToMap added in v1.6.0

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

func (*MaskingRuleset) UnsetRefreshDropsTables added in v1.6.0

func (o *MaskingRuleset) UnsetRefreshDropsTables()

UnsetRefreshDropsTables ensures that no value is present for RefreshDropsTables, not even an explicit nil

func (*MaskingRuleset) UnsetType added in v1.6.0

func (o *MaskingRuleset) UnsetType()

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

type MetadataDbInfo added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetCompatible() bool

GetCompatible returns the Compatible field value if set, zero value otherwise.

func (*MetadataDbInfo) GetCompatibleOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetDatabaseProductName() string

GetDatabaseProductName returns the DatabaseProductName field value if set, zero value otherwise.

func (*MetadataDbInfo) GetDatabaseProductNameOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetExternal() bool

GetExternal returns the External field value if set, zero value otherwise.

func (*MetadataDbInfo) GetExternalOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMajorVersion() int32

GetMajorVersion returns the MajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMajorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMaxSupportedMajorVersion() int32

GetMaxSupportedMajorVersion returns the MaxSupportedMajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMaxSupportedMajorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMaxSupportedMinorVersion() int32

GetMaxSupportedMinorVersion returns the MaxSupportedMinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMaxSupportedMinorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMinSupportedMajorVersion() int32

GetMinSupportedMajorVersion returns the MinSupportedMajorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinSupportedMajorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMinSupportedMinorVersion() int32

GetMinSupportedMinorVersion returns the MinSupportedMinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinSupportedMinorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetMinorVersion() int32

GetMinorVersion returns the MinorVersion field value if set, zero value otherwise.

func (*MetadataDbInfo) GetMinorVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) GetVersion() string

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

func (*MetadataDbInfo) GetVersionOk added in v1.6.0

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 added in v1.6.0

func (o *MetadataDbInfo) HasCompatible() bool

HasCompatible returns a boolean if a field has been set.

func (*MetadataDbInfo) HasDatabaseProductName added in v1.6.0

func (o *MetadataDbInfo) HasDatabaseProductName() bool

HasDatabaseProductName returns a boolean if a field has been set.

func (*MetadataDbInfo) HasExternal added in v1.6.0

func (o *MetadataDbInfo) HasExternal() bool

HasExternal returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMajorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMajorVersion() bool

HasMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMaxSupportedMajorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMaxSupportedMajorVersion() bool

HasMaxSupportedMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMaxSupportedMinorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMaxSupportedMinorVersion() bool

HasMaxSupportedMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinSupportedMajorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMinSupportedMajorVersion() bool

HasMinSupportedMajorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinSupportedMinorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMinSupportedMinorVersion() bool

HasMinSupportedMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasMinorVersion added in v1.6.0

func (o *MetadataDbInfo) HasMinorVersion() bool

HasMinorVersion returns a boolean if a field has been set.

func (*MetadataDbInfo) HasVersion added in v1.6.0

func (o *MetadataDbInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (MetadataDbInfo) MarshalJSON added in v1.6.0

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

func (*MetadataDbInfo) SetCompatible added in v1.6.0

func (o *MetadataDbInfo) SetCompatible(v bool)

SetCompatible gets a reference to the given bool and assigns it to the Compatible field.

func (*MetadataDbInfo) SetDatabaseProductName added in v1.6.0

func (o *MetadataDbInfo) SetDatabaseProductName(v string)

SetDatabaseProductName gets a reference to the given string and assigns it to the DatabaseProductName field.

func (*MetadataDbInfo) SetExternal added in v1.6.0

func (o *MetadataDbInfo) SetExternal(v bool)

SetExternal gets a reference to the given bool and assigns it to the External field.

func (*MetadataDbInfo) SetMajorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMajorVersion(v int32)

SetMajorVersion gets a reference to the given int32 and assigns it to the MajorVersion field.

func (*MetadataDbInfo) SetMaxSupportedMajorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMaxSupportedMajorVersion(v int32)

SetMaxSupportedMajorVersion gets a reference to the given int32 and assigns it to the MaxSupportedMajorVersion field.

func (*MetadataDbInfo) SetMaxSupportedMinorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMaxSupportedMinorVersion(v int32)

SetMaxSupportedMinorVersion gets a reference to the given int32 and assigns it to the MaxSupportedMinorVersion field.

func (*MetadataDbInfo) SetMinSupportedMajorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMinSupportedMajorVersion(v int32)

SetMinSupportedMajorVersion gets a reference to the given int32 and assigns it to the MinSupportedMajorVersion field.

func (*MetadataDbInfo) SetMinSupportedMinorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMinSupportedMinorVersion(v int32)

SetMinSupportedMinorVersion gets a reference to the given int32 and assigns it to the MinSupportedMinorVersion field.

func (*MetadataDbInfo) SetMinorVersion added in v1.6.0

func (o *MetadataDbInfo) SetMinorVersion(v int32)

SetMinorVersion gets a reference to the given int32 and assigns it to the MinorVersion field.

func (*MetadataDbInfo) SetVersion added in v1.6.0

func (o *MetadataDbInfo) SetVersion(v string)

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

func (MetadataDbInfo) ToMap added in v1.6.0

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

type MigrateMaskingJobParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobParameters) GetSourceEnvironmentId() string

GetSourceEnvironmentId returns the SourceEnvironmentId field value if set, zero value otherwise.

func (*MigrateMaskingJobParameters) GetSourceEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobParameters) GetTargetEngineId() string

GetTargetEngineId returns the TargetEngineId field value

func (*MigrateMaskingJobParameters) GetTargetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobParameters) GetTargetEnvironmentId() string

GetTargetEnvironmentId returns the TargetEnvironmentId field value if set, zero value otherwise.

func (*MigrateMaskingJobParameters) GetTargetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobParameters) HasSourceEnvironmentId() bool

HasSourceEnvironmentId returns a boolean if a field has been set.

func (*MigrateMaskingJobParameters) HasTargetEnvironmentId added in v1.6.0

func (o *MigrateMaskingJobParameters) HasTargetEnvironmentId() bool

HasTargetEnvironmentId returns a boolean if a field has been set.

func (MigrateMaskingJobParameters) MarshalJSON added in v1.6.0

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

func (*MigrateMaskingJobParameters) SetSourceEnvironmentId added in v1.6.0

func (o *MigrateMaskingJobParameters) SetSourceEnvironmentId(v string)

SetSourceEnvironmentId gets a reference to the given string and assigns it to the SourceEnvironmentId field.

func (*MigrateMaskingJobParameters) SetTargetEngineId added in v1.6.0

func (o *MigrateMaskingJobParameters) SetTargetEngineId(v string)

SetTargetEngineId sets field value

func (*MigrateMaskingJobParameters) SetTargetEnvironmentId added in v1.6.0

func (o *MigrateMaskingJobParameters) SetTargetEnvironmentId(v string)

SetTargetEnvironmentId gets a reference to the given string and assigns it to the TargetEnvironmentId field.

func (MigrateMaskingJobParameters) ToMap added in v1.6.0

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

type MigrateMaskingJobResponse added in v1.6.0

type MigrateMaskingJobResponse struct {
	Job *Job `json:"job,omitempty"`
}

MigrateMaskingJobResponse struct for MigrateMaskingJobResponse

func NewMigrateMaskingJobResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*MigrateMaskingJobResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *MigrateMaskingJobResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (MigrateMaskingJobResponse) MarshalJSON added in v1.6.0

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

func (*MigrateMaskingJobResponse) SetJob added in v1.6.0

func (o *MigrateMaskingJobResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (MigrateMaskingJobResponse) ToMap added in v1.6.0

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

type NullableAPIClassificationConfig added in v1.6.0

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

func NewNullableAPIClassificationConfig added in v1.6.0

func NewNullableAPIClassificationConfig(val *APIClassificationConfig) *NullableAPIClassificationConfig

func (NullableAPIClassificationConfig) Get added in v1.6.0

func (NullableAPIClassificationConfig) IsSet added in v1.6.0

func (NullableAPIClassificationConfig) MarshalJSON added in v1.6.0

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

func (*NullableAPIClassificationConfig) Set added in v1.6.0

func (*NullableAPIClassificationConfig) UnmarshalJSON added in v1.6.0

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

func (*NullableAPIClassificationConfig) Unset added in v1.6.0

type NullableAccessGroup added in v1.6.0

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

func NewNullableAccessGroup added in v1.6.0

func NewNullableAccessGroup(val *AccessGroup) *NullableAccessGroup

func (NullableAccessGroup) Get added in v1.6.0

func (NullableAccessGroup) IsSet added in v1.6.0

func (v NullableAccessGroup) IsSet() bool

func (NullableAccessGroup) MarshalJSON added in v1.6.0

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

func (*NullableAccessGroup) Set added in v1.6.0

func (v *NullableAccessGroup) Set(val *AccessGroup)

func (*NullableAccessGroup) UnmarshalJSON added in v1.6.0

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

func (*NullableAccessGroup) Unset added in v1.6.0

func (v *NullableAccessGroup) Unset()

type NullableAccessGroupAccountIdsRequest added in v1.6.0

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

func NewNullableAccessGroupAccountIdsRequest added in v1.6.0

func NewNullableAccessGroupAccountIdsRequest(val *AccessGroupAccountIdsRequest) *NullableAccessGroupAccountIdsRequest

func (NullableAccessGroupAccountIdsRequest) Get added in v1.6.0

func (NullableAccessGroupAccountIdsRequest) IsSet added in v1.6.0

func (NullableAccessGroupAccountIdsRequest) MarshalJSON added in v1.6.0

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

func (*NullableAccessGroupAccountIdsRequest) Set added in v1.6.0

func (*NullableAccessGroupAccountIdsRequest) UnmarshalJSON added in v1.6.0

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

func (*NullableAccessGroupAccountIdsRequest) Unset added in v1.6.0

type NullableAccessGroupScope added in v1.6.0

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

func NewNullableAccessGroupScope added in v1.6.0

func NewNullableAccessGroupScope(val *AccessGroupScope) *NullableAccessGroupScope

func (NullableAccessGroupScope) Get added in v1.6.0

func (NullableAccessGroupScope) IsSet added in v1.6.0

func (v NullableAccessGroupScope) IsSet() bool

func (NullableAccessGroupScope) MarshalJSON added in v1.6.0

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

func (*NullableAccessGroupScope) Set added in v1.6.0

func (*NullableAccessGroupScope) UnmarshalJSON added in v1.6.0

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

func (*NullableAccessGroupScope) Unset added in v1.6.0

func (v *NullableAccessGroupScope) Unset()

type NullableAccessGroupScopesRequest added in v1.6.0

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

func NewNullableAccessGroupScopesRequest added in v1.6.0

func NewNullableAccessGroupScopesRequest(val *AccessGroupScopesRequest) *NullableAccessGroupScopesRequest

func (NullableAccessGroupScopesRequest) Get added in v1.6.0

func (NullableAccessGroupScopesRequest) IsSet added in v1.6.0

func (NullableAccessGroupScopesRequest) MarshalJSON added in v1.6.0

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

func (*NullableAccessGroupScopesRequest) Set added in v1.6.0

func (*NullableAccessGroupScopesRequest) UnmarshalJSON added in v1.6.0

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

func (*NullableAccessGroupScopesRequest) Unset added in v1.6.0

type NullableAccessGroupUpdateParameters added in v1.6.0

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

func NewNullableAccessGroupUpdateParameters added in v1.6.0

func NewNullableAccessGroupUpdateParameters(val *AccessGroupUpdateParameters) *NullableAccessGroupUpdateParameters

func (NullableAccessGroupUpdateParameters) Get added in v1.6.0

func (NullableAccessGroupUpdateParameters) IsSet added in v1.6.0

func (NullableAccessGroupUpdateParameters) MarshalJSON added in v1.6.0

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

func (*NullableAccessGroupUpdateParameters) Set added in v1.6.0

func (*NullableAccessGroupUpdateParameters) UnmarshalJSON added in v1.6.0

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

func (*NullableAccessGroupUpdateParameters) Unset added in v1.6.0

type NullableAccount added in v1.6.0

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

func NewNullableAccount added in v1.6.0

func NewNullableAccount(val *Account) *NullableAccount

func (NullableAccount) Get added in v1.6.0

func (v NullableAccount) Get() *Account

func (NullableAccount) IsSet added in v1.6.0

func (v NullableAccount) IsSet() bool

func (NullableAccount) MarshalJSON added in v1.6.0

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

func (*NullableAccount) Set added in v1.6.0

func (v *NullableAccount) Set(val *Account)

func (*NullableAccount) UnmarshalJSON added in v1.6.0

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

func (*NullableAccount) Unset added in v1.6.0

func (v *NullableAccount) Unset()

type NullableAccountCreateParameter added in v1.6.0

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

func NewNullableAccountCreateParameter added in v1.6.0

func NewNullableAccountCreateParameter(val *AccountCreateParameter) *NullableAccountCreateParameter

func (NullableAccountCreateParameter) Get added in v1.6.0

func (NullableAccountCreateParameter) IsSet added in v1.6.0

func (NullableAccountCreateParameter) MarshalJSON added in v1.6.0

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

func (*NullableAccountCreateParameter) Set added in v1.6.0

func (*NullableAccountCreateParameter) UnmarshalJSON added in v1.6.0

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

func (*NullableAccountCreateParameter) Unset added in v1.6.0

func (v *NullableAccountCreateParameter) Unset()

type NullableAccountCreateResponse added in v1.6.0

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

func NewNullableAccountCreateResponse added in v1.6.0

func NewNullableAccountCreateResponse(val *AccountCreateResponse) *NullableAccountCreateResponse

func (NullableAccountCreateResponse) Get added in v1.6.0

func (NullableAccountCreateResponse) IsSet added in v1.6.0

func (NullableAccountCreateResponse) MarshalJSON added in v1.6.0

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

func (*NullableAccountCreateResponse) Set added in v1.6.0

func (*NullableAccountCreateResponse) UnmarshalJSON added in v1.6.0

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

func (*NullableAccountCreateResponse) Unset added in v1.6.0

func (v *NullableAccountCreateResponse) Unset()

type NullableAccountLoginParameter added in v1.6.0

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

func NewNullableAccountLoginParameter added in v1.6.0

func NewNullableAccountLoginParameter(val *AccountLoginParameter) *NullableAccountLoginParameter

func (NullableAccountLoginParameter) Get added in v1.6.0

func (NullableAccountLoginParameter) IsSet added in v1.6.0

func (NullableAccountLoginParameter) MarshalJSON added in v1.6.0

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

func (*NullableAccountLoginParameter) Set added in v1.6.0

func (*NullableAccountLoginParameter) UnmarshalJSON added in v1.6.0

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

func (*NullableAccountLoginParameter) Unset added in v1.6.0

func (v *NullableAccountLoginParameter) Unset()

type NullableAccountUpdateParameter added in v1.6.0

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

func NewNullableAccountUpdateParameter added in v1.6.0

func NewNullableAccountUpdateParameter(val *AccountUpdateParameter) *NullableAccountUpdateParameter

func (NullableAccountUpdateParameter) Get added in v1.6.0

func (NullableAccountUpdateParameter) IsSet added in v1.6.0

func (NullableAccountUpdateParameter) MarshalJSON added in v1.6.0

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

func (*NullableAccountUpdateParameter) Set added in v1.6.0

func (*NullableAccountUpdateParameter) UnmarshalJSON added in v1.6.0

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

func (*NullableAccountUpdateParameter) Unset added in v1.6.0

func (v *NullableAccountUpdateParameter) Unset()

type NullableAdditionalMountPoint added in v1.6.0

type NullableAdditionalMountPoint struct {
	// contains filtered or unexported fields
}

func NewNullableAdditionalMountPoint added in v1.6.0

func NewNullableAdditionalMountPoint(val *AdditionalMountPoint) *NullableAdditionalMountPoint

func (NullableAdditionalMountPoint) Get added in v1.6.0

func (NullableAdditionalMountPoint) IsSet added in v1.6.0

func (NullableAdditionalMountPoint) MarshalJSON added in v1.6.0

func (v NullableAdditionalMountPoint) MarshalJSON() ([]byte, error)

func (*NullableAdditionalMountPoint) Set added in v1.6.0

func (*NullableAdditionalMountPoint) UnmarshalJSON added in v1.6.0

func (v *NullableAdditionalMountPoint) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMountPoint) Unset added in v1.6.0

func (v *NullableAdditionalMountPoint) Unset()

type NullableAllObjectPermissionsResponse added in v1.6.0

type NullableAllObjectPermissionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAllObjectPermissionsResponse added in v1.6.0

func NewNullableAllObjectPermissionsResponse(val *AllObjectPermissionsResponse) *NullableAllObjectPermissionsResponse

func (NullableAllObjectPermissionsResponse) Get added in v1.6.0

func (NullableAllObjectPermissionsResponse) IsSet added in v1.6.0

func (NullableAllObjectPermissionsResponse) MarshalJSON added in v1.6.0

func (v NullableAllObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*NullableAllObjectPermissionsResponse) Set added in v1.6.0

func (*NullableAllObjectPermissionsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableAllObjectPermissionsResponse) UnmarshalJSON(src []byte) error

func (*NullableAllObjectPermissionsResponse) Unset added in v1.6.0

type NullableAlwaysAllowedPermission added in v1.6.0

type NullableAlwaysAllowedPermission struct {
	// contains filtered or unexported fields
}

func NewNullableAlwaysAllowedPermission added in v1.6.0

func NewNullableAlwaysAllowedPermission(val *AlwaysAllowedPermission) *NullableAlwaysAllowedPermission

func (NullableAlwaysAllowedPermission) Get added in v1.6.0

func (NullableAlwaysAllowedPermission) IsSet added in v1.6.0

func (NullableAlwaysAllowedPermission) MarshalJSON added in v1.6.0

func (v NullableAlwaysAllowedPermission) MarshalJSON() ([]byte, error)

func (*NullableAlwaysAllowedPermission) Set added in v1.6.0

func (*NullableAlwaysAllowedPermission) UnmarshalJSON added in v1.6.0

func (v *NullableAlwaysAllowedPermission) UnmarshalJSON(src []byte) error

func (*NullableAlwaysAllowedPermission) Unset added in v1.6.0

type NullableAlwaysAllowedPermissionRequest added in v1.6.0

type NullableAlwaysAllowedPermissionRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAlwaysAllowedPermissionRequest added in v1.6.0

func NewNullableAlwaysAllowedPermissionRequest(val *AlwaysAllowedPermissionRequest) *NullableAlwaysAllowedPermissionRequest

func (NullableAlwaysAllowedPermissionRequest) Get added in v1.6.0

func (NullableAlwaysAllowedPermissionRequest) IsSet added in v1.6.0

func (NullableAlwaysAllowedPermissionRequest) MarshalJSON added in v1.6.0

func (v NullableAlwaysAllowedPermissionRequest) MarshalJSON() ([]byte, error)

func (*NullableAlwaysAllowedPermissionRequest) Set added in v1.6.0

func (*NullableAlwaysAllowedPermissionRequest) UnmarshalJSON added in v1.6.0

func (v *NullableAlwaysAllowedPermissionRequest) UnmarshalJSON(src []byte) error

func (*NullableAlwaysAllowedPermissionRequest) Unset added in v1.6.0

type NullableApiClassificationObject added in v1.6.0

type NullableApiClassificationObject struct {
	// contains filtered or unexported fields
}

func NewNullableApiClassificationObject added in v1.6.0

func NewNullableApiClassificationObject(val *ApiClassificationObject) *NullableApiClassificationObject

func (NullableApiClassificationObject) Get added in v1.6.0

func (NullableApiClassificationObject) IsSet added in v1.6.0

func (NullableApiClassificationObject) MarshalJSON added in v1.6.0

func (v NullableApiClassificationObject) MarshalJSON() ([]byte, error)

func (*NullableApiClassificationObject) Set added in v1.6.0

func (*NullableApiClassificationObject) UnmarshalJSON added in v1.6.0

func (v *NullableApiClassificationObject) UnmarshalJSON(src []byte) error

func (*NullableApiClassificationObject) Unset added in v1.6.0

type NullableApiUsageData added in v1.2.0

type NullableApiUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableApiUsageData added in v1.2.0

func NewNullableApiUsageData(val *ApiUsageData) *NullableApiUsageData

func (NullableApiUsageData) Get added in v1.2.0

func (NullableApiUsageData) IsSet added in v1.2.0

func (v NullableApiUsageData) IsSet() bool

func (NullableApiUsageData) MarshalJSON added in v1.2.0

func (v NullableApiUsageData) MarshalJSON() ([]byte, error)

func (*NullableApiUsageData) Set added in v1.2.0

func (v *NullableApiUsageData) Set(val *ApiUsageData)

func (*NullableApiUsageData) UnmarshalJSON added in v1.2.0

func (v *NullableApiUsageData) UnmarshalJSON(src []byte) error

func (*NullableApiUsageData) Unset added in v1.2.0

func (v *NullableApiUsageData) Unset()

type NullableApiUsageReportResponse added in v1.2.0

type NullableApiUsageReportResponse struct {
	// contains filtered or unexported fields
}

func NewNullableApiUsageReportResponse added in v1.2.0

func NewNullableApiUsageReportResponse(val *ApiUsageReportResponse) *NullableApiUsageReportResponse

func (NullableApiUsageReportResponse) Get added in v1.2.0

func (NullableApiUsageReportResponse) IsSet added in v1.2.0

func (NullableApiUsageReportResponse) MarshalJSON added in v1.2.0

func (v NullableApiUsageReportResponse) MarshalJSON() ([]byte, error)

func (*NullableApiUsageReportResponse) Set added in v1.2.0

func (*NullableApiUsageReportResponse) UnmarshalJSON added in v1.2.0

func (v *NullableApiUsageReportResponse) UnmarshalJSON(src []byte) error

func (*NullableApiUsageReportResponse) Unset added in v1.2.0

func (v *NullableApiUsageReportResponse) 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 added in v1.2.0

type NullableBaseProvisionVDBParametersAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBaseProvisionVDBParametersAllOf added in v1.2.0

func NewNullableBaseProvisionVDBParametersAllOf(val *BaseProvisionVDBParametersAllOf) *NullableBaseProvisionVDBParametersAllOf

func (NullableBaseProvisionVDBParametersAllOf) Get added in v1.2.0

func (NullableBaseProvisionVDBParametersAllOf) IsSet added in v1.2.0

func (NullableBaseProvisionVDBParametersAllOf) MarshalJSON added in v1.2.0

func (v NullableBaseProvisionVDBParametersAllOf) MarshalJSON() ([]byte, error)

func (*NullableBaseProvisionVDBParametersAllOf) Set added in v1.2.0

func (*NullableBaseProvisionVDBParametersAllOf) UnmarshalJSON added in v1.2.0

func (v *NullableBaseProvisionVDBParametersAllOf) UnmarshalJSON(src []byte) error

func (*NullableBaseProvisionVDBParametersAllOf) Unset added in v1.2.0

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 NullableBookmarkCreateParameters added in v1.6.0

type NullableBookmarkCreateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableBookmarkCreateParameters added in v1.6.0

func NewNullableBookmarkCreateParameters(val *BookmarkCreateParameters) *NullableBookmarkCreateParameters

func (NullableBookmarkCreateParameters) Get added in v1.6.0

func (NullableBookmarkCreateParameters) IsSet added in v1.6.0

func (NullableBookmarkCreateParameters) MarshalJSON added in v1.6.0

func (v NullableBookmarkCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableBookmarkCreateParameters) Set added in v1.6.0

func (*NullableBookmarkCreateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableBookmarkCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableBookmarkCreateParameters) Unset added in v1.6.0

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 added in v1.6.0

type NullableCDB struct {
	// contains filtered or unexported fields
}

func NewNullableCDB added in v1.6.0

func NewNullableCDB(val *CDB) *NullableCDB

func (NullableCDB) Get added in v1.6.0

func (v NullableCDB) Get() *CDB

func (NullableCDB) IsSet added in v1.6.0

func (v NullableCDB) IsSet() bool

func (NullableCDB) MarshalJSON added in v1.6.0

func (v NullableCDB) MarshalJSON() ([]byte, error)

func (*NullableCDB) Set added in v1.6.0

func (v *NullableCDB) Set(val *CDB)

func (*NullableCDB) UnmarshalJSON added in v1.6.0

func (v *NullableCDB) UnmarshalJSON(src []byte) error

func (*NullableCDB) Unset added in v1.6.0

func (v *NullableCDB) Unset()

type NullableChangePasswordParameter added in v1.6.0

type NullableChangePasswordParameter struct {
	// contains filtered or unexported fields
}

func NewNullableChangePasswordParameter added in v1.6.0

func NewNullableChangePasswordParameter(val *ChangePasswordParameter) *NullableChangePasswordParameter

func (NullableChangePasswordParameter) Get added in v1.6.0

func (NullableChangePasswordParameter) IsSet added in v1.6.0

func (NullableChangePasswordParameter) MarshalJSON added in v1.6.0

func (v NullableChangePasswordParameter) MarshalJSON() ([]byte, error)

func (*NullableChangePasswordParameter) Set added in v1.6.0

func (*NullableChangePasswordParameter) UnmarshalJSON added in v1.6.0

func (v *NullableChangePasswordParameter) UnmarshalJSON(src []byte) error

func (*NullableChangePasswordParameter) Unset added in v1.6.0

type NullableConnectivityCheckParameters added in v1.2.0

type NullableConnectivityCheckParameters struct {
	// contains filtered or unexported fields
}

func NewNullableConnectivityCheckParameters added in v1.2.0

func NewNullableConnectivityCheckParameters(val *ConnectivityCheckParameters) *NullableConnectivityCheckParameters

func (NullableConnectivityCheckParameters) Get added in v1.2.0

func (NullableConnectivityCheckParameters) IsSet added in v1.2.0

func (NullableConnectivityCheckParameters) MarshalJSON added in v1.2.0

func (v NullableConnectivityCheckParameters) MarshalJSON() ([]byte, error)

func (*NullableConnectivityCheckParameters) Set added in v1.2.0

func (*NullableConnectivityCheckParameters) UnmarshalJSON added in v1.2.0

func (v *NullableConnectivityCheckParameters) UnmarshalJSON(src []byte) error

func (*NullableConnectivityCheckParameters) Unset added in v1.2.0

type NullableConnectivityCheckResponse added in v1.2.0

type NullableConnectivityCheckResponse struct {
	// contains filtered or unexported fields
}

func NewNullableConnectivityCheckResponse added in v1.2.0

func NewNullableConnectivityCheckResponse(val *ConnectivityCheckResponse) *NullableConnectivityCheckResponse

func (NullableConnectivityCheckResponse) Get added in v1.2.0

func (NullableConnectivityCheckResponse) IsSet added in v1.2.0

func (NullableConnectivityCheckResponse) MarshalJSON added in v1.2.0

func (v NullableConnectivityCheckResponse) MarshalJSON() ([]byte, error)

func (*NullableConnectivityCheckResponse) Set added in v1.2.0

func (*NullableConnectivityCheckResponse) UnmarshalJSON added in v1.2.0

func (v *NullableConnectivityCheckResponse) UnmarshalJSON(src []byte) error

func (*NullableConnectivityCheckResponse) Unset added in v1.2.0

type NullableConnector added in v1.6.0

type NullableConnector struct {
	// contains filtered or unexported fields
}

func NewNullableConnector added in v1.6.0

func NewNullableConnector(val *Connector) *NullableConnector

func (NullableConnector) Get added in v1.6.0

func (v NullableConnector) Get() *Connector

func (NullableConnector) IsSet added in v1.6.0

func (v NullableConnector) IsSet() bool

func (NullableConnector) MarshalJSON added in v1.6.0

func (v NullableConnector) MarshalJSON() ([]byte, error)

func (*NullableConnector) Set added in v1.6.0

func (v *NullableConnector) Set(val *Connector)

func (*NullableConnector) UnmarshalJSON added in v1.6.0

func (v *NullableConnector) UnmarshalJSON(src []byte) error

func (*NullableConnector) Unset added in v1.6.0

func (v *NullableConnector) Unset()

type NullableConnectorTestResponse added in v1.6.0

type NullableConnectorTestResponse struct {
	// contains filtered or unexported fields
}

func NewNullableConnectorTestResponse added in v1.6.0

func NewNullableConnectorTestResponse(val *ConnectorTestResponse) *NullableConnectorTestResponse

func (NullableConnectorTestResponse) Get added in v1.6.0

func (NullableConnectorTestResponse) IsSet added in v1.6.0

func (NullableConnectorTestResponse) MarshalJSON added in v1.6.0

func (v NullableConnectorTestResponse) MarshalJSON() ([]byte, error)

func (*NullableConnectorTestResponse) Set added in v1.6.0

func (*NullableConnectorTestResponse) UnmarshalJSON added in v1.6.0

func (v *NullableConnectorTestResponse) UnmarshalJSON(src []byte) error

func (*NullableConnectorTestResponse) Unset added in v1.6.0

func (v *NullableConnectorTestResponse) Unset()

type NullableConnectorUpdateParameters added in v1.6.0

type NullableConnectorUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableConnectorUpdateParameters added in v1.6.0

func NewNullableConnectorUpdateParameters(val *ConnectorUpdateParameters) *NullableConnectorUpdateParameters

func (NullableConnectorUpdateParameters) Get added in v1.6.0

func (NullableConnectorUpdateParameters) IsSet added in v1.6.0

func (NullableConnectorUpdateParameters) MarshalJSON added in v1.6.0

func (v NullableConnectorUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableConnectorUpdateParameters) Set added in v1.6.0

func (*NullableConnectorUpdateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableConnectorUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableConnectorUpdateParameters) Unset added in v1.6.0

type NullableCopyMaskingJobParameters added in v1.6.0

type NullableCopyMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func NewNullableCopyMaskingJobParameters added in v1.6.0

func NewNullableCopyMaskingJobParameters(val *CopyMaskingJobParameters) *NullableCopyMaskingJobParameters

func (NullableCopyMaskingJobParameters) Get added in v1.6.0

func (NullableCopyMaskingJobParameters) IsSet added in v1.6.0

func (NullableCopyMaskingJobParameters) MarshalJSON added in v1.6.0

func (v NullableCopyMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableCopyMaskingJobParameters) Set added in v1.6.0

func (*NullableCopyMaskingJobParameters) UnmarshalJSON added in v1.6.0

func (v *NullableCopyMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableCopyMaskingJobParameters) Unset added in v1.6.0

type NullableCopyMaskingJobResponse added in v1.6.0

type NullableCopyMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCopyMaskingJobResponse added in v1.6.0

func NewNullableCopyMaskingJobResponse(val *CopyMaskingJobResponse) *NullableCopyMaskingJobResponse

func (NullableCopyMaskingJobResponse) Get added in v1.6.0

func (NullableCopyMaskingJobResponse) IsSet added in v1.6.0

func (NullableCopyMaskingJobResponse) MarshalJSON added in v1.6.0

func (v NullableCopyMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableCopyMaskingJobResponse) Set added in v1.6.0

func (*NullableCopyMaskingJobResponse) UnmarshalJSON added in v1.6.0

func (v *NullableCopyMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableCopyMaskingJobResponse) Unset added in v1.6.0

func (v *NullableCopyMaskingJobResponse) 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 added in v1.6.0

type NullableCreateDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateDatabaseTemplateResponse added in v1.6.0

func NewNullableCreateDatabaseTemplateResponse(val *CreateDatabaseTemplateResponse) *NullableCreateDatabaseTemplateResponse

func (NullableCreateDatabaseTemplateResponse) Get added in v1.6.0

func (NullableCreateDatabaseTemplateResponse) IsSet added in v1.6.0

func (NullableCreateDatabaseTemplateResponse) MarshalJSON added in v1.6.0

func (v NullableCreateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateDatabaseTemplateResponse) Set added in v1.6.0

func (*NullableCreateDatabaseTemplateResponse) UnmarshalJSON added in v1.6.0

func (v *NullableCreateDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateDatabaseTemplateResponse) Unset added in v1.6.0

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 added in v1.2.0

type NullableCreateEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateEnvironmentUserResponse added in v1.2.0

func NewNullableCreateEnvironmentUserResponse(val *CreateEnvironmentUserResponse) *NullableCreateEnvironmentUserResponse

func (NullableCreateEnvironmentUserResponse) Get added in v1.2.0

func (NullableCreateEnvironmentUserResponse) IsSet added in v1.2.0

func (NullableCreateEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (v NullableCreateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentUserResponse) Set added in v1.2.0

func (*NullableCreateEnvironmentUserResponse) UnmarshalJSON added in v1.2.0

func (v *NullableCreateEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentUserResponse) Unset added in v1.2.0

type NullableCreateHostResponse added in v1.6.0

type NullableCreateHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateHostResponse added in v1.6.0

func NewNullableCreateHostResponse(val *CreateHostResponse) *NullableCreateHostResponse

func (NullableCreateHostResponse) Get added in v1.6.0

func (NullableCreateHostResponse) IsSet added in v1.6.0

func (v NullableCreateHostResponse) IsSet() bool

func (NullableCreateHostResponse) MarshalJSON added in v1.6.0

func (v NullableCreateHostResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateHostResponse) Set added in v1.6.0

func (*NullableCreateHostResponse) UnmarshalJSON added in v1.6.0

func (v *NullableCreateHostResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateHostResponse) Unset added in v1.6.0

func (v *NullableCreateHostResponse) Unset()

type NullableCreateRole added in v1.6.0

type NullableCreateRole struct {
	// contains filtered or unexported fields
}

func NewNullableCreateRole added in v1.6.0

func NewNullableCreateRole(val *CreateRole) *NullableCreateRole

func (NullableCreateRole) Get added in v1.6.0

func (v NullableCreateRole) Get() *CreateRole

func (NullableCreateRole) IsSet added in v1.6.0

func (v NullableCreateRole) IsSet() bool

func (NullableCreateRole) MarshalJSON added in v1.6.0

func (v NullableCreateRole) MarshalJSON() ([]byte, error)

func (*NullableCreateRole) Set added in v1.6.0

func (v *NullableCreateRole) Set(val *CreateRole)

func (*NullableCreateRole) UnmarshalJSON added in v1.6.0

func (v *NullableCreateRole) UnmarshalJSON(src []byte) error

func (*NullableCreateRole) Unset added in v1.6.0

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 added in v1.6.0

type NullableCredentialsEnvVariable struct {
	// contains filtered or unexported fields
}

func NewNullableCredentialsEnvVariable added in v1.6.0

func NewNullableCredentialsEnvVariable(val *CredentialsEnvVariable) *NullableCredentialsEnvVariable

func (NullableCredentialsEnvVariable) Get added in v1.6.0

func (NullableCredentialsEnvVariable) IsSet added in v1.6.0

func (NullableCredentialsEnvVariable) MarshalJSON added in v1.6.0

func (v NullableCredentialsEnvVariable) MarshalJSON() ([]byte, error)

func (*NullableCredentialsEnvVariable) Set added in v1.6.0

func (*NullableCredentialsEnvVariable) UnmarshalJSON added in v1.6.0

func (v *NullableCredentialsEnvVariable) UnmarshalJSON(src []byte) error

func (*NullableCredentialsEnvVariable) Unset added in v1.6.0

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 added in v1.6.0

type NullableDSourceConsumptionData struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceConsumptionData added in v1.6.0

func NewNullableDSourceConsumptionData(val *DSourceConsumptionData) *NullableDSourceConsumptionData

func (NullableDSourceConsumptionData) Get added in v1.6.0

func (NullableDSourceConsumptionData) IsSet added in v1.6.0

func (NullableDSourceConsumptionData) MarshalJSON added in v1.6.0

func (v NullableDSourceConsumptionData) MarshalJSON() ([]byte, error)

func (*NullableDSourceConsumptionData) Set added in v1.6.0

func (*NullableDSourceConsumptionData) UnmarshalJSON added in v1.6.0

func (v *NullableDSourceConsumptionData) UnmarshalJSON(src []byte) error

func (*NullableDSourceConsumptionData) Unset added in v1.6.0

func (v *NullableDSourceConsumptionData) Unset()

type NullableDSourceConsumptionReportResponse added in v1.6.0

type NullableDSourceConsumptionReportResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceConsumptionReportResponse added in v1.6.0

func NewNullableDSourceConsumptionReportResponse(val *DSourceConsumptionReportResponse) *NullableDSourceConsumptionReportResponse

func (NullableDSourceConsumptionReportResponse) Get added in v1.6.0

func (NullableDSourceConsumptionReportResponse) IsSet added in v1.6.0

func (NullableDSourceConsumptionReportResponse) MarshalJSON added in v1.6.0

func (*NullableDSourceConsumptionReportResponse) Set added in v1.6.0

func (*NullableDSourceConsumptionReportResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDSourceConsumptionReportResponse) UnmarshalJSON(src []byte) error

func (*NullableDSourceConsumptionReportResponse) Unset added in v1.6.0

type NullableDSourceSnapshotParameters added in v1.2.0

type NullableDSourceSnapshotParameters struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceSnapshotParameters added in v1.2.0

func NewNullableDSourceSnapshotParameters(val *DSourceSnapshotParameters) *NullableDSourceSnapshotParameters

func (NullableDSourceSnapshotParameters) Get added in v1.2.0

func (NullableDSourceSnapshotParameters) IsSet added in v1.2.0

func (NullableDSourceSnapshotParameters) MarshalJSON added in v1.2.0

func (v NullableDSourceSnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableDSourceSnapshotParameters) Set added in v1.2.0

func (*NullableDSourceSnapshotParameters) UnmarshalJSON added in v1.2.0

func (v *NullableDSourceSnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableDSourceSnapshotParameters) Unset added in v1.2.0

type NullableDSourceUsageData added in v1.2.0

type NullableDSourceUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceUsageData added in v1.2.0

func NewNullableDSourceUsageData(val *DSourceUsageData) *NullableDSourceUsageData

func (NullableDSourceUsageData) Get added in v1.2.0

func (NullableDSourceUsageData) IsSet added in v1.2.0

func (v NullableDSourceUsageData) IsSet() bool

func (NullableDSourceUsageData) MarshalJSON added in v1.2.0

func (v NullableDSourceUsageData) MarshalJSON() ([]byte, error)

func (*NullableDSourceUsageData) Set added in v1.2.0

func (*NullableDSourceUsageData) UnmarshalJSON added in v1.2.0

func (v *NullableDSourceUsageData) UnmarshalJSON(src []byte) error

func (*NullableDSourceUsageData) Unset added in v1.2.0

func (v *NullableDSourceUsageData) Unset()

type NullableDSourceUsageReportResponse added in v1.2.0

type NullableDSourceUsageReportResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDSourceUsageReportResponse added in v1.2.0

func NewNullableDSourceUsageReportResponse(val *DSourceUsageReportResponse) *NullableDSourceUsageReportResponse

func (NullableDSourceUsageReportResponse) Get added in v1.2.0

func (NullableDSourceUsageReportResponse) IsSet added in v1.2.0

func (NullableDSourceUsageReportResponse) MarshalJSON added in v1.2.0

func (v NullableDSourceUsageReportResponse) MarshalJSON() ([]byte, error)

func (*NullableDSourceUsageReportResponse) Set added in v1.2.0

func (*NullableDSourceUsageReportResponse) UnmarshalJSON added in v1.2.0

func (v *NullableDSourceUsageReportResponse) UnmarshalJSON(src []byte) error

func (*NullableDSourceUsageReportResponse) Unset added in v1.2.0

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 added in v1.2.0

type NullableDataPointFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func NewNullableDataPointFromBookmarkParameters added in v1.2.0

func NewNullableDataPointFromBookmarkParameters(val *DataPointFromBookmarkParameters) *NullableDataPointFromBookmarkParameters

func (NullableDataPointFromBookmarkParameters) Get added in v1.2.0

func (NullableDataPointFromBookmarkParameters) IsSet added in v1.2.0

func (NullableDataPointFromBookmarkParameters) MarshalJSON added in v1.2.0

func (v NullableDataPointFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*NullableDataPointFromBookmarkParameters) Set added in v1.2.0

func (*NullableDataPointFromBookmarkParameters) UnmarshalJSON added in v1.2.0

func (v *NullableDataPointFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableDataPointFromBookmarkParameters) Unset added in v1.2.0

type NullableDatabaseTemplate added in v1.6.0

type NullableDatabaseTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseTemplate added in v1.6.0

func NewNullableDatabaseTemplate(val *DatabaseTemplate) *NullableDatabaseTemplate

func (NullableDatabaseTemplate) Get added in v1.6.0

func (NullableDatabaseTemplate) IsSet added in v1.6.0

func (v NullableDatabaseTemplate) IsSet() bool

func (NullableDatabaseTemplate) MarshalJSON added in v1.6.0

func (v NullableDatabaseTemplate) MarshalJSON() ([]byte, error)

func (*NullableDatabaseTemplate) Set added in v1.6.0

func (*NullableDatabaseTemplate) UnmarshalJSON added in v1.6.0

func (v *NullableDatabaseTemplate) UnmarshalJSON(src []byte) error

func (*NullableDatabaseTemplate) Unset added in v1.6.0

func (v *NullableDatabaseTemplate) Unset()

type NullableDatabaseTemplateCreateParameters added in v1.6.0

type NullableDatabaseTemplateCreateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseTemplateCreateParameters added in v1.6.0

func NewNullableDatabaseTemplateCreateParameters(val *DatabaseTemplateCreateParameters) *NullableDatabaseTemplateCreateParameters

func (NullableDatabaseTemplateCreateParameters) Get added in v1.6.0

func (NullableDatabaseTemplateCreateParameters) IsSet added in v1.6.0

func (NullableDatabaseTemplateCreateParameters) MarshalJSON added in v1.6.0

func (*NullableDatabaseTemplateCreateParameters) Set added in v1.6.0

func (*NullableDatabaseTemplateCreateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableDatabaseTemplateCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableDatabaseTemplateCreateParameters) Unset added in v1.6.0

type NullableDatasetGroup added in v1.6.0

type NullableDatasetGroup struct {
	// contains filtered or unexported fields
}

func NewNullableDatasetGroup added in v1.6.0

func NewNullableDatasetGroup(val *DatasetGroup) *NullableDatasetGroup

func (NullableDatasetGroup) Get added in v1.6.0

func (NullableDatasetGroup) IsSet added in v1.6.0

func (v NullableDatasetGroup) IsSet() bool

func (NullableDatasetGroup) MarshalJSON added in v1.6.0

func (v NullableDatasetGroup) MarshalJSON() ([]byte, error)

func (*NullableDatasetGroup) Set added in v1.6.0

func (v *NullableDatasetGroup) Set(val *DatasetGroup)

func (*NullableDatasetGroup) UnmarshalJSON added in v1.6.0

func (v *NullableDatasetGroup) UnmarshalJSON(src []byte) error

func (*NullableDatasetGroup) Unset added in v1.6.0

func (v *NullableDatasetGroup) Unset()

type NullableDeleteDSourceRequest added in v1.6.0

type NullableDeleteDSourceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteDSourceRequest added in v1.6.0

func NewNullableDeleteDSourceRequest(val *DeleteDSourceRequest) *NullableDeleteDSourceRequest

func (NullableDeleteDSourceRequest) Get added in v1.6.0

func (NullableDeleteDSourceRequest) IsSet added in v1.6.0

func (NullableDeleteDSourceRequest) MarshalJSON added in v1.6.0

func (v NullableDeleteDSourceRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteDSourceRequest) Set added in v1.6.0

func (*NullableDeleteDSourceRequest) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteDSourceRequest) UnmarshalJSON(src []byte) error

func (*NullableDeleteDSourceRequest) Unset added in v1.6.0

func (v *NullableDeleteDSourceRequest) Unset()

type NullableDeleteDatabaseTemplateResponse added in v1.6.0

type NullableDeleteDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteDatabaseTemplateResponse added in v1.6.0

func NewNullableDeleteDatabaseTemplateResponse(val *DeleteDatabaseTemplateResponse) *NullableDeleteDatabaseTemplateResponse

func (NullableDeleteDatabaseTemplateResponse) Get added in v1.6.0

func (NullableDeleteDatabaseTemplateResponse) IsSet added in v1.6.0

func (NullableDeleteDatabaseTemplateResponse) MarshalJSON added in v1.6.0

func (v NullableDeleteDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteDatabaseTemplateResponse) Set added in v1.6.0

func (*NullableDeleteDatabaseTemplateResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteDatabaseTemplateResponse) Unset added in v1.6.0

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 added in v1.2.0

type NullableDeleteEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteEnvironmentUserResponse added in v1.2.0

func NewNullableDeleteEnvironmentUserResponse(val *DeleteEnvironmentUserResponse) *NullableDeleteEnvironmentUserResponse

func (NullableDeleteEnvironmentUserResponse) Get added in v1.2.0

func (NullableDeleteEnvironmentUserResponse) IsSet added in v1.2.0

func (NullableDeleteEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (v NullableDeleteEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironmentUserResponse) Set added in v1.2.0

func (*NullableDeleteEnvironmentUserResponse) UnmarshalJSON added in v1.2.0

func (v *NullableDeleteEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironmentUserResponse) Unset added in v1.2.0

type NullableDeleteHostResponse added in v1.6.0

type NullableDeleteHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteHostResponse added in v1.6.0

func NewNullableDeleteHostResponse(val *DeleteHostResponse) *NullableDeleteHostResponse

func (NullableDeleteHostResponse) Get added in v1.6.0

func (NullableDeleteHostResponse) IsSet added in v1.6.0

func (v NullableDeleteHostResponse) IsSet() bool

func (NullableDeleteHostResponse) MarshalJSON added in v1.6.0

func (v NullableDeleteHostResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteHostResponse) Set added in v1.6.0

func (*NullableDeleteHostResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteHostResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteHostResponse) Unset added in v1.6.0

func (v *NullableDeleteHostResponse) Unset()

type NullableDeleteMaskingJobResponse added in v1.6.0

type NullableDeleteMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteMaskingJobResponse added in v1.6.0

func NewNullableDeleteMaskingJobResponse(val *DeleteMaskingJobResponse) *NullableDeleteMaskingJobResponse

func (NullableDeleteMaskingJobResponse) Get added in v1.6.0

func (NullableDeleteMaskingJobResponse) IsSet added in v1.6.0

func (NullableDeleteMaskingJobResponse) MarshalJSON added in v1.6.0

func (v NullableDeleteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteMaskingJobResponse) Set added in v1.6.0

func (*NullableDeleteMaskingJobResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteMaskingJobResponse) Unset added in v1.6.0

type NullableDeleteScopeObjectTags added in v1.6.0

type NullableDeleteScopeObjectTags struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteScopeObjectTags added in v1.6.0

func NewNullableDeleteScopeObjectTags(val *DeleteScopeObjectTags) *NullableDeleteScopeObjectTags

func (NullableDeleteScopeObjectTags) Get added in v1.6.0

func (NullableDeleteScopeObjectTags) IsSet added in v1.6.0

func (NullableDeleteScopeObjectTags) MarshalJSON added in v1.6.0

func (v NullableDeleteScopeObjectTags) MarshalJSON() ([]byte, error)

func (*NullableDeleteScopeObjectTags) Set added in v1.6.0

func (*NullableDeleteScopeObjectTags) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteScopeObjectTags) UnmarshalJSON(src []byte) error

func (*NullableDeleteScopeObjectTags) Unset added in v1.6.0

func (v *NullableDeleteScopeObjectTags) Unset()

type NullableDeleteScopedObjectItem added in v1.6.0

type NullableDeleteScopedObjectItem struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteScopedObjectItem added in v1.6.0

func NewNullableDeleteScopedObjectItem(val *DeleteScopedObjectItem) *NullableDeleteScopedObjectItem

func (NullableDeleteScopedObjectItem) Get added in v1.6.0

func (NullableDeleteScopedObjectItem) IsSet added in v1.6.0

func (NullableDeleteScopedObjectItem) MarshalJSON added in v1.6.0

func (v NullableDeleteScopedObjectItem) MarshalJSON() ([]byte, error)

func (*NullableDeleteScopedObjectItem) Set added in v1.6.0

func (*NullableDeleteScopedObjectItem) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteScopedObjectItem) UnmarshalJSON(src []byte) error

func (*NullableDeleteScopedObjectItem) Unset added in v1.6.0

func (v *NullableDeleteScopedObjectItem) Unset()

type NullableDeleteSnapshotResponse added in v1.6.0

type NullableDeleteSnapshotResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteSnapshotResponse added in v1.6.0

func NewNullableDeleteSnapshotResponse(val *DeleteSnapshotResponse) *NullableDeleteSnapshotResponse

func (NullableDeleteSnapshotResponse) Get added in v1.6.0

func (NullableDeleteSnapshotResponse) IsSet added in v1.6.0

func (NullableDeleteSnapshotResponse) MarshalJSON added in v1.6.0

func (v NullableDeleteSnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteSnapshotResponse) Set added in v1.6.0

func (*NullableDeleteSnapshotResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteSnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteSnapshotResponse) Unset added in v1.6.0

func (v *NullableDeleteSnapshotResponse) Unset()

type NullableDeleteTag added in v1.1.0

type NullableDeleteTag struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteTag added in v1.1.0

func NewNullableDeleteTag(val *DeleteTag) *NullableDeleteTag

func (NullableDeleteTag) Get added in v1.1.0

func (v NullableDeleteTag) Get() *DeleteTag

func (NullableDeleteTag) IsSet added in v1.1.0

func (v NullableDeleteTag) IsSet() bool

func (NullableDeleteTag) MarshalJSON added in v1.1.0

func (v NullableDeleteTag) MarshalJSON() ([]byte, error)

func (*NullableDeleteTag) Set added in v1.1.0

func (v *NullableDeleteTag) Set(val *DeleteTag)

func (*NullableDeleteTag) UnmarshalJSON added in v1.1.0

func (v *NullableDeleteTag) UnmarshalJSON(src []byte) error

func (*NullableDeleteTag) Unset added in v1.1.0

func (v *NullableDeleteTag) Unset()

type NullableDeleteTimeflowResponse added in v1.6.0

type NullableDeleteTimeflowResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteTimeflowResponse added in v1.6.0

func NewNullableDeleteTimeflowResponse(val *DeleteTimeflowResponse) *NullableDeleteTimeflowResponse

func (NullableDeleteTimeflowResponse) Get added in v1.6.0

func (NullableDeleteTimeflowResponse) IsSet added in v1.6.0

func (NullableDeleteTimeflowResponse) MarshalJSON added in v1.6.0

func (v NullableDeleteTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteTimeflowResponse) Set added in v1.6.0

func (*NullableDeleteTimeflowResponse) UnmarshalJSON added in v1.6.0

func (v *NullableDeleteTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteTimeflowResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableDomain struct {
	// contains filtered or unexported fields
}

func NewNullableDomain added in v1.6.0

func NewNullableDomain(val *Domain) *NullableDomain

func (NullableDomain) Get added in v1.6.0

func (v NullableDomain) Get() *Domain

func (NullableDomain) IsSet added in v1.6.0

func (v NullableDomain) IsSet() bool

func (NullableDomain) MarshalJSON added in v1.6.0

func (v NullableDomain) MarshalJSON() ([]byte, error)

func (*NullableDomain) Set added in v1.6.0

func (v *NullableDomain) Set(val *Domain)

func (*NullableDomain) UnmarshalJSON added in v1.6.0

func (v *NullableDomain) UnmarshalJSON(src []byte) error

func (*NullableDomain) Unset added in v1.6.0

func (v *NullableDomain) Unset()

type NullableEffectiveScope added in v1.6.0

type NullableEffectiveScope struct {
	// contains filtered or unexported fields
}

func NewNullableEffectiveScope added in v1.6.0

func NewNullableEffectiveScope(val *EffectiveScope) *NullableEffectiveScope

func (NullableEffectiveScope) Get added in v1.6.0

func (NullableEffectiveScope) IsSet added in v1.6.0

func (v NullableEffectiveScope) IsSet() bool

func (NullableEffectiveScope) MarshalJSON added in v1.6.0

func (v NullableEffectiveScope) MarshalJSON() ([]byte, error)

func (*NullableEffectiveScope) Set added in v1.6.0

func (*NullableEffectiveScope) UnmarshalJSON added in v1.6.0

func (v *NullableEffectiveScope) UnmarshalJSON(src []byte) error

func (*NullableEffectiveScope) Unset added in v1.6.0

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 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 added in v1.6.0

type NullableEngineIdBody struct {
	// contains filtered or unexported fields
}

func NewNullableEngineIdBody added in v1.6.0

func NewNullableEngineIdBody(val *EngineIdBody) *NullableEngineIdBody

func (NullableEngineIdBody) Get added in v1.6.0

func (NullableEngineIdBody) IsSet added in v1.6.0

func (v NullableEngineIdBody) IsSet() bool

func (NullableEngineIdBody) MarshalJSON added in v1.6.0

func (v NullableEngineIdBody) MarshalJSON() ([]byte, error)

func (*NullableEngineIdBody) Set added in v1.6.0

func (v *NullableEngineIdBody) Set(val *EngineIdBody)

func (*NullableEngineIdBody) UnmarshalJSON added in v1.6.0

func (v *NullableEngineIdBody) UnmarshalJSON(src []byte) error

func (*NullableEngineIdBody) Unset added in v1.6.0

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 added in v1.6.0

type NullableEnvironmentRepository struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentRepository added in v1.6.0

func NewNullableEnvironmentRepository(val *EnvironmentRepository) *NullableEnvironmentRepository

func (NullableEnvironmentRepository) Get added in v1.6.0

func (NullableEnvironmentRepository) IsSet added in v1.6.0

func (NullableEnvironmentRepository) MarshalJSON added in v1.6.0

func (v NullableEnvironmentRepository) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentRepository) Set added in v1.6.0

func (*NullableEnvironmentRepository) UnmarshalJSON added in v1.6.0

func (v *NullableEnvironmentRepository) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentRepository) Unset added in v1.6.0

func (v *NullableEnvironmentRepository) Unset()

type NullableEnvironmentRepositoryAllOf added in v1.6.0

type NullableEnvironmentRepositoryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentRepositoryAllOf added in v1.6.0

func NewNullableEnvironmentRepositoryAllOf(val *EnvironmentRepositoryAllOf) *NullableEnvironmentRepositoryAllOf

func (NullableEnvironmentRepositoryAllOf) Get added in v1.6.0

func (NullableEnvironmentRepositoryAllOf) IsSet added in v1.6.0

func (NullableEnvironmentRepositoryAllOf) MarshalJSON added in v1.6.0

func (v NullableEnvironmentRepositoryAllOf) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentRepositoryAllOf) Set added in v1.6.0

func (*NullableEnvironmentRepositoryAllOf) UnmarshalJSON added in v1.6.0

func (v *NullableEnvironmentRepositoryAllOf) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentRepositoryAllOf) Unset added in v1.6.0

type NullableEnvironmentUpdateParameters added in v1.1.0

type NullableEnvironmentUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentUpdateParameters added in v1.1.0

func NewNullableEnvironmentUpdateParameters(val *EnvironmentUpdateParameters) *NullableEnvironmentUpdateParameters

func (NullableEnvironmentUpdateParameters) Get added in v1.1.0

func (NullableEnvironmentUpdateParameters) IsSet added in v1.1.0

func (NullableEnvironmentUpdateParameters) MarshalJSON added in v1.1.0

func (v NullableEnvironmentUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUpdateParameters) Set added in v1.1.0

func (*NullableEnvironmentUpdateParameters) UnmarshalJSON added in v1.1.0

func (v *NullableEnvironmentUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUpdateParameters) Unset added in v1.1.0

type NullableEnvironmentUser added in v1.1.0

type NullableEnvironmentUser struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentUser added in v1.1.0

func NewNullableEnvironmentUser(val *EnvironmentUser) *NullableEnvironmentUser

func (NullableEnvironmentUser) Get added in v1.1.0

func (NullableEnvironmentUser) IsSet added in v1.1.0

func (v NullableEnvironmentUser) IsSet() bool

func (NullableEnvironmentUser) MarshalJSON added in v1.1.0

func (v NullableEnvironmentUser) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUser) Set added in v1.1.0

func (*NullableEnvironmentUser) UnmarshalJSON added in v1.1.0

func (v *NullableEnvironmentUser) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUser) Unset added in v1.1.0

func (v *NullableEnvironmentUser) Unset()

type NullableEnvironmentUserParams added in v1.2.0

type NullableEnvironmentUserParams struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironmentUserParams added in v1.2.0

func NewNullableEnvironmentUserParams(val *EnvironmentUserParams) *NullableEnvironmentUserParams

func (NullableEnvironmentUserParams) Get added in v1.2.0

func (NullableEnvironmentUserParams) IsSet added in v1.2.0

func (NullableEnvironmentUserParams) MarshalJSON added in v1.2.0

func (v NullableEnvironmentUserParams) MarshalJSON() ([]byte, error)

func (*NullableEnvironmentUserParams) Set added in v1.2.0

func (*NullableEnvironmentUserParams) UnmarshalJSON added in v1.2.0

func (v *NullableEnvironmentUserParams) UnmarshalJSON(src []byte) error

func (*NullableEnvironmentUserParams) Unset added in v1.2.0

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 added in v1.6.0

type NullableErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableErrorResponse added in v1.6.0

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get added in v1.6.0

func (NullableErrorResponse) IsSet added in v1.6.0

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON added in v1.6.0

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set added in v1.6.0

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON added in v1.6.0

func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableErrorResponse) Unset added in v1.6.0

func (v *NullableErrorResponse) Unset()

type NullableExecuteMaskingJobParameters added in v1.6.0

type NullableExecuteMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func NewNullableExecuteMaskingJobParameters added in v1.6.0

func NewNullableExecuteMaskingJobParameters(val *ExecuteMaskingJobParameters) *NullableExecuteMaskingJobParameters

func (NullableExecuteMaskingJobParameters) Get added in v1.6.0

func (NullableExecuteMaskingJobParameters) IsSet added in v1.6.0

func (NullableExecuteMaskingJobParameters) MarshalJSON added in v1.6.0

func (v NullableExecuteMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableExecuteMaskingJobParameters) Set added in v1.6.0

func (*NullableExecuteMaskingJobParameters) UnmarshalJSON added in v1.6.0

func (v *NullableExecuteMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableExecuteMaskingJobParameters) Unset added in v1.6.0

type NullableExecuteMaskingJobResponse added in v1.6.0

type NullableExecuteMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func NewNullableExecuteMaskingJobResponse added in v1.6.0

func NewNullableExecuteMaskingJobResponse(val *ExecuteMaskingJobResponse) *NullableExecuteMaskingJobResponse

func (NullableExecuteMaskingJobResponse) Get added in v1.6.0

func (NullableExecuteMaskingJobResponse) IsSet added in v1.6.0

func (NullableExecuteMaskingJobResponse) MarshalJSON added in v1.6.0

func (v NullableExecuteMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableExecuteMaskingJobResponse) Set added in v1.6.0

func (*NullableExecuteMaskingJobResponse) UnmarshalJSON added in v1.6.0

func (v *NullableExecuteMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableExecuteMaskingJobResponse) Unset added in v1.6.0

type NullableExecution added in v1.6.0

type NullableExecution struct {
	// contains filtered or unexported fields
}

func NewNullableExecution added in v1.6.0

func NewNullableExecution(val *Execution) *NullableExecution

func (NullableExecution) Get added in v1.6.0

func (v NullableExecution) Get() *Execution

func (NullableExecution) IsSet added in v1.6.0

func (v NullableExecution) IsSet() bool

func (NullableExecution) MarshalJSON added in v1.6.0

func (v NullableExecution) MarshalJSON() ([]byte, error)

func (*NullableExecution) Set added in v1.6.0

func (v *NullableExecution) Set(val *Execution)

func (*NullableExecution) UnmarshalJSON added in v1.6.0

func (v *NullableExecution) UnmarshalJSON(src []byte) error

func (*NullableExecution) Unset added in v1.6.0

func (v *NullableExecution) Unset()

type NullableExecutionCancelParameters added in v1.6.0

type NullableExecutionCancelParameters struct {
	// contains filtered or unexported fields
}

func NewNullableExecutionCancelParameters added in v1.6.0

func NewNullableExecutionCancelParameters(val *ExecutionCancelParameters) *NullableExecutionCancelParameters

func (NullableExecutionCancelParameters) Get added in v1.6.0

func (NullableExecutionCancelParameters) IsSet added in v1.6.0

func (NullableExecutionCancelParameters) MarshalJSON added in v1.6.0

func (v NullableExecutionCancelParameters) MarshalJSON() ([]byte, error)

func (*NullableExecutionCancelParameters) Set added in v1.6.0

func (*NullableExecutionCancelParameters) UnmarshalJSON added in v1.6.0

func (v *NullableExecutionCancelParameters) UnmarshalJSON(src []byte) error

func (*NullableExecutionCancelParameters) Unset added in v1.6.0

type NullableExecutionEvent added in v1.6.0

type NullableExecutionEvent struct {
	// contains filtered or unexported fields
}

func NewNullableExecutionEvent added in v1.6.0

func NewNullableExecutionEvent(val *ExecutionEvent) *NullableExecutionEvent

func (NullableExecutionEvent) Get added in v1.6.0

func (NullableExecutionEvent) IsSet added in v1.6.0

func (v NullableExecutionEvent) IsSet() bool

func (NullableExecutionEvent) MarshalJSON added in v1.6.0

func (v NullableExecutionEvent) MarshalJSON() ([]byte, error)

func (*NullableExecutionEvent) Set added in v1.6.0

func (*NullableExecutionEvent) UnmarshalJSON added in v1.6.0

func (v *NullableExecutionEvent) UnmarshalJSON(src []byte) error

func (*NullableExecutionEvent) Unset added in v1.6.0

func (v *NullableExecutionEvent) Unset()

type NullableFindByLocationResponse added in v1.6.0

type NullableFindByLocationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableFindByLocationResponse added in v1.6.0

func NewNullableFindByLocationResponse(val *FindByLocationResponse) *NullableFindByLocationResponse

func (NullableFindByLocationResponse) Get added in v1.6.0

func (NullableFindByLocationResponse) IsSet added in v1.6.0

func (NullableFindByLocationResponse) MarshalJSON added in v1.6.0

func (v NullableFindByLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableFindByLocationResponse) Set added in v1.6.0

func (*NullableFindByLocationResponse) UnmarshalJSON added in v1.6.0

func (v *NullableFindByLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableFindByLocationResponse) Unset added in v1.6.0

func (v *NullableFindByLocationResponse) Unset()

type NullableFindByTimestampResponse added in v1.6.0

type NullableFindByTimestampResponse struct {
	// contains filtered or unexported fields
}

func NewNullableFindByTimestampResponse added in v1.6.0

func NewNullableFindByTimestampResponse(val *FindByTimestampResponse) *NullableFindByTimestampResponse

func (NullableFindByTimestampResponse) Get added in v1.6.0

func (NullableFindByTimestampResponse) IsSet added in v1.6.0

func (NullableFindByTimestampResponse) MarshalJSON added in v1.6.0

func (v NullableFindByTimestampResponse) MarshalJSON() ([]byte, error)

func (*NullableFindByTimestampResponse) Set added in v1.6.0

func (*NullableFindByTimestampResponse) UnmarshalJSON added in v1.6.0

func (v *NullableFindByTimestampResponse) UnmarshalJSON(src []byte) error

func (*NullableFindByTimestampResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableGlobalProperties struct {
	// contains filtered or unexported fields
}

func NewNullableGlobalProperties added in v1.6.0

func NewNullableGlobalProperties(val *GlobalProperties) *NullableGlobalProperties

func (NullableGlobalProperties) Get added in v1.6.0

func (NullableGlobalProperties) IsSet added in v1.6.0

func (v NullableGlobalProperties) IsSet() bool

func (NullableGlobalProperties) MarshalJSON added in v1.6.0

func (v NullableGlobalProperties) MarshalJSON() ([]byte, error)

func (*NullableGlobalProperties) Set added in v1.6.0

func (*NullableGlobalProperties) UnmarshalJSON added in v1.6.0

func (v *NullableGlobalProperties) UnmarshalJSON(src []byte) error

func (*NullableGlobalProperties) Unset added in v1.6.0

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 added in v1.6.0

type NullableHostCreateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableHostCreateParameters added in v1.6.0

func NewNullableHostCreateParameters(val *HostCreateParameters) *NullableHostCreateParameters

func (NullableHostCreateParameters) Get added in v1.6.0

func (NullableHostCreateParameters) IsSet added in v1.6.0

func (NullableHostCreateParameters) MarshalJSON added in v1.6.0

func (v NullableHostCreateParameters) MarshalJSON() ([]byte, error)

func (*NullableHostCreateParameters) Set added in v1.6.0

func (*NullableHostCreateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableHostCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableHostCreateParameters) Unset added in v1.6.0

func (v *NullableHostCreateParameters) Unset()

type NullableHostUpdateParameters added in v1.6.0

type NullableHostUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableHostUpdateParameters added in v1.6.0

func NewNullableHostUpdateParameters(val *HostUpdateParameters) *NullableHostUpdateParameters

func (NullableHostUpdateParameters) Get added in v1.6.0

func (NullableHostUpdateParameters) IsSet added in v1.6.0

func (NullableHostUpdateParameters) MarshalJSON added in v1.6.0

func (v NullableHostUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableHostUpdateParameters) Set added in v1.6.0

func (*NullableHostUpdateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableHostUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableHostUpdateParameters) Unset added in v1.6.0

func (v *NullableHostUpdateParameters) 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 NullableLDAPConfigParams added in v1.6.0

type NullableLDAPConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableLDAPConfigParams added in v1.6.0

func NewNullableLDAPConfigParams(val *LDAPConfigParams) *NullableLDAPConfigParams

func (NullableLDAPConfigParams) Get added in v1.6.0

func (NullableLDAPConfigParams) IsSet added in v1.6.0

func (v NullableLDAPConfigParams) IsSet() bool

func (NullableLDAPConfigParams) MarshalJSON added in v1.6.0

func (v NullableLDAPConfigParams) MarshalJSON() ([]byte, error)

func (*NullableLDAPConfigParams) Set added in v1.6.0

func (*NullableLDAPConfigParams) UnmarshalJSON added in v1.6.0

func (v *NullableLDAPConfigParams) UnmarshalJSON(src []byte) error

func (*NullableLDAPConfigParams) Unset added in v1.6.0

func (v *NullableLDAPConfigParams) Unset()

type NullableLdapConfigValidateParameter added in v1.6.0

type NullableLdapConfigValidateParameter struct {
	// contains filtered or unexported fields
}

func NewNullableLdapConfigValidateParameter added in v1.6.0

func NewNullableLdapConfigValidateParameter(val *LdapConfigValidateParameter) *NullableLdapConfigValidateParameter

func (NullableLdapConfigValidateParameter) Get added in v1.6.0

func (NullableLdapConfigValidateParameter) IsSet added in v1.6.0

func (NullableLdapConfigValidateParameter) MarshalJSON added in v1.6.0

func (v NullableLdapConfigValidateParameter) MarshalJSON() ([]byte, error)

func (*NullableLdapConfigValidateParameter) Set added in v1.6.0

func (*NullableLdapConfigValidateParameter) UnmarshalJSON added in v1.6.0

func (v *NullableLdapConfigValidateParameter) UnmarshalJSON(src []byte) error

func (*NullableLdapConfigValidateParameter) Unset added in v1.6.0

type NullableLdapValidateResponse added in v1.6.0

type NullableLdapValidateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLdapValidateResponse added in v1.6.0

func NewNullableLdapValidateResponse(val *LdapValidateResponse) *NullableLdapValidateResponse

func (NullableLdapValidateResponse) Get added in v1.6.0

func (NullableLdapValidateResponse) IsSet added in v1.6.0

func (NullableLdapValidateResponse) MarshalJSON added in v1.6.0

func (v NullableLdapValidateResponse) MarshalJSON() ([]byte, error)

func (*NullableLdapValidateResponse) Set added in v1.6.0

func (*NullableLdapValidateResponse) UnmarshalJSON added in v1.6.0

func (v *NullableLdapValidateResponse) UnmarshalJSON(src []byte) error

func (*NullableLdapValidateResponse) Unset added in v1.6.0

func (v *NullableLdapValidateResponse) Unset()

type NullableLinkDSourceDefaultRequest added in v1.6.0

type NullableLinkDSourceDefaultRequest struct {
	// contains filtered or unexported fields
}

func NewNullableLinkDSourceDefaultRequest added in v1.6.0

func NewNullableLinkDSourceDefaultRequest(val *LinkDSourceDefaultRequest) *NullableLinkDSourceDefaultRequest

func (NullableLinkDSourceDefaultRequest) Get added in v1.6.0

func (NullableLinkDSourceDefaultRequest) IsSet added in v1.6.0

func (NullableLinkDSourceDefaultRequest) MarshalJSON added in v1.6.0

func (v NullableLinkDSourceDefaultRequest) MarshalJSON() ([]byte, error)

func (*NullableLinkDSourceDefaultRequest) Set added in v1.6.0

func (*NullableLinkDSourceDefaultRequest) UnmarshalJSON added in v1.6.0

func (v *NullableLinkDSourceDefaultRequest) UnmarshalJSON(src []byte) error

func (*NullableLinkDSourceDefaultRequest) Unset added in v1.6.0

type NullableLinkDSourceParameters added in v1.6.0

type NullableLinkDSourceParameters struct {
	// contains filtered or unexported fields
}

func NewNullableLinkDSourceParameters added in v1.6.0

func NewNullableLinkDSourceParameters(val *LinkDSourceParameters) *NullableLinkDSourceParameters

func (NullableLinkDSourceParameters) Get added in v1.6.0

func (NullableLinkDSourceParameters) IsSet added in v1.6.0

func (NullableLinkDSourceParameters) MarshalJSON added in v1.6.0

func (v NullableLinkDSourceParameters) MarshalJSON() ([]byte, error)

func (*NullableLinkDSourceParameters) Set added in v1.6.0

func (*NullableLinkDSourceParameters) UnmarshalJSON added in v1.6.0

func (v *NullableLinkDSourceParameters) UnmarshalJSON(src []byte) error

func (*NullableLinkDSourceParameters) Unset added in v1.6.0

func (v *NullableLinkDSourceParameters) Unset()

type NullableLinkDSourceResponse added in v1.6.0

type NullableLinkDSourceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLinkDSourceResponse added in v1.6.0

func NewNullableLinkDSourceResponse(val *LinkDSourceResponse) *NullableLinkDSourceResponse

func (NullableLinkDSourceResponse) Get added in v1.6.0

func (NullableLinkDSourceResponse) IsSet added in v1.6.0

func (NullableLinkDSourceResponse) MarshalJSON added in v1.6.0

func (v NullableLinkDSourceResponse) MarshalJSON() ([]byte, error)

func (*NullableLinkDSourceResponse) Set added in v1.6.0

func (*NullableLinkDSourceResponse) UnmarshalJSON added in v1.6.0

func (v *NullableLinkDSourceResponse) UnmarshalJSON(src []byte) error

func (*NullableLinkDSourceResponse) Unset added in v1.6.0

func (v *NullableLinkDSourceResponse) Unset()

type NullableListAccessGroupsResponse added in v1.6.0

type NullableListAccessGroupsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListAccessGroupsResponse added in v1.6.0

func NewNullableListAccessGroupsResponse(val *ListAccessGroupsResponse) *NullableListAccessGroupsResponse

func (NullableListAccessGroupsResponse) Get added in v1.6.0

func (NullableListAccessGroupsResponse) IsSet added in v1.6.0

func (NullableListAccessGroupsResponse) MarshalJSON added in v1.6.0

func (v NullableListAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAccessGroupsResponse) Set added in v1.6.0

func (*NullableListAccessGroupsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListAccessGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListAccessGroupsResponse) Unset added in v1.6.0

type NullableListAccountsResponse added in v1.6.0

type NullableListAccountsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListAccountsResponse added in v1.6.0

func NewNullableListAccountsResponse(val *ListAccountsResponse) *NullableListAccountsResponse

func (NullableListAccountsResponse) Get added in v1.6.0

func (NullableListAccountsResponse) IsSet added in v1.6.0

func (NullableListAccountsResponse) MarshalJSON added in v1.6.0

func (v NullableListAccountsResponse) MarshalJSON() ([]byte, error)

func (*NullableListAccountsResponse) Set added in v1.6.0

func (*NullableListAccountsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListAccountsResponse) UnmarshalJSON(src []byte) error

func (*NullableListAccountsResponse) Unset added in v1.6.0

func (v *NullableListAccountsResponse) 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 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 added in v1.6.0

type NullableListCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListCDBsResponse added in v1.6.0

func NewNullableListCDBsResponse(val *ListCDBsResponse) *NullableListCDBsResponse

func (NullableListCDBsResponse) Get added in v1.6.0

func (NullableListCDBsResponse) IsSet added in v1.6.0

func (v NullableListCDBsResponse) IsSet() bool

func (NullableListCDBsResponse) MarshalJSON added in v1.6.0

func (v NullableListCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableListCDBsResponse) Set added in v1.6.0

func (*NullableListCDBsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableListCDBsResponse) Unset added in v1.6.0

func (v *NullableListCDBsResponse) Unset()

type NullableListConnectorsResponse added in v1.6.0

type NullableListConnectorsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListConnectorsResponse added in v1.6.0

func NewNullableListConnectorsResponse(val *ListConnectorsResponse) *NullableListConnectorsResponse

func (NullableListConnectorsResponse) Get added in v1.6.0

func (NullableListConnectorsResponse) IsSet added in v1.6.0

func (NullableListConnectorsResponse) MarshalJSON added in v1.6.0

func (v NullableListConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableListConnectorsResponse) Set added in v1.6.0

func (*NullableListConnectorsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableListConnectorsResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableListDatabaseTemplatesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListDatabaseTemplatesResponse added in v1.6.0

func NewNullableListDatabaseTemplatesResponse(val *ListDatabaseTemplatesResponse) *NullableListDatabaseTemplatesResponse

func (NullableListDatabaseTemplatesResponse) Get added in v1.6.0

func (NullableListDatabaseTemplatesResponse) IsSet added in v1.6.0

func (NullableListDatabaseTemplatesResponse) MarshalJSON added in v1.6.0

func (v NullableListDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*NullableListDatabaseTemplatesResponse) Set added in v1.6.0

func (*NullableListDatabaseTemplatesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListDatabaseTemplatesResponse) UnmarshalJSON(src []byte) error

func (*NullableListDatabaseTemplatesResponse) Unset added in v1.6.0

type NullableListEnvironmentUsers added in v1.1.0

type NullableListEnvironmentUsers struct {
	// contains filtered or unexported fields
}

func NewNullableListEnvironmentUsers added in v1.1.0

func NewNullableListEnvironmentUsers(val *ListEnvironmentUsers) *NullableListEnvironmentUsers

func (NullableListEnvironmentUsers) Get added in v1.1.0

func (NullableListEnvironmentUsers) IsSet added in v1.1.0

func (NullableListEnvironmentUsers) MarshalJSON added in v1.1.0

func (v NullableListEnvironmentUsers) MarshalJSON() ([]byte, error)

func (*NullableListEnvironmentUsers) Set added in v1.1.0

func (*NullableListEnvironmentUsers) UnmarshalJSON added in v1.1.0

func (v *NullableListEnvironmentUsers) UnmarshalJSON(src []byte) error

func (*NullableListEnvironmentUsers) Unset added in v1.1.0

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 added in v1.6.0

type NullableListExecutionEventsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListExecutionEventsResponse added in v1.6.0

func NewNullableListExecutionEventsResponse(val *ListExecutionEventsResponse) *NullableListExecutionEventsResponse

func (NullableListExecutionEventsResponse) Get added in v1.6.0

func (NullableListExecutionEventsResponse) IsSet added in v1.6.0

func (NullableListExecutionEventsResponse) MarshalJSON added in v1.6.0

func (v NullableListExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableListExecutionEventsResponse) Set added in v1.6.0

func (*NullableListExecutionEventsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListExecutionEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableListExecutionEventsResponse) Unset added in v1.6.0

type NullableListExecutionsResponse added in v1.6.0

type NullableListExecutionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListExecutionsResponse added in v1.6.0

func NewNullableListExecutionsResponse(val *ListExecutionsResponse) *NullableListExecutionsResponse

func (NullableListExecutionsResponse) Get added in v1.6.0

func (NullableListExecutionsResponse) IsSet added in v1.6.0

func (NullableListExecutionsResponse) MarshalJSON added in v1.6.0

func (v NullableListExecutionsResponse) MarshalJSON() ([]byte, error)

func (*NullableListExecutionsResponse) Set added in v1.6.0

func (*NullableListExecutionsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableListExecutionsResponse) Unset added in v1.6.0

func (v *NullableListExecutionsResponse) Unset()

type NullableListGroupsResponse added in v1.6.0

type NullableListGroupsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListGroupsResponse added in v1.6.0

func NewNullableListGroupsResponse(val *ListGroupsResponse) *NullableListGroupsResponse

func (NullableListGroupsResponse) Get added in v1.6.0

func (NullableListGroupsResponse) IsSet added in v1.6.0

func (v NullableListGroupsResponse) IsSet() bool

func (NullableListGroupsResponse) MarshalJSON added in v1.6.0

func (v NullableListGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListGroupsResponse) Set added in v1.6.0

func (*NullableListGroupsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListGroupsResponse) Unset added in v1.6.0

func (v *NullableListGroupsResponse) Unset()

type NullableListHashicorpVaultsResponse added in v1.2.0

type NullableListHashicorpVaultsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListHashicorpVaultsResponse added in v1.2.0

func NewNullableListHashicorpVaultsResponse(val *ListHashicorpVaultsResponse) *NullableListHashicorpVaultsResponse

func (NullableListHashicorpVaultsResponse) Get added in v1.2.0

func (NullableListHashicorpVaultsResponse) IsSet added in v1.2.0

func (NullableListHashicorpVaultsResponse) MarshalJSON added in v1.2.0

func (v NullableListHashicorpVaultsResponse) MarshalJSON() ([]byte, error)

func (*NullableListHashicorpVaultsResponse) Set added in v1.2.0

func (*NullableListHashicorpVaultsResponse) UnmarshalJSON added in v1.2.0

func (v *NullableListHashicorpVaultsResponse) UnmarshalJSON(src []byte) error

func (*NullableListHashicorpVaultsResponse) Unset added in v1.2.0

type NullableListJobsResponse added in v1.6.0

type NullableListJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListJobsResponse added in v1.6.0

func NewNullableListJobsResponse(val *ListJobsResponse) *NullableListJobsResponse

func (NullableListJobsResponse) Get added in v1.6.0

func (NullableListJobsResponse) IsSet added in v1.6.0

func (v NullableListJobsResponse) IsSet() bool

func (NullableListJobsResponse) MarshalJSON added in v1.6.0

func (v NullableListJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableListJobsResponse) Set added in v1.6.0

func (*NullableListJobsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableListJobsResponse) Unset added in v1.6.0

func (v *NullableListJobsResponse) Unset()

type NullableListMaskingJobSourceEnginesResponse added in v1.6.0

type NullableListMaskingJobSourceEnginesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListMaskingJobSourceEnginesResponse added in v1.6.0

func NewNullableListMaskingJobSourceEnginesResponse(val *ListMaskingJobSourceEnginesResponse) *NullableListMaskingJobSourceEnginesResponse

func (NullableListMaskingJobSourceEnginesResponse) Get added in v1.6.0

func (NullableListMaskingJobSourceEnginesResponse) IsSet added in v1.6.0

func (NullableListMaskingJobSourceEnginesResponse) MarshalJSON added in v1.6.0

func (*NullableListMaskingJobSourceEnginesResponse) Set added in v1.6.0

func (*NullableListMaskingJobSourceEnginesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListMaskingJobSourceEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableListMaskingJobSourceEnginesResponse) Unset added in v1.6.0

type NullableListMaskingJobsResponse added in v1.6.0

type NullableListMaskingJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListMaskingJobsResponse added in v1.6.0

func NewNullableListMaskingJobsResponse(val *ListMaskingJobsResponse) *NullableListMaskingJobsResponse

func (NullableListMaskingJobsResponse) Get added in v1.6.0

func (NullableListMaskingJobsResponse) IsSet added in v1.6.0

func (NullableListMaskingJobsResponse) MarshalJSON added in v1.6.0

func (v NullableListMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableListMaskingJobsResponse) Set added in v1.6.0

func (*NullableListMaskingJobsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListMaskingJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableListMaskingJobsResponse) Unset added in v1.6.0

type NullableListRegisteredEnginesResponse added in v1.2.0

type NullableListRegisteredEnginesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListRegisteredEnginesResponse added in v1.2.0

func NewNullableListRegisteredEnginesResponse(val *ListRegisteredEnginesResponse) *NullableListRegisteredEnginesResponse

func (NullableListRegisteredEnginesResponse) Get added in v1.2.0

func (NullableListRegisteredEnginesResponse) IsSet added in v1.2.0

func (NullableListRegisteredEnginesResponse) MarshalJSON added in v1.2.0

func (v NullableListRegisteredEnginesResponse) MarshalJSON() ([]byte, error)

func (*NullableListRegisteredEnginesResponse) Set added in v1.2.0

func (*NullableListRegisteredEnginesResponse) UnmarshalJSON added in v1.2.0

func (v *NullableListRegisteredEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableListRegisteredEnginesResponse) Unset added in v1.2.0

type NullableListReportingScheduleResponse added in v1.2.0

type NullableListReportingScheduleResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListReportingScheduleResponse added in v1.2.0

func NewNullableListReportingScheduleResponse(val *ListReportingScheduleResponse) *NullableListReportingScheduleResponse

func (NullableListReportingScheduleResponse) Get added in v1.2.0

func (NullableListReportingScheduleResponse) IsSet added in v1.2.0

func (NullableListReportingScheduleResponse) MarshalJSON added in v1.2.0

func (v NullableListReportingScheduleResponse) MarshalJSON() ([]byte, error)

func (*NullableListReportingScheduleResponse) Set added in v1.2.0

func (*NullableListReportingScheduleResponse) UnmarshalJSON added in v1.2.0

func (v *NullableListReportingScheduleResponse) UnmarshalJSON(src []byte) error

func (*NullableListReportingScheduleResponse) Unset added in v1.2.0

type NullableListRolesResponse added in v1.6.0

type NullableListRolesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListRolesResponse added in v1.6.0

func NewNullableListRolesResponse(val *ListRolesResponse) *NullableListRolesResponse

func (NullableListRolesResponse) Get added in v1.6.0

func (NullableListRolesResponse) IsSet added in v1.6.0

func (v NullableListRolesResponse) IsSet() bool

func (NullableListRolesResponse) MarshalJSON added in v1.6.0

func (v NullableListRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableListRolesResponse) Set added in v1.6.0

func (*NullableListRolesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableListRolesResponse) Unset added in v1.6.0

func (v *NullableListRolesResponse) Unset()

type NullableListSnapshotsResponse added in v1.2.0

type NullableListSnapshotsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListSnapshotsResponse added in v1.2.0

func NewNullableListSnapshotsResponse(val *ListSnapshotsResponse) *NullableListSnapshotsResponse

func (NullableListSnapshotsResponse) Get added in v1.2.0

func (NullableListSnapshotsResponse) IsSet added in v1.2.0

func (NullableListSnapshotsResponse) MarshalJSON added in v1.2.0

func (v NullableListSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*NullableListSnapshotsResponse) Set added in v1.2.0

func (*NullableListSnapshotsResponse) UnmarshalJSON added in v1.2.0

func (v *NullableListSnapshotsResponse) UnmarshalJSON(src []byte) error

func (*NullableListSnapshotsResponse) Unset added in v1.2.0

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 added in v1.6.0

type NullableListTimeflowsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListTimeflowsResponse added in v1.6.0

func NewNullableListTimeflowsResponse(val *ListTimeflowsResponse) *NullableListTimeflowsResponse

func (NullableListTimeflowsResponse) Get added in v1.6.0

func (NullableListTimeflowsResponse) IsSet added in v1.6.0

func (NullableListTimeflowsResponse) MarshalJSON added in v1.6.0

func (v NullableListTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*NullableListTimeflowsResponse) Set added in v1.6.0

func (*NullableListTimeflowsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListTimeflowsResponse) UnmarshalJSON(src []byte) error

func (*NullableListTimeflowsResponse) Unset added in v1.6.0

func (v *NullableListTimeflowsResponse) Unset()

type NullableListVCDBsResponse added in v1.6.0

type NullableListVCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListVCDBsResponse added in v1.6.0

func NewNullableListVCDBsResponse(val *ListVCDBsResponse) *NullableListVCDBsResponse

func (NullableListVCDBsResponse) Get added in v1.6.0

func (NullableListVCDBsResponse) IsSet added in v1.6.0

func (v NullableListVCDBsResponse) IsSet() bool

func (NullableListVCDBsResponse) MarshalJSON added in v1.6.0

func (v NullableListVCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableListVCDBsResponse) Set added in v1.6.0

func (*NullableListVCDBsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListVCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableListVCDBsResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableListVirtualizationPoliciesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListVirtualizationPoliciesResponse added in v1.6.0

func NewNullableListVirtualizationPoliciesResponse(val *ListVirtualizationPoliciesResponse) *NullableListVirtualizationPoliciesResponse

func (NullableListVirtualizationPoliciesResponse) Get added in v1.6.0

func (NullableListVirtualizationPoliciesResponse) IsSet added in v1.6.0

func (NullableListVirtualizationPoliciesResponse) MarshalJSON added in v1.6.0

func (*NullableListVirtualizationPoliciesResponse) Set added in v1.6.0

func (*NullableListVirtualizationPoliciesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableListVirtualizationPoliciesResponse) UnmarshalJSON(src []byte) error

func (*NullableListVirtualizationPoliciesResponse) Unset added in v1.6.0

type NullableLoginToken added in v1.6.0

type NullableLoginToken struct {
	// contains filtered or unexported fields
}

func NewNullableLoginToken added in v1.6.0

func NewNullableLoginToken(val *LoginToken) *NullableLoginToken

func (NullableLoginToken) Get added in v1.6.0

func (v NullableLoginToken) Get() *LoginToken

func (NullableLoginToken) IsSet added in v1.6.0

func (v NullableLoginToken) IsSet() bool

func (NullableLoginToken) MarshalJSON added in v1.6.0

func (v NullableLoginToken) MarshalJSON() ([]byte, error)

func (*NullableLoginToken) Set added in v1.6.0

func (v *NullableLoginToken) Set(val *LoginToken)

func (*NullableLoginToken) UnmarshalJSON added in v1.6.0

func (v *NullableLoginToken) UnmarshalJSON(src []byte) error

func (*NullableLoginToken) Unset added in v1.6.0

func (v *NullableLoginToken) Unset()

type NullableMaskingJob added in v1.6.0

type NullableMaskingJob struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingJob added in v1.6.0

func NewNullableMaskingJob(val *MaskingJob) *NullableMaskingJob

func (NullableMaskingJob) Get added in v1.6.0

func (v NullableMaskingJob) Get() *MaskingJob

func (NullableMaskingJob) IsSet added in v1.6.0

func (v NullableMaskingJob) IsSet() bool

func (NullableMaskingJob) MarshalJSON added in v1.6.0

func (v NullableMaskingJob) MarshalJSON() ([]byte, error)

func (*NullableMaskingJob) Set added in v1.6.0

func (v *NullableMaskingJob) Set(val *MaskingJob)

func (*NullableMaskingJob) UnmarshalJSON added in v1.6.0

func (v *NullableMaskingJob) UnmarshalJSON(src []byte) error

func (*NullableMaskingJob) Unset added in v1.6.0

func (v *NullableMaskingJob) Unset()

type NullableMaskingJobConnectorsResponse added in v1.6.0

type NullableMaskingJobConnectorsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingJobConnectorsResponse added in v1.6.0

func NewNullableMaskingJobConnectorsResponse(val *MaskingJobConnectorsResponse) *NullableMaskingJobConnectorsResponse

func (NullableMaskingJobConnectorsResponse) Get added in v1.6.0

func (NullableMaskingJobConnectorsResponse) IsSet added in v1.6.0

func (NullableMaskingJobConnectorsResponse) MarshalJSON added in v1.6.0

func (v NullableMaskingJobConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableMaskingJobConnectorsResponse) Set added in v1.6.0

func (*NullableMaskingJobConnectorsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableMaskingJobConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableMaskingJobConnectorsResponse) Unset added in v1.6.0

type NullableMaskingJobSourceEngine added in v1.6.0

type NullableMaskingJobSourceEngine struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingJobSourceEngine added in v1.6.0

func NewNullableMaskingJobSourceEngine(val *MaskingJobSourceEngine) *NullableMaskingJobSourceEngine

func (NullableMaskingJobSourceEngine) Get added in v1.6.0

func (NullableMaskingJobSourceEngine) IsSet added in v1.6.0

func (NullableMaskingJobSourceEngine) MarshalJSON added in v1.6.0

func (v NullableMaskingJobSourceEngine) MarshalJSON() ([]byte, error)

func (*NullableMaskingJobSourceEngine) Set added in v1.6.0

func (*NullableMaskingJobSourceEngine) UnmarshalJSON added in v1.6.0

func (v *NullableMaskingJobSourceEngine) UnmarshalJSON(src []byte) error

func (*NullableMaskingJobSourceEngine) Unset added in v1.6.0

func (v *NullableMaskingJobSourceEngine) Unset()

type NullableMaskingRuleset added in v1.6.0

type NullableMaskingRuleset struct {
	// contains filtered or unexported fields
}

func NewNullableMaskingRuleset added in v1.6.0

func NewNullableMaskingRuleset(val *MaskingRuleset) *NullableMaskingRuleset

func (NullableMaskingRuleset) Get added in v1.6.0

func (NullableMaskingRuleset) IsSet added in v1.6.0

func (v NullableMaskingRuleset) IsSet() bool

func (NullableMaskingRuleset) MarshalJSON added in v1.6.0

func (v NullableMaskingRuleset) MarshalJSON() ([]byte, error)

func (*NullableMaskingRuleset) Set added in v1.6.0

func (*NullableMaskingRuleset) UnmarshalJSON added in v1.6.0

func (v *NullableMaskingRuleset) UnmarshalJSON(src []byte) error

func (*NullableMaskingRuleset) Unset added in v1.6.0

func (v *NullableMaskingRuleset) Unset()

type NullableMetadataDbInfo added in v1.6.0

type NullableMetadataDbInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataDbInfo added in v1.6.0

func NewNullableMetadataDbInfo(val *MetadataDbInfo) *NullableMetadataDbInfo

func (NullableMetadataDbInfo) Get added in v1.6.0

func (NullableMetadataDbInfo) IsSet added in v1.6.0

func (v NullableMetadataDbInfo) IsSet() bool

func (NullableMetadataDbInfo) MarshalJSON added in v1.6.0

func (v NullableMetadataDbInfo) MarshalJSON() ([]byte, error)

func (*NullableMetadataDbInfo) Set added in v1.6.0

func (*NullableMetadataDbInfo) UnmarshalJSON added in v1.6.0

func (v *NullableMetadataDbInfo) UnmarshalJSON(src []byte) error

func (*NullableMetadataDbInfo) Unset added in v1.6.0

func (v *NullableMetadataDbInfo) Unset()

type NullableMigrateMaskingJobParameters added in v1.6.0

type NullableMigrateMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func NewNullableMigrateMaskingJobParameters added in v1.6.0

func NewNullableMigrateMaskingJobParameters(val *MigrateMaskingJobParameters) *NullableMigrateMaskingJobParameters

func (NullableMigrateMaskingJobParameters) Get added in v1.6.0

func (NullableMigrateMaskingJobParameters) IsSet added in v1.6.0

func (NullableMigrateMaskingJobParameters) MarshalJSON added in v1.6.0

func (v NullableMigrateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableMigrateMaskingJobParameters) Set added in v1.6.0

func (*NullableMigrateMaskingJobParameters) UnmarshalJSON added in v1.6.0

func (v *NullableMigrateMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableMigrateMaskingJobParameters) Unset added in v1.6.0

type NullableMigrateMaskingJobResponse added in v1.6.0

type NullableMigrateMaskingJobResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMigrateMaskingJobResponse added in v1.6.0

func NewNullableMigrateMaskingJobResponse(val *MigrateMaskingJobResponse) *NullableMigrateMaskingJobResponse

func (NullableMigrateMaskingJobResponse) Get added in v1.6.0

func (NullableMigrateMaskingJobResponse) IsSet added in v1.6.0

func (NullableMigrateMaskingJobResponse) MarshalJSON added in v1.6.0

func (v NullableMigrateMaskingJobResponse) MarshalJSON() ([]byte, error)

func (*NullableMigrateMaskingJobResponse) Set added in v1.6.0

func (*NullableMigrateMaskingJobResponse) UnmarshalJSON added in v1.6.0

func (v *NullableMigrateMaskingJobResponse) UnmarshalJSON(src []byte) error

func (*NullableMigrateMaskingJobResponse) Unset added in v1.6.0

type NullableObjectPermissionAccessGroups added in v1.6.0

type NullableObjectPermissionAccessGroups struct {
	// contains filtered or unexported fields
}

func NewNullableObjectPermissionAccessGroups added in v1.6.0

func NewNullableObjectPermissionAccessGroups(val *ObjectPermissionAccessGroups) *NullableObjectPermissionAccessGroups

func (NullableObjectPermissionAccessGroups) Get added in v1.6.0

func (NullableObjectPermissionAccessGroups) IsSet added in v1.6.0

func (NullableObjectPermissionAccessGroups) MarshalJSON added in v1.6.0

func (v NullableObjectPermissionAccessGroups) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionAccessGroups) Set added in v1.6.0

func (*NullableObjectPermissionAccessGroups) UnmarshalJSON added in v1.6.0

func (v *NullableObjectPermissionAccessGroups) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionAccessGroups) Unset added in v1.6.0

type NullableObjectPermissionAccount added in v1.6.0

type NullableObjectPermissionAccount struct {
	// contains filtered or unexported fields
}

func NewNullableObjectPermissionAccount added in v1.6.0

func NewNullableObjectPermissionAccount(val *ObjectPermissionAccount) *NullableObjectPermissionAccount

func (NullableObjectPermissionAccount) Get added in v1.6.0

func (NullableObjectPermissionAccount) IsSet added in v1.6.0

func (NullableObjectPermissionAccount) MarshalJSON added in v1.6.0

func (v NullableObjectPermissionAccount) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionAccount) Set added in v1.6.0

func (*NullableObjectPermissionAccount) UnmarshalJSON added in v1.6.0

func (v *NullableObjectPermissionAccount) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionAccount) Unset added in v1.6.0

type NullableObjectPermissionsResponse added in v1.6.0

type NullableObjectPermissionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableObjectPermissionsResponse added in v1.6.0

func NewNullableObjectPermissionsResponse(val *ObjectPermissionsResponse) *NullableObjectPermissionsResponse

func (NullableObjectPermissionsResponse) Get added in v1.6.0

func (NullableObjectPermissionsResponse) IsSet added in v1.6.0

func (NullableObjectPermissionsResponse) MarshalJSON added in v1.6.0

func (v NullableObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*NullableObjectPermissionsResponse) Set added in v1.6.0

func (*NullableObjectPermissionsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableObjectPermissionsResponse) UnmarshalJSON(src []byte) error

func (*NullableObjectPermissionsResponse) Unset added in v1.6.0

type NullableObjectTypeEnum added in v1.6.0

type NullableObjectTypeEnum struct {
	// contains filtered or unexported fields
}

func NewNullableObjectTypeEnum added in v1.6.0

func NewNullableObjectTypeEnum(val *ObjectTypeEnum) *NullableObjectTypeEnum

func (NullableObjectTypeEnum) Get added in v1.6.0

func (NullableObjectTypeEnum) IsSet added in v1.6.0

func (v NullableObjectTypeEnum) IsSet() bool

func (NullableObjectTypeEnum) MarshalJSON added in v1.6.0

func (v NullableObjectTypeEnum) MarshalJSON() ([]byte, error)

func (*NullableObjectTypeEnum) Set added in v1.6.0

func (*NullableObjectTypeEnum) UnmarshalJSON added in v1.6.0

func (v *NullableObjectTypeEnum) UnmarshalJSON(src []byte) error

func (*NullableObjectTypeEnum) Unset added in v1.6.0

func (v *NullableObjectTypeEnum) Unset()

type NullableObjectTypeProperty added in v1.6.0

type NullableObjectTypeProperty struct {
	// contains filtered or unexported fields
}

func NewNullableObjectTypeProperty added in v1.6.0

func NewNullableObjectTypeProperty(val *ObjectTypeProperty) *NullableObjectTypeProperty

func (NullableObjectTypeProperty) Get added in v1.6.0

func (NullableObjectTypeProperty) IsSet added in v1.6.0

func (v NullableObjectTypeProperty) IsSet() bool

func (NullableObjectTypeProperty) MarshalJSON added in v1.6.0

func (v NullableObjectTypeProperty) MarshalJSON() ([]byte, error)

func (*NullableObjectTypeProperty) Set added in v1.6.0

func (*NullableObjectTypeProperty) UnmarshalJSON added in v1.6.0

func (v *NullableObjectTypeProperty) UnmarshalJSON(src []byte) error

func (*NullableObjectTypeProperty) Unset added in v1.6.0

func (v *NullableObjectTypeProperty) Unset()

type NullableOracleListener added in v1.6.0

type NullableOracleListener struct {
	// contains filtered or unexported fields
}

func NewNullableOracleListener added in v1.6.0

func NewNullableOracleListener(val *OracleListener) *NullableOracleListener

func (NullableOracleListener) Get added in v1.6.0

func (NullableOracleListener) IsSet added in v1.6.0

func (v NullableOracleListener) IsSet() bool

func (NullableOracleListener) MarshalJSON added in v1.6.0

func (v NullableOracleListener) MarshalJSON() ([]byte, error)

func (*NullableOracleListener) Set added in v1.6.0

func (*NullableOracleListener) UnmarshalJSON added in v1.6.0

func (v *NullableOracleListener) UnmarshalJSON(src []byte) error

func (*NullableOracleListener) Unset added in v1.6.0

func (v *NullableOracleListener) Unset()

type NullableOracleRacCustomEnvFile added in v1.6.0

type NullableOracleRacCustomEnvFile struct {
	// contains filtered or unexported fields
}

func NewNullableOracleRacCustomEnvFile added in v1.6.0

func NewNullableOracleRacCustomEnvFile(val *OracleRacCustomEnvFile) *NullableOracleRacCustomEnvFile

func (NullableOracleRacCustomEnvFile) Get added in v1.6.0

func (NullableOracleRacCustomEnvFile) IsSet added in v1.6.0

func (NullableOracleRacCustomEnvFile) MarshalJSON added in v1.6.0

func (v NullableOracleRacCustomEnvFile) MarshalJSON() ([]byte, error)

func (*NullableOracleRacCustomEnvFile) Set added in v1.6.0

func (*NullableOracleRacCustomEnvFile) UnmarshalJSON added in v1.6.0

func (v *NullableOracleRacCustomEnvFile) UnmarshalJSON(src []byte) error

func (*NullableOracleRacCustomEnvFile) Unset added in v1.6.0

func (v *NullableOracleRacCustomEnvFile) Unset()

type NullableOracleRacCustomEnvVar added in v1.6.0

type NullableOracleRacCustomEnvVar struct {
	// contains filtered or unexported fields
}

func NewNullableOracleRacCustomEnvVar added in v1.6.0

func NewNullableOracleRacCustomEnvVar(val *OracleRacCustomEnvVar) *NullableOracleRacCustomEnvVar

func (NullableOracleRacCustomEnvVar) Get added in v1.6.0

func (NullableOracleRacCustomEnvVar) IsSet added in v1.6.0

func (NullableOracleRacCustomEnvVar) MarshalJSON added in v1.6.0

func (v NullableOracleRacCustomEnvVar) MarshalJSON() ([]byte, error)

func (*NullableOracleRacCustomEnvVar) Set added in v1.6.0

func (*NullableOracleRacCustomEnvVar) UnmarshalJSON added in v1.6.0

func (v *NullableOracleRacCustomEnvVar) UnmarshalJSON(src []byte) error

func (*NullableOracleRacCustomEnvVar) Unset added in v1.6.0

func (v *NullableOracleRacCustomEnvVar) Unset()

type NullableOracleVirtualIP added in v1.6.0

type NullableOracleVirtualIP struct {
	// contains filtered or unexported fields
}

func NewNullableOracleVirtualIP added in v1.6.0

func NewNullableOracleVirtualIP(val *OracleVirtualIP) *NullableOracleVirtualIP

func (NullableOracleVirtualIP) Get added in v1.6.0

func (NullableOracleVirtualIP) IsSet added in v1.6.0

func (v NullableOracleVirtualIP) IsSet() bool

func (NullableOracleVirtualIP) MarshalJSON added in v1.6.0

func (v NullableOracleVirtualIP) MarshalJSON() ([]byte, error)

func (*NullableOracleVirtualIP) Set added in v1.6.0

func (*NullableOracleVirtualIP) UnmarshalJSON added in v1.6.0

func (v *NullableOracleVirtualIP) UnmarshalJSON(src []byte) error

func (*NullableOracleVirtualIP) Unset added in v1.6.0

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 added in v1.6.0

type NullablePasswordPoliciesParams struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordPoliciesParams added in v1.6.0

func NewNullablePasswordPoliciesParams(val *PasswordPoliciesParams) *NullablePasswordPoliciesParams

func (NullablePasswordPoliciesParams) Get added in v1.6.0

func (NullablePasswordPoliciesParams) IsSet added in v1.6.0

func (NullablePasswordPoliciesParams) MarshalJSON added in v1.6.0

func (v NullablePasswordPoliciesParams) MarshalJSON() ([]byte, error)

func (*NullablePasswordPoliciesParams) Set added in v1.6.0

func (*NullablePasswordPoliciesParams) UnmarshalJSON added in v1.6.0

func (v *NullablePasswordPoliciesParams) UnmarshalJSON(src []byte) error

func (*NullablePasswordPoliciesParams) Unset added in v1.6.0

func (v *NullablePasswordPoliciesParams) Unset()

type NullablePasswordVault added in v1.6.0

type NullablePasswordVault struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordVault added in v1.6.0

func NewNullablePasswordVault(val *PasswordVault) *NullablePasswordVault

func (NullablePasswordVault) Get added in v1.6.0

func (NullablePasswordVault) IsSet added in v1.6.0

func (v NullablePasswordVault) IsSet() bool

func (NullablePasswordVault) MarshalJSON added in v1.6.0

func (v NullablePasswordVault) MarshalJSON() ([]byte, error)

func (*NullablePasswordVault) Set added in v1.6.0

func (v *NullablePasswordVault) Set(val *PasswordVault)

func (*NullablePasswordVault) UnmarshalJSON added in v1.6.0

func (v *NullablePasswordVault) UnmarshalJSON(src []byte) error

func (*NullablePasswordVault) Unset added in v1.6.0

func (v *NullablePasswordVault) Unset()

type NullablePermissionEnum added in v1.6.0

type NullablePermissionEnum struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionEnum added in v1.6.0

func NewNullablePermissionEnum(val *PermissionEnum) *NullablePermissionEnum

func (NullablePermissionEnum) Get added in v1.6.0

func (NullablePermissionEnum) IsSet added in v1.6.0

func (v NullablePermissionEnum) IsSet() bool

func (NullablePermissionEnum) MarshalJSON added in v1.6.0

func (v NullablePermissionEnum) MarshalJSON() ([]byte, error)

func (*NullablePermissionEnum) Set added in v1.6.0

func (*NullablePermissionEnum) UnmarshalJSON added in v1.6.0

func (v *NullablePermissionEnum) UnmarshalJSON(src []byte) error

func (*NullablePermissionEnum) Unset added in v1.6.0

func (v *NullablePermissionEnum) Unset()

type NullablePermissionObject added in v1.6.0

type NullablePermissionObject struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionObject added in v1.6.0

func NewNullablePermissionObject(val *PermissionObject) *NullablePermissionObject

func (NullablePermissionObject) Get added in v1.6.0

func (NullablePermissionObject) IsSet added in v1.6.0

func (v NullablePermissionObject) IsSet() bool

func (NullablePermissionObject) MarshalJSON added in v1.6.0

func (v NullablePermissionObject) MarshalJSON() ([]byte, error)

func (*NullablePermissionObject) Set added in v1.6.0

func (*NullablePermissionObject) UnmarshalJSON added in v1.6.0

func (v *NullablePermissionObject) UnmarshalJSON(src []byte) error

func (*NullablePermissionObject) Unset added in v1.6.0

func (v *NullablePermissionObject) Unset()

type NullablePermissionProperty added in v1.6.0

type NullablePermissionProperty struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionProperty added in v1.6.0

func NewNullablePermissionProperty(val *PermissionProperty) *NullablePermissionProperty

func (NullablePermissionProperty) Get added in v1.6.0

func (NullablePermissionProperty) IsSet added in v1.6.0

func (v NullablePermissionProperty) IsSet() bool

func (NullablePermissionProperty) MarshalJSON added in v1.6.0

func (v NullablePermissionProperty) MarshalJSON() ([]byte, error)

func (*NullablePermissionProperty) Set added in v1.6.0

func (*NullablePermissionProperty) UnmarshalJSON added in v1.6.0

func (v *NullablePermissionProperty) UnmarshalJSON(src []byte) error

func (*NullablePermissionProperty) Unset added in v1.6.0

func (v *NullablePermissionProperty) Unset()

type NullablePermissionsRequest added in v1.6.0

type NullablePermissionsRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePermissionsRequest added in v1.6.0

func NewNullablePermissionsRequest(val *PermissionsRequest) *NullablePermissionsRequest

func (NullablePermissionsRequest) Get added in v1.6.0

func (NullablePermissionsRequest) IsSet added in v1.6.0

func (v NullablePermissionsRequest) IsSet() bool

func (NullablePermissionsRequest) MarshalJSON added in v1.6.0

func (v NullablePermissionsRequest) MarshalJSON() ([]byte, error)

func (*NullablePermissionsRequest) Set added in v1.6.0

func (*NullablePermissionsRequest) UnmarshalJSON added in v1.6.0

func (v *NullablePermissionsRequest) UnmarshalJSON(src []byte) error

func (*NullablePermissionsRequest) Unset added in v1.6.0

func (v *NullablePermissionsRequest) Unset()

type NullablePrimaryEnvironmentUserResponse added in v1.2.0

type NullablePrimaryEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullablePrimaryEnvironmentUserResponse added in v1.2.0

func NewNullablePrimaryEnvironmentUserResponse(val *PrimaryEnvironmentUserResponse) *NullablePrimaryEnvironmentUserResponse

func (NullablePrimaryEnvironmentUserResponse) Get added in v1.2.0

func (NullablePrimaryEnvironmentUserResponse) IsSet added in v1.2.0

func (NullablePrimaryEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (v NullablePrimaryEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullablePrimaryEnvironmentUserResponse) Set added in v1.2.0

func (*NullablePrimaryEnvironmentUserResponse) UnmarshalJSON added in v1.2.0

func (v *NullablePrimaryEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullablePrimaryEnvironmentUserResponse) Unset added in v1.2.0

type NullableProductHistory added in v1.2.0

type NullableProductHistory struct {
	// contains filtered or unexported fields
}

func NewNullableProductHistory added in v1.2.0

func NewNullableProductHistory(val *ProductHistory) *NullableProductHistory

func (NullableProductHistory) Get added in v1.2.0

func (NullableProductHistory) IsSet added in v1.2.0

func (v NullableProductHistory) IsSet() bool

func (NullableProductHistory) MarshalJSON added in v1.2.0

func (v NullableProductHistory) MarshalJSON() ([]byte, error)

func (*NullableProductHistory) Set added in v1.2.0

func (*NullableProductHistory) UnmarshalJSON added in v1.2.0

func (v *NullableProductHistory) UnmarshalJSON(src []byte) error

func (*NullableProductHistory) Unset added in v1.2.0

func (v *NullableProductHistory) Unset()

type NullableProductInfo added in v1.2.0

type NullableProductInfo struct {
	// contains filtered or unexported fields
}

func NewNullableProductInfo added in v1.2.0

func NewNullableProductInfo(val *ProductInfo) *NullableProductInfo

func (NullableProductInfo) Get added in v1.2.0

func (NullableProductInfo) IsSet added in v1.2.0

func (v NullableProductInfo) IsSet() bool

func (NullableProductInfo) MarshalJSON added in v1.2.0

func (v NullableProductInfo) MarshalJSON() ([]byte, error)

func (*NullableProductInfo) Set added in v1.2.0

func (v *NullableProductInfo) Set(val *ProductInfo)

func (*NullableProductInfo) UnmarshalJSON added in v1.2.0

func (v *NullableProductInfo) UnmarshalJSON(src []byte) error

func (*NullableProductInfo) Unset added in v1.2.0

func (v *NullableProductInfo) Unset()

type NullableProvisionVDBBySnapshotDefaultsRequest added in v1.6.0

type NullableProvisionVDBBySnapshotDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBBySnapshotDefaultsRequest) Get added in v1.6.0

func (NullableProvisionVDBBySnapshotDefaultsRequest) IsSet added in v1.6.0

func (NullableProvisionVDBBySnapshotDefaultsRequest) MarshalJSON added in v1.6.0

func (*NullableProvisionVDBBySnapshotDefaultsRequest) Set added in v1.6.0

func (*NullableProvisionVDBBySnapshotDefaultsRequest) UnmarshalJSON added in v1.6.0

func (*NullableProvisionVDBBySnapshotDefaultsRequest) Unset added in v1.6.0

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 added in v1.2.0

type NullableProvisionVDBBySnapshotParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBBySnapshotParametersAllOf) Get added in v1.2.0

func (NullableProvisionVDBBySnapshotParametersAllOf) IsSet added in v1.2.0

func (NullableProvisionVDBBySnapshotParametersAllOf) MarshalJSON added in v1.2.0

func (*NullableProvisionVDBBySnapshotParametersAllOf) Set added in v1.2.0

func (*NullableProvisionVDBBySnapshotParametersAllOf) UnmarshalJSON added in v1.2.0

func (*NullableProvisionVDBBySnapshotParametersAllOf) Unset added in v1.2.0

type NullableProvisionVDBByTimestampDefaultsRequest added in v1.6.0

type NullableProvisionVDBByTimestampDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBByTimestampDefaultsRequest) Get added in v1.6.0

func (NullableProvisionVDBByTimestampDefaultsRequest) IsSet added in v1.6.0

func (NullableProvisionVDBByTimestampDefaultsRequest) MarshalJSON added in v1.6.0

func (*NullableProvisionVDBByTimestampDefaultsRequest) Set added in v1.6.0

func (*NullableProvisionVDBByTimestampDefaultsRequest) UnmarshalJSON added in v1.6.0

func (*NullableProvisionVDBByTimestampDefaultsRequest) Unset added in v1.6.0

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 added in v1.6.0

type NullableProvisionVDBFromBookmarkDefaultsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBFromBookmarkDefaultsRequest) Get added in v1.6.0

func (NullableProvisionVDBFromBookmarkDefaultsRequest) IsSet added in v1.6.0

func (NullableProvisionVDBFromBookmarkDefaultsRequest) MarshalJSON added in v1.6.0

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) Set added in v1.6.0

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) UnmarshalJSON added in v1.6.0

func (*NullableProvisionVDBFromBookmarkDefaultsRequest) Unset added in v1.6.0

type NullableProvisionVDBFromBookmarkParameters added in v1.2.0

type NullableProvisionVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func NewNullableProvisionVDBFromBookmarkParameters added in v1.2.0

func NewNullableProvisionVDBFromBookmarkParameters(val *ProvisionVDBFromBookmarkParameters) *NullableProvisionVDBFromBookmarkParameters

func (NullableProvisionVDBFromBookmarkParameters) Get added in v1.2.0

func (NullableProvisionVDBFromBookmarkParameters) IsSet added in v1.2.0

func (NullableProvisionVDBFromBookmarkParameters) MarshalJSON added in v1.2.0

func (*NullableProvisionVDBFromBookmarkParameters) Set added in v1.2.0

func (*NullableProvisionVDBFromBookmarkParameters) UnmarshalJSON added in v1.2.0

func (v *NullableProvisionVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableProvisionVDBFromBookmarkParameters) Unset added in v1.2.0

type NullableProvisionVDBFromBookmarkParametersAllOf added in v1.6.0

type NullableProvisionVDBFromBookmarkParametersAllOf struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBFromBookmarkParametersAllOf) Get added in v1.6.0

func (NullableProvisionVDBFromBookmarkParametersAllOf) IsSet added in v1.6.0

func (NullableProvisionVDBFromBookmarkParametersAllOf) MarshalJSON added in v1.6.0

func (*NullableProvisionVDBFromBookmarkParametersAllOf) Set added in v1.6.0

func (*NullableProvisionVDBFromBookmarkParametersAllOf) UnmarshalJSON added in v1.6.0

func (*NullableProvisionVDBFromBookmarkParametersAllOf) Unset added in v1.6.0

type NullableProvisionVDBGroupFromBookmarkParameters added in v1.2.0

type NullableProvisionVDBGroupFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBGroupFromBookmarkParameters) Get added in v1.2.0

func (NullableProvisionVDBGroupFromBookmarkParameters) IsSet added in v1.2.0

func (NullableProvisionVDBGroupFromBookmarkParameters) MarshalJSON added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkParameters) Set added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkParameters) UnmarshalJSON added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkParameters) Unset added in v1.2.0

type NullableProvisionVDBGroupFromBookmarkResponse added in v1.2.0

type NullableProvisionVDBGroupFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableProvisionVDBGroupFromBookmarkResponse) Get added in v1.2.0

func (NullableProvisionVDBGroupFromBookmarkResponse) IsSet added in v1.2.0

func (NullableProvisionVDBGroupFromBookmarkResponse) MarshalJSON added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkResponse) Set added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkResponse) UnmarshalJSON added in v1.2.0

func (*NullableProvisionVDBGroupFromBookmarkResponse) Unset added in v1.2.0

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 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 added in v1.6.0

type NullableRefreshVDBByLocationParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBByLocationParameters added in v1.6.0

func NewNullableRefreshVDBByLocationParameters(val *RefreshVDBByLocationParameters) *NullableRefreshVDBByLocationParameters

func (NullableRefreshVDBByLocationParameters) Get added in v1.6.0

func (NullableRefreshVDBByLocationParameters) IsSet added in v1.6.0

func (NullableRefreshVDBByLocationParameters) MarshalJSON added in v1.6.0

func (v NullableRefreshVDBByLocationParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByLocationParameters) Set added in v1.6.0

func (*NullableRefreshVDBByLocationParameters) UnmarshalJSON added in v1.6.0

func (v *NullableRefreshVDBByLocationParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByLocationParameters) Unset added in v1.6.0

type NullableRefreshVDBByLocationResponse added in v1.6.0

type NullableRefreshVDBByLocationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBByLocationResponse added in v1.6.0

func NewNullableRefreshVDBByLocationResponse(val *RefreshVDBByLocationResponse) *NullableRefreshVDBByLocationResponse

func (NullableRefreshVDBByLocationResponse) Get added in v1.6.0

func (NullableRefreshVDBByLocationResponse) IsSet added in v1.6.0

func (NullableRefreshVDBByLocationResponse) MarshalJSON added in v1.6.0

func (v NullableRefreshVDBByLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBByLocationResponse) Set added in v1.6.0

func (*NullableRefreshVDBByLocationResponse) UnmarshalJSON added in v1.6.0

func (v *NullableRefreshVDBByLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBByLocationResponse) Unset added in v1.6.0

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 added in v1.1.0

type NullableRefreshVDBByTimestampParametersAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBByTimestampParametersAllOf added in v1.1.0

func NewNullableRefreshVDBByTimestampParametersAllOf(val *RefreshVDBByTimestampParametersAllOf) *NullableRefreshVDBByTimestampParametersAllOf

func (NullableRefreshVDBByTimestampParametersAllOf) Get added in v1.1.0

func (NullableRefreshVDBByTimestampParametersAllOf) IsSet added in v1.1.0

func (NullableRefreshVDBByTimestampParametersAllOf) MarshalJSON added in v1.1.0

func (*NullableRefreshVDBByTimestampParametersAllOf) Set added in v1.1.0

func (*NullableRefreshVDBByTimestampParametersAllOf) UnmarshalJSON added in v1.1.0

func (*NullableRefreshVDBByTimestampParametersAllOf) Unset added in v1.1.0

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 added in v1.2.0

type NullableRefreshVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBFromBookmarkParameters added in v1.2.0

func NewNullableRefreshVDBFromBookmarkParameters(val *RefreshVDBFromBookmarkParameters) *NullableRefreshVDBFromBookmarkParameters

func (NullableRefreshVDBFromBookmarkParameters) Get added in v1.2.0

func (NullableRefreshVDBFromBookmarkParameters) IsSet added in v1.2.0

func (NullableRefreshVDBFromBookmarkParameters) MarshalJSON added in v1.2.0

func (*NullableRefreshVDBFromBookmarkParameters) Set added in v1.2.0

func (*NullableRefreshVDBFromBookmarkParameters) UnmarshalJSON added in v1.2.0

func (v *NullableRefreshVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBFromBookmarkParameters) Unset added in v1.2.0

type NullableRefreshVDBFromBookmarkResponse added in v1.2.0

type NullableRefreshVDBFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBFromBookmarkResponse added in v1.2.0

func NewNullableRefreshVDBFromBookmarkResponse(val *RefreshVDBFromBookmarkResponse) *NullableRefreshVDBFromBookmarkResponse

func (NullableRefreshVDBFromBookmarkResponse) Get added in v1.2.0

func (NullableRefreshVDBFromBookmarkResponse) IsSet added in v1.2.0

func (NullableRefreshVDBFromBookmarkResponse) MarshalJSON added in v1.2.0

func (v NullableRefreshVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBFromBookmarkResponse) Set added in v1.2.0

func (*NullableRefreshVDBFromBookmarkResponse) UnmarshalJSON added in v1.2.0

func (v *NullableRefreshVDBFromBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBFromBookmarkResponse) Unset added in v1.2.0

type NullableRefreshVDBGroupParameters added in v1.1.0

type NullableRefreshVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBGroupParameters added in v1.1.0

func NewNullableRefreshVDBGroupParameters(val *RefreshVDBGroupParameters) *NullableRefreshVDBGroupParameters

func (NullableRefreshVDBGroupParameters) Get added in v1.1.0

func (NullableRefreshVDBGroupParameters) IsSet added in v1.1.0

func (NullableRefreshVDBGroupParameters) MarshalJSON added in v1.1.0

func (v NullableRefreshVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBGroupParameters) Set added in v1.1.0

func (*NullableRefreshVDBGroupParameters) UnmarshalJSON added in v1.1.0

func (v *NullableRefreshVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBGroupParameters) Unset added in v1.1.0

type NullableRefreshVDBGroupResponse added in v1.1.0

type NullableRefreshVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRefreshVDBGroupResponse added in v1.1.0

func NewNullableRefreshVDBGroupResponse(val *RefreshVDBGroupResponse) *NullableRefreshVDBGroupResponse

func (NullableRefreshVDBGroupResponse) Get added in v1.1.0

func (NullableRefreshVDBGroupResponse) IsSet added in v1.1.0

func (NullableRefreshVDBGroupResponse) MarshalJSON added in v1.1.0

func (v NullableRefreshVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshVDBGroupResponse) Set added in v1.1.0

func (*NullableRefreshVDBGroupResponse) UnmarshalJSON added in v1.1.0

func (v *NullableRefreshVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableRefreshVDBGroupResponse) Unset added in v1.1.0

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 added in v1.6.0

type NullableRemoveMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveMaskingJobParameters added in v1.6.0

func NewNullableRemoveMaskingJobParameters(val *RemoveMaskingJobParameters) *NullableRemoveMaskingJobParameters

func (NullableRemoveMaskingJobParameters) Get added in v1.6.0

func (NullableRemoveMaskingJobParameters) IsSet added in v1.6.0

func (NullableRemoveMaskingJobParameters) MarshalJSON added in v1.6.0

func (v NullableRemoveMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableRemoveMaskingJobParameters) Set added in v1.6.0

func (*NullableRemoveMaskingJobParameters) UnmarshalJSON added in v1.6.0

func (v *NullableRemoveMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableRemoveMaskingJobParameters) Unset added in v1.6.0

type NullableReportingSchedule added in v1.2.0

type NullableReportingSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableReportingSchedule added in v1.2.0

func NewNullableReportingSchedule(val *ReportingSchedule) *NullableReportingSchedule

func (NullableReportingSchedule) Get added in v1.2.0

func (NullableReportingSchedule) IsSet added in v1.2.0

func (v NullableReportingSchedule) IsSet() bool

func (NullableReportingSchedule) MarshalJSON added in v1.2.0

func (v NullableReportingSchedule) MarshalJSON() ([]byte, error)

func (*NullableReportingSchedule) Set added in v1.2.0

func (*NullableReportingSchedule) UnmarshalJSON added in v1.2.0

func (v *NullableReportingSchedule) UnmarshalJSON(src []byte) error

func (*NullableReportingSchedule) Unset added in v1.2.0

func (v *NullableReportingSchedule) Unset()

type NullableReportingScheduleCreateParameters added in v1.6.0

type NullableReportingScheduleCreateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableReportingScheduleCreateParameters added in v1.6.0

func NewNullableReportingScheduleCreateParameters(val *ReportingScheduleCreateParameters) *NullableReportingScheduleCreateParameters

func (NullableReportingScheduleCreateParameters) Get added in v1.6.0

func (NullableReportingScheduleCreateParameters) IsSet added in v1.6.0

func (NullableReportingScheduleCreateParameters) MarshalJSON added in v1.6.0

func (*NullableReportingScheduleCreateParameters) Set added in v1.6.0

func (*NullableReportingScheduleCreateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableReportingScheduleCreateParameters) UnmarshalJSON(src []byte) error

func (*NullableReportingScheduleCreateParameters) Unset added in v1.6.0

type NullableRepository added in v1.2.0

type NullableRepository struct {
	// contains filtered or unexported fields
}

func NewNullableRepository added in v1.2.0

func NewNullableRepository(val *Repository) *NullableRepository

func (NullableRepository) Get added in v1.2.0

func (v NullableRepository) Get() *Repository

func (NullableRepository) IsSet added in v1.2.0

func (v NullableRepository) IsSet() bool

func (NullableRepository) MarshalJSON added in v1.2.0

func (v NullableRepository) MarshalJSON() ([]byte, error)

func (*NullableRepository) Set added in v1.2.0

func (v *NullableRepository) Set(val *Repository)

func (*NullableRepository) UnmarshalJSON added in v1.2.0

func (v *NullableRepository) UnmarshalJSON(src []byte) error

func (*NullableRepository) Unset added in v1.2.0

func (v *NullableRepository) Unset()

type NullableResetPasswordParameter added in v1.6.0

type NullableResetPasswordParameter struct {
	// contains filtered or unexported fields
}

func NewNullableResetPasswordParameter added in v1.6.0

func NewNullableResetPasswordParameter(val *ResetPasswordParameter) *NullableResetPasswordParameter

func (NullableResetPasswordParameter) Get added in v1.6.0

func (NullableResetPasswordParameter) IsSet added in v1.6.0

func (NullableResetPasswordParameter) MarshalJSON added in v1.6.0

func (v NullableResetPasswordParameter) MarshalJSON() ([]byte, error)

func (*NullableResetPasswordParameter) Set added in v1.6.0

func (*NullableResetPasswordParameter) UnmarshalJSON added in v1.6.0

func (v *NullableResetPasswordParameter) UnmarshalJSON(src []byte) error

func (*NullableResetPasswordParameter) Unset added in v1.6.0

func (v *NullableResetPasswordParameter) Unset()

type NullableRole added in v1.6.0

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole added in v1.6.0

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get added in v1.6.0

func (v NullableRole) Get() *Role

func (NullableRole) IsSet added in v1.6.0

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON added in v1.6.0

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set added in v1.6.0

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON added in v1.6.0

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset added in v1.6.0

func (v *NullableRole) Unset()

type NullableRoleAllOf added in v1.6.0

type NullableRoleAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRoleAllOf added in v1.6.0

func NewNullableRoleAllOf(val *RoleAllOf) *NullableRoleAllOf

func (NullableRoleAllOf) Get added in v1.6.0

func (v NullableRoleAllOf) Get() *RoleAllOf

func (NullableRoleAllOf) IsSet added in v1.6.0

func (v NullableRoleAllOf) IsSet() bool

func (NullableRoleAllOf) MarshalJSON added in v1.6.0

func (v NullableRoleAllOf) MarshalJSON() ([]byte, error)

func (*NullableRoleAllOf) Set added in v1.6.0

func (v *NullableRoleAllOf) Set(val *RoleAllOf)

func (*NullableRoleAllOf) UnmarshalJSON added in v1.6.0

func (v *NullableRoleAllOf) UnmarshalJSON(src []byte) error

func (*NullableRoleAllOf) Unset added in v1.6.0

func (v *NullableRoleAllOf) Unset()

type NullableRoleUpdateParameters added in v1.6.0

type NullableRoleUpdateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRoleUpdateParameters added in v1.6.0

func NewNullableRoleUpdateParameters(val *RoleUpdateParameters) *NullableRoleUpdateParameters

func (NullableRoleUpdateParameters) Get added in v1.6.0

func (NullableRoleUpdateParameters) IsSet added in v1.6.0

func (NullableRoleUpdateParameters) MarshalJSON added in v1.6.0

func (v NullableRoleUpdateParameters) MarshalJSON() ([]byte, error)

func (*NullableRoleUpdateParameters) Set added in v1.6.0

func (*NullableRoleUpdateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableRoleUpdateParameters) UnmarshalJSON(src []byte) error

func (*NullableRoleUpdateParameters) Unset added in v1.6.0

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 added in v1.2.0

type NullableRollbackVDBFromBookmarkParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRollbackVDBFromBookmarkParameters added in v1.2.0

func NewNullableRollbackVDBFromBookmarkParameters(val *RollbackVDBFromBookmarkParameters) *NullableRollbackVDBFromBookmarkParameters

func (NullableRollbackVDBFromBookmarkParameters) Get added in v1.2.0

func (NullableRollbackVDBFromBookmarkParameters) IsSet added in v1.2.0

func (NullableRollbackVDBFromBookmarkParameters) MarshalJSON added in v1.2.0

func (*NullableRollbackVDBFromBookmarkParameters) Set added in v1.2.0

func (*NullableRollbackVDBFromBookmarkParameters) UnmarshalJSON added in v1.2.0

func (v *NullableRollbackVDBFromBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBFromBookmarkParameters) Unset added in v1.2.0

type NullableRollbackVDBFromBookmarkResponse added in v1.2.0

type NullableRollbackVDBFromBookmarkResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRollbackVDBFromBookmarkResponse added in v1.2.0

func NewNullableRollbackVDBFromBookmarkResponse(val *RollbackVDBFromBookmarkResponse) *NullableRollbackVDBFromBookmarkResponse

func (NullableRollbackVDBFromBookmarkResponse) Get added in v1.2.0

func (NullableRollbackVDBFromBookmarkResponse) IsSet added in v1.2.0

func (NullableRollbackVDBFromBookmarkResponse) MarshalJSON added in v1.2.0

func (v NullableRollbackVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBFromBookmarkResponse) Set added in v1.2.0

func (*NullableRollbackVDBFromBookmarkResponse) UnmarshalJSON added in v1.2.0

func (v *NullableRollbackVDBFromBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBFromBookmarkResponse) Unset added in v1.2.0

type NullableRollbackVDBGroupParameters added in v1.1.0

type NullableRollbackVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func NewNullableRollbackVDBGroupParameters added in v1.1.0

func NewNullableRollbackVDBGroupParameters(val *RollbackVDBGroupParameters) *NullableRollbackVDBGroupParameters

func (NullableRollbackVDBGroupParameters) Get added in v1.1.0

func (NullableRollbackVDBGroupParameters) IsSet added in v1.1.0

func (NullableRollbackVDBGroupParameters) MarshalJSON added in v1.1.0

func (v NullableRollbackVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBGroupParameters) Set added in v1.1.0

func (*NullableRollbackVDBGroupParameters) UnmarshalJSON added in v1.1.0

func (v *NullableRollbackVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBGroupParameters) Unset added in v1.1.0

type NullableRollbackVDBGroupResponse added in v1.1.0

type NullableRollbackVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRollbackVDBGroupResponse added in v1.1.0

func NewNullableRollbackVDBGroupResponse(val *RollbackVDBGroupResponse) *NullableRollbackVDBGroupResponse

func (NullableRollbackVDBGroupResponse) Get added in v1.1.0

func (NullableRollbackVDBGroupResponse) IsSet added in v1.1.0

func (NullableRollbackVDBGroupResponse) MarshalJSON added in v1.1.0

func (v NullableRollbackVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableRollbackVDBGroupResponse) Set added in v1.1.0

func (*NullableRollbackVDBGroupResponse) UnmarshalJSON added in v1.1.0

func (v *NullableRollbackVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableRollbackVDBGroupResponse) Unset added in v1.1.0

type NullableSAMLConfigParams added in v1.6.0

type NullableSAMLConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableSAMLConfigParams added in v1.6.0

func NewNullableSAMLConfigParams(val *SAMLConfigParams) *NullableSAMLConfigParams

func (NullableSAMLConfigParams) Get added in v1.6.0

func (NullableSAMLConfigParams) IsSet added in v1.6.0

func (v NullableSAMLConfigParams) IsSet() bool

func (NullableSAMLConfigParams) MarshalJSON added in v1.6.0

func (v NullableSAMLConfigParams) MarshalJSON() ([]byte, error)

func (*NullableSAMLConfigParams) Set added in v1.6.0

func (*NullableSAMLConfigParams) UnmarshalJSON added in v1.6.0

func (v *NullableSAMLConfigParams) UnmarshalJSON(src []byte) error

func (*NullableSAMLConfigParams) Unset added in v1.6.0

func (v *NullableSAMLConfigParams) Unset()

type NullableSMTPConfigParams added in v1.2.0

type NullableSMTPConfigParams struct {
	// contains filtered or unexported fields
}

func NewNullableSMTPConfigParams added in v1.2.0

func NewNullableSMTPConfigParams(val *SMTPConfigParams) *NullableSMTPConfigParams

func (NullableSMTPConfigParams) Get added in v1.2.0

func (NullableSMTPConfigParams) IsSet added in v1.2.0

func (v NullableSMTPConfigParams) IsSet() bool

func (NullableSMTPConfigParams) MarshalJSON added in v1.2.0

func (v NullableSMTPConfigParams) MarshalJSON() ([]byte, error)

func (*NullableSMTPConfigParams) Set added in v1.2.0

func (*NullableSMTPConfigParams) UnmarshalJSON added in v1.2.0

func (v *NullableSMTPConfigParams) UnmarshalJSON(src []byte) error

func (*NullableSMTPConfigParams) Unset added in v1.2.0

func (v *NullableSMTPConfigParams) Unset()

type NullableSMTPConfigValidate added in v1.2.0

type NullableSMTPConfigValidate struct {
	// contains filtered or unexported fields
}

func NewNullableSMTPConfigValidate added in v1.2.0

func NewNullableSMTPConfigValidate(val *SMTPConfigValidate) *NullableSMTPConfigValidate

func (NullableSMTPConfigValidate) Get added in v1.2.0

func (NullableSMTPConfigValidate) IsSet added in v1.2.0

func (v NullableSMTPConfigValidate) IsSet() bool

func (NullableSMTPConfigValidate) MarshalJSON added in v1.2.0

func (v NullableSMTPConfigValidate) MarshalJSON() ([]byte, error)

func (*NullableSMTPConfigValidate) Set added in v1.2.0

func (*NullableSMTPConfigValidate) UnmarshalJSON added in v1.2.0

func (v *NullableSMTPConfigValidate) UnmarshalJSON(src []byte) error

func (*NullableSMTPConfigValidate) Unset added in v1.2.0

func (v *NullableSMTPConfigValidate) Unset()

type NullableSSHVerificationStrategy added in v1.6.0

type NullableSSHVerificationStrategy struct {
	// contains filtered or unexported fields
}

func NewNullableSSHVerificationStrategy added in v1.6.0

func NewNullableSSHVerificationStrategy(val *SSHVerificationStrategy) *NullableSSHVerificationStrategy

func (NullableSSHVerificationStrategy) Get added in v1.6.0

func (NullableSSHVerificationStrategy) IsSet added in v1.6.0

func (NullableSSHVerificationStrategy) MarshalJSON added in v1.6.0

func (v NullableSSHVerificationStrategy) MarshalJSON() ([]byte, error)

func (*NullableSSHVerificationStrategy) Set added in v1.6.0

func (*NullableSSHVerificationStrategy) UnmarshalJSON added in v1.6.0

func (v *NullableSSHVerificationStrategy) UnmarshalJSON(src []byte) error

func (*NullableSSHVerificationStrategy) Unset added in v1.6.0

type NullableScopeTag added in v1.6.0

type NullableScopeTag struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTag added in v1.6.0

func NewNullableScopeTag(val *ScopeTag) *NullableScopeTag

func (NullableScopeTag) Get added in v1.6.0

func (v NullableScopeTag) Get() *ScopeTag

func (NullableScopeTag) IsSet added in v1.6.0

func (v NullableScopeTag) IsSet() bool

func (NullableScopeTag) MarshalJSON added in v1.6.0

func (v NullableScopeTag) MarshalJSON() ([]byte, error)

func (*NullableScopeTag) Set added in v1.6.0

func (v *NullableScopeTag) Set(val *ScopeTag)

func (*NullableScopeTag) UnmarshalJSON added in v1.6.0

func (v *NullableScopeTag) UnmarshalJSON(src []byte) error

func (*NullableScopeTag) Unset added in v1.6.0

func (v *NullableScopeTag) Unset()

type NullableScopeTagsRequest added in v1.6.0

type NullableScopeTagsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTagsRequest added in v1.6.0

func NewNullableScopeTagsRequest(val *ScopeTagsRequest) *NullableScopeTagsRequest

func (NullableScopeTagsRequest) Get added in v1.6.0

func (NullableScopeTagsRequest) IsSet added in v1.6.0

func (v NullableScopeTagsRequest) IsSet() bool

func (NullableScopeTagsRequest) MarshalJSON added in v1.6.0

func (v NullableScopeTagsRequest) MarshalJSON() ([]byte, error)

func (*NullableScopeTagsRequest) Set added in v1.6.0

func (*NullableScopeTagsRequest) UnmarshalJSON added in v1.6.0

func (v *NullableScopeTagsRequest) UnmarshalJSON(src []byte) error

func (*NullableScopeTagsRequest) Unset added in v1.6.0

func (v *NullableScopeTagsRequest) Unset()

type NullableScopeTagsResponse added in v1.6.0

type NullableScopeTagsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableScopeTagsResponse added in v1.6.0

func NewNullableScopeTagsResponse(val *ScopeTagsResponse) *NullableScopeTagsResponse

func (NullableScopeTagsResponse) Get added in v1.6.0

func (NullableScopeTagsResponse) IsSet added in v1.6.0

func (v NullableScopeTagsResponse) IsSet() bool

func (NullableScopeTagsResponse) MarshalJSON added in v1.6.0

func (v NullableScopeTagsResponse) MarshalJSON() ([]byte, error)

func (*NullableScopeTagsResponse) Set added in v1.6.0

func (*NullableScopeTagsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableScopeTagsResponse) UnmarshalJSON(src []byte) error

func (*NullableScopeTagsResponse) Unset added in v1.6.0

func (v *NullableScopeTagsResponse) Unset()

type NullableScopedObjectItem added in v1.6.0

type NullableScopedObjectItem struct {
	// contains filtered or unexported fields
}

func NewNullableScopedObjectItem added in v1.6.0

func NewNullableScopedObjectItem(val *ScopedObjectItem) *NullableScopedObjectItem

func (NullableScopedObjectItem) Get added in v1.6.0

func (NullableScopedObjectItem) IsSet added in v1.6.0

func (v NullableScopedObjectItem) IsSet() bool

func (NullableScopedObjectItem) MarshalJSON added in v1.6.0

func (v NullableScopedObjectItem) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectItem) Set added in v1.6.0

func (*NullableScopedObjectItem) UnmarshalJSON added in v1.6.0

func (v *NullableScopedObjectItem) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectItem) Unset added in v1.6.0

func (v *NullableScopedObjectItem) Unset()

type NullableScopedObjectItemsResponse added in v1.6.0

type NullableScopedObjectItemsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableScopedObjectItemsResponse added in v1.6.0

func NewNullableScopedObjectItemsResponse(val *ScopedObjectItemsResponse) *NullableScopedObjectItemsResponse

func (NullableScopedObjectItemsResponse) Get added in v1.6.0

func (NullableScopedObjectItemsResponse) IsSet added in v1.6.0

func (NullableScopedObjectItemsResponse) MarshalJSON added in v1.6.0

func (v NullableScopedObjectItemsResponse) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectItemsResponse) Set added in v1.6.0

func (*NullableScopedObjectItemsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableScopedObjectItemsResponse) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectItemsResponse) Unset added in v1.6.0

type NullableScopedObjectsRequest added in v1.6.0

type NullableScopedObjectsRequest struct {
	// contains filtered or unexported fields
}

func NewNullableScopedObjectsRequest added in v1.6.0

func NewNullableScopedObjectsRequest(val *ScopedObjectsRequest) *NullableScopedObjectsRequest

func (NullableScopedObjectsRequest) Get added in v1.6.0

func (NullableScopedObjectsRequest) IsSet added in v1.6.0

func (NullableScopedObjectsRequest) MarshalJSON added in v1.6.0

func (v NullableScopedObjectsRequest) MarshalJSON() ([]byte, error)

func (*NullableScopedObjectsRequest) Set added in v1.6.0

func (*NullableScopedObjectsRequest) UnmarshalJSON added in v1.6.0

func (v *NullableScopedObjectsRequest) UnmarshalJSON(src []byte) error

func (*NullableScopedObjectsRequest) Unset added in v1.6.0

func (v *NullableScopedObjectsRequest) Unset()

type NullableSearchAccessGroupsResponse added in v1.6.0

type NullableSearchAccessGroupsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchAccessGroupsResponse added in v1.6.0

func NewNullableSearchAccessGroupsResponse(val *SearchAccessGroupsResponse) *NullableSearchAccessGroupsResponse

func (NullableSearchAccessGroupsResponse) Get added in v1.6.0

func (NullableSearchAccessGroupsResponse) IsSet added in v1.6.0

func (NullableSearchAccessGroupsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchAccessGroupsResponse) Set added in v1.6.0

func (*NullableSearchAccessGroupsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchAccessGroupsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchAccessGroupsResponse) Unset added in v1.6.0

type NullableSearchAccountsResponse added in v1.6.0

type NullableSearchAccountsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchAccountsResponse added in v1.6.0

func NewNullableSearchAccountsResponse(val *SearchAccountsResponse) *NullableSearchAccountsResponse

func (NullableSearchAccountsResponse) Get added in v1.6.0

func (NullableSearchAccountsResponse) IsSet added in v1.6.0

func (NullableSearchAccountsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchAccountsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchAccountsResponse) Set added in v1.6.0

func (*NullableSearchAccountsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchAccountsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchAccountsResponse) Unset added in v1.6.0

func (v *NullableSearchAccountsResponse) Unset()

type NullableSearchBody added in v1.1.0

type NullableSearchBody struct {
	// contains filtered or unexported fields
}

func NewNullableSearchBody added in v1.1.0

func NewNullableSearchBody(val *SearchBody) *NullableSearchBody

func (NullableSearchBody) Get added in v1.1.0

func (v NullableSearchBody) Get() *SearchBody

func (NullableSearchBody) IsSet added in v1.1.0

func (v NullableSearchBody) IsSet() bool

func (NullableSearchBody) MarshalJSON added in v1.1.0

func (v NullableSearchBody) MarshalJSON() ([]byte, error)

func (*NullableSearchBody) Set added in v1.1.0

func (v *NullableSearchBody) Set(val *SearchBody)

func (*NullableSearchBody) UnmarshalJSON added in v1.1.0

func (v *NullableSearchBody) UnmarshalJSON(src []byte) error

func (*NullableSearchBody) Unset added in v1.1.0

func (v *NullableSearchBody) Unset()

type NullableSearchBookmarksResponse added in v1.2.0

type NullableSearchBookmarksResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchBookmarksResponse added in v1.2.0

func NewNullableSearchBookmarksResponse(val *SearchBookmarksResponse) *NullableSearchBookmarksResponse

func (NullableSearchBookmarksResponse) Get added in v1.2.0

func (NullableSearchBookmarksResponse) IsSet added in v1.2.0

func (NullableSearchBookmarksResponse) MarshalJSON added in v1.2.0

func (v NullableSearchBookmarksResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchBookmarksResponse) Set added in v1.2.0

func (*NullableSearchBookmarksResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchBookmarksResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchBookmarksResponse) Unset added in v1.2.0

type NullableSearchCDBsResponse added in v1.6.0

type NullableSearchCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchCDBsResponse added in v1.6.0

func NewNullableSearchCDBsResponse(val *SearchCDBsResponse) *NullableSearchCDBsResponse

func (NullableSearchCDBsResponse) Get added in v1.6.0

func (NullableSearchCDBsResponse) IsSet added in v1.6.0

func (v NullableSearchCDBsResponse) IsSet() bool

func (NullableSearchCDBsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchCDBsResponse) Set added in v1.6.0

func (*NullableSearchCDBsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchCDBsResponse) Unset added in v1.6.0

func (v *NullableSearchCDBsResponse) Unset()

type NullableSearchConnectorsResponse added in v1.6.0

type NullableSearchConnectorsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchConnectorsResponse added in v1.6.0

func NewNullableSearchConnectorsResponse(val *SearchConnectorsResponse) *NullableSearchConnectorsResponse

func (NullableSearchConnectorsResponse) Get added in v1.6.0

func (NullableSearchConnectorsResponse) IsSet added in v1.6.0

func (NullableSearchConnectorsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchConnectorsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchConnectorsResponse) Set added in v1.6.0

func (*NullableSearchConnectorsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchConnectorsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchConnectorsResponse) Unset added in v1.6.0

type NullableSearchDSourcesResponse added in v1.2.0

type NullableSearchDSourcesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchDSourcesResponse added in v1.2.0

func NewNullableSearchDSourcesResponse(val *SearchDSourcesResponse) *NullableSearchDSourcesResponse

func (NullableSearchDSourcesResponse) Get added in v1.2.0

func (NullableSearchDSourcesResponse) IsSet added in v1.2.0

func (NullableSearchDSourcesResponse) MarshalJSON added in v1.2.0

func (v NullableSearchDSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDSourcesResponse) Set added in v1.2.0

func (*NullableSearchDSourcesResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchDSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDSourcesResponse) Unset added in v1.2.0

func (v *NullableSearchDSourcesResponse) Unset()

type NullableSearchDatabaseTemplatesResponse added in v1.6.0

type NullableSearchDatabaseTemplatesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchDatabaseTemplatesResponse added in v1.6.0

func NewNullableSearchDatabaseTemplatesResponse(val *SearchDatabaseTemplatesResponse) *NullableSearchDatabaseTemplatesResponse

func (NullableSearchDatabaseTemplatesResponse) Get added in v1.6.0

func (NullableSearchDatabaseTemplatesResponse) IsSet added in v1.6.0

func (NullableSearchDatabaseTemplatesResponse) MarshalJSON added in v1.6.0

func (v NullableSearchDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDatabaseTemplatesResponse) Set added in v1.6.0

func (*NullableSearchDatabaseTemplatesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchDatabaseTemplatesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDatabaseTemplatesResponse) Unset added in v1.6.0

type NullableSearchDatasetGroupResponse added in v1.6.0

type NullableSearchDatasetGroupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchDatasetGroupResponse added in v1.6.0

func NewNullableSearchDatasetGroupResponse(val *SearchDatasetGroupResponse) *NullableSearchDatasetGroupResponse

func (NullableSearchDatasetGroupResponse) Get added in v1.6.0

func (NullableSearchDatasetGroupResponse) IsSet added in v1.6.0

func (NullableSearchDatasetGroupResponse) MarshalJSON added in v1.6.0

func (v NullableSearchDatasetGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchDatasetGroupResponse) Set added in v1.6.0

func (*NullableSearchDatasetGroupResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchDatasetGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchDatasetGroupResponse) Unset added in v1.6.0

type NullableSearchEnginesResponse added in v1.2.0

type NullableSearchEnginesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchEnginesResponse added in v1.2.0

func NewNullableSearchEnginesResponse(val *SearchEnginesResponse) *NullableSearchEnginesResponse

func (NullableSearchEnginesResponse) Get added in v1.2.0

func (NullableSearchEnginesResponse) IsSet added in v1.2.0

func (NullableSearchEnginesResponse) MarshalJSON added in v1.2.0

func (v NullableSearchEnginesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchEnginesResponse) Set added in v1.2.0

func (*NullableSearchEnginesResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchEnginesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchEnginesResponse) Unset added in v1.2.0

func (v *NullableSearchEnginesResponse) Unset()

type NullableSearchEnvironmentsResponse added in v1.2.0

type NullableSearchEnvironmentsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchEnvironmentsResponse added in v1.2.0

func NewNullableSearchEnvironmentsResponse(val *SearchEnvironmentsResponse) *NullableSearchEnvironmentsResponse

func (NullableSearchEnvironmentsResponse) Get added in v1.2.0

func (NullableSearchEnvironmentsResponse) IsSet added in v1.2.0

func (NullableSearchEnvironmentsResponse) MarshalJSON added in v1.2.0

func (v NullableSearchEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchEnvironmentsResponse) Set added in v1.2.0

func (*NullableSearchEnvironmentsResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchEnvironmentsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchEnvironmentsResponse) Unset added in v1.2.0

type NullableSearchExecutionEventsResponse added in v1.6.0

type NullableSearchExecutionEventsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchExecutionEventsResponse added in v1.6.0

func NewNullableSearchExecutionEventsResponse(val *SearchExecutionEventsResponse) *NullableSearchExecutionEventsResponse

func (NullableSearchExecutionEventsResponse) Get added in v1.6.0

func (NullableSearchExecutionEventsResponse) IsSet added in v1.6.0

func (NullableSearchExecutionEventsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchExecutionEventsResponse) Set added in v1.6.0

func (*NullableSearchExecutionEventsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchExecutionEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchExecutionEventsResponse) Unset added in v1.6.0

type NullableSearchExecutionsResponse added in v1.6.0

type NullableSearchExecutionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchExecutionsResponse added in v1.6.0

func NewNullableSearchExecutionsResponse(val *SearchExecutionsResponse) *NullableSearchExecutionsResponse

func (NullableSearchExecutionsResponse) Get added in v1.6.0

func (NullableSearchExecutionsResponse) IsSet added in v1.6.0

func (NullableSearchExecutionsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchExecutionsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchExecutionsResponse) Set added in v1.6.0

func (*NullableSearchExecutionsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchExecutionsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchExecutionsResponse) Unset added in v1.6.0

type NullableSearchJobsResponse added in v1.6.0

type NullableSearchJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchJobsResponse added in v1.6.0

func NewNullableSearchJobsResponse(val *SearchJobsResponse) *NullableSearchJobsResponse

func (NullableSearchJobsResponse) Get added in v1.6.0

func (NullableSearchJobsResponse) IsSet added in v1.6.0

func (v NullableSearchJobsResponse) IsSet() bool

func (NullableSearchJobsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchJobsResponse) Set added in v1.6.0

func (*NullableSearchJobsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchJobsResponse) Unset added in v1.6.0

func (v *NullableSearchJobsResponse) Unset()

type NullableSearchMaskingJobSourceEnginesResponse added in v1.6.0

type NullableSearchMaskingJobSourceEnginesResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchMaskingJobSourceEnginesResponse) Get added in v1.6.0

func (NullableSearchMaskingJobSourceEnginesResponse) IsSet added in v1.6.0

func (NullableSearchMaskingJobSourceEnginesResponse) MarshalJSON added in v1.6.0

func (*NullableSearchMaskingJobSourceEnginesResponse) Set added in v1.6.0

func (*NullableSearchMaskingJobSourceEnginesResponse) UnmarshalJSON added in v1.6.0

func (*NullableSearchMaskingJobSourceEnginesResponse) Unset added in v1.6.0

type NullableSearchMaskingJobsResponse added in v1.6.0

type NullableSearchMaskingJobsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchMaskingJobsResponse added in v1.6.0

func NewNullableSearchMaskingJobsResponse(val *SearchMaskingJobsResponse) *NullableSearchMaskingJobsResponse

func (NullableSearchMaskingJobsResponse) Get added in v1.6.0

func (NullableSearchMaskingJobsResponse) IsSet added in v1.6.0

func (NullableSearchMaskingJobsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchMaskingJobsResponse) Set added in v1.6.0

func (*NullableSearchMaskingJobsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchMaskingJobsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchMaskingJobsResponse) Unset added in v1.6.0

type NullableSearchRolesResponse added in v1.6.0

type NullableSearchRolesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchRolesResponse added in v1.6.0

func NewNullableSearchRolesResponse(val *SearchRolesResponse) *NullableSearchRolesResponse

func (NullableSearchRolesResponse) Get added in v1.6.0

func (NullableSearchRolesResponse) IsSet added in v1.6.0

func (NullableSearchRolesResponse) MarshalJSON added in v1.6.0

func (v NullableSearchRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchRolesResponse) Set added in v1.6.0

func (*NullableSearchRolesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchRolesResponse) Unset added in v1.6.0

func (v *NullableSearchRolesResponse) Unset()

type NullableSearchSnapshotsResponse added in v1.6.0

type NullableSearchSnapshotsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchSnapshotsResponse added in v1.6.0

func NewNullableSearchSnapshotsResponse(val *SearchSnapshotsResponse) *NullableSearchSnapshotsResponse

func (NullableSearchSnapshotsResponse) Get added in v1.6.0

func (NullableSearchSnapshotsResponse) IsSet added in v1.6.0

func (NullableSearchSnapshotsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchSnapshotsResponse) Set added in v1.6.0

func (*NullableSearchSnapshotsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchSnapshotsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchSnapshotsResponse) Unset added in v1.6.0

type NullableSearchSourcesResponse added in v1.2.0

type NullableSearchSourcesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchSourcesResponse added in v1.2.0

func NewNullableSearchSourcesResponse(val *SearchSourcesResponse) *NullableSearchSourcesResponse

func (NullableSearchSourcesResponse) Get added in v1.2.0

func (NullableSearchSourcesResponse) IsSet added in v1.2.0

func (NullableSearchSourcesResponse) MarshalJSON added in v1.2.0

func (v NullableSearchSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchSourcesResponse) Set added in v1.2.0

func (*NullableSearchSourcesResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchSourcesResponse) Unset added in v1.2.0

func (v *NullableSearchSourcesResponse) Unset()

type NullableSearchTimeflowsResponse added in v1.6.0

type NullableSearchTimeflowsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchTimeflowsResponse added in v1.6.0

func NewNullableSearchTimeflowsResponse(val *SearchTimeflowsResponse) *NullableSearchTimeflowsResponse

func (NullableSearchTimeflowsResponse) Get added in v1.6.0

func (NullableSearchTimeflowsResponse) IsSet added in v1.6.0

func (NullableSearchTimeflowsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchTimeflowsResponse) Set added in v1.6.0

func (*NullableSearchTimeflowsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchTimeflowsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchTimeflowsResponse) Unset added in v1.6.0

type NullableSearchVCDBsResponse added in v1.6.0

type NullableSearchVCDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVCDBsResponse added in v1.6.0

func NewNullableSearchVCDBsResponse(val *SearchVCDBsResponse) *NullableSearchVCDBsResponse

func (NullableSearchVCDBsResponse) Get added in v1.6.0

func (NullableSearchVCDBsResponse) IsSet added in v1.6.0

func (NullableSearchVCDBsResponse) MarshalJSON added in v1.6.0

func (v NullableSearchVCDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVCDBsResponse) Set added in v1.6.0

func (*NullableSearchVCDBsResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSearchVCDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVCDBsResponse) Unset added in v1.6.0

func (v *NullableSearchVCDBsResponse) Unset()

type NullableSearchVDBGroupResponse added in v1.2.0

type NullableSearchVDBGroupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVDBGroupResponse added in v1.2.0

func NewNullableSearchVDBGroupResponse(val *SearchVDBGroupResponse) *NullableSearchVDBGroupResponse

func (NullableSearchVDBGroupResponse) Get added in v1.2.0

func (NullableSearchVDBGroupResponse) IsSet added in v1.2.0

func (NullableSearchVDBGroupResponse) MarshalJSON added in v1.2.0

func (v NullableSearchVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVDBGroupResponse) Set added in v1.2.0

func (*NullableSearchVDBGroupResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSearchVDBGroupResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVDBGroupResponse) Unset added in v1.2.0

func (v *NullableSearchVDBGroupResponse) Unset()

type NullableSearchVDBsResponse added in v1.1.0

type NullableSearchVDBsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVDBsResponse added in v1.1.0

func NewNullableSearchVDBsResponse(val *SearchVDBsResponse) *NullableSearchVDBsResponse

func (NullableSearchVDBsResponse) Get added in v1.1.0

func (NullableSearchVDBsResponse) IsSet added in v1.1.0

func (v NullableSearchVDBsResponse) IsSet() bool

func (NullableSearchVDBsResponse) MarshalJSON added in v1.1.0

func (v NullableSearchVDBsResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchVDBsResponse) Set added in v1.1.0

func (*NullableSearchVDBsResponse) UnmarshalJSON added in v1.1.0

func (v *NullableSearchVDBsResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchVDBsResponse) Unset added in v1.1.0

func (v *NullableSearchVDBsResponse) Unset()

type NullableSearchVirtualizationPoliciesResponse added in v1.6.0

type NullableSearchVirtualizationPoliciesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSearchVirtualizationPoliciesResponse added in v1.6.0

func NewNullableSearchVirtualizationPoliciesResponse(val *SearchVirtualizationPoliciesResponse) *NullableSearchVirtualizationPoliciesResponse

func (NullableSearchVirtualizationPoliciesResponse) Get added in v1.6.0

func (NullableSearchVirtualizationPoliciesResponse) IsSet added in v1.6.0

func (NullableSearchVirtualizationPoliciesResponse) MarshalJSON added in v1.6.0

func (*NullableSearchVirtualizationPoliciesResponse) Set added in v1.6.0

func (*NullableSearchVirtualizationPoliciesResponse) UnmarshalJSON added in v1.6.0

func (*NullableSearchVirtualizationPoliciesResponse) Unset added in v1.6.0

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 NullableSnapshotCompatibleRepositories added in v1.6.0

type NullableSnapshotCompatibleRepositories struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotCompatibleRepositories added in v1.6.0

func NewNullableSnapshotCompatibleRepositories(val *SnapshotCompatibleRepositories) *NullableSnapshotCompatibleRepositories

func (NullableSnapshotCompatibleRepositories) Get added in v1.6.0

func (NullableSnapshotCompatibleRepositories) IsSet added in v1.6.0

func (NullableSnapshotCompatibleRepositories) MarshalJSON added in v1.6.0

func (v NullableSnapshotCompatibleRepositories) MarshalJSON() ([]byte, error)

func (*NullableSnapshotCompatibleRepositories) Set added in v1.6.0

func (*NullableSnapshotCompatibleRepositories) UnmarshalJSON added in v1.6.0

func (v *NullableSnapshotCompatibleRepositories) UnmarshalJSON(src []byte) error

func (*NullableSnapshotCompatibleRepositories) Unset added in v1.6.0

type NullableSnapshotCompatibleRepositoryRequest added in v1.6.0

type NullableSnapshotCompatibleRepositoryRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotCompatibleRepositoryRequest added in v1.6.0

func NewNullableSnapshotCompatibleRepositoryRequest(val *SnapshotCompatibleRepositoryRequest) *NullableSnapshotCompatibleRepositoryRequest

func (NullableSnapshotCompatibleRepositoryRequest) Get added in v1.6.0

func (NullableSnapshotCompatibleRepositoryRequest) IsSet added in v1.6.0

func (NullableSnapshotCompatibleRepositoryRequest) MarshalJSON added in v1.6.0

func (*NullableSnapshotCompatibleRepositoryRequest) Set added in v1.6.0

func (*NullableSnapshotCompatibleRepositoryRequest) UnmarshalJSON added in v1.6.0

func (v *NullableSnapshotCompatibleRepositoryRequest) UnmarshalJSON(src []byte) error

func (*NullableSnapshotCompatibleRepositoryRequest) Unset added in v1.6.0

type NullableSnapshotDSourceResponse added in v1.2.0

type NullableSnapshotDSourceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotDSourceResponse added in v1.2.0

func NewNullableSnapshotDSourceResponse(val *SnapshotDSourceResponse) *NullableSnapshotDSourceResponse

func (NullableSnapshotDSourceResponse) Get added in v1.2.0

func (NullableSnapshotDSourceResponse) IsSet added in v1.2.0

func (NullableSnapshotDSourceResponse) MarshalJSON added in v1.2.0

func (v NullableSnapshotDSourceResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotDSourceResponse) Set added in v1.2.0

func (*NullableSnapshotDSourceResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSnapshotDSourceResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotDSourceResponse) Unset added in v1.2.0

type NullableSnapshotDayRange added in v1.6.0

type NullableSnapshotDayRange struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotDayRange added in v1.6.0

func NewNullableSnapshotDayRange(val *SnapshotDayRange) *NullableSnapshotDayRange

func (NullableSnapshotDayRange) Get added in v1.6.0

func (NullableSnapshotDayRange) IsSet added in v1.6.0

func (v NullableSnapshotDayRange) IsSet() bool

func (NullableSnapshotDayRange) MarshalJSON added in v1.6.0

func (v NullableSnapshotDayRange) MarshalJSON() ([]byte, error)

func (*NullableSnapshotDayRange) Set added in v1.6.0

func (*NullableSnapshotDayRange) UnmarshalJSON added in v1.6.0

func (v *NullableSnapshotDayRange) UnmarshalJSON(src []byte) error

func (*NullableSnapshotDayRange) Unset added in v1.6.0

func (v *NullableSnapshotDayRange) Unset()

type NullableSnapshotVDBResponse added in v1.2.0

type NullableSnapshotVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotVDBResponse added in v1.2.0

func NewNullableSnapshotVDBResponse(val *SnapshotVDBResponse) *NullableSnapshotVDBResponse

func (NullableSnapshotVDBResponse) Get added in v1.2.0

func (NullableSnapshotVDBResponse) IsSet added in v1.2.0

func (NullableSnapshotVDBResponse) MarshalJSON added in v1.2.0

func (v NullableSnapshotVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotVDBResponse) Set added in v1.2.0

func (*NullableSnapshotVDBResponse) UnmarshalJSON added in v1.2.0

func (v *NullableSnapshotVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotVDBResponse) Unset added in v1.2.0

func (v *NullableSnapshotVDBResponse) Unset()

type NullableSnapshotsDayRangesResponse added in v1.6.0

type NullableSnapshotsDayRangesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSnapshotsDayRangesResponse added in v1.6.0

func NewNullableSnapshotsDayRangesResponse(val *SnapshotsDayRangesResponse) *NullableSnapshotsDayRangesResponse

func (NullableSnapshotsDayRangesResponse) Get added in v1.6.0

func (NullableSnapshotsDayRangesResponse) IsSet added in v1.6.0

func (NullableSnapshotsDayRangesResponse) MarshalJSON added in v1.6.0

func (v NullableSnapshotsDayRangesResponse) MarshalJSON() ([]byte, error)

func (*NullableSnapshotsDayRangesResponse) Set added in v1.6.0

func (*NullableSnapshotsDayRangesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSnapshotsDayRangesResponse) UnmarshalJSON(src []byte) error

func (*NullableSnapshotsDayRangesResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableSourceOperation struct {
	// contains filtered or unexported fields
}

func NewNullableSourceOperation added in v1.6.0

func NewNullableSourceOperation(val *SourceOperation) *NullableSourceOperation

func (NullableSourceOperation) Get added in v1.6.0

func (NullableSourceOperation) IsSet added in v1.6.0

func (v NullableSourceOperation) IsSet() bool

func (NullableSourceOperation) MarshalJSON added in v1.6.0

func (v NullableSourceOperation) MarshalJSON() ([]byte, error)

func (*NullableSourceOperation) Set added in v1.6.0

func (*NullableSourceOperation) UnmarshalJSON added in v1.6.0

func (v *NullableSourceOperation) UnmarshalJSON(src []byte) error

func (*NullableSourceOperation) Unset added in v1.6.0

func (v *NullableSourceOperation) 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 added in v1.6.0

type NullableSwitchTimeflowParameters struct {
	// contains filtered or unexported fields
}

func NewNullableSwitchTimeflowParameters added in v1.6.0

func NewNullableSwitchTimeflowParameters(val *SwitchTimeflowParameters) *NullableSwitchTimeflowParameters

func (NullableSwitchTimeflowParameters) Get added in v1.6.0

func (NullableSwitchTimeflowParameters) IsSet added in v1.6.0

func (NullableSwitchTimeflowParameters) MarshalJSON added in v1.6.0

func (v NullableSwitchTimeflowParameters) MarshalJSON() ([]byte, error)

func (*NullableSwitchTimeflowParameters) Set added in v1.6.0

func (*NullableSwitchTimeflowParameters) UnmarshalJSON added in v1.6.0

func (v *NullableSwitchTimeflowParameters) UnmarshalJSON(src []byte) error

func (*NullableSwitchTimeflowParameters) Unset added in v1.6.0

type NullableSwitchTimeflowResponse added in v1.6.0

type NullableSwitchTimeflowResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSwitchTimeflowResponse added in v1.6.0

func NewNullableSwitchTimeflowResponse(val *SwitchTimeflowResponse) *NullableSwitchTimeflowResponse

func (NullableSwitchTimeflowResponse) Get added in v1.6.0

func (NullableSwitchTimeflowResponse) IsSet added in v1.6.0

func (NullableSwitchTimeflowResponse) MarshalJSON added in v1.6.0

func (v NullableSwitchTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableSwitchTimeflowResponse) Set added in v1.6.0

func (*NullableSwitchTimeflowResponse) UnmarshalJSON added in v1.6.0

func (v *NullableSwitchTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableSwitchTimeflowResponse) Unset added in v1.6.0

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 added in v1.6.0

type NullableTaskEvent struct {
	// contains filtered or unexported fields
}

func NewNullableTaskEvent added in v1.6.0

func NewNullableTaskEvent(val *TaskEvent) *NullableTaskEvent

func (NullableTaskEvent) Get added in v1.6.0

func (v NullableTaskEvent) Get() *TaskEvent

func (NullableTaskEvent) IsSet added in v1.6.0

func (v NullableTaskEvent) IsSet() bool

func (NullableTaskEvent) MarshalJSON added in v1.6.0

func (v NullableTaskEvent) MarshalJSON() ([]byte, error)

func (*NullableTaskEvent) Set added in v1.6.0

func (v *NullableTaskEvent) Set(val *TaskEvent)

func (*NullableTaskEvent) UnmarshalJSON added in v1.6.0

func (v *NullableTaskEvent) UnmarshalJSON(src []byte) error

func (*NullableTaskEvent) Unset added in v1.6.0

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 NullableTimeToUpdateSourcesRequest added in v1.6.0

type NullableTimeToUpdateSourcesRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTimeToUpdateSourcesRequest added in v1.6.0

func NewNullableTimeToUpdateSourcesRequest(val *TimeToUpdateSourcesRequest) *NullableTimeToUpdateSourcesRequest

func (NullableTimeToUpdateSourcesRequest) Get added in v1.6.0

func (NullableTimeToUpdateSourcesRequest) IsSet added in v1.6.0

func (NullableTimeToUpdateSourcesRequest) MarshalJSON added in v1.6.0

func (v NullableTimeToUpdateSourcesRequest) MarshalJSON() ([]byte, error)

func (*NullableTimeToUpdateSourcesRequest) Set added in v1.6.0

func (*NullableTimeToUpdateSourcesRequest) UnmarshalJSON added in v1.6.0

func (v *NullableTimeToUpdateSourcesRequest) UnmarshalJSON(src []byte) error

func (*NullableTimeToUpdateSourcesRequest) Unset added in v1.6.0

type NullableTimeToUpdateSourcesResponse added in v1.6.0

type NullableTimeToUpdateSourcesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTimeToUpdateSourcesResponse added in v1.6.0

func NewNullableTimeToUpdateSourcesResponse(val *TimeToUpdateSourcesResponse) *NullableTimeToUpdateSourcesResponse

func (NullableTimeToUpdateSourcesResponse) Get added in v1.6.0

func (NullableTimeToUpdateSourcesResponse) IsSet added in v1.6.0

func (NullableTimeToUpdateSourcesResponse) MarshalJSON added in v1.6.0

func (v NullableTimeToUpdateSourcesResponse) MarshalJSON() ([]byte, error)

func (*NullableTimeToUpdateSourcesResponse) Set added in v1.6.0

func (*NullableTimeToUpdateSourcesResponse) UnmarshalJSON added in v1.6.0

func (v *NullableTimeToUpdateSourcesResponse) UnmarshalJSON(src []byte) error

func (*NullableTimeToUpdateSourcesResponse) Unset added in v1.6.0

type NullableTimeflow added in v1.6.0

type NullableTimeflow struct {
	// contains filtered or unexported fields
}

func NewNullableTimeflow added in v1.6.0

func NewNullableTimeflow(val *Timeflow) *NullableTimeflow

func (NullableTimeflow) Get added in v1.6.0

func (v NullableTimeflow) Get() *Timeflow

func (NullableTimeflow) IsSet added in v1.6.0

func (v NullableTimeflow) IsSet() bool

func (NullableTimeflow) MarshalJSON added in v1.6.0

func (v NullableTimeflow) MarshalJSON() ([]byte, error)

func (*NullableTimeflow) Set added in v1.6.0

func (v *NullableTimeflow) Set(val *Timeflow)

func (*NullableTimeflow) UnmarshalJSON added in v1.6.0

func (v *NullableTimeflow) UnmarshalJSON(src []byte) error

func (*NullableTimeflow) Unset added in v1.6.0

func (v *NullableTimeflow) Unset()

type NullableTokenInfoRequest added in v1.6.0

type NullableTokenInfoRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTokenInfoRequest added in v1.6.0

func NewNullableTokenInfoRequest(val *TokenInfoRequest) *NullableTokenInfoRequest

func (NullableTokenInfoRequest) Get added in v1.6.0

func (NullableTokenInfoRequest) IsSet added in v1.6.0

func (v NullableTokenInfoRequest) IsSet() bool

func (NullableTokenInfoRequest) MarshalJSON added in v1.6.0

func (v NullableTokenInfoRequest) MarshalJSON() ([]byte, error)

func (*NullableTokenInfoRequest) Set added in v1.6.0

func (*NullableTokenInfoRequest) UnmarshalJSON added in v1.6.0

func (v *NullableTokenInfoRequest) UnmarshalJSON(src []byte) error

func (*NullableTokenInfoRequest) Unset added in v1.6.0

func (v *NullableTokenInfoRequest) Unset()

type NullableTokenInfoResponse added in v1.6.0

type NullableTokenInfoResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTokenInfoResponse added in v1.6.0

func NewNullableTokenInfoResponse(val *TokenInfoResponse) *NullableTokenInfoResponse

func (NullableTokenInfoResponse) Get added in v1.6.0

func (NullableTokenInfoResponse) IsSet added in v1.6.0

func (v NullableTokenInfoResponse) IsSet() bool

func (NullableTokenInfoResponse) MarshalJSON added in v1.6.0

func (v NullableTokenInfoResponse) MarshalJSON() ([]byte, error)

func (*NullableTokenInfoResponse) Set added in v1.6.0

func (*NullableTokenInfoResponse) UnmarshalJSON added in v1.6.0

func (v *NullableTokenInfoResponse) UnmarshalJSON(src []byte) error

func (*NullableTokenInfoResponse) Unset added in v1.6.0

func (v *NullableTokenInfoResponse) Unset()

type NullableUnsetSnapshotRetentionResponse added in v1.6.0

type NullableUnsetSnapshotRetentionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUnsetSnapshotRetentionResponse added in v1.6.0

func NewNullableUnsetSnapshotRetentionResponse(val *UnsetSnapshotRetentionResponse) *NullableUnsetSnapshotRetentionResponse

func (NullableUnsetSnapshotRetentionResponse) Get added in v1.6.0

func (NullableUnsetSnapshotRetentionResponse) IsSet added in v1.6.0

func (NullableUnsetSnapshotRetentionResponse) MarshalJSON added in v1.6.0

func (v NullableUnsetSnapshotRetentionResponse) MarshalJSON() ([]byte, error)

func (*NullableUnsetSnapshotRetentionResponse) Set added in v1.6.0

func (*NullableUnsetSnapshotRetentionResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUnsetSnapshotRetentionResponse) UnmarshalJSON(src []byte) error

func (*NullableUnsetSnapshotRetentionResponse) Unset added in v1.6.0

type NullableUpdateAccessGroupScope added in v1.6.0

type NullableUpdateAccessGroupScope struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateAccessGroupScope added in v1.6.0

func NewNullableUpdateAccessGroupScope(val *UpdateAccessGroupScope) *NullableUpdateAccessGroupScope

func (NullableUpdateAccessGroupScope) Get added in v1.6.0

func (NullableUpdateAccessGroupScope) IsSet added in v1.6.0

func (NullableUpdateAccessGroupScope) MarshalJSON added in v1.6.0

func (v NullableUpdateAccessGroupScope) MarshalJSON() ([]byte, error)

func (*NullableUpdateAccessGroupScope) Set added in v1.6.0

func (*NullableUpdateAccessGroupScope) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateAccessGroupScope) UnmarshalJSON(src []byte) error

func (*NullableUpdateAccessGroupScope) Unset added in v1.6.0

func (v *NullableUpdateAccessGroupScope) Unset()

type NullableUpdateBookmarkParameters added in v1.6.0

type NullableUpdateBookmarkParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateBookmarkParameters added in v1.6.0

func NewNullableUpdateBookmarkParameters(val *UpdateBookmarkParameters) *NullableUpdateBookmarkParameters

func (NullableUpdateBookmarkParameters) Get added in v1.6.0

func (NullableUpdateBookmarkParameters) IsSet added in v1.6.0

func (NullableUpdateBookmarkParameters) MarshalJSON added in v1.6.0

func (v NullableUpdateBookmarkParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateBookmarkParameters) Set added in v1.6.0

func (*NullableUpdateBookmarkParameters) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateBookmarkParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateBookmarkParameters) Unset added in v1.6.0

type NullableUpdateConnectorResponse added in v1.6.0

type NullableUpdateConnectorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateConnectorResponse added in v1.6.0

func NewNullableUpdateConnectorResponse(val *UpdateConnectorResponse) *NullableUpdateConnectorResponse

func (NullableUpdateConnectorResponse) Get added in v1.6.0

func (NullableUpdateConnectorResponse) IsSet added in v1.6.0

func (NullableUpdateConnectorResponse) MarshalJSON added in v1.6.0

func (v NullableUpdateConnectorResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateConnectorResponse) Set added in v1.6.0

func (*NullableUpdateConnectorResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateConnectorResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateConnectorResponse) Unset added in v1.6.0

type NullableUpdateDatabaseTemplateParameters added in v1.6.0

type NullableUpdateDatabaseTemplateParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateDatabaseTemplateParameters added in v1.6.0

func NewNullableUpdateDatabaseTemplateParameters(val *UpdateDatabaseTemplateParameters) *NullableUpdateDatabaseTemplateParameters

func (NullableUpdateDatabaseTemplateParameters) Get added in v1.6.0

func (NullableUpdateDatabaseTemplateParameters) IsSet added in v1.6.0

func (NullableUpdateDatabaseTemplateParameters) MarshalJSON added in v1.6.0

func (*NullableUpdateDatabaseTemplateParameters) Set added in v1.6.0

func (*NullableUpdateDatabaseTemplateParameters) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateDatabaseTemplateParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateDatabaseTemplateParameters) Unset added in v1.6.0

type NullableUpdateDatabaseTemplateResponse added in v1.6.0

type NullableUpdateDatabaseTemplateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateDatabaseTemplateResponse added in v1.6.0

func NewNullableUpdateDatabaseTemplateResponse(val *UpdateDatabaseTemplateResponse) *NullableUpdateDatabaseTemplateResponse

func (NullableUpdateDatabaseTemplateResponse) Get added in v1.6.0

func (NullableUpdateDatabaseTemplateResponse) IsSet added in v1.6.0

func (NullableUpdateDatabaseTemplateResponse) MarshalJSON added in v1.6.0

func (v NullableUpdateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateDatabaseTemplateResponse) Set added in v1.6.0

func (*NullableUpdateDatabaseTemplateResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateDatabaseTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateDatabaseTemplateResponse) Unset added in v1.6.0

type NullableUpdateEnvironmentResponse added in v1.1.0

type NullableUpdateEnvironmentResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateEnvironmentResponse added in v1.1.0

func NewNullableUpdateEnvironmentResponse(val *UpdateEnvironmentResponse) *NullableUpdateEnvironmentResponse

func (NullableUpdateEnvironmentResponse) Get added in v1.1.0

func (NullableUpdateEnvironmentResponse) IsSet added in v1.1.0

func (NullableUpdateEnvironmentResponse) MarshalJSON added in v1.1.0

func (v NullableUpdateEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironmentResponse) Set added in v1.1.0

func (*NullableUpdateEnvironmentResponse) UnmarshalJSON added in v1.1.0

func (v *NullableUpdateEnvironmentResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironmentResponse) Unset added in v1.1.0

type NullableUpdateEnvironmentUserResponse added in v1.2.0

type NullableUpdateEnvironmentUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateEnvironmentUserResponse added in v1.2.0

func NewNullableUpdateEnvironmentUserResponse(val *UpdateEnvironmentUserResponse) *NullableUpdateEnvironmentUserResponse

func (NullableUpdateEnvironmentUserResponse) Get added in v1.2.0

func (NullableUpdateEnvironmentUserResponse) IsSet added in v1.2.0

func (NullableUpdateEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (v NullableUpdateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironmentUserResponse) Set added in v1.2.0

func (*NullableUpdateEnvironmentUserResponse) UnmarshalJSON added in v1.2.0

func (v *NullableUpdateEnvironmentUserResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironmentUserResponse) Unset added in v1.2.0

type NullableUpdateHostResponse added in v1.6.0

type NullableUpdateHostResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateHostResponse added in v1.6.0

func NewNullableUpdateHostResponse(val *UpdateHostResponse) *NullableUpdateHostResponse

func (NullableUpdateHostResponse) Get added in v1.6.0

func (NullableUpdateHostResponse) IsSet added in v1.6.0

func (v NullableUpdateHostResponse) IsSet() bool

func (NullableUpdateHostResponse) MarshalJSON added in v1.6.0

func (v NullableUpdateHostResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateHostResponse) Set added in v1.6.0

func (*NullableUpdateHostResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateHostResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateHostResponse) Unset added in v1.6.0

func (v *NullableUpdateHostResponse) Unset()

type NullableUpdateMaskingJobParameters added in v1.6.0

type NullableUpdateMaskingJobParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateMaskingJobParameters added in v1.6.0

func NewNullableUpdateMaskingJobParameters(val *UpdateMaskingJobParameters) *NullableUpdateMaskingJobParameters

func (NullableUpdateMaskingJobParameters) Get added in v1.6.0

func (NullableUpdateMaskingJobParameters) IsSet added in v1.6.0

func (NullableUpdateMaskingJobParameters) MarshalJSON added in v1.6.0

func (v NullableUpdateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateMaskingJobParameters) Set added in v1.6.0

func (*NullableUpdateMaskingJobParameters) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateMaskingJobParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateMaskingJobParameters) Unset added in v1.6.0

type NullableUpdateSnapshotParameters added in v1.6.0

type NullableUpdateSnapshotParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateSnapshotParameters added in v1.6.0

func NewNullableUpdateSnapshotParameters(val *UpdateSnapshotParameters) *NullableUpdateSnapshotParameters

func (NullableUpdateSnapshotParameters) Get added in v1.6.0

func (NullableUpdateSnapshotParameters) IsSet added in v1.6.0

func (NullableUpdateSnapshotParameters) MarshalJSON added in v1.6.0

func (v NullableUpdateSnapshotParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateSnapshotParameters) Set added in v1.6.0

func (*NullableUpdateSnapshotParameters) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateSnapshotParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateSnapshotParameters) Unset added in v1.6.0

type NullableUpdateSnapshotResponse added in v1.6.0

type NullableUpdateSnapshotResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateSnapshotResponse added in v1.6.0

func NewNullableUpdateSnapshotResponse(val *UpdateSnapshotResponse) *NullableUpdateSnapshotResponse

func (NullableUpdateSnapshotResponse) Get added in v1.6.0

func (NullableUpdateSnapshotResponse) IsSet added in v1.6.0

func (NullableUpdateSnapshotResponse) MarshalJSON added in v1.6.0

func (v NullableUpdateSnapshotResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateSnapshotResponse) Set added in v1.6.0

func (*NullableUpdateSnapshotResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateSnapshotResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateSnapshotResponse) Unset added in v1.6.0

func (v *NullableUpdateSnapshotResponse) Unset()

type NullableUpdateTimeflowParameters added in v1.6.0

type NullableUpdateTimeflowParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTimeflowParameters added in v1.6.0

func NewNullableUpdateTimeflowParameters(val *UpdateTimeflowParameters) *NullableUpdateTimeflowParameters

func (NullableUpdateTimeflowParameters) Get added in v1.6.0

func (NullableUpdateTimeflowParameters) IsSet added in v1.6.0

func (NullableUpdateTimeflowParameters) MarshalJSON added in v1.6.0

func (v NullableUpdateTimeflowParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateTimeflowParameters) Set added in v1.6.0

func (*NullableUpdateTimeflowParameters) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateTimeflowParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateTimeflowParameters) Unset added in v1.6.0

type NullableUpdateTimeflowResponse added in v1.6.0

type NullableUpdateTimeflowResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTimeflowResponse added in v1.6.0

func NewNullableUpdateTimeflowResponse(val *UpdateTimeflowResponse) *NullableUpdateTimeflowResponse

func (NullableUpdateTimeflowResponse) Get added in v1.6.0

func (NullableUpdateTimeflowResponse) IsSet added in v1.6.0

func (NullableUpdateTimeflowResponse) MarshalJSON added in v1.6.0

func (v NullableUpdateTimeflowResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateTimeflowResponse) Set added in v1.6.0

func (*NullableUpdateTimeflowResponse) UnmarshalJSON added in v1.6.0

func (v *NullableUpdateTimeflowResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateTimeflowResponse) Unset added in v1.6.0

func (v *NullableUpdateTimeflowResponse) Unset()

type NullableUpdateVDBGroupParameters added in v1.2.0

type NullableUpdateVDBGroupParameters struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateVDBGroupParameters added in v1.2.0

func NewNullableUpdateVDBGroupParameters(val *UpdateVDBGroupParameters) *NullableUpdateVDBGroupParameters

func (NullableUpdateVDBGroupParameters) Get added in v1.2.0

func (NullableUpdateVDBGroupParameters) IsSet added in v1.2.0

func (NullableUpdateVDBGroupParameters) MarshalJSON added in v1.2.0

func (v NullableUpdateVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*NullableUpdateVDBGroupParameters) Set added in v1.2.0

func (*NullableUpdateVDBGroupParameters) UnmarshalJSON added in v1.2.0

func (v *NullableUpdateVDBGroupParameters) UnmarshalJSON(src []byte) error

func (*NullableUpdateVDBGroupParameters) Unset added in v1.2.0

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 added in v1.2.0

type NullableUpdateVDBResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateVDBResponse added in v1.2.0

func NewNullableUpdateVDBResponse(val *UpdateVDBResponse) *NullableUpdateVDBResponse

func (NullableUpdateVDBResponse) Get added in v1.2.0

func (NullableUpdateVDBResponse) IsSet added in v1.2.0

func (v NullableUpdateVDBResponse) IsSet() bool

func (NullableUpdateVDBResponse) MarshalJSON added in v1.2.0

func (v NullableUpdateVDBResponse) MarshalJSON() ([]byte, error)

func (*NullableUpdateVDBResponse) Set added in v1.2.0

func (*NullableUpdateVDBResponse) UnmarshalJSON added in v1.2.0

func (v *NullableUpdateVDBResponse) UnmarshalJSON(src []byte) error

func (*NullableUpdateVDBResponse) Unset added in v1.2.0

func (v *NullableUpdateVDBResponse) Unset()

type NullableVCDB added in v1.6.0

type NullableVCDB struct {
	// contains filtered or unexported fields
}

func NewNullableVCDB added in v1.6.0

func NewNullableVCDB(val *VCDB) *NullableVCDB

func (NullableVCDB) Get added in v1.6.0

func (v NullableVCDB) Get() *VCDB

func (NullableVCDB) IsSet added in v1.6.0

func (v NullableVCDB) IsSet() bool

func (NullableVCDB) MarshalJSON added in v1.6.0

func (v NullableVCDB) MarshalJSON() ([]byte, error)

func (*NullableVCDB) Set added in v1.6.0

func (v *NullableVCDB) Set(val *VCDB)

func (*NullableVCDB) UnmarshalJSON added in v1.6.0

func (v *NullableVCDB) UnmarshalJSON(src []byte) error

func (*NullableVCDB) Unset added in v1.6.0

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 added in v1.2.0

type NullableVDBInventoryData struct {
	// contains filtered or unexported fields
}

func NewNullableVDBInventoryData added in v1.2.0

func NewNullableVDBInventoryData(val *VDBInventoryData) *NullableVDBInventoryData

func (NullableVDBInventoryData) Get added in v1.2.0

func (NullableVDBInventoryData) IsSet added in v1.2.0

func (v NullableVDBInventoryData) IsSet() bool

func (NullableVDBInventoryData) MarshalJSON added in v1.2.0

func (v NullableVDBInventoryData) MarshalJSON() ([]byte, error)

func (*NullableVDBInventoryData) Set added in v1.2.0

func (*NullableVDBInventoryData) UnmarshalJSON added in v1.2.0

func (v *NullableVDBInventoryData) UnmarshalJSON(src []byte) error

func (*NullableVDBInventoryData) Unset added in v1.2.0

func (v *NullableVDBInventoryData) Unset()

type NullableVDBInventoryReportResponse added in v1.2.0

type NullableVDBInventoryReportResponse struct {
	// contains filtered or unexported fields
}

func NewNullableVDBInventoryReportResponse added in v1.2.0

func NewNullableVDBInventoryReportResponse(val *VDBInventoryReportResponse) *NullableVDBInventoryReportResponse

func (NullableVDBInventoryReportResponse) Get added in v1.2.0

func (NullableVDBInventoryReportResponse) IsSet added in v1.2.0

func (NullableVDBInventoryReportResponse) MarshalJSON added in v1.2.0

func (v NullableVDBInventoryReportResponse) MarshalJSON() ([]byte, error)

func (*NullableVDBInventoryReportResponse) Set added in v1.2.0

func (*NullableVDBInventoryReportResponse) UnmarshalJSON added in v1.2.0

func (v *NullableVDBInventoryReportResponse) UnmarshalJSON(src []byte) error

func (*NullableVDBInventoryReportResponse) Unset added in v1.2.0

type NullableVirtualDatasetHooks added in v1.2.0

type NullableVirtualDatasetHooks struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualDatasetHooks added in v1.2.0

func NewNullableVirtualDatasetHooks(val *VirtualDatasetHooks) *NullableVirtualDatasetHooks

func (NullableVirtualDatasetHooks) Get added in v1.2.0

func (NullableVirtualDatasetHooks) IsSet added in v1.2.0

func (NullableVirtualDatasetHooks) MarshalJSON added in v1.2.0

func (v NullableVirtualDatasetHooks) MarshalJSON() ([]byte, error)

func (*NullableVirtualDatasetHooks) Set added in v1.2.0

func (*NullableVirtualDatasetHooks) UnmarshalJSON added in v1.2.0

func (v *NullableVirtualDatasetHooks) UnmarshalJSON(src []byte) error

func (*NullableVirtualDatasetHooks) Unset added in v1.2.0

func (v *NullableVirtualDatasetHooks) Unset()

type NullableVirtualizationPolicy added in v1.6.0

type NullableVirtualizationPolicy struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualizationPolicy added in v1.6.0

func NewNullableVirtualizationPolicy(val *VirtualizationPolicy) *NullableVirtualizationPolicy

func (NullableVirtualizationPolicy) Get added in v1.6.0

func (NullableVirtualizationPolicy) IsSet added in v1.6.0

func (NullableVirtualizationPolicy) MarshalJSON added in v1.6.0

func (v NullableVirtualizationPolicy) MarshalJSON() ([]byte, error)

func (*NullableVirtualizationPolicy) Set added in v1.6.0

func (*NullableVirtualizationPolicy) UnmarshalJSON added in v1.6.0

func (v *NullableVirtualizationPolicy) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationPolicy) Unset added in v1.6.0

func (v *NullableVirtualizationPolicy) Unset()

type NullableVirtualizationSchedule added in v1.6.0

type NullableVirtualizationSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualizationSchedule added in v1.6.0

func NewNullableVirtualizationSchedule(val *VirtualizationSchedule) *NullableVirtualizationSchedule

func (NullableVirtualizationSchedule) Get added in v1.6.0

func (NullableVirtualizationSchedule) IsSet added in v1.6.0

func (NullableVirtualizationSchedule) MarshalJSON added in v1.6.0

func (v NullableVirtualizationSchedule) MarshalJSON() ([]byte, error)

func (*NullableVirtualizationSchedule) Set added in v1.6.0

func (*NullableVirtualizationSchedule) UnmarshalJSON added in v1.6.0

func (v *NullableVirtualizationSchedule) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationSchedule) Unset added in v1.6.0

func (v *NullableVirtualizationSchedule) Unset()

type NullableVirtualizationStorageSummaryData added in v1.1.0

type NullableVirtualizationStorageSummaryData struct {
	// contains filtered or unexported fields
}

func NewNullableVirtualizationStorageSummaryData added in v1.1.0

func NewNullableVirtualizationStorageSummaryData(val *VirtualizationStorageSummaryData) *NullableVirtualizationStorageSummaryData

func (NullableVirtualizationStorageSummaryData) Get added in v1.1.0

func (NullableVirtualizationStorageSummaryData) IsSet added in v1.1.0

func (NullableVirtualizationStorageSummaryData) MarshalJSON added in v1.1.0

func (*NullableVirtualizationStorageSummaryData) Set added in v1.1.0

func (*NullableVirtualizationStorageSummaryData) UnmarshalJSON added in v1.1.0

func (v *NullableVirtualizationStorageSummaryData) UnmarshalJSON(src []byte) error

func (*NullableVirtualizationStorageSummaryData) Unset added in v1.1.0

type NullableVirtualizationStorageSummaryReportResponse added in v1.1.0

type NullableVirtualizationStorageSummaryReportResponse struct {
	// contains filtered or unexported fields
}

func (NullableVirtualizationStorageSummaryReportResponse) Get added in v1.1.0

func (NullableVirtualizationStorageSummaryReportResponse) IsSet added in v1.1.0

func (NullableVirtualizationStorageSummaryReportResponse) MarshalJSON added in v1.1.0

func (*NullableVirtualizationStorageSummaryReportResponse) Set added in v1.1.0

func (*NullableVirtualizationStorageSummaryReportResponse) UnmarshalJSON added in v1.1.0

func (*NullableVirtualizationStorageSummaryReportResponse) Unset added in v1.1.0

type ObjectPermissionAccessGroups added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccessGroups) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccessGroups) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ObjectPermissionAccessGroups) GetPermissionsOk added in v1.6.0

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 added in v1.6.0

HasId returns a boolean if a field has been set.

func (*ObjectPermissionAccessGroups) HasName added in v1.6.0

func (o *ObjectPermissionAccessGroups) HasName() bool

HasName returns a boolean if a field has been set.

func (*ObjectPermissionAccessGroups) HasPermissions added in v1.6.0

func (o *ObjectPermissionAccessGroups) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (ObjectPermissionAccessGroups) MarshalJSON added in v1.6.0

func (o ObjectPermissionAccessGroups) MarshalJSON() ([]byte, error)

func (*ObjectPermissionAccessGroups) SetId added in v1.6.0

SetId gets a reference to the given string and assigns it to the Id field.

func (*ObjectPermissionAccessGroups) SetName added in v1.6.0

func (o *ObjectPermissionAccessGroups) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ObjectPermissionAccessGroups) SetPermissions added in v1.6.0

func (o *ObjectPermissionAccessGroups) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (ObjectPermissionAccessGroups) ToMap added in v1.6.0

func (o ObjectPermissionAccessGroups) ToMap() (map[string]interface{}, error)

type ObjectPermissionAccount added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetAccessGroups returns the AccessGroups field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetAccessGroupsOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccount) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetEmailOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccount) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccount) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccount) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*ObjectPermissionAccount) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionAccount) HasAccessGroups() bool

HasAccessGroups returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasEmail added in v1.6.0

func (o *ObjectPermissionAccount) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasFirstName added in v1.6.0

func (o *ObjectPermissionAccount) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasId added in v1.6.0

func (o *ObjectPermissionAccount) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectPermissionAccount) HasLastName added in v1.6.0

func (o *ObjectPermissionAccount) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (ObjectPermissionAccount) MarshalJSON added in v1.6.0

func (o ObjectPermissionAccount) MarshalJSON() ([]byte, error)

func (*ObjectPermissionAccount) SetAccessGroups added in v1.6.0

func (o *ObjectPermissionAccount) SetAccessGroups(v []ObjectPermissionAccessGroups)

SetAccessGroups gets a reference to the given []ObjectPermissionAccessGroups and assigns it to the AccessGroups field.

func (*ObjectPermissionAccount) SetEmail added in v1.6.0

func (o *ObjectPermissionAccount) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ObjectPermissionAccount) SetFirstName added in v1.6.0

func (o *ObjectPermissionAccount) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*ObjectPermissionAccount) SetId added in v1.6.0

func (o *ObjectPermissionAccount) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ObjectPermissionAccount) SetLastName added in v1.6.0

func (o *ObjectPermissionAccount) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (ObjectPermissionAccount) ToMap added in v1.6.0

func (o ObjectPermissionAccount) ToMap() (map[string]interface{}, error)

type ObjectPermissionsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*ObjectPermissionsResponse) GetAccountsOk added in v1.6.0

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 added in v1.6.0

func (o *ObjectPermissionsResponse) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (ObjectPermissionsResponse) MarshalJSON added in v1.6.0

func (o ObjectPermissionsResponse) MarshalJSON() ([]byte, error)

func (*ObjectPermissionsResponse) SetAccounts added in v1.6.0

SetAccounts gets a reference to the given []ObjectPermissionAccount and assigns it to the Accounts field.

func (ObjectPermissionsResponse) ToMap added in v1.6.0

func (o ObjectPermissionsResponse) ToMap() (map[string]interface{}, error)

type ObjectTypeEnum added in v1.6.0

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_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"
)

List of ObjectTypeEnum

func NewObjectTypeEnumFromValue added in v1.6.0

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 added in v1.6.0

func (v ObjectTypeEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ObjectTypeEnum) Ptr added in v1.6.0

func (v ObjectTypeEnum) Ptr() *ObjectTypeEnum

Ptr returns reference to ObjectTypeEnum value

func (*ObjectTypeEnum) UnmarshalJSON added in v1.6.0

func (v *ObjectTypeEnum) UnmarshalJSON(src []byte) error

type ObjectTypeProperty added in v1.6.0

type ObjectTypeProperty struct {
	// Object type.
	ObjectType string `json:"object_type"`
}

ObjectTypeProperty A DCT object type.

func NewObjectTypeProperty added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ObjectTypeProperty) GetObjectType() string

GetObjectType returns the ObjectType field value

func (*ObjectTypeProperty) GetObjectTypeOk added in v1.6.0

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 added in v1.6.0

func (o ObjectTypeProperty) MarshalJSON() ([]byte, error)

func (*ObjectTypeProperty) SetObjectType added in v1.6.0

func (o *ObjectTypeProperty) SetObjectType(v string)

SetObjectType sets field value

func (ObjectTypeProperty) ToMap added in v1.6.0

func (o ObjectTypeProperty) ToMap() (map[string]interface{}, error)

type OracleListener added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetClientEndpoints() []string

GetClientEndpoints returns the ClientEndpoints field value if set, zero value otherwise.

func (*OracleListener) GetClientEndpointsOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetHostId() string

GetHostId returns the HostId field value if set, zero value otherwise.

func (*OracleListener) GetHostIdOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OracleListener) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetIsDiscovered() bool

GetIsDiscovered returns the IsDiscovered field value if set, zero value otherwise.

func (*OracleListener) GetIsDiscoveredOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*OracleListener) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetProtocolAddresses() []string

GetProtocolAddresses returns the ProtocolAddresses field value if set, zero value otherwise.

func (*OracleListener) GetProtocolAddressesOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OracleListener) GetTypeOk added in v1.6.0

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 added in v1.6.0

func (o *OracleListener) HasClientEndpoints() bool

HasClientEndpoints returns a boolean if a field has been set.

func (*OracleListener) HasHostId added in v1.6.0

func (o *OracleListener) HasHostId() bool

HasHostId returns a boolean if a field has been set.

func (*OracleListener) HasId added in v1.6.0

func (o *OracleListener) HasId() bool

HasId returns a boolean if a field has been set.

func (*OracleListener) HasIsDiscovered added in v1.6.0

func (o *OracleListener) HasIsDiscovered() bool

HasIsDiscovered returns a boolean if a field has been set.

func (*OracleListener) HasName added in v1.6.0

func (o *OracleListener) HasName() bool

HasName returns a boolean if a field has been set.

func (*OracleListener) HasProtocolAddresses added in v1.6.0

func (o *OracleListener) HasProtocolAddresses() bool

HasProtocolAddresses returns a boolean if a field has been set.

func (*OracleListener) HasType added in v1.6.0

func (o *OracleListener) HasType() bool

HasType returns a boolean if a field has been set.

func (OracleListener) MarshalJSON added in v1.6.0

func (o OracleListener) MarshalJSON() ([]byte, error)

func (*OracleListener) SetClientEndpoints added in v1.6.0

func (o *OracleListener) SetClientEndpoints(v []string)

SetClientEndpoints gets a reference to the given []string and assigns it to the ClientEndpoints field.

func (*OracleListener) SetHostId added in v1.6.0

func (o *OracleListener) SetHostId(v string)

SetHostId gets a reference to the given string and assigns it to the HostId field.

func (*OracleListener) SetId added in v1.6.0

func (o *OracleListener) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OracleListener) SetIsDiscovered added in v1.6.0

func (o *OracleListener) SetIsDiscovered(v bool)

SetIsDiscovered gets a reference to the given bool and assigns it to the IsDiscovered field.

func (*OracleListener) SetName added in v1.6.0

func (o *OracleListener) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*OracleListener) SetProtocolAddresses added in v1.6.0

func (o *OracleListener) SetProtocolAddresses(v []string)

SetProtocolAddresses gets a reference to the given []string and assigns it to the ProtocolAddresses field.

func (*OracleListener) SetType added in v1.6.0

func (o *OracleListener) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (OracleListener) ToMap added in v1.6.0

func (o OracleListener) ToMap() (map[string]interface{}, error)

type OracleRacCustomEnvFile added in v1.6.0

type OracleRacCustomEnvFile struct {
	NodeId         *string `json:"node_id,omitempty"`
	PathParameters *string `json:"path_parameters,omitempty"`
}

OracleRacCustomEnvFile struct for OracleRacCustomEnvFile

func NewOracleRacCustomEnvFile added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvFile) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*OracleRacCustomEnvFile) GetNodeIdOk added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvFile) GetPathParameters() string

GetPathParameters returns the PathParameters field value if set, zero value otherwise.

func (*OracleRacCustomEnvFile) GetPathParametersOk added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvFile) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*OracleRacCustomEnvFile) HasPathParameters added in v1.6.0

func (o *OracleRacCustomEnvFile) HasPathParameters() bool

HasPathParameters returns a boolean if a field has been set.

func (OracleRacCustomEnvFile) MarshalJSON added in v1.6.0

func (o OracleRacCustomEnvFile) MarshalJSON() ([]byte, error)

func (*OracleRacCustomEnvFile) SetNodeId added in v1.6.0

func (o *OracleRacCustomEnvFile) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*OracleRacCustomEnvFile) SetPathParameters added in v1.6.0

func (o *OracleRacCustomEnvFile) SetPathParameters(v string)

SetPathParameters gets a reference to the given string and assigns it to the PathParameters field.

func (OracleRacCustomEnvFile) ToMap added in v1.6.0

func (o OracleRacCustomEnvFile) ToMap() (map[string]interface{}, error)

type OracleRacCustomEnvVar added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvVar) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvVar) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetNodeIdOk added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvVar) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OracleRacCustomEnvVar) GetValueOk added in v1.6.0

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 added in v1.6.0

func (o *OracleRacCustomEnvVar) HasName() bool

HasName returns a boolean if a field has been set.

func (*OracleRacCustomEnvVar) HasNodeId added in v1.6.0

func (o *OracleRacCustomEnvVar) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*OracleRacCustomEnvVar) HasValue added in v1.6.0

func (o *OracleRacCustomEnvVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OracleRacCustomEnvVar) MarshalJSON added in v1.6.0

func (o OracleRacCustomEnvVar) MarshalJSON() ([]byte, error)

func (*OracleRacCustomEnvVar) SetName added in v1.6.0

func (o *OracleRacCustomEnvVar) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*OracleRacCustomEnvVar) SetNodeId added in v1.6.0

func (o *OracleRacCustomEnvVar) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*OracleRacCustomEnvVar) SetValue added in v1.6.0

func (o *OracleRacCustomEnvVar) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (OracleRacCustomEnvVar) ToMap added in v1.6.0

func (o OracleRacCustomEnvVar) ToMap() (map[string]interface{}, error)

type OracleVirtualIP added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *OracleVirtualIP) GetDiscovered() bool

GetDiscovered returns the Discovered field value if set, zero value otherwise.

func (*OracleVirtualIP) GetDiscoveredOk added in v1.6.0

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 added in v1.6.0

func (o *OracleVirtualIP) GetDomainName() string

GetDomainName returns the DomainName field value if set, zero value otherwise.

func (*OracleVirtualIP) GetDomainNameOk added in v1.6.0

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 added in v1.6.0

func (o *OracleVirtualIP) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*OracleVirtualIP) GetIpOk added in v1.6.0

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 added in v1.6.0

func (o *OracleVirtualIP) HasDiscovered() bool

HasDiscovered returns a boolean if a field has been set.

func (*OracleVirtualIP) HasDomainName added in v1.6.0

func (o *OracleVirtualIP) HasDomainName() bool

HasDomainName returns a boolean if a field has been set.

func (*OracleVirtualIP) HasIp added in v1.6.0

func (o *OracleVirtualIP) HasIp() bool

HasIp returns a boolean if a field has been set.

func (OracleVirtualIP) MarshalJSON added in v1.6.0

func (o OracleVirtualIP) MarshalJSON() ([]byte, error)

func (*OracleVirtualIP) SetDiscovered added in v1.6.0

func (o *OracleVirtualIP) SetDiscovered(v bool)

SetDiscovered gets a reference to the given bool and assigns it to the Discovered field.

func (*OracleVirtualIP) SetDomainName added in v1.6.0

func (o *OracleVirtualIP) SetDomainName(v string)

SetDomainName gets a reference to the given string and assigns it to the DomainName field.

func (*OracleVirtualIP) SetIp added in v1.6.0

func (o *OracleVirtualIP) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (OracleVirtualIP) ToMap added in v1.6.0

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 added in v1.6.0

func (o PaginatedResponseMetadata) ToMap() (map[string]interface{}, error)

type PasswordPoliciesParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetDigit() bool

GetDigit returns the Digit field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetDigitOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetDisallowUsernameAsPassword() bool

GetDisallowUsernameAsPassword returns the DisallowUsernameAsPassword field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetDisallowUsernameAsPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetLowercaseLetter() bool

GetLowercaseLetter returns the LowercaseLetter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetLowercaseLetterOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetMaximumPasswordAttempts() int32

GetMaximumPasswordAttempts returns the MaximumPasswordAttempts field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetMaximumPasswordAttemptsOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetMinLengthOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetReuseDisallowLimit() int32

GetReuseDisallowLimit returns the ReuseDisallowLimit field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetReuseDisallowLimitOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetSpecialCharacter() bool

GetSpecialCharacter returns the SpecialCharacter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetSpecialCharacterOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) GetUppercaseLetter() bool

GetUppercaseLetter returns the UppercaseLetter field value if set, zero value otherwise.

func (*PasswordPoliciesParams) GetUppercaseLetterOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordPoliciesParams) HasDigit() bool

HasDigit returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasDisallowUsernameAsPassword added in v1.6.0

func (o *PasswordPoliciesParams) HasDisallowUsernameAsPassword() bool

HasDisallowUsernameAsPassword returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasEnabled added in v1.6.0

func (o *PasswordPoliciesParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasLowercaseLetter added in v1.6.0

func (o *PasswordPoliciesParams) HasLowercaseLetter() bool

HasLowercaseLetter returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasMaximumPasswordAttempts added in v1.6.0

func (o *PasswordPoliciesParams) HasMaximumPasswordAttempts() bool

HasMaximumPasswordAttempts returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasMinLength added in v1.6.0

func (o *PasswordPoliciesParams) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasReuseDisallowLimit added in v1.6.0

func (o *PasswordPoliciesParams) HasReuseDisallowLimit() bool

HasReuseDisallowLimit returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasSpecialCharacter added in v1.6.0

func (o *PasswordPoliciesParams) HasSpecialCharacter() bool

HasSpecialCharacter returns a boolean if a field has been set.

func (*PasswordPoliciesParams) HasUppercaseLetter added in v1.6.0

func (o *PasswordPoliciesParams) HasUppercaseLetter() bool

HasUppercaseLetter returns a boolean if a field has been set.

func (PasswordPoliciesParams) MarshalJSON added in v1.6.0

func (o PasswordPoliciesParams) MarshalJSON() ([]byte, error)

func (*PasswordPoliciesParams) SetDigit added in v1.6.0

func (o *PasswordPoliciesParams) SetDigit(v bool)

SetDigit gets a reference to the given bool and assigns it to the Digit field.

func (*PasswordPoliciesParams) SetDisallowUsernameAsPassword added in v1.6.0

func (o *PasswordPoliciesParams) SetDisallowUsernameAsPassword(v bool)

SetDisallowUsernameAsPassword gets a reference to the given bool and assigns it to the DisallowUsernameAsPassword field.

func (*PasswordPoliciesParams) SetEnabled added in v1.6.0

func (o *PasswordPoliciesParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*PasswordPoliciesParams) SetLowercaseLetter added in v1.6.0

func (o *PasswordPoliciesParams) SetLowercaseLetter(v bool)

SetLowercaseLetter gets a reference to the given bool and assigns it to the LowercaseLetter field.

func (*PasswordPoliciesParams) SetMaximumPasswordAttempts added in v1.6.0

func (o *PasswordPoliciesParams) SetMaximumPasswordAttempts(v int32)

SetMaximumPasswordAttempts gets a reference to the given int32 and assigns it to the MaximumPasswordAttempts field.

func (*PasswordPoliciesParams) SetMinLength added in v1.6.0

func (o *PasswordPoliciesParams) SetMinLength(v int32)

SetMinLength gets a reference to the given int32 and assigns it to the MinLength field.

func (*PasswordPoliciesParams) SetReuseDisallowLimit added in v1.6.0

func (o *PasswordPoliciesParams) SetReuseDisallowLimit(v int32)

SetReuseDisallowLimit gets a reference to the given int32 and assigns it to the ReuseDisallowLimit field.

func (*PasswordPoliciesParams) SetSpecialCharacter added in v1.6.0

func (o *PasswordPoliciesParams) SetSpecialCharacter(v bool)

SetSpecialCharacter gets a reference to the given bool and assigns it to the SpecialCharacter field.

func (*PasswordPoliciesParams) SetUppercaseLetter added in v1.6.0

func (o *PasswordPoliciesParams) SetUppercaseLetter(v bool)

SetUppercaseLetter gets a reference to the given bool and assigns it to the UppercaseLetter field.

func (PasswordPoliciesParams) ToMap added in v1.6.0

func (o PasswordPoliciesParams) ToMap() (map[string]interface{}, error)

type PasswordVault added in v1.6.0

type PasswordVault struct {
	// The password vault ID.
	Id *string `json:"id,omitempty"`
	// The name of this password vault.
	Name *string `json:"name,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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*PasswordVault) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*PasswordVault) GetEngineNameOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*PasswordVault) GetHostOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PasswordVault) GetIdOk added in v1.6.0

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) GetName added in v1.6.0

func (o *PasswordVault) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PasswordVault) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*PasswordVault) GetNamespaceOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*PasswordVault) GetPortOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PasswordVault) GetTypeOk added in v1.6.0

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 added in v1.6.0

func (o *PasswordVault) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*PasswordVault) HasEngineId added in v1.6.0

func (o *PasswordVault) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*PasswordVault) HasEngineName added in v1.6.0

func (o *PasswordVault) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*PasswordVault) HasHost added in v1.6.0

func (o *PasswordVault) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*PasswordVault) HasId added in v1.6.0

func (o *PasswordVault) HasId() bool

HasId returns a boolean if a field has been set.

func (*PasswordVault) HasName added in v1.6.0

func (o *PasswordVault) HasName() bool

HasName returns a boolean if a field has been set.

func (*PasswordVault) HasNamespace added in v1.6.0

func (o *PasswordVault) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*PasswordVault) HasPort added in v1.6.0

func (o *PasswordVault) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*PasswordVault) HasType added in v1.6.0

func (o *PasswordVault) HasType() bool

HasType returns a boolean if a field has been set.

func (PasswordVault) MarshalJSON added in v1.6.0

func (o PasswordVault) MarshalJSON() ([]byte, error)

func (*PasswordVault) SetEnabled added in v1.6.0

func (o *PasswordVault) SetEnabled(v bool)

SetEnabled gets a reference to the given NullableBool and assigns it to the Enabled field.

func (*PasswordVault) SetEnabledNil added in v1.6.0

func (o *PasswordVault) SetEnabledNil()

SetEnabledNil sets the value for Enabled to be an explicit nil

func (*PasswordVault) SetEngineId added in v1.6.0

func (o *PasswordVault) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*PasswordVault) SetEngineName added in v1.6.0

func (o *PasswordVault) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*PasswordVault) SetHost added in v1.6.0

func (o *PasswordVault) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*PasswordVault) SetId added in v1.6.0

func (o *PasswordVault) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PasswordVault) SetName added in v1.6.0

func (o *PasswordVault) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PasswordVault) SetNamespace added in v1.6.0

func (o *PasswordVault) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*PasswordVault) SetPort added in v1.6.0

func (o *PasswordVault) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*PasswordVault) SetType added in v1.6.0

func (o *PasswordVault) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PasswordVault) ToMap added in v1.6.0

func (o PasswordVault) ToMap() (map[string]interface{}, error)

func (*PasswordVault) UnsetEnabled added in v1.6.0

func (o *PasswordVault) UnsetEnabled()

UnsetEnabled ensures that no value is present for Enabled, not even an explicit nil

type PermissionEnum added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (v PermissionEnum) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PermissionEnum) Ptr added in v1.6.0

func (v PermissionEnum) Ptr() *PermissionEnum

Ptr returns reference to PermissionEnum value

func (*PermissionEnum) UnmarshalJSON added in v1.6.0

func (v *PermissionEnum) UnmarshalJSON(src []byte) error

type PermissionObject added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *PermissionObject) GetObjectType() string

GetObjectType returns the ObjectType field value

func (*PermissionObject) GetObjectTypeOk added in v1.6.0

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 added in v1.6.0

func (o *PermissionObject) GetPermissions() []string

GetPermissions returns the Permissions field value

func (*PermissionObject) GetPermissionsOk added in v1.6.0

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 added in v1.6.0

func (o PermissionObject) MarshalJSON() ([]byte, error)

func (*PermissionObject) SetObjectType added in v1.6.0

func (o *PermissionObject) SetObjectType(v string)

SetObjectType sets field value

func (*PermissionObject) SetPermissions added in v1.6.0

func (o *PermissionObject) SetPermissions(v []string)

SetPermissions sets field value

func (PermissionObject) ToMap added in v1.6.0

func (o PermissionObject) ToMap() (map[string]interface{}, error)

type PermissionProperty added in v1.6.0

type PermissionProperty struct {
	// List of permissions.
	Permissions []string `json:"permissions"`
}

PermissionProperty A Permission object.

func NewPermissionProperty added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *PermissionProperty) GetPermissions() []string

GetPermissions returns the Permissions field value

func (*PermissionProperty) GetPermissionsOk added in v1.6.0

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 added in v1.6.0

func (o PermissionProperty) MarshalJSON() ([]byte, error)

func (*PermissionProperty) SetPermissions added in v1.6.0

func (o *PermissionProperty) SetPermissions(v []string)

SetPermissions sets field value

func (PermissionProperty) ToMap added in v1.6.0

func (o PermissionProperty) ToMap() (map[string]interface{}, error)

type PermissionsRequest added in v1.6.0

type PermissionsRequest struct {
	// Array of permissions with object type and their permission.
	PermissionObjects []PermissionObject `json:"permission_objects"`
}

PermissionsRequest struct for PermissionsRequest

func NewPermissionsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *PermissionsRequest) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*PermissionsRequest) GetPermissionObjectsOk added in v1.6.0

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 added in v1.6.0

func (o PermissionsRequest) MarshalJSON() ([]byte, error)

func (*PermissionsRequest) SetPermissionObjects added in v1.6.0

func (o *PermissionsRequest) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (PermissionsRequest) ToMap added in v1.6.0

func (o PermissionsRequest) ToMap() (map[string]interface{}, error)

type PrimaryEnvironmentUserResponse added in v1.2.0

type PrimaryEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

PrimaryEnvironmentUserResponse struct for PrimaryEnvironmentUserResponse

func NewPrimaryEnvironmentUserResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *PrimaryEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*PrimaryEnvironmentUserResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

HasJob returns a boolean if a field has been set.

func (PrimaryEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (o PrimaryEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*PrimaryEnvironmentUserResponse) SetJob added in v1.2.0

func (o *PrimaryEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (PrimaryEnvironmentUserResponse) ToMap added in v1.6.0

func (o PrimaryEnvironmentUserResponse) ToMap() (map[string]interface{}, error)

type ProductHistory added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ProductHistory) GetInstalledOn() time.Time

GetInstalledOn returns the InstalledOn field value if set, zero value otherwise.

func (*ProductHistory) GetInstalledOnOk added in v1.2.0

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 added in v1.2.0

func (o *ProductHistory) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ProductHistory) GetVersionOk added in v1.2.0

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 added in v1.2.0

func (o *ProductHistory) HasInstalledOn() bool

HasInstalledOn returns a boolean if a field has been set.

func (*ProductHistory) HasVersion added in v1.2.0

func (o *ProductHistory) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ProductHistory) MarshalJSON added in v1.2.0

func (o ProductHistory) MarshalJSON() ([]byte, error)

func (*ProductHistory) SetInstalledOn added in v1.2.0

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 added in v1.2.0

func (o *ProductHistory) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (ProductHistory) ToMap added in v1.6.0

func (o ProductHistory) ToMap() (map[string]interface{}, error)

type ProductInfo added in v1.2.0

type ProductInfo struct {
	// Current API version.
	ApiVersion *string `json:"api_version,omitempty"`
	// Current installed product version.
	ProductVersion *string `json:"product_version,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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ProductInfo) GetApiVersion() string

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*ProductInfo) GetApiVersionOk added in v1.2.0

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 added in v1.2.0

func (o *ProductInfo) GetProductUpgradeHistory() []ProductHistory

GetProductUpgradeHistory returns the ProductUpgradeHistory field value if set, zero value otherwise.

func (*ProductInfo) GetProductUpgradeHistoryOk added in v1.2.0

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 added in v1.2.0

func (o *ProductInfo) GetProductVersion() string

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*ProductInfo) GetProductVersionOk added in v1.2.0

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 added in v1.2.0

func (o *ProductInfo) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProductInfo) GetSupportedApiVersionsOk added in v1.2.0

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) HasApiVersion added in v1.2.0

func (o *ProductInfo) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*ProductInfo) HasProductUpgradeHistory added in v1.2.0

func (o *ProductInfo) HasProductUpgradeHistory() bool

HasProductUpgradeHistory returns a boolean if a field has been set.

func (*ProductInfo) HasProductVersion added in v1.2.0

func (o *ProductInfo) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (*ProductInfo) HasSupportedApiVersions added in v1.2.0

func (o *ProductInfo) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (ProductInfo) MarshalJSON added in v1.2.0

func (o ProductInfo) MarshalJSON() ([]byte, error)

func (*ProductInfo) SetApiVersion added in v1.2.0

func (o *ProductInfo) SetApiVersion(v string)

SetApiVersion gets a reference to the given string and assigns it to the ApiVersion field.

func (*ProductInfo) SetProductUpgradeHistory added in v1.2.0

func (o *ProductInfo) SetProductUpgradeHistory(v []ProductHistory)

SetProductUpgradeHistory gets a reference to the given []ProductHistory and assigns it to the ProductUpgradeHistory field.

func (*ProductInfo) SetProductVersion added in v1.2.0

func (o *ProductInfo) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (*ProductInfo) SetSupportedApiVersions added in v1.2.0

func (o *ProductInfo) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (ProductInfo) ToMap added in v1.6.0

func (o ProductInfo) ToMap() (map[string]interface{}, error)

type ProvisionVDBBySnapshotDefaultsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSnapshotIdOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotDefaultsRequest) GetSourceDataIdOk added in v1.6.0

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 added in v1.6.0

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) HasSnapshotId added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotDefaultsRequest) HasSourceDataId added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (ProvisionVDBBySnapshotDefaultsRequest) MarshalJSON added in v1.6.0

func (o ProvisionVDBBySnapshotDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBBySnapshotDefaultsRequest) SetEngineId added in v1.6.0

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBBySnapshotDefaultsRequest) SetSnapshotId added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (*ProvisionVDBBySnapshotDefaultsRequest) SetSourceDataId added in v1.6.0

func (o *ProvisionVDBBySnapshotDefaultsRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (ProvisionVDBBySnapshotDefaultsRequest) ToMap added in v1.6.0

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 rewinding the VDB.
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	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"`
	// 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"`
	// 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetAuxiliaryTemplateIdOk added in v1.2.0

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 added in v1.2.0

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCdbIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetClusterNodeIdsOk added in v1.2.0

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) GetConfigParams added in v1.6.0

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 added in v1.6.0

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) 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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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) GetName added in v1.2.0

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetNameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOsPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetOsUsernameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetParentTdeKeystorePathOk added in v1.6.0

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.

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.

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) 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) 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.

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.

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) 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) 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 added in v1.1.0

func (o *ProvisionVDBBySnapshotParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTagsOk added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTdeExportedKeyFileSecretOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbNameOk added in v1.2.0

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) GetVcdbTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParameters) GetVcdbTdeKeyIdentifierOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAppdataConfigParams added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasAppdataSourceParams added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCdbId added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasConfigParams added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasConfigParams() bool

HasConfigParams 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 added in v1.6.0

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) HasName added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOsPassword added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasOsUsername added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasParentTdeKeystorePath added in v1.6.0

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) 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) 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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasTdeKeyIdentifier added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbName added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParameters) HasVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBBySnapshotParameters) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBBySnapshotParameters) SetCdbId added in v1.2.0

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBBySnapshotParameters) SetCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBBySnapshotParameters) SetConfigParams added in v1.6.0

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) 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 added in v1.6.0

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) SetName added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBBySnapshotParameters) SetOsPassword added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBBySnapshotParameters) SetOsUsername added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBBySnapshotParameters) SetParentTdeKeystorePath added in v1.6.0

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.

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) 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) 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.

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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBBySnapshotParameters) SetTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBBySnapshotParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBBySnapshotParameters) SetTdeKeyIdentifier added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbName added in v1.2.0

func (o *ProvisionVDBBySnapshotParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBBySnapshotParameters) SetVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

func (o ProvisionVDBBySnapshotParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBBySnapshotParametersAllOf added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetEngineIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBBySnapshotParametersAllOf) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*ProvisionVDBBySnapshotParametersAllOf) GetSourceDataIdOk added in v1.2.0

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 added in v1.2.0

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) HasMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBBySnapshotParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBBySnapshotParametersAllOf) HasSourceDataId added in v1.2.0

func (o *ProvisionVDBBySnapshotParametersAllOf) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (ProvisionVDBBySnapshotParametersAllOf) MarshalJSON added in v1.2.0

func (o ProvisionVDBBySnapshotParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBBySnapshotParametersAllOf) SetEngineId added in v1.2.0

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBBySnapshotParametersAllOf) SetMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBBySnapshotParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBBySnapshotParametersAllOf) SetSourceDataId added in v1.2.0

func (o *ProvisionVDBBySnapshotParametersAllOf) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (ProvisionVDBBySnapshotParametersAllOf) ToMap added in v1.6.0

func (o ProvisionVDBBySnapshotParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBByTimestampDefaultsRequest added in v1.6.0

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"`
}

ProvisionVDBByTimestampDefaultsRequest struct for ProvisionVDBByTimestampDefaultsRequest

func NewProvisionVDBByTimestampDefaultsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value

func (*ProvisionVDBByTimestampDefaultsRequest) GetSourceDataIdOk added in v1.6.0

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) GetTimestamp added in v1.6.0

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezone added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampDefaultsRequest) GetTimestampInDatabaseTimezoneOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasTimestamp added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampDefaultsRequest) HasTimestampInDatabaseTimezone added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

func (ProvisionVDBByTimestampDefaultsRequest) MarshalJSON added in v1.6.0

func (o ProvisionVDBByTimestampDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBByTimestampDefaultsRequest) SetEngineId added in v1.6.0

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByTimestampDefaultsRequest) SetSourceDataId added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) SetSourceDataId(v string)

SetSourceDataId sets field value

func (*ProvisionVDBByTimestampDefaultsRequest) SetTimestamp added in v1.6.0

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*ProvisionVDBByTimestampDefaultsRequest) SetTimestampInDatabaseTimezone added in v1.6.0

func (o *ProvisionVDBByTimestampDefaultsRequest) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone gets a reference to the given string and assigns it to the TimestampInDatabaseTimezone field.

func (ProvisionVDBByTimestampDefaultsRequest) ToMap added in v1.6.0

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 rewinding the VDB.
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	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"`
	// 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"`
	// 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 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetAuxiliaryTemplateIdOk added in v1.2.0

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 added in v1.2.0

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCdbIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetClusterNodeIdsOk added in v1.2.0

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) GetConfigParams added in v1.6.0

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 added in v1.6.0

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) 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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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) GetName added in v1.2.0

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetNameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOsPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetOsUsernameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetParentTdeKeystorePathOk added in v1.6.0

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.

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.

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) 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) 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.

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.

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) 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) 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 added in v1.1.0

func (o *ProvisionVDBByTimestampParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTagsOk added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTdeExportedKeyFileSecretOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetTdeKeyIdentifierOk added in v1.6.0

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) 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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbNameOk added in v1.2.0

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) GetVcdbTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParameters) GetVcdbTdeKeyIdentifierOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAppdataConfigParams added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasAppdataSourceParams added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCdbId added in v1.2.0

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasConfigParams added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasConfigParams() bool

HasConfigParams 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 added in v1.6.0

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) HasName added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOsPassword added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasOsUsername added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasParentTdeKeystorePath added in v1.6.0

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) 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) 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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasTdeKeyIdentifier added in v1.6.0

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) 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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbName added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParameters) HasVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBByTimestampParameters) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBByTimestampParameters) SetCdbId added in v1.2.0

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBByTimestampParameters) SetCdbTdeKeystorePassword added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBByTimestampParameters) SetConfigParams added in v1.6.0

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) 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 added in v1.6.0

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) SetName added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBByTimestampParameters) SetOsPassword added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBByTimestampParameters) SetOsUsername added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBByTimestampParameters) SetParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBByTimestampParameters) SetParentTdeKeystorePath added in v1.6.0

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.

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) 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) 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.

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) 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) 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 added in v1.1.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBByTimestampParameters) SetTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBByTimestampParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBByTimestampParameters) SetTdeKeyIdentifier added in v1.6.0

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) 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 added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBByTimestampParameters) SetVcdbName added in v1.2.0

func (o *ProvisionVDBByTimestampParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBByTimestampParameters) SetVcdbTdeKeyIdentifier added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParametersAllOf) GetEngineIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBByTimestampParametersAllOf) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.2.0

HasEngineId returns a boolean if a field has been set.

func (*ProvisionVDBByTimestampParametersAllOf) HasMakeCurrentAccountOwner added in v1.6.0

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 added in v1.2.0

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*ProvisionVDBByTimestampParametersAllOf) SetMakeCurrentAccountOwner added in v1.6.0

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 added in v1.6.0

func (o ProvisionVDBByTimestampParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkDefaultsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBFromBookmarkDefaultsRequest) GetBookmarkIdOk added in v1.6.0

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 added in v1.6.0

func (o ProvisionVDBFromBookmarkDefaultsRequest) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkDefaultsRequest) SetBookmarkId added in v1.6.0

func (o *ProvisionVDBFromBookmarkDefaultsRequest) SetBookmarkId(v string)

SetBookmarkId sets field value

func (ProvisionVDBFromBookmarkDefaultsRequest) ToMap added in v1.6.0

func (o ProvisionVDBFromBookmarkDefaultsRequest) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkParameters added in v1.2.0

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 rewinding the VDB.
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	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"`
	// 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"`
	// 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 added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetArchiveLog() bool

GetArchiveLog returns the ArchiveLog field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetArchiveLogOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetAutoSelectRepository() bool

GetAutoSelectRepository returns the AutoSelectRepository field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAutoSelectRepositoryOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateId() string

GetAuxiliaryTemplateId returns the AuxiliaryTemplateId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetAuxiliaryTemplateIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBFromBookmarkParameters) GetBookmarkIdOk added in v1.2.0

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 added in v1.2.0

GetCdbId returns the CdbId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdbIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetCdcOnProvision() bool

GetCdcOnProvision returns the CdcOnProvision field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCdcOnProvisionOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetClusterNodeIds() []string

GetClusterNodeIds returns the ClusterNodeIds field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetClusterNodeIdsOk added in v1.2.0

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) GetConfigParams added in v1.6.0

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 added in v1.6.0

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) GetConfigureClone added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetConfigureCloneOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvFilesOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetCustomEnvVarsOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetDatabaseName() string

GetDatabaseName returns the DatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetEnvironmentUserIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetFileMappingRules() string

GetFileMappingRules returns the FileMappingRules field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetFileMappingRulesOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetListenerIdsOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetMountPointOk added in v1.2.0

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) GetName added in v1.2.0

GetName returns the Name field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetNewDbid() bool

GetNewDbid returns the NewDbid field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetNewDbidOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogGroups() int32

GetOnlineLogGroups returns the OnlineLogGroups field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogGroupsOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOnlineLogSize() int32

GetOnlineLogSize returns the OnlineLogSize field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOnlineLogSizeOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOpenResetLogs() bool

GetOpenResetLogs returns the OpenResetLogs field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOpenResetLogsOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOracleInstanceName() string

GetOracleInstanceName returns the OracleInstanceName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleInstanceNameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOsPassword() string

GetOsPassword returns the OsPassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOsPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetOsUsername() string

GetOsUsername returns the OsUsername field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetOsUsernameOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetParentTdeKeystorePathOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostRefreshOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostRollbackOk added in v1.2.0

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.

func (*ProvisionVDBFromBookmarkParameters) GetPostScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostScript() string

GetPostScript returns the PostScript field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostScriptOk added in v1.2.0

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) GetPostSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostSnapshotOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostStartOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPostStopOk added in v1.2.0

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) GetPreRefresh added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreRefreshOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreRollbackOk added in v1.2.0

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.

func (*ProvisionVDBFromBookmarkParameters) GetPreScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreScript() string

GetPreScript returns the PreScript field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreScriptOk added in v1.2.0

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) GetPreSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreSnapshotOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreStartOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetPreStopOk added in v1.2.0

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) GetRecoveryModel added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetRecoveryModel() string

GetRecoveryModel returns the RecoveryModel field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRecoveryModelOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRepositoryIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetRetentionPolicyId() string

GetRetentionPolicyId returns the RetentionPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetRetentionPolicyIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyId() string

GetSnapshotPolicyId returns the SnapshotPolicyId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetSnapshotPolicyIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTagsOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetTargetGroupId() string

GetTargetGroupId returns the TargetGroupId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTargetGroupIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecret() string

GetTdeExportedKeyFileSecret returns the TdeExportedKeyFileSecret field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTdeExportedKeyFileSecretOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTemplateIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpoint() bool

GetTruncateLogOnCheckpoint returns the TruncateLogOnCheckpoint field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetTruncateLogOnCheckpointOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetUniqueNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseName() string

GetVcdbDatabaseName returns the VcdbDatabaseName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbDatabaseNameOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbName() string

GetVcdbName returns the VcdbName field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbNameOk added in v1.2.0

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) GetVcdbTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifier() string

GetVcdbTdeKeyIdentifier returns the VcdbTdeKeyIdentifier field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVcdbTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) GetVdbRestart() bool

GetVdbRestart returns the VdbRestart field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParameters) GetVdbRestartOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAppdataConfigParams added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAppdataSourceParams added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasArchiveLog added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasArchiveLog() bool

HasArchiveLog returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAutoSelectRepository added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasAutoSelectRepository() bool

HasAutoSelectRepository returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasAuxiliaryTemplateId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasAuxiliaryTemplateId() bool

HasAuxiliaryTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdbId added in v1.2.0

HasCdbId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdbTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasCdbTdeKeystorePassword() bool

HasCdbTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCdcOnProvision added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasCdcOnProvision() bool

HasCdcOnProvision returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasClusterNodeIds added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasClusterNodeIds() bool

HasClusterNodeIds returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasConfigParams added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasConfigureClone added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCustomEnvFiles added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasCustomEnvVars added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasDatabaseName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasDatabaseName() bool

HasDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasEnvironmentId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasEnvironmentUserId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasFileMappingRules added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasFileMappingRules() bool

HasFileMappingRules returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasListenerIds added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasMountPoint added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasMountPoint() bool

HasMountPoint returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasName added in v1.2.0

HasName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasNewDbid added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasNewDbid() bool

HasNewDbid returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOnlineLogGroups added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOnlineLogGroups() bool

HasOnlineLogGroups returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOnlineLogSize added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOnlineLogSize() bool

HasOnlineLogSize returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOpenResetLogs added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOpenResetLogs() bool

HasOpenResetLogs returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleInstanceName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOracleInstanceName() bool

HasOracleInstanceName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvFiles added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOsPassword added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOsPassword() bool

HasOsPassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasOsUsername added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasOsUsername() bool

HasOsUsername returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePath added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasParentTdeKeystorePath() bool

HasParentTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostRefresh added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostRollback added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostScript() bool

HasPostScript returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostStart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPostStop added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreRefresh added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreRollback added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreScript() bool

HasPreScript returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreStart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasPreStop added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRecoveryModel added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasRecoveryModel() bool

HasRecoveryModel returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRepositoryId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasRetentionPolicyId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasRetentionPolicyId() bool

HasRetentionPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasSnapshotPolicyId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasSnapshotPolicyId() bool

HasSnapshotPolicyId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTags added in v1.2.0

HasTags returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTargetGroupId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasTargetGroupId() bool

HasTargetGroupId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTargetVcdbTdeKeystorePath added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasTdeExportedKeyFileSecret() bool

HasTdeExportedKeyFileSecret returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTemplateId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasTruncateLogOnCheckpoint added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasTruncateLogOnCheckpoint() bool

HasTruncateLogOnCheckpoint returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasUniqueName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbDatabaseName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbDatabaseName() bool

HasVcdbDatabaseName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbName() bool

HasVcdbName returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVcdbTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) HasVcdbTdeKeyIdentifier() bool

HasVcdbTdeKeyIdentifier returns a boolean if a field has been set.

func (*ProvisionVDBFromBookmarkParameters) HasVdbRestart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) HasVdbRestart() bool

HasVdbRestart returns a boolean if a field has been set.

func (ProvisionVDBFromBookmarkParameters) MarshalJSON added in v1.2.0

func (o ProvisionVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkParameters) SetAdditionalMountPoints added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*ProvisionVDBFromBookmarkParameters) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetArchiveLog(v bool)

SetArchiveLog gets a reference to the given bool and assigns it to the ArchiveLog field.

func (*ProvisionVDBFromBookmarkParameters) SetAutoSelectRepository added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetAutoSelectRepository(v bool)

SetAutoSelectRepository gets a reference to the given bool and assigns it to the AutoSelectRepository field.

func (*ProvisionVDBFromBookmarkParameters) SetAuxiliaryTemplateId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetAuxiliaryTemplateId(v string)

SetAuxiliaryTemplateId gets a reference to the given string and assigns it to the AuxiliaryTemplateId field.

func (*ProvisionVDBFromBookmarkParameters) SetBookmarkId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (*ProvisionVDBFromBookmarkParameters) SetCdbId added in v1.2.0

SetCdbId gets a reference to the given string and assigns it to the CdbId field.

func (*ProvisionVDBFromBookmarkParameters) SetCdbTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetCdbTdeKeystorePassword(v string)

SetCdbTdeKeystorePassword gets a reference to the given string and assigns it to the CdbTdeKeystorePassword field.

func (*ProvisionVDBFromBookmarkParameters) SetCdcOnProvision added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetCdcOnProvision(v bool)

SetCdcOnProvision gets a reference to the given bool and assigns it to the CdcOnProvision field.

func (*ProvisionVDBFromBookmarkParameters) SetClusterNodeIds added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetClusterNodeIds(v []string)

SetClusterNodeIds gets a reference to the given []string and assigns it to the ClusterNodeIds field.

func (*ProvisionVDBFromBookmarkParameters) SetConfigParams added in v1.6.0

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) SetConfigureClone added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*ProvisionVDBFromBookmarkParameters) SetCustomEnvFiles added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*ProvisionVDBFromBookmarkParameters) SetCustomEnvVars added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetDatabaseName(v string)

SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.

func (*ProvisionVDBFromBookmarkParameters) SetEnvironmentId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*ProvisionVDBFromBookmarkParameters) SetEnvironmentUserId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*ProvisionVDBFromBookmarkParameters) SetFileMappingRules added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetFileMappingRules(v string)

SetFileMappingRules gets a reference to the given string and assigns it to the FileMappingRules field.

func (*ProvisionVDBFromBookmarkParameters) SetListenerIds added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*ProvisionVDBFromBookmarkParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBFromBookmarkParameters) SetMountPoint added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetMountPoint(v string)

SetMountPoint gets a reference to the given string and assigns it to the MountPoint field.

func (*ProvisionVDBFromBookmarkParameters) SetName added in v1.2.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProvisionVDBFromBookmarkParameters) SetNewDbid added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetNewDbid(v bool)

SetNewDbid gets a reference to the given bool and assigns it to the NewDbid field.

func (*ProvisionVDBFromBookmarkParameters) SetOnlineLogGroups added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOnlineLogGroups(v int32)

SetOnlineLogGroups gets a reference to the given int32 and assigns it to the OnlineLogGroups field.

func (*ProvisionVDBFromBookmarkParameters) SetOnlineLogSize added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOnlineLogSize(v int32)

SetOnlineLogSize gets a reference to the given int32 and assigns it to the OnlineLogSize field.

func (*ProvisionVDBFromBookmarkParameters) SetOpenResetLogs added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOpenResetLogs(v bool)

SetOpenResetLogs gets a reference to the given bool and assigns it to the OpenResetLogs field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleInstanceName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOracleInstanceName(v string)

SetOracleInstanceName gets a reference to the given string and assigns it to the OracleInstanceName field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvFiles added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvVars added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*ProvisionVDBFromBookmarkParameters) SetOsPassword added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOsPassword(v string)

SetOsPassword gets a reference to the given string and assigns it to the OsPassword field.

func (*ProvisionVDBFromBookmarkParameters) SetOsUsername added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetOsUsername(v string)

SetOsUsername gets a reference to the given string and assigns it to the OsUsername field.

func (*ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePassword added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePath added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetParentTdeKeystorePath(v string)

SetParentTdeKeystorePath gets a reference to the given string and assigns it to the ParentTdeKeystorePath field.

func (*ProvisionVDBFromBookmarkParameters) SetPostRefresh added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPostRollback added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field.

func (*ProvisionVDBFromBookmarkParameters) SetPostScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostScript(v string)

SetPostScript gets a reference to the given string and assigns it to the PostScript field.

func (*ProvisionVDBFromBookmarkParameters) SetPostSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*ProvisionVDBFromBookmarkParameters) SetPostStart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*ProvisionVDBFromBookmarkParameters) SetPostStop added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*ProvisionVDBFromBookmarkParameters) SetPreRefresh added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*ProvisionVDBFromBookmarkParameters) SetPreRollback added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field.

func (*ProvisionVDBFromBookmarkParameters) SetPreScript added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreScript(v string)

SetPreScript gets a reference to the given string and assigns it to the PreScript field.

func (*ProvisionVDBFromBookmarkParameters) SetPreSnapshot added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*ProvisionVDBFromBookmarkParameters) SetPreStart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*ProvisionVDBFromBookmarkParameters) SetPreStop added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (*ProvisionVDBFromBookmarkParameters) SetRecoveryModel added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetRecoveryModel(v string)

SetRecoveryModel gets a reference to the given string and assigns it to the RecoveryModel field.

func (*ProvisionVDBFromBookmarkParameters) SetRepositoryId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*ProvisionVDBFromBookmarkParameters) SetRetentionPolicyId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetRetentionPolicyId(v string)

SetRetentionPolicyId gets a reference to the given string and assigns it to the RetentionPolicyId field.

func (*ProvisionVDBFromBookmarkParameters) SetSnapshotPolicyId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetSnapshotPolicyId(v string)

SetSnapshotPolicyId gets a reference to the given string and assigns it to the SnapshotPolicyId field.

func (*ProvisionVDBFromBookmarkParameters) SetTags added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ProvisionVDBFromBookmarkParameters) SetTargetGroupId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetTargetGroupId(v string)

SetTargetGroupId gets a reference to the given string and assigns it to the TargetGroupId field.

func (*ProvisionVDBFromBookmarkParameters) SetTargetVcdbTdeKeystorePath added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*ProvisionVDBFromBookmarkParameters) SetTdeExportedKeyFileSecret added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetTdeExportedKeyFileSecret(v string)

SetTdeExportedKeyFileSecret gets a reference to the given string and assigns it to the TdeExportedKeyFileSecret field.

func (*ProvisionVDBFromBookmarkParameters) SetTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*ProvisionVDBFromBookmarkParameters) SetTemplateId added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*ProvisionVDBFromBookmarkParameters) SetTruncateLogOnCheckpoint added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetTruncateLogOnCheckpoint(v bool)

SetTruncateLogOnCheckpoint gets a reference to the given bool and assigns it to the TruncateLogOnCheckpoint field.

func (*ProvisionVDBFromBookmarkParameters) SetUniqueName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbDatabaseName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbDatabaseName(v string)

SetVcdbDatabaseName gets a reference to the given string and assigns it to the VcdbDatabaseName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbName added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbName(v string)

SetVcdbName gets a reference to the given string and assigns it to the VcdbName field.

func (*ProvisionVDBFromBookmarkParameters) SetVcdbTdeKeyIdentifier added in v1.6.0

func (o *ProvisionVDBFromBookmarkParameters) SetVcdbTdeKeyIdentifier(v string)

SetVcdbTdeKeyIdentifier gets a reference to the given string and assigns it to the VcdbTdeKeyIdentifier field.

func (*ProvisionVDBFromBookmarkParameters) SetVdbRestart added in v1.2.0

func (o *ProvisionVDBFromBookmarkParameters) SetVdbRestart(v bool)

SetVdbRestart gets a reference to the given bool and assigns it to the VdbRestart field.

func (ProvisionVDBFromBookmarkParameters) ToMap added in v1.6.0

func (o ProvisionVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBFromBookmarkParametersAllOf added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBFromBookmarkParametersAllOf) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBFromBookmarkParametersAllOf) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (ProvisionVDBFromBookmarkParametersAllOf) MarshalJSON added in v1.6.0

func (o ProvisionVDBFromBookmarkParametersAllOf) MarshalJSON() ([]byte, error)

func (*ProvisionVDBFromBookmarkParametersAllOf) SetMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBFromBookmarkParametersAllOf) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (ProvisionVDBFromBookmarkParametersAllOf) ToMap added in v1.6.0

func (o ProvisionVDBFromBookmarkParametersAllOf) ToMap() (map[string]interface{}, error)

type ProvisionVDBGroupFromBookmarkParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetBookmarkId returns the BookmarkId field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetBookmarkIdOk added in v1.2.0

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 added in v1.6.0

func (o *ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.2.0

GetName returns the Name field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetNameOk added in v1.2.0

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) GetProvisionParameters added in v1.2.0

GetProvisionParameters returns the ProvisionParameters field value

func (*ProvisionVDBGroupFromBookmarkParameters) GetProvisionParametersOk added in v1.2.0

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 added in v1.6.0

GetTags returns the Tags field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkParameters) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *ProvisionVDBGroupFromBookmarkParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ProvisionVDBGroupFromBookmarkParameters) HasTags added in v1.6.0

HasTags returns a boolean if a field has been set.

func (ProvisionVDBGroupFromBookmarkParameters) MarshalJSON added in v1.2.0

func (o ProvisionVDBGroupFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*ProvisionVDBGroupFromBookmarkParameters) SetBookmarkId added in v1.2.0

func (o *ProvisionVDBGroupFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *ProvisionVDBGroupFromBookmarkParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ProvisionVDBGroupFromBookmarkParameters) SetName added in v1.2.0

SetName sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetProvisionParameters added in v1.2.0

SetProvisionParameters sets field value

func (*ProvisionVDBGroupFromBookmarkParameters) SetTags added in v1.6.0

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (ProvisionVDBGroupFromBookmarkParameters) ToMap added in v1.6.0

func (o ProvisionVDBGroupFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type ProvisionVDBGroupFromBookmarkResponse added in v1.2.0

type ProvisionVDBGroupFromBookmarkResponse struct {
	VdbGroup *VDBGroup `json:"vdb_group,omitempty"`
	Job      *Job      `json:"job,omitempty"`
}

ProvisionVDBGroupFromBookmarkResponse struct for ProvisionVDBGroupFromBookmarkResponse

func NewProvisionVDBGroupFromBookmarkResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetJob returns the Job field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

GetVdbGroup returns the VdbGroup field value if set, zero value otherwise.

func (*ProvisionVDBGroupFromBookmarkResponse) GetVdbGroupOk added in v1.2.0

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 added in v1.2.0

HasJob returns a boolean if a field has been set.

func (*ProvisionVDBGroupFromBookmarkResponse) HasVdbGroup added in v1.2.0

HasVdbGroup returns a boolean if a field has been set.

func (ProvisionVDBGroupFromBookmarkResponse) MarshalJSON added in v1.2.0

func (o ProvisionVDBGroupFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*ProvisionVDBGroupFromBookmarkResponse) SetJob added in v1.2.0

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*ProvisionVDBGroupFromBookmarkResponse) SetVdbGroup added in v1.2.0

SetVdbGroup gets a reference to the given VDBGroup and assigns it to the VdbGroup field.

func (ProvisionVDBGroupFromBookmarkResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *ProvisionVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*ProvisionVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBResponse) GetVdbId() string

GetVdbId returns the VdbId field value if set, zero value otherwise.

func (*ProvisionVDBResponse) GetVdbIdOk added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*ProvisionVDBResponse) HasVdbId added in v1.2.0

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 added in v1.2.0

func (o *ProvisionVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*ProvisionVDBResponse) SetVdbId added in v1.2.0

func (o *ProvisionVDBResponse) SetVdbId(v string)

SetVdbId gets a reference to the given string and assigns it to the VdbId field.

func (ProvisionVDBResponse) ToMap added in v1.6.0

func (o ProvisionVDBResponse) 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 added in v1.2.0

func (o *RefreshEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RefreshEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshEnvironmentResponse) ToMap added in v1.6.0

func (o RefreshEnvironmentResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBByLocationParameters added in v1.6.0

type RefreshVDBByLocationParameters struct {
	// The database specific identifier for tracking transactions (SCN, LSN, etc).
	Location string `json:"location"`
	// 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 added in v1.6.0

func NewRefreshVDBByLocationParameters(location string) *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 added in v1.6.0

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 added in v1.6.0

func (o *RefreshVDBByLocationParameters) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByLocationParameters) GetDatasetIdOk added in v1.6.0

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 added in v1.6.0

func (o *RefreshVDBByLocationParameters) GetLocation() string

GetLocation returns the Location field value

func (*RefreshVDBByLocationParameters) GetLocationOk added in v1.6.0

func (o *RefreshVDBByLocationParameters) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*RefreshVDBByLocationParameters) GetTimeflowId added in v1.6.0

func (o *RefreshVDBByLocationParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByLocationParameters) GetTimeflowIdOk added in v1.6.0

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 added in v1.6.0

func (o *RefreshVDBByLocationParameters) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByLocationParameters) HasTimeflowId added in v1.6.0

func (o *RefreshVDBByLocationParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (RefreshVDBByLocationParameters) MarshalJSON added in v1.6.0

func (o RefreshVDBByLocationParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBByLocationParameters) SetDatasetId added in v1.6.0

func (o *RefreshVDBByLocationParameters) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByLocationParameters) SetLocation added in v1.6.0

func (o *RefreshVDBByLocationParameters) SetLocation(v string)

SetLocation sets field value

func (*RefreshVDBByLocationParameters) SetTimeflowId added in v1.6.0

func (o *RefreshVDBByLocationParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (RefreshVDBByLocationParameters) ToMap added in v1.6.0

func (o RefreshVDBByLocationParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBByLocationResponse added in v1.6.0

type RefreshVDBByLocationResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBByLocationResponse struct for RefreshVDBByLocationResponse

func NewRefreshVDBByLocationResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *RefreshVDBByLocationResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBByLocationResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *RefreshVDBByLocationResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBByLocationResponse) MarshalJSON added in v1.6.0

func (o RefreshVDBByLocationResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBByLocationResponse) SetJob added in v1.6.0

func (o *RefreshVDBByLocationResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBByLocationResponse) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *RefreshVDBBySnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBBySnapshotResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RefreshVDBBySnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBBySnapshotResponse) ToMap added in v1.6.0

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 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"`
}

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 added in v1.1.0

func (o *RefreshVDBByTimestampParameters) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetDatasetIdOk added in v1.1.0

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 added in v1.6.0

func (o *RefreshVDBByTimestampParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParameters) GetTimeflowIdOk added in v1.6.0

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 added in v1.1.0

func (o *RefreshVDBByTimestampParameters) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParameters) HasTimeflowId added in v1.6.0

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 added in v1.1.0

func (o *RefreshVDBByTimestampParameters) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByTimestampParameters) SetTimeflowId added in v1.6.0

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 added in v1.6.0

func (o RefreshVDBByTimestampParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBByTimestampParametersAllOf added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *RefreshVDBByTimestampParametersAllOf) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParametersAllOf) GetDatasetIdOk added in v1.1.0

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 added in v1.6.0

func (o *RefreshVDBByTimestampParametersAllOf) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*RefreshVDBByTimestampParametersAllOf) GetTimeflowIdOk added in v1.6.0

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 added in v1.1.0

func (o *RefreshVDBByTimestampParametersAllOf) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*RefreshVDBByTimestampParametersAllOf) HasTimeflowId added in v1.6.0

func (o *RefreshVDBByTimestampParametersAllOf) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (RefreshVDBByTimestampParametersAllOf) MarshalJSON added in v1.1.0

func (o RefreshVDBByTimestampParametersAllOf) MarshalJSON() ([]byte, error)

func (*RefreshVDBByTimestampParametersAllOf) SetDatasetId added in v1.1.0

func (o *RefreshVDBByTimestampParametersAllOf) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*RefreshVDBByTimestampParametersAllOf) SetTimeflowId added in v1.6.0

func (o *RefreshVDBByTimestampParametersAllOf) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (RefreshVDBByTimestampParametersAllOf) ToMap added in v1.6.0

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 added in v1.2.0

func (o *RefreshVDBByTimestampResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBByTimestampResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RefreshVDBByTimestampResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBByTimestampResponse) ToMap added in v1.6.0

func (o RefreshVDBByTimestampResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBFromBookmarkParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RefreshVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RefreshVDBFromBookmarkParameters) GetBookmarkIdOk added in v1.2.0

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 added in v1.2.0

func (o RefreshVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBFromBookmarkParameters) SetBookmarkId added in v1.2.0

func (o *RefreshVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RefreshVDBFromBookmarkParameters) ToMap added in v1.6.0

func (o RefreshVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBFromBookmarkResponse added in v1.2.0

type RefreshVDBFromBookmarkResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBFromBookmarkResponse struct for RefreshVDBFromBookmarkResponse

func NewRefreshVDBFromBookmarkResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RefreshVDBFromBookmarkResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBFromBookmarkResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

HasJob returns a boolean if a field has been set.

func (RefreshVDBFromBookmarkResponse) MarshalJSON added in v1.2.0

func (o RefreshVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBFromBookmarkResponse) SetJob added in v1.2.0

func (o *RefreshVDBFromBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBFromBookmarkResponse) ToMap added in v1.6.0

func (o RefreshVDBFromBookmarkResponse) ToMap() (map[string]interface{}, error)

type RefreshVDBGroupParameters added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *RefreshVDBGroupParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RefreshVDBGroupParameters) GetBookmarkIdOk added in v1.1.0

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 added in v1.1.0

func (o RefreshVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*RefreshVDBGroupParameters) SetBookmarkId added in v1.1.0

func (o *RefreshVDBGroupParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RefreshVDBGroupParameters) ToMap added in v1.6.0

func (o RefreshVDBGroupParameters) ToMap() (map[string]interface{}, error)

type RefreshVDBGroupResponse added in v1.1.0

type RefreshVDBGroupResponse struct {
	Job *Job `json:"job,omitempty"`
}

RefreshVDBGroupResponse struct for RefreshVDBGroupResponse

func NewRefreshVDBGroupResponse added in v1.1.0

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 added in v1.1.0

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 added in v1.2.0

func (o *RefreshVDBGroupResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RefreshVDBGroupResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *RefreshVDBGroupResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RefreshVDBGroupResponse) MarshalJSON added in v1.1.0

func (o RefreshVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*RefreshVDBGroupResponse) SetJob added in v1.2.0

func (o *RefreshVDBGroupResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RefreshVDBGroupResponse) ToMap added in v1.6.0

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_path propery.
	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"`
}

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *RegisteredEngine) GetSshPublicKey() string

GetSshPublicKey returns the SshPublicKey field value if set, zero value otherwise.

func (*RegisteredEngine) GetSshPublicKeyOk added in v1.6.0

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 added in v1.2.0

func (o *RegisteredEngine) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*RegisteredEngine) GetTagsOk added in v1.2.0

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 added in v1.2.0

func (o *RegisteredEngine) HasConnectionStatus() bool

HasConnectionStatus returns a boolean if a field has been set.

func (*RegisteredEngine) HasConnectionStatusDetails added in v1.2.0

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 added in v1.6.0

func (o *RegisteredEngine) HasHashicorpVaultMaskingPasswordCommandArgs() bool

HasHashicorpVaultMaskingPasswordCommandArgs returns a boolean if a field has been set.

func (*RegisteredEngine) HasHashicorpVaultMaskingUsernameCommandArgs added in v1.6.0

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) 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 added in v1.6.0

func (o *RegisteredEngine) HasMaskingAllocatedMemory() bool

HasMaskingAllocatedMemory returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingAvailableCores added in v1.6.0

func (o *RegisteredEngine) HasMaskingAvailableCores() bool

HasMaskingAvailableCores returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingHashicorpVaultId added in v1.6.0

func (o *RegisteredEngine) HasMaskingHashicorpVaultId() bool

HasMaskingHashicorpVaultId returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingJobsRunning added in v1.6.0

func (o *RegisteredEngine) HasMaskingJobsRunning() bool

HasMaskingJobsRunning returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingMaxConcurrentJobs added in v1.6.0

func (o *RegisteredEngine) HasMaskingMaxConcurrentJobs() bool

HasMaskingMaxConcurrentJobs returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingMemoryUsed added in v1.6.0

func (o *RegisteredEngine) HasMaskingMemoryUsed() bool

HasMaskingMemoryUsed returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingPassword added in v1.6.0

func (o *RegisteredEngine) HasMaskingPassword() bool

HasMaskingPassword returns a boolean if a field has been set.

func (*RegisteredEngine) HasMaskingUsername added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RegisteredEngine) SetConnectionStatus(v string)

SetConnectionStatus gets a reference to the given NullableString and assigns it to the ConnectionStatus field.

func (*RegisteredEngine) SetConnectionStatusDetails added in v1.2.0

func (o *RegisteredEngine) SetConnectionStatusDetails(v string)

SetConnectionStatusDetails gets a reference to the given NullableString and assigns it to the ConnectionStatusDetails field.

func (*RegisteredEngine) SetConnectionStatusDetailsNil added in v1.2.0

func (o *RegisteredEngine) SetConnectionStatusDetailsNil()

SetConnectionStatusDetailsNil sets the value for ConnectionStatusDetails to be an explicit nil

func (*RegisteredEngine) SetConnectionStatusNil added in v1.2.0

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 added in v1.6.0

func (o *RegisteredEngine) SetHashicorpVaultMaskingPasswordCommandArgs(v []string)

SetHashicorpVaultMaskingPasswordCommandArgs gets a reference to the given []string and assigns it to the HashicorpVaultMaskingPasswordCommandArgs field.

func (*RegisteredEngine) SetHashicorpVaultMaskingUsernameCommandArgs added in v1.6.0

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) 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 added in v1.6.0

func (o *RegisteredEngine) SetMaskingAllocatedMemory(v int64)

SetMaskingAllocatedMemory gets a reference to the given NullableInt64 and assigns it to the MaskingAllocatedMemory field.

func (*RegisteredEngine) SetMaskingAllocatedMemoryNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingAllocatedMemoryNil()

SetMaskingAllocatedMemoryNil sets the value for MaskingAllocatedMemory to be an explicit nil

func (*RegisteredEngine) SetMaskingAvailableCores added in v1.6.0

func (o *RegisteredEngine) SetMaskingAvailableCores(v int32)

SetMaskingAvailableCores gets a reference to the given NullableInt32 and assigns it to the MaskingAvailableCores field.

func (*RegisteredEngine) SetMaskingAvailableCoresNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingAvailableCoresNil()

SetMaskingAvailableCoresNil sets the value for MaskingAvailableCores to be an explicit nil

func (*RegisteredEngine) SetMaskingHashicorpVaultId added in v1.6.0

func (o *RegisteredEngine) SetMaskingHashicorpVaultId(v int64)

SetMaskingHashicorpVaultId gets a reference to the given NullableInt64 and assigns it to the MaskingHashicorpVaultId field.

func (*RegisteredEngine) SetMaskingHashicorpVaultIdNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingHashicorpVaultIdNil()

SetMaskingHashicorpVaultIdNil sets the value for MaskingHashicorpVaultId to be an explicit nil

func (*RegisteredEngine) SetMaskingJobsRunning added in v1.6.0

func (o *RegisteredEngine) SetMaskingJobsRunning(v int32)

SetMaskingJobsRunning gets a reference to the given NullableInt32 and assigns it to the MaskingJobsRunning field.

func (*RegisteredEngine) SetMaskingJobsRunningNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingJobsRunningNil()

SetMaskingJobsRunningNil sets the value for MaskingJobsRunning to be an explicit nil

func (*RegisteredEngine) SetMaskingMaxConcurrentJobs added in v1.6.0

func (o *RegisteredEngine) SetMaskingMaxConcurrentJobs(v int32)

SetMaskingMaxConcurrentJobs gets a reference to the given NullableInt32 and assigns it to the MaskingMaxConcurrentJobs field.

func (*RegisteredEngine) SetMaskingMaxConcurrentJobsNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingMaxConcurrentJobsNil()

SetMaskingMaxConcurrentJobsNil sets the value for MaskingMaxConcurrentJobs to be an explicit nil

func (*RegisteredEngine) SetMaskingMemoryUsed added in v1.6.0

func (o *RegisteredEngine) SetMaskingMemoryUsed(v int64)

SetMaskingMemoryUsed gets a reference to the given NullableInt64 and assigns it to the MaskingMemoryUsed field.

func (*RegisteredEngine) SetMaskingMemoryUsedNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingMemoryUsedNil()

SetMaskingMemoryUsedNil sets the value for MaskingMemoryUsed to be an explicit nil

func (*RegisteredEngine) SetMaskingPassword added in v1.6.0

func (o *RegisteredEngine) SetMaskingPassword(v string)

SetMaskingPassword gets a reference to the given NullableString and assigns it to the MaskingPassword field.

func (*RegisteredEngine) SetMaskingPasswordNil added in v1.6.0

func (o *RegisteredEngine) SetMaskingPasswordNil()

SetMaskingPasswordNil sets the value for MaskingPassword to be an explicit nil

func (*RegisteredEngine) SetMaskingUsername added in v1.6.0

func (o *RegisteredEngine) SetMaskingUsername(v string)

SetMaskingUsername gets a reference to the given NullableString and assigns it to the MaskingUsername field.

func (*RegisteredEngine) SetMaskingUsernameNil added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.6.0

func (o RegisteredEngine) ToMap() (map[string]interface{}, error)

func (*RegisteredEngine) UnsetConnectionStatus added in v1.2.0

func (o *RegisteredEngine) UnsetConnectionStatus()

UnsetConnectionStatus ensures that no value is present for ConnectionStatus, not even an explicit nil

func (*RegisteredEngine) UnsetConnectionStatusDetails added in v1.2.0

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) UnsetMaskingAllocatedMemory added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingAllocatedMemory()

UnsetMaskingAllocatedMemory ensures that no value is present for MaskingAllocatedMemory, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingAvailableCores added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingAvailableCores()

UnsetMaskingAvailableCores ensures that no value is present for MaskingAvailableCores, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingHashicorpVaultId added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingHashicorpVaultId()

UnsetMaskingHashicorpVaultId ensures that no value is present for MaskingHashicorpVaultId, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingJobsRunning added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingJobsRunning()

UnsetMaskingJobsRunning ensures that no value is present for MaskingJobsRunning, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingMaxConcurrentJobs added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingMaxConcurrentJobs()

UnsetMaskingMaxConcurrentJobs ensures that no value is present for MaskingMaxConcurrentJobs, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingMemoryUsed added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingMemoryUsed()

UnsetMaskingMemoryUsed ensures that no value is present for MaskingMemoryUsed, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingPassword added in v1.6.0

func (o *RegisteredEngine) UnsetMaskingPassword()

UnsetMaskingPassword ensures that no value is present for MaskingPassword, not even an explicit nil

func (*RegisteredEngine) UnsetMaskingUsername added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *RemoveMaskingJobParameters) GetEngineId() string

GetEngineId returns the EngineId field value

func (*RemoveMaskingJobParameters) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o RemoveMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*RemoveMaskingJobParameters) SetEngineId added in v1.6.0

func (o *RemoveMaskingJobParameters) SetEngineId(v string)

SetEngineId sets field value

func (RemoveMaskingJobParameters) ToMap added in v1.6.0

func (o RemoveMaskingJobParameters) ToMap() (map[string]interface{}, error)

type ReportingApiService added in v1.1.0

type ReportingApiService service

ReportingApiService ReportingApi service

func (*ReportingApiService) CreateReportingSchedule added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ReportingSchedule

func (*ReportingApiService) CreateReportingScheduleTags added in v1.6.0

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 added in v1.6.0

func (a *ReportingApiService) CreateReportingScheduleTagsExecute(r ApiCreateReportingScheduleTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ReportingApiService) DeleteReportingSchedule added in v1.2.0

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 added in v1.2.0

func (a *ReportingApiService) DeleteReportingScheduleExecute(r ApiDeleteReportingScheduleRequest) (*http.Response, error)

Execute executes the request

func (*ReportingApiService) DeleteReportingScheduleTag added in v1.6.0

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 added in v1.6.0

func (a *ReportingApiService) DeleteReportingScheduleTagExecute(r ApiDeleteReportingScheduleTagRequest) (*http.Response, error)

Execute executes the request

func (*ReportingApiService) GetApiUsageReport added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ApiUsageReportResponse

func (*ReportingApiService) GetDsourceConsumptionReport added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DSourceConsumptionReportResponse

func (*ReportingApiService) GetDsourceUsageReport added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return DSourceUsageReportResponse

func (*ReportingApiService) GetProductInfo added in v1.2.0

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 added in v1.2.0

func (a *ReportingApiService) GetProductInfoExecute(r ApiGetProductInfoRequest) (*ProductInfo, *http.Response, error)

Execute executes the request

@return ProductInfo

func (*ReportingApiService) GetReportingScheduleById added in v1.2.0

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 added in v1.2.0

func (a *ReportingApiService) GetReportingScheduleByIdExecute(r ApiGetReportingScheduleByIdRequest) (*ReportingSchedule, *http.Response, error)

Execute executes the request

@return ReportingSchedule

func (*ReportingApiService) GetReportingScheduleTags added in v1.6.0

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 added in v1.6.0

func (a *ReportingApiService) GetReportingScheduleTagsExecute(r ApiGetReportingScheduleTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*ReportingApiService) GetReportingSchedules added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ListReportingScheduleResponse

func (*ReportingApiService) GetVdbInventoryReport added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return VDBInventoryReportResponse

func (*ReportingApiService) GetVirtualizationStorageSummaryReport added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return VirtualizationStorageSummaryReportResponse

func (*ReportingApiService) SearchDsourceConsumptionReport added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DSourceConsumptionReportResponse

func (*ReportingApiService) SearchDsourceUsageReport added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DSourceUsageReportResponse

func (*ReportingApiService) SearchVdbInventoryReport added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return VDBInventoryReportResponse

func (*ReportingApiService) SearchVirtualizationStorageSummaryReport added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return VirtualizationStorageSummaryReportResponse

func (*ReportingApiService) UpdateReportingSchedule added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ReportingSchedule

type ReportingSchedule added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetCronExpression() string

GetCronExpression returns the CronExpression field value

func (*ReportingSchedule) GetCronExpressionOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ReportingSchedule) GetEnabledOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetFileFormat() string

GetFileFormat returns the FileFormat field value

func (*ReportingSchedule) GetFileFormatOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReportingSchedule) GetMessageOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetRecipients() []string

GetRecipients returns the Recipients field value

func (*ReportingSchedule) GetRecipientsOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetReportId() int32

GetReportId returns the ReportId field value if set, zero value otherwise.

func (*ReportingSchedule) GetReportIdOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetReportType() string

GetReportType returns the ReportType field value

func (*ReportingSchedule) GetReportTypeOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetRowCount() int32

GetRowCount returns the RowCount field value if set, zero value otherwise.

func (*ReportingSchedule) GetRowCountOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) GetSortColumn() string

GetSortColumn returns the SortColumn field value if set, zero value otherwise.

func (*ReportingSchedule) GetSortColumnOk added in v1.2.0

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 added in v1.6.0

func (o *ReportingSchedule) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ReportingSchedule) GetTagsOk added in v1.6.0

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 added in v1.2.0

func (o *ReportingSchedule) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*ReportingSchedule) GetTimeZoneOk added in v1.2.0

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 added in v1.2.0

func (o *ReportingSchedule) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReportingSchedule) HasReportId added in v1.2.0

func (o *ReportingSchedule) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*ReportingSchedule) HasRowCount added in v1.2.0

func (o *ReportingSchedule) HasRowCount() bool

HasRowCount returns a boolean if a field has been set.

func (*ReportingSchedule) HasSortColumn added in v1.2.0

func (o *ReportingSchedule) HasSortColumn() bool

HasSortColumn returns a boolean if a field has been set.

func (*ReportingSchedule) HasTags added in v1.6.0

func (o *ReportingSchedule) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*ReportingSchedule) HasTimeZone added in v1.2.0

func (o *ReportingSchedule) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (ReportingSchedule) MarshalJSON added in v1.2.0

func (o ReportingSchedule) MarshalJSON() ([]byte, error)

func (*ReportingSchedule) SetCronExpression added in v1.2.0

func (o *ReportingSchedule) SetCronExpression(v string)

SetCronExpression sets field value

func (*ReportingSchedule) SetEnabled added in v1.2.0

func (o *ReportingSchedule) SetEnabled(v bool)

SetEnabled sets field value

func (*ReportingSchedule) SetFileFormat added in v1.2.0

func (o *ReportingSchedule) SetFileFormat(v string)

SetFileFormat sets field value

func (*ReportingSchedule) SetMessage added in v1.2.0

func (o *ReportingSchedule) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReportingSchedule) SetRecipients added in v1.2.0

func (o *ReportingSchedule) SetRecipients(v []string)

SetRecipients sets field value

func (*ReportingSchedule) SetReportId added in v1.2.0

func (o *ReportingSchedule) SetReportId(v int32)

SetReportId gets a reference to the given int32 and assigns it to the ReportId field.

func (*ReportingSchedule) SetReportType added in v1.2.0

func (o *ReportingSchedule) SetReportType(v string)

SetReportType sets field value

func (*ReportingSchedule) SetRowCount added in v1.2.0

func (o *ReportingSchedule) SetRowCount(v int32)

SetRowCount gets a reference to the given int32 and assigns it to the RowCount field.

func (*ReportingSchedule) SetSortColumn added in v1.2.0

func (o *ReportingSchedule) SetSortColumn(v string)

SetSortColumn gets a reference to the given string and assigns it to the SortColumn field.

func (*ReportingSchedule) SetTags added in v1.6.0

func (o *ReportingSchedule) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*ReportingSchedule) SetTimeZone added in v1.2.0

func (o *ReportingSchedule) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (ReportingSchedule) ToMap added in v1.6.0

func (o ReportingSchedule) ToMap() (map[string]interface{}, error)

type ReportingScheduleCreateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetCronExpression() string

GetCronExpression returns the CronExpression field value

func (*ReportingScheduleCreateParameters) GetCronExpressionOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ReportingScheduleCreateParameters) GetEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetFileFormat() string

GetFileFormat returns the FileFormat field value

func (*ReportingScheduleCreateParameters) GetFileFormatOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetMakeCurrentAccountOwner() bool

GetMakeCurrentAccountOwner returns the MakeCurrentAccountOwner field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetMakeCurrentAccountOwnerOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetMessageOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetRecipients() []string

GetRecipients returns the Recipients field value

func (*ReportingScheduleCreateParameters) GetRecipientsOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetReportType() string

GetReportType returns the ReportType field value

func (*ReportingScheduleCreateParameters) GetReportTypeOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetRowCount() int32

GetRowCount returns the RowCount field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetRowCountOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetSortColumn() string

GetSortColumn returns the SortColumn field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetSortColumnOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*ReportingScheduleCreateParameters) GetTimeZoneOk added in v1.6.0

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 added in v1.6.0

func (o *ReportingScheduleCreateParameters) HasMakeCurrentAccountOwner() bool

HasMakeCurrentAccountOwner returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasMessage added in v1.6.0

func (o *ReportingScheduleCreateParameters) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasRowCount added in v1.6.0

func (o *ReportingScheduleCreateParameters) HasRowCount() bool

HasRowCount returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasSortColumn added in v1.6.0

func (o *ReportingScheduleCreateParameters) HasSortColumn() bool

HasSortColumn returns a boolean if a field has been set.

func (*ReportingScheduleCreateParameters) HasTimeZone added in v1.6.0

func (o *ReportingScheduleCreateParameters) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (ReportingScheduleCreateParameters) MarshalJSON added in v1.6.0

func (o ReportingScheduleCreateParameters) MarshalJSON() ([]byte, error)

func (*ReportingScheduleCreateParameters) SetCronExpression added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetCronExpression(v string)

SetCronExpression sets field value

func (*ReportingScheduleCreateParameters) SetEnabled added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetEnabled(v bool)

SetEnabled sets field value

func (*ReportingScheduleCreateParameters) SetFileFormat added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetFileFormat(v string)

SetFileFormat sets field value

func (*ReportingScheduleCreateParameters) SetMakeCurrentAccountOwner added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetMakeCurrentAccountOwner(v bool)

SetMakeCurrentAccountOwner gets a reference to the given bool and assigns it to the MakeCurrentAccountOwner field.

func (*ReportingScheduleCreateParameters) SetMessage added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReportingScheduleCreateParameters) SetRecipients added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetRecipients(v []string)

SetRecipients sets field value

func (*ReportingScheduleCreateParameters) SetReportType added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetReportType(v string)

SetReportType sets field value

func (*ReportingScheduleCreateParameters) SetRowCount added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetRowCount(v int32)

SetRowCount gets a reference to the given int32 and assigns it to the RowCount field.

func (*ReportingScheduleCreateParameters) SetSortColumn added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetSortColumn(v string)

SetSortColumn gets a reference to the given string and assigns it to the SortColumn field.

func (*ReportingScheduleCreateParameters) SetTimeZone added in v1.6.0

func (o *ReportingScheduleCreateParameters) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (ReportingScheduleCreateParameters) ToMap added in v1.6.0

func (o ReportingScheduleCreateParameters) ToMap() (map[string]interface{}, error)

type Repository added in v1.2.0

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"`
}

Repository struct for Repository

func NewRepository added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetAllowProvisioning() bool

GetAllowProvisioning returns the AllowProvisioning field value if set, zero value otherwise.

func (*Repository) GetAllowProvisioningOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetBits() int32

GetBits returns the Bits field value if set, zero value otherwise.

func (*Repository) GetBitsOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*Repository) GetDatabaseTypeOk added in v1.2.0

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) GetDumpHistoryFile added in v1.2.0

func (o *Repository) GetDumpHistoryFile() string

GetDumpHistoryFile returns the DumpHistoryFile field value if set, zero value otherwise.

func (*Repository) GetDumpHistoryFileOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetFulltextInstalled() bool

GetFulltextInstalled returns the FulltextInstalled field value if set, zero value otherwise.

func (*Repository) GetFulltextInstalledOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Repository) GetIdOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetInstallGroup() string

GetInstallGroup returns the InstallGroup field value if set, zero value otherwise.

func (*Repository) GetInstallGroupOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetInstallUser() string

GetInstallUser returns the InstallUser field value if set, zero value otherwise.

func (*Repository) GetInstallUserOk added in v1.2.0

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 added in v1.6.0

func (o *Repository) GetInstallationHome() string

GetInstallationHome returns the InstallationHome field value if set, zero value otherwise.

func (*Repository) GetInstallationHomeOk added in v1.6.0

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 added in v1.2.0

func (o *Repository) GetInstallationPath() string

GetInstallationPath returns the InstallationPath field value if set, zero value otherwise.

func (*Repository) GetInstallationPathOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetInternalVersion() int64

GetInternalVersion returns the InternalVersion field value if set, zero value otherwise.

func (*Repository) GetInternalVersionOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetIsStaging() bool

GetIsStaging returns the IsStaging field value if set, zero value otherwise.

func (*Repository) GetIsStagingOk added in v1.2.0

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 added in v1.6.0

func (o *Repository) GetMssqlClusterInstancesName() []string

GetMssqlClusterInstancesName returns the MssqlClusterInstancesName field value if set, zero value otherwise.

func (*Repository) GetMssqlClusterInstancesNameOk added in v1.6.0

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 added in v1.6.0

func (o *Repository) GetMssqlClusterInstancesVersion() []string

GetMssqlClusterInstancesVersion returns the MssqlClusterInstancesVersion field value if set, zero value otherwise.

func (*Repository) GetMssqlClusterInstancesVersionOk added in v1.6.0

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 added in v1.2.0

func (o *Repository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Repository) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetOracleBase() string

GetOracleBase returns the OracleBase field value if set, zero value otherwise.

func (*Repository) GetOracleBaseOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Repository) GetOwnerOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*Repository) GetPageSizeOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetPorts() []int64

GetPorts returns the Ports field value if set, zero value otherwise.

func (*Repository) GetPortsOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetRac() bool

GetRac returns the Rac field value if set, zero value otherwise.

func (*Repository) GetRacOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Repository) GetVersionOk added in v1.2.0

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 added in v1.2.0

func (o *Repository) HasAllowProvisioning() bool

HasAllowProvisioning returns a boolean if a field has been set.

func (*Repository) HasBits added in v1.2.0

func (o *Repository) HasBits() bool

HasBits returns a boolean if a field has been set.

func (*Repository) HasDatabaseType added in v1.2.0

func (o *Repository) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*Repository) HasDumpHistoryFile added in v1.2.0

func (o *Repository) HasDumpHistoryFile() bool

HasDumpHistoryFile returns a boolean if a field has been set.

func (*Repository) HasFulltextInstalled added in v1.2.0

func (o *Repository) HasFulltextInstalled() bool

HasFulltextInstalled returns a boolean if a field has been set.

func (*Repository) HasId added in v1.2.0

func (o *Repository) HasId() bool

HasId returns a boolean if a field has been set.

func (*Repository) HasInstallGroup added in v1.2.0

func (o *Repository) HasInstallGroup() bool

HasInstallGroup returns a boolean if a field has been set.

func (*Repository) HasInstallUser added in v1.2.0

func (o *Repository) HasInstallUser() bool

HasInstallUser returns a boolean if a field has been set.

func (*Repository) HasInstallationHome added in v1.6.0

func (o *Repository) HasInstallationHome() bool

HasInstallationHome returns a boolean if a field has been set.

func (*Repository) HasInstallationPath added in v1.2.0

func (o *Repository) HasInstallationPath() bool

HasInstallationPath returns a boolean if a field has been set.

func (*Repository) HasInternalVersion added in v1.2.0

func (o *Repository) HasInternalVersion() bool

HasInternalVersion returns a boolean if a field has been set.

func (*Repository) HasIsStaging added in v1.2.0

func (o *Repository) HasIsStaging() bool

HasIsStaging returns a boolean if a field has been set.

func (*Repository) HasMssqlClusterInstancesName added in v1.6.0

func (o *Repository) HasMssqlClusterInstancesName() bool

HasMssqlClusterInstancesName returns a boolean if a field has been set.

func (*Repository) HasMssqlClusterInstancesVersion added in v1.6.0

func (o *Repository) HasMssqlClusterInstancesVersion() bool

HasMssqlClusterInstancesVersion returns a boolean if a field has been set.

func (*Repository) HasName added in v1.2.0

func (o *Repository) HasName() bool

HasName returns a boolean if a field has been set.

func (*Repository) HasOracleBase added in v1.2.0

func (o *Repository) HasOracleBase() bool

HasOracleBase returns a boolean if a field has been set.

func (*Repository) HasOwner added in v1.2.0

func (o *Repository) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Repository) HasPageSize added in v1.2.0

func (o *Repository) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*Repository) HasPorts added in v1.2.0

func (o *Repository) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*Repository) HasRac added in v1.2.0

func (o *Repository) HasRac() bool

HasRac returns a boolean if a field has been set.

func (*Repository) HasVersion added in v1.2.0

func (o *Repository) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Repository) MarshalJSON added in v1.2.0

func (o Repository) MarshalJSON() ([]byte, error)

func (*Repository) SetAllowProvisioning added in v1.2.0

func (o *Repository) SetAllowProvisioning(v bool)

SetAllowProvisioning gets a reference to the given bool and assigns it to the AllowProvisioning field.

func (*Repository) SetBits added in v1.2.0

func (o *Repository) SetBits(v int32)

SetBits gets a reference to the given int32 and assigns it to the Bits field.

func (*Repository) SetDatabaseType added in v1.2.0

func (o *Repository) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*Repository) SetDumpHistoryFile added in v1.2.0

func (o *Repository) SetDumpHistoryFile(v string)

SetDumpHistoryFile gets a reference to the given string and assigns it to the DumpHistoryFile field.

func (*Repository) SetFulltextInstalled added in v1.2.0

func (o *Repository) SetFulltextInstalled(v bool)

SetFulltextInstalled gets a reference to the given bool and assigns it to the FulltextInstalled field.

func (*Repository) SetId added in v1.2.0

func (o *Repository) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Repository) SetInstallGroup added in v1.2.0

func (o *Repository) SetInstallGroup(v string)

SetInstallGroup gets a reference to the given string and assigns it to the InstallGroup field.

func (*Repository) SetInstallUser added in v1.2.0

func (o *Repository) SetInstallUser(v string)

SetInstallUser gets a reference to the given string and assigns it to the InstallUser field.

func (*Repository) SetInstallationHome added in v1.6.0

func (o *Repository) SetInstallationHome(v string)

SetInstallationHome gets a reference to the given string and assigns it to the InstallationHome field.

func (*Repository) SetInstallationPath added in v1.2.0

func (o *Repository) SetInstallationPath(v string)

SetInstallationPath gets a reference to the given string and assigns it to the InstallationPath field.

func (*Repository) SetInternalVersion added in v1.2.0

func (o *Repository) SetInternalVersion(v int64)

SetInternalVersion gets a reference to the given int64 and assigns it to the InternalVersion field.

func (*Repository) SetIsStaging added in v1.2.0

func (o *Repository) SetIsStaging(v bool)

SetIsStaging gets a reference to the given bool and assigns it to the IsStaging field.

func (*Repository) SetMssqlClusterInstancesName added in v1.6.0

func (o *Repository) SetMssqlClusterInstancesName(v []string)

SetMssqlClusterInstancesName gets a reference to the given []string and assigns it to the MssqlClusterInstancesName field.

func (*Repository) SetMssqlClusterInstancesVersion added in v1.6.0

func (o *Repository) SetMssqlClusterInstancesVersion(v []string)

SetMssqlClusterInstancesVersion gets a reference to the given []string and assigns it to the MssqlClusterInstancesVersion field.

func (*Repository) SetName added in v1.2.0

func (o *Repository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Repository) SetOracleBase added in v1.2.0

func (o *Repository) SetOracleBase(v string)

SetOracleBase gets a reference to the given string and assigns it to the OracleBase field.

func (*Repository) SetOwner added in v1.2.0

func (o *Repository) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Repository) SetPageSize added in v1.2.0

func (o *Repository) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*Repository) SetPorts added in v1.2.0

func (o *Repository) SetPorts(v []int64)

SetPorts gets a reference to the given []int64 and assigns it to the Ports field.

func (*Repository) SetRac added in v1.2.0

func (o *Repository) SetRac(v bool)

SetRac gets a reference to the given bool and assigns it to the Rac field.

func (*Repository) SetVersion added in v1.2.0

func (o *Repository) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Repository) ToMap added in v1.6.0

func (o Repository) ToMap() (map[string]interface{}, error)

type ResetPasswordParameter added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ResetPasswordParameter) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*ResetPasswordParameter) GetNewPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *ResetPasswordParameter) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (ResetPasswordParameter) MarshalJSON added in v1.6.0

func (o ResetPasswordParameter) MarshalJSON() ([]byte, error)

func (*ResetPasswordParameter) SetNewPassword added in v1.6.0

func (o *ResetPasswordParameter) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (ResetPasswordParameter) ToMap added in v1.6.0

func (o ResetPasswordParameter) ToMap() (map[string]interface{}, error)

type Role added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Role) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Role) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

func (o *Role) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Role) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *Role) GetName() string

GetName returns the Name field value

func (*Role) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *Role) GetPermissionObjects() []PermissionObject

GetPermissionObjects returns the PermissionObjects field value

func (*Role) GetPermissionObjectsOk added in v1.6.0

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 added in v1.6.0

func (o *Role) GetSystemRole() bool

GetSystemRole returns the SystemRole field value if set, zero value otherwise.

func (*Role) GetSystemRoleOk added in v1.6.0

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 added in v1.6.0

func (o *Role) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Role) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Role) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Role) HasId added in v1.6.0

func (o *Role) HasId() bool

HasId returns a boolean if a field has been set.

func (*Role) HasSystemRole added in v1.6.0

func (o *Role) HasSystemRole() bool

HasSystemRole returns a boolean if a field has been set.

func (*Role) HasTags added in v1.6.0

func (o *Role) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Role) MarshalJSON added in v1.6.0

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetDescription added in v1.6.0

func (o *Role) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Role) SetId added in v1.6.0

func (o *Role) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Role) SetName added in v1.6.0

func (o *Role) SetName(v string)

SetName sets field value

func (*Role) SetPermissionObjects added in v1.6.0

func (o *Role) SetPermissionObjects(v []PermissionObject)

SetPermissionObjects sets field value

func (*Role) SetSystemRole added in v1.6.0

func (o *Role) SetSystemRole(v bool)

SetSystemRole gets a reference to the given bool and assigns it to the SystemRole field.

func (*Role) SetTags added in v1.6.0

func (o *Role) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Role) ToMap added in v1.6.0

func (o Role) ToMap() (map[string]interface{}, error)

type RoleAllOf added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *RoleAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RoleAllOf) GetIdOk added in v1.6.0

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 added in v1.6.0

func (o *RoleAllOf) GetSystemRole() bool

GetSystemRole returns the SystemRole field value if set, zero value otherwise.

func (*RoleAllOf) GetSystemRoleOk added in v1.6.0

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 added in v1.6.0

func (o *RoleAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*RoleAllOf) HasSystemRole added in v1.6.0

func (o *RoleAllOf) HasSystemRole() bool

HasSystemRole returns a boolean if a field has been set.

func (RoleAllOf) MarshalJSON added in v1.6.0

func (o RoleAllOf) MarshalJSON() ([]byte, error)

func (*RoleAllOf) SetId added in v1.6.0

func (o *RoleAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RoleAllOf) SetSystemRole added in v1.6.0

func (o *RoleAllOf) SetSystemRole(v bool)

SetSystemRole gets a reference to the given bool and assigns it to the SystemRole field.

func (RoleAllOf) ToMap added in v1.6.0

func (o RoleAllOf) ToMap() (map[string]interface{}, error)

type RoleUpdateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *RoleUpdateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RoleUpdateParameters) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

func (o *RoleUpdateParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RoleUpdateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *RoleUpdateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RoleUpdateParameters) HasName added in v1.6.0

func (o *RoleUpdateParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (RoleUpdateParameters) MarshalJSON added in v1.6.0

func (o RoleUpdateParameters) MarshalJSON() ([]byte, error)

func (*RoleUpdateParameters) SetDescription added in v1.6.0

func (o *RoleUpdateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RoleUpdateParameters) SetName added in v1.6.0

func (o *RoleUpdateParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RoleUpdateParameters) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *RollbackVDBBySnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBBySnapshotResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RollbackVDBBySnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBBySnapshotResponse) ToMap added in v1.6.0

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"`
}

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) 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) 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) 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 added in v1.6.0

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 added in v1.2.0

func (o *RollbackVDBByTimestampResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBByTimestampResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

HasJob returns a boolean if a field has been set.

func (RollbackVDBByTimestampResponse) MarshalJSON

func (o RollbackVDBByTimestampResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBByTimestampResponse) SetJob added in v1.2.0

func (o *RollbackVDBByTimestampResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBByTimestampResponse) ToMap added in v1.6.0

func (o RollbackVDBByTimestampResponse) ToMap() (map[string]interface{}, error)

type RollbackVDBFromBookmarkParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *RollbackVDBFromBookmarkParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RollbackVDBFromBookmarkParameters) GetBookmarkIdOk added in v1.2.0

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 added in v1.2.0

func (o RollbackVDBFromBookmarkParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBFromBookmarkParameters) SetBookmarkId added in v1.2.0

func (o *RollbackVDBFromBookmarkParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RollbackVDBFromBookmarkParameters) ToMap added in v1.6.0

func (o RollbackVDBFromBookmarkParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBFromBookmarkResponse added in v1.2.0

type RollbackVDBFromBookmarkResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBFromBookmarkResponse struct for RollbackVDBFromBookmarkResponse

func NewRollbackVDBFromBookmarkResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBFromBookmarkResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

HasJob returns a boolean if a field has been set.

func (RollbackVDBFromBookmarkResponse) MarshalJSON added in v1.2.0

func (o RollbackVDBFromBookmarkResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBFromBookmarkResponse) SetJob added in v1.2.0

func (o *RollbackVDBFromBookmarkResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBFromBookmarkResponse) ToMap added in v1.6.0

func (o RollbackVDBFromBookmarkResponse) ToMap() (map[string]interface{}, error)

type RollbackVDBGroupParameters added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *RollbackVDBGroupParameters) GetBookmarkId() string

GetBookmarkId returns the BookmarkId field value

func (*RollbackVDBGroupParameters) GetBookmarkIdOk added in v1.1.0

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 added in v1.1.0

func (o RollbackVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*RollbackVDBGroupParameters) SetBookmarkId added in v1.1.0

func (o *RollbackVDBGroupParameters) SetBookmarkId(v string)

SetBookmarkId sets field value

func (RollbackVDBGroupParameters) ToMap added in v1.6.0

func (o RollbackVDBGroupParameters) ToMap() (map[string]interface{}, error)

type RollbackVDBGroupResponse added in v1.1.0

type RollbackVDBGroupResponse struct {
	Job *Job `json:"job,omitempty"`
}

RollbackVDBGroupResponse struct for RollbackVDBGroupResponse

func NewRollbackVDBGroupResponse added in v1.1.0

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 added in v1.1.0

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 added in v1.2.0

func (o *RollbackVDBGroupResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RollbackVDBGroupResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *RollbackVDBGroupResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (RollbackVDBGroupResponse) MarshalJSON added in v1.1.0

func (o RollbackVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*RollbackVDBGroupResponse) SetJob added in v1.2.0

func (o *RollbackVDBGroupResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (RollbackVDBGroupResponse) ToMap added in v1.6.0

func (o RollbackVDBGroupResponse) ToMap() (map[string]interface{}, error)

type SAMLConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetAutoCreateUsers() bool

GetAutoCreateUsers returns the AutoCreateUsers field value if set, zero value otherwise.

func (*SAMLConfigParams) GetAutoCreateUsersOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*SAMLConfigParams) GetEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*SAMLConfigParams) GetEntityIdOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetFirstNameAttr() string

GetFirstNameAttr returns the FirstNameAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetFirstNameAttrOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetGroupAttr() string

GetGroupAttr returns the GroupAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetGroupAttrOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetLastNameAttr() string

GetLastNameAttr returns the LastNameAttr field value if set, zero value otherwise.

func (*SAMLConfigParams) GetLastNameAttrOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SAMLConfigParams) GetMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) GetResponseSkew() int32

GetResponseSkew returns the ResponseSkew field value if set, zero value otherwise.

func (*SAMLConfigParams) GetResponseSkewOk added in v1.6.0

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 added in v1.6.0

func (o *SAMLConfigParams) HasAutoCreateUsers() bool

HasAutoCreateUsers returns a boolean if a field has been set.

func (*SAMLConfigParams) HasEnabled added in v1.6.0

func (o *SAMLConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*SAMLConfigParams) HasEntityId added in v1.6.0

func (o *SAMLConfigParams) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*SAMLConfigParams) HasFirstNameAttr added in v1.6.0

func (o *SAMLConfigParams) HasFirstNameAttr() bool

HasFirstNameAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasGroupAttr added in v1.6.0

func (o *SAMLConfigParams) HasGroupAttr() bool

HasGroupAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasLastNameAttr added in v1.6.0

func (o *SAMLConfigParams) HasLastNameAttr() bool

HasLastNameAttr returns a boolean if a field has been set.

func (*SAMLConfigParams) HasMetadata added in v1.6.0

func (o *SAMLConfigParams) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SAMLConfigParams) HasResponseSkew added in v1.6.0

func (o *SAMLConfigParams) HasResponseSkew() bool

HasResponseSkew returns a boolean if a field has been set.

func (SAMLConfigParams) MarshalJSON added in v1.6.0

func (o SAMLConfigParams) MarshalJSON() ([]byte, error)

func (*SAMLConfigParams) SetAutoCreateUsers added in v1.6.0

func (o *SAMLConfigParams) SetAutoCreateUsers(v bool)

SetAutoCreateUsers gets a reference to the given bool and assigns it to the AutoCreateUsers field.

func (*SAMLConfigParams) SetEnabled added in v1.6.0

func (o *SAMLConfigParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*SAMLConfigParams) SetEntityId added in v1.6.0

func (o *SAMLConfigParams) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*SAMLConfigParams) SetFirstNameAttr added in v1.6.0

func (o *SAMLConfigParams) SetFirstNameAttr(v string)

SetFirstNameAttr gets a reference to the given string and assigns it to the FirstNameAttr field.

func (*SAMLConfigParams) SetGroupAttr added in v1.6.0

func (o *SAMLConfigParams) SetGroupAttr(v string)

SetGroupAttr gets a reference to the given string and assigns it to the GroupAttr field.

func (*SAMLConfigParams) SetLastNameAttr added in v1.6.0

func (o *SAMLConfigParams) SetLastNameAttr(v string)

SetLastNameAttr gets a reference to the given string and assigns it to the LastNameAttr field.

func (*SAMLConfigParams) SetMetadata added in v1.6.0

func (o *SAMLConfigParams) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*SAMLConfigParams) SetResponseSkew added in v1.6.0

func (o *SAMLConfigParams) SetResponseSkew(v int32)

SetResponseSkew gets a reference to the given int32 and assigns it to the ResponseSkew field.

func (SAMLConfigParams) ToMap added in v1.6.0

func (o SAMLConfigParams) ToMap() (map[string]interface{}, error)

type SMTPConfigParams added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SMTPConfigParams) GetAuthenticationEnabled() bool

GetAuthenticationEnabled returns the AuthenticationEnabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetAuthenticationEnabledOk added in v1.2.0

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 added in v1.2.0

func (o *SMTPConfigParams) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetEnabledOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SMTPConfigParams) GetTlsEnabled() bool

GetTlsEnabled returns the TlsEnabled field value if set, zero value otherwise.

func (*SMTPConfigParams) GetTlsEnabledOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SMTPConfigParams) HasAuthenticationEnabled() bool

HasAuthenticationEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasEnabled added in v1.2.0

func (o *SMTPConfigParams) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasFromAddress added in v1.2.0

func (o *SMTPConfigParams) HasFromAddress() bool

HasFromAddress returns a boolean if a field has been set.

func (*SMTPConfigParams) HasPassword added in v1.2.0

func (o *SMTPConfigParams) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*SMTPConfigParams) HasPort added in v1.2.0

func (o *SMTPConfigParams) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SMTPConfigParams) HasSendTimeout added in v1.2.0

func (o *SMTPConfigParams) HasSendTimeout() bool

HasSendTimeout returns a boolean if a field has been set.

func (*SMTPConfigParams) HasServer added in v1.2.0

func (o *SMTPConfigParams) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*SMTPConfigParams) HasTlsEnabled added in v1.2.0

func (o *SMTPConfigParams) HasTlsEnabled() bool

HasTlsEnabled returns a boolean if a field has been set.

func (*SMTPConfigParams) HasUsername added in v1.2.0

func (o *SMTPConfigParams) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SMTPConfigParams) MarshalJSON added in v1.2.0

func (o SMTPConfigParams) MarshalJSON() ([]byte, error)

func (*SMTPConfigParams) SetAuthenticationEnabled added in v1.2.0

func (o *SMTPConfigParams) SetAuthenticationEnabled(v bool)

SetAuthenticationEnabled gets a reference to the given bool and assigns it to the AuthenticationEnabled field.

func (*SMTPConfigParams) SetEnabled added in v1.2.0

func (o *SMTPConfigParams) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*SMTPConfigParams) SetFromAddress added in v1.2.0

func (o *SMTPConfigParams) SetFromAddress(v string)

SetFromAddress gets a reference to the given NullableString and assigns it to the FromAddress field.

func (*SMTPConfigParams) SetFromAddressNil added in v1.2.0

func (o *SMTPConfigParams) SetFromAddressNil()

SetFromAddressNil sets the value for FromAddress to be an explicit nil

func (*SMTPConfigParams) SetPassword added in v1.2.0

func (o *SMTPConfigParams) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*SMTPConfigParams) SetPasswordNil added in v1.2.0

func (o *SMTPConfigParams) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*SMTPConfigParams) SetPort added in v1.2.0

func (o *SMTPConfigParams) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*SMTPConfigParams) SetPortNil added in v1.2.0

func (o *SMTPConfigParams) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*SMTPConfigParams) SetSendTimeout added in v1.2.0

func (o *SMTPConfigParams) SetSendTimeout(v int32)

SetSendTimeout gets a reference to the given NullableInt32 and assigns it to the SendTimeout field.

func (*SMTPConfigParams) SetSendTimeoutNil added in v1.2.0

func (o *SMTPConfigParams) SetSendTimeoutNil()

SetSendTimeoutNil sets the value for SendTimeout to be an explicit nil

func (*SMTPConfigParams) SetServer added in v1.2.0

func (o *SMTPConfigParams) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*SMTPConfigParams) SetServerNil added in v1.2.0

func (o *SMTPConfigParams) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*SMTPConfigParams) SetTlsEnabled added in v1.2.0

func (o *SMTPConfigParams) SetTlsEnabled(v bool)

SetTlsEnabled gets a reference to the given bool and assigns it to the TlsEnabled field.

func (*SMTPConfigParams) SetUsername added in v1.2.0

func (o *SMTPConfigParams) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*SMTPConfigParams) SetUsernameNil added in v1.2.0

func (o *SMTPConfigParams) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (SMTPConfigParams) ToMap added in v1.6.0

func (o SMTPConfigParams) ToMap() (map[string]interface{}, error)

func (*SMTPConfigParams) UnsetFromAddress added in v1.2.0

func (o *SMTPConfigParams) UnsetFromAddress()

UnsetFromAddress ensures that no value is present for FromAddress, not even an explicit nil

func (*SMTPConfigParams) UnsetPassword added in v1.2.0

func (o *SMTPConfigParams) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*SMTPConfigParams) UnsetPort added in v1.2.0

func (o *SMTPConfigParams) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*SMTPConfigParams) UnsetSendTimeout added in v1.2.0

func (o *SMTPConfigParams) UnsetSendTimeout()

UnsetSendTimeout ensures that no value is present for SendTimeout, not even an explicit nil

func (*SMTPConfigParams) UnsetServer added in v1.2.0

func (o *SMTPConfigParams) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*SMTPConfigParams) UnsetUsername added in v1.2.0

func (o *SMTPConfigParams) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type SMTPConfigValidate added in v1.2.0

type SMTPConfigValidate struct {
	ToAddress string `json:"to_address"`
}

SMTPConfigValidate Parameters to validate SMTP Config

func NewSMTPConfigValidate added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SMTPConfigValidate) GetToAddress() string

GetToAddress returns the ToAddress field value

func (*SMTPConfigValidate) GetToAddressOk added in v1.2.0

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 added in v1.2.0

func (o SMTPConfigValidate) MarshalJSON() ([]byte, error)

func (*SMTPConfigValidate) SetToAddress added in v1.2.0

func (o *SMTPConfigValidate) SetToAddress(v string)

SetToAddress sets field value

func (SMTPConfigValidate) ToMap added in v1.6.0

func (o SMTPConfigValidate) ToMap() (map[string]interface{}, error)

type SSHVerificationStrategy added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetFingerprintOk added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) GetFingerprintType() string

GetFingerprintType returns the FingerprintType field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetFingerprintTypeOk added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetKeyTypeOk added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) GetName() string

GetName returns the Name field value

func (*SSHVerificationStrategy) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) GetRawKey() string

GetRawKey returns the RawKey field value if set, zero value otherwise.

func (*SSHVerificationStrategy) GetRawKeyOk added in v1.6.0

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 added in v1.6.0

func (o *SSHVerificationStrategy) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasFingerprintType added in v1.6.0

func (o *SSHVerificationStrategy) HasFingerprintType() bool

HasFingerprintType returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasKeyType added in v1.6.0

func (o *SSHVerificationStrategy) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*SSHVerificationStrategy) HasRawKey added in v1.6.0

func (o *SSHVerificationStrategy) HasRawKey() bool

HasRawKey returns a boolean if a field has been set.

func (SSHVerificationStrategy) MarshalJSON added in v1.6.0

func (o SSHVerificationStrategy) MarshalJSON() ([]byte, error)

func (*SSHVerificationStrategy) SetFingerprint added in v1.6.0

func (o *SSHVerificationStrategy) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*SSHVerificationStrategy) SetFingerprintType added in v1.6.0

func (o *SSHVerificationStrategy) SetFingerprintType(v string)

SetFingerprintType gets a reference to the given string and assigns it to the FingerprintType field.

func (*SSHVerificationStrategy) SetKeyType added in v1.6.0

func (o *SSHVerificationStrategy) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*SSHVerificationStrategy) SetName added in v1.6.0

func (o *SSHVerificationStrategy) SetName(v string)

SetName sets field value

func (*SSHVerificationStrategy) SetRawKey added in v1.6.0

func (o *SSHVerificationStrategy) SetRawKey(v string)

SetRawKey gets a reference to the given string and assigns it to the RawKey field.

func (SSHVerificationStrategy) ToMap added in v1.6.0

func (o SSHVerificationStrategy) ToMap() (map[string]interface{}, error)

type SamlLoginApiService added in v1.6.0

type SamlLoginApiService service

SamlLoginApiService SamlLoginApi service

func (*SamlLoginApiService) CheckSaml added in v1.6.0

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 added in v1.6.0

func (a *SamlLoginApiService) CheckSamlExecute(r ApiCheckSamlRequest) (*http.Response, error)

Execute executes the request

type ScopeTag added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopeTag) GetKey() string

GetKey returns the Key field value

func (*ScopeTag) GetKeyOk added in v1.6.0

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 added in v1.6.0

func (o *ScopeTag) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*ScopeTag) GetObjectTypeOk added in v1.6.0

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 added in v1.6.0

func (o *ScopeTag) GetPermission() PermissionEnum

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ScopeTag) GetPermissionOk added in v1.6.0

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 added in v1.6.0

func (o *ScopeTag) GetValue() string

GetValue returns the Value field value

func (*ScopeTag) GetValueOk added in v1.6.0

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 added in v1.6.0

func (o *ScopeTag) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*ScopeTag) HasPermission added in v1.6.0

func (o *ScopeTag) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (ScopeTag) MarshalJSON added in v1.6.0

func (o ScopeTag) MarshalJSON() ([]byte, error)

func (*ScopeTag) SetKey added in v1.6.0

func (o *ScopeTag) SetKey(v string)

SetKey sets field value

func (*ScopeTag) SetObjectType added in v1.6.0

func (o *ScopeTag) SetObjectType(v ObjectTypeEnum)

SetObjectType gets a reference to the given ObjectTypeEnum and assigns it to the ObjectType field.

func (*ScopeTag) SetPermission added in v1.6.0

func (o *ScopeTag) SetPermission(v PermissionEnum)

SetPermission gets a reference to the given PermissionEnum and assigns it to the Permission field.

func (*ScopeTag) SetValue added in v1.6.0

func (o *ScopeTag) SetValue(v string)

SetValue sets field value

func (ScopeTag) ToMap added in v1.6.0

func (o ScopeTag) ToMap() (map[string]interface{}, error)

type ScopeTagsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopeTagsRequest) GetTags() []ScopeTag

GetTags returns the Tags field value

func (*ScopeTagsRequest) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o ScopeTagsRequest) MarshalJSON() ([]byte, error)

func (*ScopeTagsRequest) SetTags added in v1.6.0

func (o *ScopeTagsRequest) SetTags(v []ScopeTag)

SetTags sets field value

func (ScopeTagsRequest) ToMap added in v1.6.0

func (o ScopeTagsRequest) ToMap() (map[string]interface{}, error)

type ScopeTagsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopeTagsResponse) GetTags() []ScopeTag

GetTags returns the Tags field value if set, zero value otherwise.

func (*ScopeTagsResponse) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *ScopeTagsResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (ScopeTagsResponse) MarshalJSON added in v1.6.0

func (o ScopeTagsResponse) MarshalJSON() ([]byte, error)

func (*ScopeTagsResponse) SetTags added in v1.6.0

func (o *ScopeTagsResponse) SetTags(v []ScopeTag)

SetTags gets a reference to the given []ScopeTag and assigns it to the Tags field.

func (ScopeTagsResponse) ToMap added in v1.6.0

func (o ScopeTagsResponse) ToMap() (map[string]interface{}, error)

type ScopedObjectItem added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItem) GetObjectId() string

GetObjectId returns the ObjectId field value

func (*ScopedObjectItem) GetObjectIdOk added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItem) GetObjectType() ObjectTypeEnum

GetObjectType returns the ObjectType field value

func (*ScopedObjectItem) GetObjectTypeOk added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItem) GetPermission() PermissionEnum

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ScopedObjectItem) GetPermissionOk added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItem) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (ScopedObjectItem) MarshalJSON added in v1.6.0

func (o ScopedObjectItem) MarshalJSON() ([]byte, error)

func (*ScopedObjectItem) SetObjectId added in v1.6.0

func (o *ScopedObjectItem) SetObjectId(v string)

SetObjectId sets field value

func (*ScopedObjectItem) SetObjectType added in v1.6.0

func (o *ScopedObjectItem) SetObjectType(v ObjectTypeEnum)

SetObjectType sets field value

func (*ScopedObjectItem) SetPermission added in v1.6.0

func (o *ScopedObjectItem) SetPermission(v PermissionEnum)

SetPermission gets a reference to the given PermissionEnum and assigns it to the Permission field.

func (ScopedObjectItem) ToMap added in v1.6.0

func (o ScopedObjectItem) ToMap() (map[string]interface{}, error)

type ScopedObjectItemsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItemsResponse) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value if set, zero value otherwise.

func (*ScopedObjectItemsResponse) GetObjectsOk added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectItemsResponse) HasObjects() bool

HasObjects returns a boolean if a field has been set.

func (ScopedObjectItemsResponse) MarshalJSON added in v1.6.0

func (o ScopedObjectItemsResponse) MarshalJSON() ([]byte, error)

func (*ScopedObjectItemsResponse) SetObjects added in v1.6.0

func (o *ScopedObjectItemsResponse) SetObjects(v []ScopedObjectItem)

SetObjects gets a reference to the given []ScopedObjectItem and assigns it to the Objects field.

func (ScopedObjectItemsResponse) ToMap added in v1.6.0

func (o ScopedObjectItemsResponse) ToMap() (map[string]interface{}, error)

type ScopedObjectsRequest added in v1.6.0

type ScopedObjectsRequest struct {
	// An array of scoped objects
	Objects []ScopedObjectItem `json:"objects"`
}

ScopedObjectsRequest struct for ScopedObjectsRequest

func NewScopedObjectsRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *ScopedObjectsRequest) GetObjects() []ScopedObjectItem

GetObjects returns the Objects field value

func (*ScopedObjectsRequest) GetObjectsOk added in v1.6.0

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 added in v1.6.0

func (o ScopedObjectsRequest) MarshalJSON() ([]byte, error)

func (*ScopedObjectsRequest) SetObjects added in v1.6.0

func (o *ScopedObjectsRequest) SetObjects(v []ScopedObjectItem)

SetObjects sets field value

func (ScopedObjectsRequest) ToMap added in v1.6.0

func (o ScopedObjectsRequest) ToMap() (map[string]interface{}, error)

type SearchAccessGroupsResponse added in v1.6.0

type SearchAccessGroupsResponse struct {
	Items            []AccessGroup              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchAccessGroupsResponse struct for SearchAccessGroupsResponse

func NewSearchAccessGroupsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchAccessGroupsResponse) GetItems() []AccessGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchAccessGroupsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchAccessGroupsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchAccessGroupsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchAccessGroupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchAccessGroupsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchAccessGroupsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchAccessGroupsResponse) MarshalJSON added in v1.6.0

func (o SearchAccessGroupsResponse) MarshalJSON() ([]byte, error)

func (*SearchAccessGroupsResponse) SetItems added in v1.6.0

func (o *SearchAccessGroupsResponse) SetItems(v []AccessGroup)

SetItems gets a reference to the given []AccessGroup and assigns it to the Items field.

func (*SearchAccessGroupsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchAccessGroupsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchAccessGroupsResponse) ToMap added in v1.6.0

func (o SearchAccessGroupsResponse) ToMap() (map[string]interface{}, error)

type SearchAccountsResponse added in v1.6.0

type SearchAccountsResponse struct {
	Items            []Account                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchAccountsResponse struct for SearchAccountsResponse

func NewSearchAccountsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchAccountsResponse) GetItems() []Account

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchAccountsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchAccountsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchAccountsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchAccountsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchAccountsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchAccountsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchAccountsResponse) MarshalJSON added in v1.6.0

func (o SearchAccountsResponse) MarshalJSON() ([]byte, error)

func (*SearchAccountsResponse) SetItems added in v1.6.0

func (o *SearchAccountsResponse) SetItems(v []Account)

SetItems gets a reference to the given []Account and assigns it to the Items field.

func (*SearchAccountsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchAccountsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchAccountsResponse) ToMap added in v1.6.0

func (o SearchAccountsResponse) ToMap() (map[string]interface{}, error)

type SearchBody added in v1.1.0

type SearchBody struct {
	FilterExpression *string `json:"filter_expression,omitempty"`
}

SearchBody Search body.

func NewSearchBody added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *SearchBody) GetFilterExpression() string

GetFilterExpression returns the FilterExpression field value if set, zero value otherwise.

func (*SearchBody) GetFilterExpressionOk added in v1.1.0

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 added in v1.1.0

func (o *SearchBody) HasFilterExpression() bool

HasFilterExpression returns a boolean if a field has been set.

func (SearchBody) MarshalJSON added in v1.1.0

func (o SearchBody) MarshalJSON() ([]byte, error)

func (*SearchBody) SetFilterExpression added in v1.1.0

func (o *SearchBody) SetFilterExpression(v string)

SetFilterExpression gets a reference to the given string and assigns it to the FilterExpression field.

func (SearchBody) ToMap added in v1.6.0

func (o SearchBody) ToMap() (map[string]interface{}, error)

type SearchBookmarksResponse added in v1.2.0

type SearchBookmarksResponse struct {
	Items            []Bookmark                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchBookmarksResponse struct for SearchBookmarksResponse

func NewSearchBookmarksResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchBookmarksResponse) GetItems() []Bookmark

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchBookmarksResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchBookmarksResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchBookmarksResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchBookmarksResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchBookmarksResponse) HasResponseMetadata added in v1.2.0

func (o *SearchBookmarksResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchBookmarksResponse) MarshalJSON added in v1.2.0

func (o SearchBookmarksResponse) MarshalJSON() ([]byte, error)

func (*SearchBookmarksResponse) SetItems added in v1.2.0

func (o *SearchBookmarksResponse) SetItems(v []Bookmark)

SetItems gets a reference to the given []Bookmark and assigns it to the Items field.

func (*SearchBookmarksResponse) SetResponseMetadata added in v1.2.0

func (o *SearchBookmarksResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchBookmarksResponse) ToMap added in v1.6.0

func (o SearchBookmarksResponse) ToMap() (map[string]interface{}, error)

type SearchCDBsResponse added in v1.6.0

type SearchCDBsResponse struct {
	Items            []CDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchCDBsResponse struct for SearchCDBsResponse

func NewSearchCDBsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchCDBsResponse) GetItems() []CDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchCDBsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchCDBsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchCDBsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchCDBsResponse) MarshalJSON added in v1.6.0

func (o SearchCDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchCDBsResponse) SetItems added in v1.6.0

func (o *SearchCDBsResponse) SetItems(v []CDB)

SetItems gets a reference to the given []CDB and assigns it to the Items field.

func (*SearchCDBsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchCDBsResponse) ToMap added in v1.6.0

func (o SearchCDBsResponse) ToMap() (map[string]interface{}, error)

type SearchConnectorsResponse added in v1.6.0

type SearchConnectorsResponse struct {
	Items            []Connector                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchConnectorsResponse struct for SearchConnectorsResponse

func NewSearchConnectorsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchConnectorsResponse) GetItems() []Connector

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchConnectorsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchConnectorsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchConnectorsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchConnectorsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchConnectorsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchConnectorsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchConnectorsResponse) MarshalJSON added in v1.6.0

func (o SearchConnectorsResponse) MarshalJSON() ([]byte, error)

func (*SearchConnectorsResponse) SetItems added in v1.6.0

func (o *SearchConnectorsResponse) SetItems(v []Connector)

SetItems gets a reference to the given []Connector and assigns it to the Items field.

func (*SearchConnectorsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchConnectorsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchConnectorsResponse) ToMap added in v1.6.0

func (o SearchConnectorsResponse) ToMap() (map[string]interface{}, error)

type SearchDSourcesResponse added in v1.2.0

type SearchDSourcesResponse struct {
	Items            []DSource                  `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDSourcesResponse struct for SearchDSourcesResponse

func NewSearchDSourcesResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchDSourcesResponse) GetItems() []DSource

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDSourcesResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchDSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDSourcesResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchDSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDSourcesResponse) HasResponseMetadata added in v1.2.0

func (o *SearchDSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDSourcesResponse) MarshalJSON added in v1.2.0

func (o SearchDSourcesResponse) MarshalJSON() ([]byte, error)

func (*SearchDSourcesResponse) SetItems added in v1.2.0

func (o *SearchDSourcesResponse) SetItems(v []DSource)

SetItems gets a reference to the given []DSource and assigns it to the Items field.

func (*SearchDSourcesResponse) SetResponseMetadata added in v1.2.0

func (o *SearchDSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDSourcesResponse) ToMap added in v1.6.0

func (o SearchDSourcesResponse) ToMap() (map[string]interface{}, error)

type SearchDatabaseTemplatesResponse added in v1.6.0

type SearchDatabaseTemplatesResponse struct {
	Items            []DatabaseTemplate         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDatabaseTemplatesResponse struct for SearchDatabaseTemplatesResponse

func NewSearchDatabaseTemplatesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDatabaseTemplatesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDatabaseTemplatesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchDatabaseTemplatesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDatabaseTemplatesResponse) HasResponseMetadata added in v1.6.0

func (o *SearchDatabaseTemplatesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDatabaseTemplatesResponse) MarshalJSON added in v1.6.0

func (o SearchDatabaseTemplatesResponse) MarshalJSON() ([]byte, error)

func (*SearchDatabaseTemplatesResponse) SetItems added in v1.6.0

SetItems gets a reference to the given []DatabaseTemplate and assigns it to the Items field.

func (*SearchDatabaseTemplatesResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDatabaseTemplatesResponse) ToMap added in v1.6.0

func (o SearchDatabaseTemplatesResponse) ToMap() (map[string]interface{}, error)

type SearchDatasetGroupResponse added in v1.6.0

type SearchDatasetGroupResponse struct {
	Items            []DatasetGroup             `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchDatasetGroupResponse struct for SearchDatasetGroupResponse

func NewSearchDatasetGroupResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchDatasetGroupResponse) GetItems() []DatasetGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchDatasetGroupResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchDatasetGroupResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchDatasetGroupResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchDatasetGroupResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchDatasetGroupResponse) HasResponseMetadata added in v1.6.0

func (o *SearchDatasetGroupResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchDatasetGroupResponse) MarshalJSON added in v1.6.0

func (o SearchDatasetGroupResponse) MarshalJSON() ([]byte, error)

func (*SearchDatasetGroupResponse) SetItems added in v1.6.0

func (o *SearchDatasetGroupResponse) SetItems(v []DatasetGroup)

SetItems gets a reference to the given []DatasetGroup and assigns it to the Items field.

func (*SearchDatasetGroupResponse) SetResponseMetadata added in v1.6.0

func (o *SearchDatasetGroupResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchDatasetGroupResponse) ToMap added in v1.6.0

func (o SearchDatasetGroupResponse) ToMap() (map[string]interface{}, error)

type SearchEnginesResponse added in v1.2.0

type SearchEnginesResponse struct {
	Items            []RegisteredEngine         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchEnginesResponse struct for SearchEnginesResponse

func NewSearchEnginesResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchEnginesResponse) GetItems() []RegisteredEngine

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchEnginesResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchEnginesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchEnginesResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchEnginesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchEnginesResponse) HasResponseMetadata added in v1.2.0

func (o *SearchEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchEnginesResponse) MarshalJSON added in v1.2.0

func (o SearchEnginesResponse) MarshalJSON() ([]byte, error)

func (*SearchEnginesResponse) SetItems added in v1.2.0

func (o *SearchEnginesResponse) SetItems(v []RegisteredEngine)

SetItems gets a reference to the given []RegisteredEngine and assigns it to the Items field.

func (*SearchEnginesResponse) SetResponseMetadata added in v1.2.0

func (o *SearchEnginesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchEnginesResponse) ToMap added in v1.6.0

func (o SearchEnginesResponse) ToMap() (map[string]interface{}, error)

type SearchEnvironmentsResponse added in v1.2.0

type SearchEnvironmentsResponse struct {
	Items            []Environment              `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchEnvironmentsResponse struct for SearchEnvironmentsResponse

func NewSearchEnvironmentsResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchEnvironmentsResponse) GetItems() []Environment

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchEnvironmentsResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchEnvironmentsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchEnvironmentsResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchEnvironmentsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchEnvironmentsResponse) HasResponseMetadata added in v1.2.0

func (o *SearchEnvironmentsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchEnvironmentsResponse) MarshalJSON added in v1.2.0

func (o SearchEnvironmentsResponse) MarshalJSON() ([]byte, error)

func (*SearchEnvironmentsResponse) SetItems added in v1.2.0

func (o *SearchEnvironmentsResponse) SetItems(v []Environment)

SetItems gets a reference to the given []Environment and assigns it to the Items field.

func (*SearchEnvironmentsResponse) SetResponseMetadata added in v1.2.0

func (o *SearchEnvironmentsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchEnvironmentsResponse) ToMap added in v1.6.0

func (o SearchEnvironmentsResponse) ToMap() (map[string]interface{}, error)

type SearchExecutionEventsResponse added in v1.6.0

type SearchExecutionEventsResponse struct {
	Items            []ExecutionEvent           `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchExecutionEventsResponse struct for SearchExecutionEventsResponse

func NewSearchExecutionEventsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchExecutionEventsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchExecutionEventsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchExecutionEventsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchExecutionEventsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchExecutionEventsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchExecutionEventsResponse) MarshalJSON added in v1.6.0

func (o SearchExecutionEventsResponse) MarshalJSON() ([]byte, error)

func (*SearchExecutionEventsResponse) SetItems added in v1.6.0

SetItems gets a reference to the given []ExecutionEvent and assigns it to the Items field.

func (*SearchExecutionEventsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchExecutionEventsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchExecutionEventsResponse) ToMap added in v1.6.0

func (o SearchExecutionEventsResponse) ToMap() (map[string]interface{}, error)

type SearchExecutionsResponse added in v1.6.0

type SearchExecutionsResponse struct {
	Items            []Execution                `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchExecutionsResponse struct for SearchExecutionsResponse

func NewSearchExecutionsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchExecutionsResponse) GetItems() []Execution

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchExecutionsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchExecutionsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchExecutionsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchExecutionsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchExecutionsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchExecutionsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchExecutionsResponse) MarshalJSON added in v1.6.0

func (o SearchExecutionsResponse) MarshalJSON() ([]byte, error)

func (*SearchExecutionsResponse) SetItems added in v1.6.0

func (o *SearchExecutionsResponse) SetItems(v []Execution)

SetItems gets a reference to the given []Execution and assigns it to the Items field.

func (*SearchExecutionsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchExecutionsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchExecutionsResponse) ToMap added in v1.6.0

func (o SearchExecutionsResponse) ToMap() (map[string]interface{}, error)

type SearchJobsResponse added in v1.6.0

type SearchJobsResponse struct {
	Items            []Job                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchJobsResponse struct for SearchJobsResponse

func NewSearchJobsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchJobsResponse) GetItems() []Job

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchJobsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchJobsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchJobsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchJobsResponse) MarshalJSON added in v1.6.0

func (o SearchJobsResponse) MarshalJSON() ([]byte, error)

func (*SearchJobsResponse) SetItems added in v1.6.0

func (o *SearchJobsResponse) SetItems(v []Job)

SetItems gets a reference to the given []Job and assigns it to the Items field.

func (*SearchJobsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchJobsResponse) ToMap added in v1.6.0

func (o SearchJobsResponse) ToMap() (map[string]interface{}, error)

type SearchMaskingJobSourceEnginesResponse added in v1.6.0

type SearchMaskingJobSourceEnginesResponse struct {
	Items            []MaskingJobSourceEngine   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchMaskingJobSourceEnginesResponse struct for SearchMaskingJobSourceEnginesResponse

func NewSearchMaskingJobSourceEnginesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchMaskingJobSourceEnginesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchMaskingJobSourceEnginesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

HasItems returns a boolean if a field has been set.

func (*SearchMaskingJobSourceEnginesResponse) HasResponseMetadata added in v1.6.0

func (o *SearchMaskingJobSourceEnginesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchMaskingJobSourceEnginesResponse) MarshalJSON added in v1.6.0

func (o SearchMaskingJobSourceEnginesResponse) MarshalJSON() ([]byte, error)

func (*SearchMaskingJobSourceEnginesResponse) SetItems added in v1.6.0

SetItems gets a reference to the given []MaskingJobSourceEngine and assigns it to the Items field.

func (*SearchMaskingJobSourceEnginesResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchMaskingJobSourceEnginesResponse) ToMap added in v1.6.0

func (o SearchMaskingJobSourceEnginesResponse) ToMap() (map[string]interface{}, error)

type SearchMaskingJobsResponse added in v1.6.0

type SearchMaskingJobsResponse struct {
	Items            []MaskingJob               `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchMaskingJobsResponse struct for SearchMaskingJobsResponse

func NewSearchMaskingJobsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchMaskingJobsResponse) GetItems() []MaskingJob

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchMaskingJobsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchMaskingJobsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchMaskingJobsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchMaskingJobsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchMaskingJobsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchMaskingJobsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchMaskingJobsResponse) MarshalJSON added in v1.6.0

func (o SearchMaskingJobsResponse) MarshalJSON() ([]byte, error)

func (*SearchMaskingJobsResponse) SetItems added in v1.6.0

func (o *SearchMaskingJobsResponse) SetItems(v []MaskingJob)

SetItems gets a reference to the given []MaskingJob and assigns it to the Items field.

func (*SearchMaskingJobsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchMaskingJobsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchMaskingJobsResponse) ToMap added in v1.6.0

func (o SearchMaskingJobsResponse) ToMap() (map[string]interface{}, error)

type SearchRolesResponse added in v1.6.0

type SearchRolesResponse struct {
	Items            []Role                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchRolesResponse struct for SearchRolesResponse

func NewSearchRolesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchRolesResponse) GetItems() []Role

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchRolesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchRolesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchRolesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchRolesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchRolesResponse) HasResponseMetadata added in v1.6.0

func (o *SearchRolesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchRolesResponse) MarshalJSON added in v1.6.0

func (o SearchRolesResponse) MarshalJSON() ([]byte, error)

func (*SearchRolesResponse) SetItems added in v1.6.0

func (o *SearchRolesResponse) SetItems(v []Role)

SetItems gets a reference to the given []Role and assigns it to the Items field.

func (*SearchRolesResponse) SetResponseMetadata added in v1.6.0

func (o *SearchRolesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchRolesResponse) ToMap added in v1.6.0

func (o SearchRolesResponse) ToMap() (map[string]interface{}, error)

type SearchSnapshotsResponse added in v1.6.0

type SearchSnapshotsResponse struct {
	Items            []Snapshot                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchSnapshotsResponse struct for SearchSnapshotsResponse

func NewSearchSnapshotsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchSnapshotsResponse) GetItems() []Snapshot

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchSnapshotsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchSnapshotsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchSnapshotsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchSnapshotsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchSnapshotsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchSnapshotsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchSnapshotsResponse) MarshalJSON added in v1.6.0

func (o SearchSnapshotsResponse) MarshalJSON() ([]byte, error)

func (*SearchSnapshotsResponse) SetItems added in v1.6.0

func (o *SearchSnapshotsResponse) SetItems(v []Snapshot)

SetItems gets a reference to the given []Snapshot and assigns it to the Items field.

func (*SearchSnapshotsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchSnapshotsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchSnapshotsResponse) ToMap added in v1.6.0

func (o SearchSnapshotsResponse) ToMap() (map[string]interface{}, error)

type SearchSourcesResponse added in v1.2.0

type SearchSourcesResponse struct {
	Items            []Source                   `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchSourcesResponse struct for SearchSourcesResponse

func NewSearchSourcesResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchSourcesResponse) GetItems() []Source

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchSourcesResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchSourcesResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchSourcesResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchSourcesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchSourcesResponse) HasResponseMetadata added in v1.2.0

func (o *SearchSourcesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchSourcesResponse) MarshalJSON added in v1.2.0

func (o SearchSourcesResponse) MarshalJSON() ([]byte, error)

func (*SearchSourcesResponse) SetItems added in v1.2.0

func (o *SearchSourcesResponse) SetItems(v []Source)

SetItems gets a reference to the given []Source and assigns it to the Items field.

func (*SearchSourcesResponse) SetResponseMetadata added in v1.2.0

func (o *SearchSourcesResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchSourcesResponse) ToMap added in v1.6.0

func (o SearchSourcesResponse) ToMap() (map[string]interface{}, error)

type SearchTimeflowsResponse added in v1.6.0

type SearchTimeflowsResponse struct {
	Items            []Timeflow                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchTimeflowsResponse struct for SearchTimeflowsResponse

func NewSearchTimeflowsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchTimeflowsResponse) GetItems() []Timeflow

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchTimeflowsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchTimeflowsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchTimeflowsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchTimeflowsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchTimeflowsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchTimeflowsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchTimeflowsResponse) MarshalJSON added in v1.6.0

func (o SearchTimeflowsResponse) MarshalJSON() ([]byte, error)

func (*SearchTimeflowsResponse) SetItems added in v1.6.0

func (o *SearchTimeflowsResponse) SetItems(v []Timeflow)

SetItems gets a reference to the given []Timeflow and assigns it to the Items field.

func (*SearchTimeflowsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchTimeflowsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchTimeflowsResponse) ToMap added in v1.6.0

func (o SearchTimeflowsResponse) ToMap() (map[string]interface{}, error)

type SearchVCDBsResponse added in v1.6.0

type SearchVCDBsResponse struct {
	Items            []VCDB                     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVCDBsResponse struct for SearchVCDBsResponse

func NewSearchVCDBsResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SearchVCDBsResponse) GetItems() []VCDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVCDBsResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SearchVCDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVCDBsResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *SearchVCDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVCDBsResponse) HasResponseMetadata added in v1.6.0

func (o *SearchVCDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVCDBsResponse) MarshalJSON added in v1.6.0

func (o SearchVCDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchVCDBsResponse) SetItems added in v1.6.0

func (o *SearchVCDBsResponse) SetItems(v []VCDB)

SetItems gets a reference to the given []VCDB and assigns it to the Items field.

func (*SearchVCDBsResponse) SetResponseMetadata added in v1.6.0

func (o *SearchVCDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVCDBsResponse) ToMap added in v1.6.0

func (o SearchVCDBsResponse) ToMap() (map[string]interface{}, error)

type SearchVDBGroupResponse added in v1.2.0

type SearchVDBGroupResponse struct {
	Items            []VDBGroup                 `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVDBGroupResponse struct for SearchVDBGroupResponse

func NewSearchVDBGroupResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SearchVDBGroupResponse) GetItems() []VDBGroup

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVDBGroupResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *SearchVDBGroupResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVDBGroupResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *SearchVDBGroupResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVDBGroupResponse) HasResponseMetadata added in v1.2.0

func (o *SearchVDBGroupResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVDBGroupResponse) MarshalJSON added in v1.2.0

func (o SearchVDBGroupResponse) MarshalJSON() ([]byte, error)

func (*SearchVDBGroupResponse) SetItems added in v1.2.0

func (o *SearchVDBGroupResponse) SetItems(v []VDBGroup)

SetItems gets a reference to the given []VDBGroup and assigns it to the Items field.

func (*SearchVDBGroupResponse) SetResponseMetadata added in v1.2.0

func (o *SearchVDBGroupResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVDBGroupResponse) ToMap added in v1.6.0

func (o SearchVDBGroupResponse) ToMap() (map[string]interface{}, error)

type SearchVDBsResponse added in v1.1.0

type SearchVDBsResponse struct {
	Items            []VDB                      `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVDBsResponse struct for SearchVDBsResponse

func NewSearchVDBsResponse added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *SearchVDBsResponse) GetItems() []VDB

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVDBsResponse) GetItemsOk added in v1.1.0

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 added in v1.1.0

func (o *SearchVDBsResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVDBsResponse) GetResponseMetadataOk added in v1.1.0

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 added in v1.1.0

func (o *SearchVDBsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SearchVDBsResponse) HasResponseMetadata added in v1.1.0

func (o *SearchVDBsResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVDBsResponse) MarshalJSON added in v1.1.0

func (o SearchVDBsResponse) MarshalJSON() ([]byte, error)

func (*SearchVDBsResponse) SetItems added in v1.1.0

func (o *SearchVDBsResponse) SetItems(v []VDB)

SetItems gets a reference to the given []VDB and assigns it to the Items field.

func (*SearchVDBsResponse) SetResponseMetadata added in v1.1.0

func (o *SearchVDBsResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVDBsResponse) ToMap added in v1.6.0

func (o SearchVDBsResponse) ToMap() (map[string]interface{}, error)

type SearchVirtualizationPoliciesResponse added in v1.6.0

type SearchVirtualizationPoliciesResponse struct {
	Items            []VirtualizationPolicy     `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

SearchVirtualizationPoliciesResponse struct for SearchVirtualizationPoliciesResponse

func NewSearchVirtualizationPoliciesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*SearchVirtualizationPoliciesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*SearchVirtualizationPoliciesResponse) GetResponseMetadataOk added in v1.6.0

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 added in v1.6.0

HasItems returns a boolean if a field has been set.

func (*SearchVirtualizationPoliciesResponse) HasResponseMetadata added in v1.6.0

func (o *SearchVirtualizationPoliciesResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (SearchVirtualizationPoliciesResponse) MarshalJSON added in v1.6.0

func (o SearchVirtualizationPoliciesResponse) MarshalJSON() ([]byte, error)

func (*SearchVirtualizationPoliciesResponse) SetItems added in v1.6.0

SetItems gets a reference to the given []VirtualizationPolicy and assigns it to the Items field.

func (*SearchVirtualizationPoliciesResponse) SetResponseMetadata added in v1.6.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (SearchVirtualizationPoliciesResponse) ToMap added in v1.6.0

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"`
	// 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, 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 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 added in v1.6.0

func (o *Snapshot) GetAppdataMetadata() string

GetAppdataMetadata returns the AppdataMetadata field value if set, zero value otherwise.

func (*Snapshot) GetAppdataMetadataOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetAppdataToolkit() string

GetAppdataToolkit returns the AppdataToolkit field value if set, zero value otherwise.

func (*Snapshot) GetAppdataToolkitOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetAseDbEncryptionKey() string

GetAseDbEncryptionKey returns the AseDbEncryptionKey field value if set, zero value otherwise.

func (*Snapshot) GetAseDbEncryptionKeyOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetConsistency() string

GetConsistency returns the Consistency field value if set, zero value otherwise.

func (*Snapshot) GetConsistencyOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Snapshot) GetCreationTimeOk added in v1.6.0

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) GetEngineId added in v1.6.0

func (o *Snapshot) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Snapshot) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*Snapshot) GetExpirationOk added in v1.6.0

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) 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 added in v1.6.0

func (o *Snapshot) GetMissingNonLoggedData() bool

GetMissingNonLoggedData returns the MissingNonLoggedData field value if set, zero value otherwise.

func (*Snapshot) GetMissingNonLoggedDataOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetMssqlBackupLocationType() string

GetMssqlBackupLocationType returns the MssqlBackupLocationType field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupLocationTypeOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetMssqlBackupSetUuid() string

GetMssqlBackupSetUuid returns the MssqlBackupSetUuid field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupSetUuidOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetMssqlBackupSoftwareType() string

GetMssqlBackupSoftwareType returns the MssqlBackupSoftwareType field value if set, zero value otherwise.

func (*Snapshot) GetMssqlBackupSoftwareTypeOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetMssqlEmptySnapshot() bool

GetMssqlEmptySnapshot returns the MssqlEmptySnapshot field value if set, zero value otherwise.

func (*Snapshot) GetMssqlEmptySnapshotOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetMssqlInternalVersion() int32

GetMssqlInternalVersion returns the MssqlInternalVersion field value if set, zero value otherwise.

func (*Snapshot) GetMssqlInternalVersionOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Snapshot) GetNameOk added in v1.6.0

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 added in v1.6.0

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) GetNamespaceOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetOracleFromPhysicalStandbyVdb() bool

GetOracleFromPhysicalStandbyVdb returns the OracleFromPhysicalStandbyVdb field value if set, zero value otherwise.

func (*Snapshot) GetOracleFromPhysicalStandbyVdbOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetOracleRedoLogSizeInBytes() int64

GetOracleRedoLogSizeInBytes returns the OracleRedoLogSizeInBytes field value if set, zero value otherwise.

func (*Snapshot) GetOracleRedoLogSizeInBytesOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*Snapshot) GetRetainForeverOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetRetention() int64

GetRetention returns the Retention field value if set, zero value otherwise. Deprecated

func (*Snapshot) GetRetentionOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetStartLocation() string

GetStartLocation returns the StartLocation field value if set, zero value otherwise.

func (*Snapshot) GetStartLocationOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetStartTimestamp() time.Time

GetStartTimestamp returns the StartTimestamp field value if set, zero value otherwise.

func (*Snapshot) GetStartTimestampOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Snapshot) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetTemporary() bool

GetTemporary returns the Temporary field value if set, zero value otherwise.

func (*Snapshot) GetTemporaryOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*Snapshot) GetTimeflowIdOk added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*Snapshot) GetTimezoneOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) HasAppdataMetadata() bool

HasAppdataMetadata returns a boolean if a field has been set.

func (*Snapshot) HasAppdataToolkit added in v1.6.0

func (o *Snapshot) HasAppdataToolkit() bool

HasAppdataToolkit returns a boolean if a field has been set.

func (*Snapshot) HasAseDbEncryptionKey added in v1.6.0

func (o *Snapshot) HasAseDbEncryptionKey() bool

HasAseDbEncryptionKey returns a boolean if a field has been set.

func (*Snapshot) HasConsistency added in v1.6.0

func (o *Snapshot) HasConsistency() bool

HasConsistency returns a boolean if a field has been set.

func (*Snapshot) HasCreationTime added in v1.6.0

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) HasEngineId added in v1.6.0

func (o *Snapshot) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Snapshot) HasExpiration added in v1.6.0

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) HasLocation

func (o *Snapshot) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Snapshot) HasMissingNonLoggedData added in v1.6.0

func (o *Snapshot) HasMissingNonLoggedData() bool

HasMissingNonLoggedData returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupLocationType added in v1.6.0

func (o *Snapshot) HasMssqlBackupLocationType() bool

HasMssqlBackupLocationType returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupSetUuid added in v1.6.0

func (o *Snapshot) HasMssqlBackupSetUuid() bool

HasMssqlBackupSetUuid returns a boolean if a field has been set.

func (*Snapshot) HasMssqlBackupSoftwareType added in v1.6.0

func (o *Snapshot) HasMssqlBackupSoftwareType() bool

HasMssqlBackupSoftwareType returns a boolean if a field has been set.

func (*Snapshot) HasMssqlEmptySnapshot added in v1.6.0

func (o *Snapshot) HasMssqlEmptySnapshot() bool

HasMssqlEmptySnapshot returns a boolean if a field has been set.

func (*Snapshot) HasMssqlInternalVersion added in v1.6.0

func (o *Snapshot) HasMssqlInternalVersion() bool

HasMssqlInternalVersion returns a boolean if a field has been set.

func (*Snapshot) HasName added in v1.6.0

func (o *Snapshot) HasName() bool

HasName returns a boolean if a field has been set.

func (*Snapshot) HasNamespace added in v1.6.0

func (o *Snapshot) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Snapshot) HasOracleFromPhysicalStandbyVdb added in v1.6.0

func (o *Snapshot) HasOracleFromPhysicalStandbyVdb() bool

HasOracleFromPhysicalStandbyVdb returns a boolean if a field has been set.

func (*Snapshot) HasOracleRedoLogSizeInBytes added in v1.6.0

func (o *Snapshot) HasOracleRedoLogSizeInBytes() bool

HasOracleRedoLogSizeInBytes returns a boolean if a field has been set.

func (*Snapshot) HasRetainForever added in v1.6.0

func (o *Snapshot) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (*Snapshot) HasRetention added in v1.6.0

func (o *Snapshot) HasRetention() bool

HasRetention returns a boolean if a field has been set.

func (*Snapshot) HasStartLocation added in v1.6.0

func (o *Snapshot) HasStartLocation() bool

HasStartLocation returns a boolean if a field has been set.

func (*Snapshot) HasStartTimestamp added in v1.6.0

func (o *Snapshot) HasStartTimestamp() bool

HasStartTimestamp returns a boolean if a field has been set.

func (*Snapshot) HasTags added in v1.6.0

func (o *Snapshot) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Snapshot) HasTemporary added in v1.6.0

func (o *Snapshot) HasTemporary() bool

HasTemporary returns a boolean if a field has been set.

func (*Snapshot) HasTimeflowId added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*Snapshot) HasVersion added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) SetAppdataMetadata(v string)

SetAppdataMetadata gets a reference to the given string and assigns it to the AppdataMetadata field.

func (*Snapshot) SetAppdataToolkit added in v1.6.0

func (o *Snapshot) SetAppdataToolkit(v string)

SetAppdataToolkit gets a reference to the given string and assigns it to the AppdataToolkit field.

func (*Snapshot) SetAseDbEncryptionKey added in v1.6.0

func (o *Snapshot) SetAseDbEncryptionKey(v string)

SetAseDbEncryptionKey gets a reference to the given string and assigns it to the AseDbEncryptionKey field.

func (*Snapshot) SetConsistency added in v1.6.0

func (o *Snapshot) SetConsistency(v string)

SetConsistency gets a reference to the given string and assigns it to the Consistency field.

func (*Snapshot) SetCreationTime added in v1.6.0

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) SetEngineId added in v1.6.0

func (o *Snapshot) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Snapshot) SetExpiration added in v1.6.0

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) 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 added in v1.6.0

func (o *Snapshot) SetMissingNonLoggedData(v bool)

SetMissingNonLoggedData gets a reference to the given bool and assigns it to the MissingNonLoggedData field.

func (*Snapshot) SetMssqlBackupLocationType added in v1.6.0

func (o *Snapshot) SetMssqlBackupLocationType(v string)

SetMssqlBackupLocationType gets a reference to the given string and assigns it to the MssqlBackupLocationType field.

func (*Snapshot) SetMssqlBackupSetUuid added in v1.6.0

func (o *Snapshot) SetMssqlBackupSetUuid(v string)

SetMssqlBackupSetUuid gets a reference to the given string and assigns it to the MssqlBackupSetUuid field.

func (*Snapshot) SetMssqlBackupSoftwareType added in v1.6.0

func (o *Snapshot) SetMssqlBackupSoftwareType(v string)

SetMssqlBackupSoftwareType gets a reference to the given string and assigns it to the MssqlBackupSoftwareType field.

func (*Snapshot) SetMssqlEmptySnapshot added in v1.6.0

func (o *Snapshot) SetMssqlEmptySnapshot(v bool)

SetMssqlEmptySnapshot gets a reference to the given bool and assigns it to the MssqlEmptySnapshot field.

func (*Snapshot) SetMssqlInternalVersion added in v1.6.0

func (o *Snapshot) SetMssqlInternalVersion(v int32)

SetMssqlInternalVersion gets a reference to the given int32 and assigns it to the MssqlInternalVersion field.

func (*Snapshot) SetName added in v1.6.0

func (o *Snapshot) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Snapshot) SetNamespace added in v1.6.0

func (o *Snapshot) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*Snapshot) SetNamespaceNil added in v1.6.0

func (o *Snapshot) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Snapshot) SetOracleFromPhysicalStandbyVdb added in v1.6.0

func (o *Snapshot) SetOracleFromPhysicalStandbyVdb(v bool)

SetOracleFromPhysicalStandbyVdb gets a reference to the given bool and assigns it to the OracleFromPhysicalStandbyVdb field.

func (*Snapshot) SetOracleRedoLogSizeInBytes added in v1.6.0

func (o *Snapshot) SetOracleRedoLogSizeInBytes(v int64)

SetOracleRedoLogSizeInBytes gets a reference to the given int64 and assigns it to the OracleRedoLogSizeInBytes field.

func (*Snapshot) SetRetainForever added in v1.6.0

func (o *Snapshot) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (*Snapshot) SetRetention added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) SetStartLocation(v string)

SetStartLocation gets a reference to the given string and assigns it to the StartLocation field.

func (*Snapshot) SetStartTimestamp added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*Snapshot) SetTemporary added in v1.6.0

func (o *Snapshot) SetTemporary(v bool)

SetTemporary gets a reference to the given bool and assigns it to the Temporary field.

func (*Snapshot) SetTimeflowId added in v1.6.0

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 added in v1.6.0

func (o *Snapshot) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*Snapshot) SetVersion added in v1.6.0

func (o *Snapshot) SetVersion(v string)

SetVersion gets a reference to the given NullableString and assigns it to the Version field.

func (*Snapshot) SetVersionNil added in v1.6.0

func (o *Snapshot) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (Snapshot) ToMap added in v1.6.0

func (o Snapshot) ToMap() (map[string]interface{}, error)

func (*Snapshot) UnsetNamespace added in v1.6.0

func (o *Snapshot) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

func (*Snapshot) UnsetVersion added in v1.6.0

func (o *Snapshot) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type SnapshotCompatibleRepositories added in v1.6.0

type SnapshotCompatibleRepositories struct {
	// Repositories corresponding to the snapshot. A Repository typically corresponds to a database installation.
	Repositories []EnvironmentRepository `json:"repositories,omitempty"`
}

SnapshotCompatibleRepositories Compatible repositories corresponding to the snapshot.

func NewSnapshotCompatibleRepositories added in v1.6.0

func NewSnapshotCompatibleRepositories() *SnapshotCompatibleRepositories

NewSnapshotCompatibleRepositories instantiates a new SnapshotCompatibleRepositories object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnapshotCompatibleRepositoriesWithDefaults added in v1.6.0

func NewSnapshotCompatibleRepositoriesWithDefaults() *SnapshotCompatibleRepositories

NewSnapshotCompatibleRepositoriesWithDefaults instantiates a new SnapshotCompatibleRepositories object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SnapshotCompatibleRepositories) GetRepositories added in v1.6.0

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositories) GetRepositoriesOk added in v1.6.0

func (o *SnapshotCompatibleRepositories) GetRepositoriesOk() ([]EnvironmentRepository, 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 (*SnapshotCompatibleRepositories) HasRepositories added in v1.6.0

func (o *SnapshotCompatibleRepositories) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (SnapshotCompatibleRepositories) MarshalJSON added in v1.6.0

func (o SnapshotCompatibleRepositories) MarshalJSON() ([]byte, error)

func (*SnapshotCompatibleRepositories) SetRepositories added in v1.6.0

func (o *SnapshotCompatibleRepositories) SetRepositories(v []EnvironmentRepository)

SetRepositories gets a reference to the given []EnvironmentRepository and assigns it to the Repositories field.

func (SnapshotCompatibleRepositories) ToMap added in v1.6.0

func (o SnapshotCompatibleRepositories) ToMap() (map[string]interface{}, error)

type SnapshotCompatibleRepositoryRequest added in v1.6.0

type SnapshotCompatibleRepositoryRequest 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 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetEnvironmentIdOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) GetSnapshotId() string

GetSnapshotId returns the SnapshotId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetSnapshotIdOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) GetSourceDataId() string

GetSourceDataId returns the SourceDataId field value if set, zero value otherwise.

func (*SnapshotCompatibleRepositoryRequest) GetSourceDataIdOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasEnvironmentId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasSnapshotId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) HasSnapshotId() bool

HasSnapshotId returns a boolean if a field has been set.

func (*SnapshotCompatibleRepositoryRequest) HasSourceDataId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) HasSourceDataId() bool

HasSourceDataId returns a boolean if a field has been set.

func (SnapshotCompatibleRepositoryRequest) MarshalJSON added in v1.6.0

func (o SnapshotCompatibleRepositoryRequest) MarshalJSON() ([]byte, error)

func (*SnapshotCompatibleRepositoryRequest) SetEngineId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*SnapshotCompatibleRepositoryRequest) SetEnvironmentId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given string and assigns it to the EnvironmentId field.

func (*SnapshotCompatibleRepositoryRequest) SetSnapshotId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) SetSnapshotId(v string)

SetSnapshotId gets a reference to the given string and assigns it to the SnapshotId field.

func (*SnapshotCompatibleRepositoryRequest) SetSourceDataId added in v1.6.0

func (o *SnapshotCompatibleRepositoryRequest) SetSourceDataId(v string)

SetSourceDataId gets a reference to the given string and assigns it to the SourceDataId field.

func (SnapshotCompatibleRepositoryRequest) ToMap added in v1.6.0

func (o SnapshotCompatibleRepositoryRequest) ToMap() (map[string]interface{}, error)

type SnapshotDSourceResponse added in v1.2.0

type SnapshotDSourceResponse struct {
	Job *Job `json:"job,omitempty"`
}

SnapshotDSourceResponse struct for SnapshotDSourceResponse

func NewSnapshotDSourceResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SnapshotDSourceResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SnapshotDSourceResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *SnapshotDSourceResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SnapshotDSourceResponse) MarshalJSON added in v1.2.0

func (o SnapshotDSourceResponse) MarshalJSON() ([]byte, error)

func (*SnapshotDSourceResponse) SetJob added in v1.2.0

func (o *SnapshotDSourceResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SnapshotDSourceResponse) ToMap added in v1.6.0

func (o SnapshotDSourceResponse) ToMap() (map[string]interface{}, error)

type SnapshotDayRange added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SnapshotDayRange) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SnapshotDayRange) GetCountOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotDayRange) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*SnapshotDayRange) GetDateOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotDayRange) GetEndOfDay() time.Time

GetEndOfDay returns the EndOfDay field value if set, zero value otherwise.

func (*SnapshotDayRange) GetEndOfDayOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotDayRange) GetStartOfDay() time.Time

GetStartOfDay returns the StartOfDay field value if set, zero value otherwise.

func (*SnapshotDayRange) GetStartOfDayOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotDayRange) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SnapshotDayRange) HasDate added in v1.6.0

func (o *SnapshotDayRange) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*SnapshotDayRange) HasEndOfDay added in v1.6.0

func (o *SnapshotDayRange) HasEndOfDay() bool

HasEndOfDay returns a boolean if a field has been set.

func (*SnapshotDayRange) HasStartOfDay added in v1.6.0

func (o *SnapshotDayRange) HasStartOfDay() bool

HasStartOfDay returns a boolean if a field has been set.

func (SnapshotDayRange) MarshalJSON added in v1.6.0

func (o SnapshotDayRange) MarshalJSON() ([]byte, error)

func (*SnapshotDayRange) SetCount added in v1.6.0

func (o *SnapshotDayRange) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SnapshotDayRange) SetDate added in v1.6.0

func (o *SnapshotDayRange) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*SnapshotDayRange) SetEndOfDay added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o SnapshotDayRange) ToMap() (map[string]interface{}, error)

type SnapshotVDBResponse added in v1.2.0

type SnapshotVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

SnapshotVDBResponse struct for SnapshotVDBResponse

func NewSnapshotVDBResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *SnapshotVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SnapshotVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *SnapshotVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SnapshotVDBResponse) MarshalJSON added in v1.2.0

func (o SnapshotVDBResponse) MarshalJSON() ([]byte, error)

func (*SnapshotVDBResponse) SetJob added in v1.2.0

func (o *SnapshotVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SnapshotVDBResponse) ToMap added in v1.6.0

func (o SnapshotVDBResponse) ToMap() (map[string]interface{}, error)

type SnapshotsApiService

type SnapshotsApiService service

SnapshotsApiService SnapshotsApi service

func (*SnapshotsApiService) CreateSnapshotTags added in v1.6.0

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 added in v1.6.0

func (a *SnapshotsApiService) CreateSnapshotTagsExecute(r ApiCreateSnapshotTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SnapshotsApiService) DeleteSnapshot added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DeleteSnapshotResponse

func (*SnapshotsApiService) DeleteSnapshotTags added in v1.6.0

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 added in v1.6.0

func (a *SnapshotsApiService) DeleteSnapshotTagsExecute(r ApiDeleteSnapshotTagsRequest) (*http.Response, error)

Execute executes the request

func (*SnapshotsApiService) FindByLocation added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return FindByLocationResponse

func (*SnapshotsApiService) FindByTimestamp added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (a *SnapshotsApiService) GetSnapshotTagsExecute(r ApiGetSnapshotTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchSnapshotsResponse

func (*SnapshotsApiService) UnsetSnapshotRetention added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UnsetSnapshotRetentionResponse

func (*SnapshotsApiService) UpdateSnapshot added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UpdateSnapshotResponse

type SnapshotsDayRangesResponse added in v1.6.0

type SnapshotsDayRangesResponse struct {
	Items []SnapshotDayRange `json:"items,omitempty"`
}

SnapshotsDayRangesResponse struct for SnapshotsDayRangesResponse

func NewSnapshotsDayRangesResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

GetItems returns the Items field value if set, zero value otherwise.

func (*SnapshotsDayRangesResponse) GetItemsOk added in v1.6.0

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 added in v1.6.0

func (o *SnapshotsDayRangesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (SnapshotsDayRangesResponse) MarshalJSON added in v1.6.0

func (o SnapshotsDayRangesResponse) MarshalJSON() ([]byte, error)

func (*SnapshotsDayRangesResponse) SetItems added in v1.6.0

SetItems gets a reference to the given []SnapshotDayRange and assigns it to the Items field.

func (SnapshotsDayRangesResponse) ToMap added in v1.6.0

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 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"`
	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 added in v1.6.0

func (o *Source) GetIsDsource() bool

GetIsDsource returns the IsDsource field value if set, zero value otherwise.

func (*Source) GetIsDsourceOk added in v1.6.0

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) 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) 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) 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 added in v1.6.0

func (o *Source) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Source) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Source) HasIsDsource() bool

HasIsDsource 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) HasPluginVersion

func (o *Source) HasPluginVersion() bool

HasPluginVersion 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 added in v1.6.0

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 added in v1.6.0

func (o *Source) SetIsDsource(v bool)

SetIsDsource gets a reference to the given bool and assigns it to the IsDsource field.

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) 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) 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 added in v1.6.0

func (o *Source) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Source) ToMap added in v1.6.0

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) 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) 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SourceOperation) GetCommand() string

GetCommand returns the Command field value

func (*SourceOperation) GetCommandOk added in v1.6.0

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 added in v1.6.0

func (o *SourceOperation) GetCredentialsEnvVars() []CredentialsEnvVariable

GetCredentialsEnvVars returns the CredentialsEnvVars field value if set, zero value otherwise.

func (*SourceOperation) GetCredentialsEnvVarsOk added in v1.6.0

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 added in v1.6.0

func (o *SourceOperation) GetName() string

GetName returns the Name field value

func (*SourceOperation) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *SourceOperation) GetShell() string

GetShell returns the Shell field value if set, zero value otherwise.

func (*SourceOperation) GetShellOk added in v1.6.0

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 added in v1.6.0

func (o *SourceOperation) HasCredentialsEnvVars() bool

HasCredentialsEnvVars returns a boolean if a field has been set.

func (*SourceOperation) HasShell added in v1.6.0

func (o *SourceOperation) HasShell() bool

HasShell returns a boolean if a field has been set.

func (SourceOperation) MarshalJSON added in v1.6.0

func (o SourceOperation) MarshalJSON() ([]byte, error)

func (*SourceOperation) SetCommand added in v1.6.0

func (o *SourceOperation) SetCommand(v string)

SetCommand sets field value

func (*SourceOperation) SetCredentialsEnvVars added in v1.6.0

func (o *SourceOperation) SetCredentialsEnvVars(v []CredentialsEnvVariable)

SetCredentialsEnvVars gets a reference to the given []CredentialsEnvVariable and assigns it to the CredentialsEnvVars field.

func (*SourceOperation) SetName added in v1.6.0

func (o *SourceOperation) SetName(v string)

SetName sets field value

func (*SourceOperation) SetShell added in v1.6.0

func (o *SourceOperation) SetShell(v string)

SetShell gets a reference to the given string and assigns it to the Shell field.

func (SourceOperation) ToMap added in v1.6.0

func (o SourceOperation) ToMap() (map[string]interface{}, error)

type SourcesApiService

type SourcesApiService service

SourcesApiService SourcesApi service

func (*SourcesApiService) CreateSourceTags added in v1.6.0

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 added in v1.6.0

func (a *SourcesApiService) CreateSourceTagsExecute(r ApiCreateSourceTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*SourcesApiService) DeleteSourceTags added in v1.6.0

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 added in v1.6.0

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) GetSourceTags added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchSourcesResponse

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 added in v1.2.0

func (o *StartVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*StartVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *StartVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (StartVDBResponse) ToMap added in v1.6.0

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 added in v1.2.0

func (o *StopVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*StopVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *StopVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (StopVDBResponse) ToMap added in v1.6.0

func (o StopVDBResponse) ToMap() (map[string]interface{}, error)

type SwitchTimeflowParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SwitchTimeflowParameters) GetTimeflowId() string

GetTimeflowId returns the TimeflowId field value if set, zero value otherwise.

func (*SwitchTimeflowParameters) GetTimeflowIdOk added in v1.6.0

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 added in v1.6.0

func (o *SwitchTimeflowParameters) HasTimeflowId() bool

HasTimeflowId returns a boolean if a field has been set.

func (SwitchTimeflowParameters) MarshalJSON added in v1.6.0

func (o SwitchTimeflowParameters) MarshalJSON() ([]byte, error)

func (*SwitchTimeflowParameters) SetTimeflowId added in v1.6.0

func (o *SwitchTimeflowParameters) SetTimeflowId(v string)

SetTimeflowId gets a reference to the given string and assigns it to the TimeflowId field.

func (SwitchTimeflowParameters) ToMap added in v1.6.0

func (o SwitchTimeflowParameters) ToMap() (map[string]interface{}, error)

type SwitchTimeflowResponse added in v1.6.0

type SwitchTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

SwitchTimeflowResponse struct for SwitchTimeflowResponse

func NewSwitchTimeflowResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *SwitchTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*SwitchTimeflowResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *SwitchTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (SwitchTimeflowResponse) MarshalJSON added in v1.6.0

func (o SwitchTimeflowResponse) MarshalJSON() ([]byte, error)

func (*SwitchTimeflowResponse) SetJob added in v1.6.0

func (o *SwitchTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (SwitchTimeflowResponse) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o TagsResponse) ToMap() (map[string]interface{}, error)

type TaskEvent added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *TaskEvent) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise.

func (*TaskEvent) GetEventOk added in v1.6.0

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 added in v1.6.0

func (o *TaskEvent) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*TaskEvent) GetStatusOk added in v1.6.0

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 added in v1.6.0

func (o *TaskEvent) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*TaskEvent) HasStatus added in v1.6.0

func (o *TaskEvent) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (TaskEvent) MarshalJSON added in v1.6.0

func (o TaskEvent) MarshalJSON() ([]byte, error)

func (*TaskEvent) SetEvent added in v1.6.0

func (o *TaskEvent) SetEvent(v string)

SetEvent gets a reference to the given string and assigns it to the Event field.

func (*TaskEvent) SetStatus added in v1.6.0

func (o *TaskEvent) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (TaskEvent) ToMap added in v1.6.0

func (o TaskEvent) ToMap() (map[string]interface{}, error)

type TestApiService added in v1.6.0

type TestApiService service

TestApiService TestApi service

func (*TestApiService) TimeToUpdateSources added in v1.6.0

func (a *TestApiService) TimeToUpdateSources(ctx context.Context) ApiTimeToUpdateSourcesRequest

TimeToUpdateSources set sources loop count variable - this is being used during performance testing.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTimeToUpdateSourcesRequest

func (*TestApiService) TimeToUpdateSourcesExecute added in v1.6.0

Execute executes the request

@return TimeToUpdateSourcesResponse

type TimeToUpdateSourcesRequest added in v1.6.0

type TimeToUpdateSourcesRequest 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 actual sources on 1 engine - this no. needs to be same for all engines
	ExistingNoOfSources int32 `json:"existing_no_of_sources"`
	// no. of times every source needs to be saved in data library
	SourcesCount int32 `json:"sources_count"`
}

TimeToUpdateSourcesRequest struct for TimeToUpdateSourcesRequest

func NewTimeToUpdateSourcesRequest added in v1.6.0

func NewTimeToUpdateSourcesRequest(enginesCount int32, enginesList []string, existingNoOfSources int32, sourcesCount int32) *TimeToUpdateSourcesRequest

NewTimeToUpdateSourcesRequest instantiates a new TimeToUpdateSourcesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeToUpdateSourcesRequestWithDefaults added in v1.6.0

func NewTimeToUpdateSourcesRequestWithDefaults() *TimeToUpdateSourcesRequest

NewTimeToUpdateSourcesRequestWithDefaults instantiates a new TimeToUpdateSourcesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeToUpdateSourcesRequest) GetEnginesCount added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetEnginesCount() int32

GetEnginesCount returns the EnginesCount field value

func (*TimeToUpdateSourcesRequest) GetEnginesCountOk added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetEnginesCountOk() (*int32, bool)

GetEnginesCountOk returns a tuple with the EnginesCount field value and a boolean to check if the value has been set.

func (*TimeToUpdateSourcesRequest) GetEnginesList added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetEnginesList() []string

GetEnginesList returns the EnginesList field value

func (*TimeToUpdateSourcesRequest) GetEnginesListOk added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetEnginesListOk() ([]string, bool)

GetEnginesListOk returns a tuple with the EnginesList field value and a boolean to check if the value has been set.

func (*TimeToUpdateSourcesRequest) GetExistingNoOfSources added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetExistingNoOfSources() int32

GetExistingNoOfSources returns the ExistingNoOfSources field value

func (*TimeToUpdateSourcesRequest) GetExistingNoOfSourcesOk added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetExistingNoOfSourcesOk() (*int32, bool)

GetExistingNoOfSourcesOk returns a tuple with the ExistingNoOfSources field value and a boolean to check if the value has been set.

func (*TimeToUpdateSourcesRequest) GetSourcesCount added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetSourcesCount() int32

GetSourcesCount returns the SourcesCount field value

func (*TimeToUpdateSourcesRequest) GetSourcesCountOk added in v1.6.0

func (o *TimeToUpdateSourcesRequest) GetSourcesCountOk() (*int32, bool)

GetSourcesCountOk returns a tuple with the SourcesCount field value and a boolean to check if the value has been set.

func (TimeToUpdateSourcesRequest) MarshalJSON added in v1.6.0

func (o TimeToUpdateSourcesRequest) MarshalJSON() ([]byte, error)

func (*TimeToUpdateSourcesRequest) SetEnginesCount added in v1.6.0

func (o *TimeToUpdateSourcesRequest) SetEnginesCount(v int32)

SetEnginesCount sets field value

func (*TimeToUpdateSourcesRequest) SetEnginesList added in v1.6.0

func (o *TimeToUpdateSourcesRequest) SetEnginesList(v []string)

SetEnginesList sets field value

func (*TimeToUpdateSourcesRequest) SetExistingNoOfSources added in v1.6.0

func (o *TimeToUpdateSourcesRequest) SetExistingNoOfSources(v int32)

SetExistingNoOfSources sets field value

func (*TimeToUpdateSourcesRequest) SetSourcesCount added in v1.6.0

func (o *TimeToUpdateSourcesRequest) SetSourcesCount(v int32)

SetSourcesCount sets field value

func (TimeToUpdateSourcesRequest) ToMap added in v1.6.0

func (o TimeToUpdateSourcesRequest) ToMap() (map[string]interface{}, error)

type TimeToUpdateSourcesResponse added in v1.6.0

type TimeToUpdateSourcesResponse struct {
	TimeToSave *int32 `json:"time_to_save,omitempty"`
	TimeToAdd  *int32 `json:"time_to_add,omitempty"`
}

TimeToUpdateSourcesResponse struct for TimeToUpdateSourcesResponse

func NewTimeToUpdateSourcesResponse added in v1.6.0

func NewTimeToUpdateSourcesResponse() *TimeToUpdateSourcesResponse

NewTimeToUpdateSourcesResponse instantiates a new TimeToUpdateSourcesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeToUpdateSourcesResponseWithDefaults added in v1.6.0

func NewTimeToUpdateSourcesResponseWithDefaults() *TimeToUpdateSourcesResponse

NewTimeToUpdateSourcesResponseWithDefaults instantiates a new TimeToUpdateSourcesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeToUpdateSourcesResponse) GetTimeToAdd added in v1.6.0

func (o *TimeToUpdateSourcesResponse) GetTimeToAdd() int32

GetTimeToAdd returns the TimeToAdd field value if set, zero value otherwise.

func (*TimeToUpdateSourcesResponse) GetTimeToAddOk added in v1.6.0

func (o *TimeToUpdateSourcesResponse) GetTimeToAddOk() (*int32, bool)

GetTimeToAddOk returns a tuple with the TimeToAdd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeToUpdateSourcesResponse) GetTimeToSave added in v1.6.0

func (o *TimeToUpdateSourcesResponse) GetTimeToSave() int32

GetTimeToSave returns the TimeToSave field value if set, zero value otherwise.

func (*TimeToUpdateSourcesResponse) GetTimeToSaveOk added in v1.6.0

func (o *TimeToUpdateSourcesResponse) GetTimeToSaveOk() (*int32, bool)

GetTimeToSaveOk returns a tuple with the TimeToSave field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeToUpdateSourcesResponse) HasTimeToAdd added in v1.6.0

func (o *TimeToUpdateSourcesResponse) HasTimeToAdd() bool

HasTimeToAdd returns a boolean if a field has been set.

func (*TimeToUpdateSourcesResponse) HasTimeToSave added in v1.6.0

func (o *TimeToUpdateSourcesResponse) HasTimeToSave() bool

HasTimeToSave returns a boolean if a field has been set.

func (TimeToUpdateSourcesResponse) MarshalJSON added in v1.6.0

func (o TimeToUpdateSourcesResponse) MarshalJSON() ([]byte, error)

func (*TimeToUpdateSourcesResponse) SetTimeToAdd added in v1.6.0

func (o *TimeToUpdateSourcesResponse) SetTimeToAdd(v int32)

SetTimeToAdd gets a reference to the given int32 and assigns it to the TimeToAdd field.

func (*TimeToUpdateSourcesResponse) SetTimeToSave added in v1.6.0

func (o *TimeToUpdateSourcesResponse) SetTimeToSave(v int32)

SetTimeToSave gets a reference to the given int32 and assigns it to the TimeToSave field.

func (TimeToUpdateSourcesResponse) ToMap added in v1.6.0

func (o TimeToUpdateSourcesResponse) ToMap() (map[string]interface{}, error)

type Timeflow added in v1.6.0

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 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetCreationType() string

GetCreationType returns the CreationType field value if set, zero value otherwise.

func (*Timeflow) GetCreationTypeOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*Timeflow) GetDatasetIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*Timeflow) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Timeflow) GetIdOk added in v1.6.0

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) GetMssqlDatabaseGuid added in v1.6.0

func (o *Timeflow) GetMssqlDatabaseGuid() string

GetMssqlDatabaseGuid returns the MssqlDatabaseGuid field value if set, zero value otherwise.

func (*Timeflow) GetMssqlDatabaseGuidOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Timeflow) GetNameOk added in v1.6.0

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 added in v1.6.0

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) GetNamespaceOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetOracleCdbTimeflowId() string

GetOracleCdbTimeflowId returns the OracleCdbTimeflowId field value if set, zero value otherwise.

func (*Timeflow) GetOracleCdbTimeflowIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetOracleIncarnationId() string

GetOracleIncarnationId returns the OracleIncarnationId field value if set, zero value otherwise.

func (*Timeflow) GetOracleIncarnationIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetOracleTdeUuid() string

GetOracleTdeUuid returns the OracleTdeUuid field value if set, zero value otherwise.

func (*Timeflow) GetOracleTdeUuidOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetParentPointLocation() string

GetParentPointLocation returns the ParentPointLocation field value if set, zero value otherwise.

func (*Timeflow) GetParentPointLocationOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetParentPointTimeflowId() string

GetParentPointTimeflowId returns the ParentPointTimeflowId field value if set, zero value otherwise.

func (*Timeflow) GetParentPointTimeflowIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetParentPointTimestamp() time.Time

GetParentPointTimestamp returns the ParentPointTimestamp field value if set, zero value otherwise.

func (*Timeflow) GetParentPointTimestampOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetParentSnapshotId() string

GetParentSnapshotId returns the ParentSnapshotId field value if set, zero value otherwise.

func (*Timeflow) GetParentSnapshotIdOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetSourceDataTimestamp() time.Time

GetSourceDataTimestamp returns the SourceDataTimestamp field value if set, zero value otherwise.

func (*Timeflow) GetSourceDataTimestampOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*Timeflow) GetTagsOk added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) HasCreationType() bool

HasCreationType returns a boolean if a field has been set.

func (*Timeflow) HasDatasetId added in v1.6.0

func (o *Timeflow) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*Timeflow) HasEngineId added in v1.6.0

func (o *Timeflow) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*Timeflow) HasId added in v1.6.0

func (o *Timeflow) HasId() bool

HasId returns a boolean if a field has been set.

func (*Timeflow) HasMssqlDatabaseGuid added in v1.6.0

func (o *Timeflow) HasMssqlDatabaseGuid() bool

HasMssqlDatabaseGuid returns a boolean if a field has been set.

func (*Timeflow) HasName added in v1.6.0

func (o *Timeflow) HasName() bool

HasName returns a boolean if a field has been set.

func (*Timeflow) HasNamespace added in v1.6.0

func (o *Timeflow) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Timeflow) HasOracleCdbTimeflowId added in v1.6.0

func (o *Timeflow) HasOracleCdbTimeflowId() bool

HasOracleCdbTimeflowId returns a boolean if a field has been set.

func (*Timeflow) HasOracleIncarnationId added in v1.6.0

func (o *Timeflow) HasOracleIncarnationId() bool

HasOracleIncarnationId returns a boolean if a field has been set.

func (*Timeflow) HasOracleTdeUuid added in v1.6.0

func (o *Timeflow) HasOracleTdeUuid() bool

HasOracleTdeUuid returns a boolean if a field has been set.

func (*Timeflow) HasParentPointLocation added in v1.6.0

func (o *Timeflow) HasParentPointLocation() bool

HasParentPointLocation returns a boolean if a field has been set.

func (*Timeflow) HasParentPointTimeflowId added in v1.6.0

func (o *Timeflow) HasParentPointTimeflowId() bool

HasParentPointTimeflowId returns a boolean if a field has been set.

func (*Timeflow) HasParentPointTimestamp added in v1.6.0

func (o *Timeflow) HasParentPointTimestamp() bool

HasParentPointTimestamp returns a boolean if a field has been set.

func (*Timeflow) HasParentSnapshotId added in v1.6.0

func (o *Timeflow) HasParentSnapshotId() bool

HasParentSnapshotId returns a boolean if a field has been set.

func (*Timeflow) HasSourceDataTimestamp added in v1.6.0

func (o *Timeflow) HasSourceDataTimestamp() bool

HasSourceDataTimestamp returns a boolean if a field has been set.

func (*Timeflow) HasTags added in v1.6.0

func (o *Timeflow) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Timeflow) MarshalJSON added in v1.6.0

func (o Timeflow) MarshalJSON() ([]byte, error)

func (*Timeflow) SetCreationType added in v1.6.0

func (o *Timeflow) SetCreationType(v string)

SetCreationType gets a reference to the given string and assigns it to the CreationType field.

func (*Timeflow) SetDatasetId added in v1.6.0

func (o *Timeflow) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*Timeflow) SetEngineId added in v1.6.0

func (o *Timeflow) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*Timeflow) SetId added in v1.6.0

func (o *Timeflow) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Timeflow) SetMssqlDatabaseGuid added in v1.6.0

func (o *Timeflow) SetMssqlDatabaseGuid(v string)

SetMssqlDatabaseGuid gets a reference to the given string and assigns it to the MssqlDatabaseGuid field.

func (*Timeflow) SetName added in v1.6.0

func (o *Timeflow) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Timeflow) SetNamespace added in v1.6.0

func (o *Timeflow) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*Timeflow) SetNamespaceNil added in v1.6.0

func (o *Timeflow) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*Timeflow) SetOracleCdbTimeflowId added in v1.6.0

func (o *Timeflow) SetOracleCdbTimeflowId(v string)

SetOracleCdbTimeflowId gets a reference to the given string and assigns it to the OracleCdbTimeflowId field.

func (*Timeflow) SetOracleIncarnationId added in v1.6.0

func (o *Timeflow) SetOracleIncarnationId(v string)

SetOracleIncarnationId gets a reference to the given string and assigns it to the OracleIncarnationId field.

func (*Timeflow) SetOracleTdeUuid added in v1.6.0

func (o *Timeflow) SetOracleTdeUuid(v string)

SetOracleTdeUuid gets a reference to the given string and assigns it to the OracleTdeUuid field.

func (*Timeflow) SetParentPointLocation added in v1.6.0

func (o *Timeflow) SetParentPointLocation(v string)

SetParentPointLocation gets a reference to the given string and assigns it to the ParentPointLocation field.

func (*Timeflow) SetParentPointTimeflowId added in v1.6.0

func (o *Timeflow) SetParentPointTimeflowId(v string)

SetParentPointTimeflowId gets a reference to the given string and assigns it to the ParentPointTimeflowId field.

func (*Timeflow) SetParentPointTimestamp added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) SetParentSnapshotId(v string)

SetParentSnapshotId gets a reference to the given string and assigns it to the ParentSnapshotId field.

func (*Timeflow) SetSourceDataTimestamp added in v1.6.0

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 added in v1.6.0

func (o *Timeflow) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (Timeflow) ToMap added in v1.6.0

func (o Timeflow) ToMap() (map[string]interface{}, error)

func (*Timeflow) UnsetNamespace added in v1.6.0

func (o *Timeflow) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

type TimeflowsApiService added in v1.6.0

type TimeflowsApiService service

TimeflowsApiService TimeflowsApi service

func (*TimeflowsApiService) CreateTimeflowTags added in v1.6.0

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 added in v1.6.0

func (a *TimeflowsApiService) CreateTimeflowTagsExecute(r ApiCreateTimeflowTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*TimeflowsApiService) DeleteTimeflow added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return DeleteTimeflowResponse

func (*TimeflowsApiService) DeleteTimeflowTags added in v1.6.0

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 added in v1.6.0

func (a *TimeflowsApiService) DeleteTimeflowTagsExecute(r ApiDeleteTimeflowTagsRequest) (*http.Response, error)

Execute executes the request

func (*TimeflowsApiService) GetTimeflowById added in v1.6.0

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 added in v1.6.0

func (a *TimeflowsApiService) GetTimeflowByIdExecute(r ApiGetTimeflowByIdRequest) (*Timeflow, *http.Response, error)

Execute executes the request

@return Timeflow

func (*TimeflowsApiService) GetTimeflowSnapshotDayRange added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SnapshotsDayRangesResponse

func (*TimeflowsApiService) GetTimeflowTags added in v1.6.0

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 added in v1.6.0

func (a *TimeflowsApiService) GetTimeflowTagsExecute(r ApiGetTimeflowTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*TimeflowsApiService) GetTimeflows added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListTimeflowsResponse

func (*TimeflowsApiService) SearchTimeflows added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchTimeflowsResponse

func (*TimeflowsApiService) UpdateTimeflow added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return UpdateTimeflowResponse

type TokenInfoRequest added in v1.6.0

type TokenInfoRequest struct {
	// API Key or JWT token for fetching information
	Token string `json:"token"`
}

TokenInfoRequest struct for TokenInfoRequest

func NewTokenInfoRequest added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoRequest) GetToken() string

GetToken returns the Token field value

func (*TokenInfoRequest) GetTokenOk added in v1.6.0

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 added in v1.6.0

func (o TokenInfoRequest) MarshalJSON() ([]byte, error)

func (*TokenInfoRequest) SetToken added in v1.6.0

func (o *TokenInfoRequest) SetToken(v string)

SetToken sets field value

func (TokenInfoRequest) ToMap added in v1.6.0

func (o TokenInfoRequest) ToMap() (map[string]interface{}, error)

type TokenInfoResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*TokenInfoResponse) GetAccountIdOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*TokenInfoResponse) GetActiveOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*TokenInfoResponse) GetEmailOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetExp() int64

GetExp returns the Exp field value if set, zero value otherwise.

func (*TokenInfoResponse) GetExpOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*TokenInfoResponse) GetFirstNameOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*TokenInfoResponse) GetLastNameOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetLdapPrincipal() string

GetLdapPrincipal returns the LdapPrincipal field value if set, zero value otherwise.

func (*TokenInfoResponse) GetLdapPrincipalOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*TokenInfoResponse) GetTokenTypeOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*TokenInfoResponse) GetUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *TokenInfoResponse) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*TokenInfoResponse) HasActive added in v1.6.0

func (o *TokenInfoResponse) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*TokenInfoResponse) HasEmail added in v1.6.0

func (o *TokenInfoResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*TokenInfoResponse) HasExp added in v1.6.0

func (o *TokenInfoResponse) HasExp() bool

HasExp returns a boolean if a field has been set.

func (*TokenInfoResponse) HasFirstName added in v1.6.0

func (o *TokenInfoResponse) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*TokenInfoResponse) HasLastName added in v1.6.0

func (o *TokenInfoResponse) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*TokenInfoResponse) HasLdapPrincipal added in v1.6.0

func (o *TokenInfoResponse) HasLdapPrincipal() bool

HasLdapPrincipal returns a boolean if a field has been set.

func (*TokenInfoResponse) HasTokenType added in v1.6.0

func (o *TokenInfoResponse) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (*TokenInfoResponse) HasUsername added in v1.6.0

func (o *TokenInfoResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (TokenInfoResponse) MarshalJSON added in v1.6.0

func (o TokenInfoResponse) MarshalJSON() ([]byte, error)

func (*TokenInfoResponse) SetAccountId added in v1.6.0

func (o *TokenInfoResponse) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (*TokenInfoResponse) SetActive added in v1.6.0

func (o *TokenInfoResponse) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*TokenInfoResponse) SetEmail added in v1.6.0

func (o *TokenInfoResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*TokenInfoResponse) SetExp added in v1.6.0

func (o *TokenInfoResponse) SetExp(v int64)

SetExp gets a reference to the given int64 and assigns it to the Exp field.

func (*TokenInfoResponse) SetFirstName added in v1.6.0

func (o *TokenInfoResponse) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*TokenInfoResponse) SetLastName added in v1.6.0

func (o *TokenInfoResponse) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*TokenInfoResponse) SetLdapPrincipal added in v1.6.0

func (o *TokenInfoResponse) SetLdapPrincipal(v string)

SetLdapPrincipal gets a reference to the given string and assigns it to the LdapPrincipal field.

func (*TokenInfoResponse) SetTokenType added in v1.6.0

func (o *TokenInfoResponse) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (*TokenInfoResponse) SetUsername added in v1.6.0

func (o *TokenInfoResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (TokenInfoResponse) ToMap added in v1.6.0

func (o TokenInfoResponse) ToMap() (map[string]interface{}, error)

type UnsetSnapshotRetentionResponse added in v1.6.0

type UnsetSnapshotRetentionResponse struct {
	Job *Job `json:"job,omitempty"`
}

UnsetSnapshotRetentionResponse struct for UnsetSnapshotRetentionResponse

func NewUnsetSnapshotRetentionResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UnsetSnapshotRetentionResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UnsetSnapshotRetentionResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

HasJob returns a boolean if a field has been set.

func (UnsetSnapshotRetentionResponse) MarshalJSON added in v1.6.0

func (o UnsetSnapshotRetentionResponse) MarshalJSON() ([]byte, error)

func (*UnsetSnapshotRetentionResponse) SetJob added in v1.6.0

func (o *UnsetSnapshotRetentionResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UnsetSnapshotRetentionResponse) ToMap added in v1.6.0

func (o UnsetSnapshotRetentionResponse) ToMap() (map[string]interface{}, error)

type UpdateAccessGroupScope added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateAccessGroupScope) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateAccessGroupScope) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateAccessGroupScope) GetScopeType() string

GetScopeType returns the ScopeType field value if set, zero value otherwise.

func (*UpdateAccessGroupScope) GetScopeTypeOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateAccessGroupScope) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateAccessGroupScope) HasScopeType added in v1.6.0

func (o *UpdateAccessGroupScope) HasScopeType() bool

HasScopeType returns a boolean if a field has been set.

func (UpdateAccessGroupScope) MarshalJSON added in v1.6.0

func (o UpdateAccessGroupScope) MarshalJSON() ([]byte, error)

func (*UpdateAccessGroupScope) SetName added in v1.6.0

func (o *UpdateAccessGroupScope) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateAccessGroupScope) SetScopeType added in v1.6.0

func (o *UpdateAccessGroupScope) SetScopeType(v string)

SetScopeType gets a reference to the given string and assigns it to the ScopeType field.

func (UpdateAccessGroupScope) ToMap added in v1.6.0

func (o UpdateAccessGroupScope) ToMap() (map[string]interface{}, error)

type UpdateBookmarkParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateBookmarkParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetExpirationOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateBookmarkParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateBookmarkParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*UpdateBookmarkParameters) GetRetainForeverOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateBookmarkParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*UpdateBookmarkParameters) HasName added in v1.6.0

func (o *UpdateBookmarkParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateBookmarkParameters) HasRetainForever added in v1.6.0

func (o *UpdateBookmarkParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (UpdateBookmarkParameters) MarshalJSON added in v1.6.0

func (o UpdateBookmarkParameters) MarshalJSON() ([]byte, error)

func (*UpdateBookmarkParameters) SetExpiration added in v1.6.0

func (o *UpdateBookmarkParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*UpdateBookmarkParameters) SetName added in v1.6.0

func (o *UpdateBookmarkParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateBookmarkParameters) SetRetainForever added in v1.6.0

func (o *UpdateBookmarkParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (UpdateBookmarkParameters) ToMap added in v1.6.0

func (o UpdateBookmarkParameters) ToMap() (map[string]interface{}, error)

type UpdateConnectorResponse added in v1.6.0

type UpdateConnectorResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateConnectorResponse struct for UpdateConnectorResponse

func NewUpdateConnectorResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateConnectorResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateConnectorResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateConnectorResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateConnectorResponse) MarshalJSON added in v1.6.0

func (o UpdateConnectorResponse) MarshalJSON() ([]byte, error)

func (*UpdateConnectorResponse) SetJob added in v1.6.0

func (o *UpdateConnectorResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateConnectorResponse) ToMap added in v1.6.0

func (o UpdateConnectorResponse) ToMap() (map[string]interface{}, error)

type UpdateDatabaseTemplateParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetDescriptionOk added in v1.6.0

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 added in v1.6.0

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetParametersOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateParameters) GetSourceTypeOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasName added in v1.6.0

HasName returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasParameters added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*UpdateDatabaseTemplateParameters) HasSourceType added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (UpdateDatabaseTemplateParameters) MarshalJSON added in v1.6.0

func (o UpdateDatabaseTemplateParameters) MarshalJSON() ([]byte, error)

func (*UpdateDatabaseTemplateParameters) SetDescription added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateDatabaseTemplateParameters) SetName added in v1.6.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateDatabaseTemplateParameters) SetParameters added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateParameters) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (UpdateDatabaseTemplateParameters) ToMap added in v1.6.0

func (o UpdateDatabaseTemplateParameters) ToMap() (map[string]interface{}, error)

type UpdateDatabaseTemplateResponse added in v1.6.0

type UpdateDatabaseTemplateResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateDatabaseTemplateResponse struct for UpdateDatabaseTemplateResponse

func NewUpdateDatabaseTemplateResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateDatabaseTemplateResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateDatabaseTemplateResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

HasJob returns a boolean if a field has been set.

func (UpdateDatabaseTemplateResponse) MarshalJSON added in v1.6.0

func (o UpdateDatabaseTemplateResponse) MarshalJSON() ([]byte, error)

func (*UpdateDatabaseTemplateResponse) SetJob added in v1.6.0

func (o *UpdateDatabaseTemplateResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateDatabaseTemplateResponse) ToMap added in v1.6.0

func (o UpdateDatabaseTemplateResponse) ToMap() (map[string]interface{}, error)

type UpdateEnvironmentResponse added in v1.1.0

type UpdateEnvironmentResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateEnvironmentResponse struct for UpdateEnvironmentResponse

func NewUpdateEnvironmentResponse added in v1.1.0

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 added in v1.1.0

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 added in v1.2.0

func (o *UpdateEnvironmentResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateEnvironmentResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateEnvironmentResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateEnvironmentResponse) MarshalJSON added in v1.1.0

func (o UpdateEnvironmentResponse) MarshalJSON() ([]byte, error)

func (*UpdateEnvironmentResponse) SetJob added in v1.2.0

func (o *UpdateEnvironmentResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateEnvironmentResponse) ToMap added in v1.6.0

func (o UpdateEnvironmentResponse) ToMap() (map[string]interface{}, error)

type UpdateEnvironmentUserResponse added in v1.2.0

type UpdateEnvironmentUserResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateEnvironmentUserResponse struct for UpdateEnvironmentUserResponse

func NewUpdateEnvironmentUserResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *UpdateEnvironmentUserResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateEnvironmentUserResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateEnvironmentUserResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateEnvironmentUserResponse) MarshalJSON added in v1.2.0

func (o UpdateEnvironmentUserResponse) MarshalJSON() ([]byte, error)

func (*UpdateEnvironmentUserResponse) SetJob added in v1.2.0

func (o *UpdateEnvironmentUserResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateEnvironmentUserResponse) ToMap added in v1.6.0

func (o UpdateEnvironmentUserResponse) ToMap() (map[string]interface{}, error)

type UpdateHostResponse added in v1.6.0

type UpdateHostResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateHostResponse struct for UpdateHostResponse

func NewUpdateHostResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateHostResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateHostResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateHostResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateHostResponse) MarshalJSON added in v1.6.0

func (o UpdateHostResponse) MarshalJSON() ([]byte, error)

func (*UpdateHostResponse) SetJob added in v1.6.0

func (o *UpdateHostResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateHostResponse) ToMap added in v1.6.0

func (o UpdateHostResponse) ToMap() (map[string]interface{}, error)

type UpdateMaskingJobParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) GetConnectorPassword() string

GetConnectorPassword returns the ConnectorPassword field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetConnectorPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) GetConnectorUsername() string

GetConnectorUsername returns the ConnectorUsername field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetConnectorUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPassword() string

GetOnTheFlySourceConnectorPassword returns the OnTheFlySourceConnectorPassword field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorPasswordOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsername() string

GetOnTheFlySourceConnectorUsername returns the OnTheFlySourceConnectorUsername field value if set, zero value otherwise.

func (*UpdateMaskingJobParameters) GetOnTheFlySourceConnectorUsernameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateMaskingJobParameters) HasConnectorPassword() bool

HasConnectorPassword returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasConnectorUsername added in v1.6.0

func (o *UpdateMaskingJobParameters) HasConnectorUsername() bool

HasConnectorUsername returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasName added in v1.6.0

func (o *UpdateMaskingJobParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasOnTheFlySourceConnectorPassword added in v1.6.0

func (o *UpdateMaskingJobParameters) HasOnTheFlySourceConnectorPassword() bool

HasOnTheFlySourceConnectorPassword returns a boolean if a field has been set.

func (*UpdateMaskingJobParameters) HasOnTheFlySourceConnectorUsername added in v1.6.0

func (o *UpdateMaskingJobParameters) HasOnTheFlySourceConnectorUsername() bool

HasOnTheFlySourceConnectorUsername returns a boolean if a field has been set.

func (UpdateMaskingJobParameters) MarshalJSON added in v1.6.0

func (o UpdateMaskingJobParameters) MarshalJSON() ([]byte, error)

func (*UpdateMaskingJobParameters) SetConnectorPassword added in v1.6.0

func (o *UpdateMaskingJobParameters) SetConnectorPassword(v string)

SetConnectorPassword gets a reference to the given string and assigns it to the ConnectorPassword field.

func (*UpdateMaskingJobParameters) SetConnectorUsername added in v1.6.0

func (o *UpdateMaskingJobParameters) SetConnectorUsername(v string)

SetConnectorUsername gets a reference to the given string and assigns it to the ConnectorUsername field.

func (*UpdateMaskingJobParameters) SetName added in v1.6.0

func (o *UpdateMaskingJobParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateMaskingJobParameters) SetOnTheFlySourceConnectorPassword added in v1.6.0

func (o *UpdateMaskingJobParameters) SetOnTheFlySourceConnectorPassword(v string)

SetOnTheFlySourceConnectorPassword gets a reference to the given string and assigns it to the OnTheFlySourceConnectorPassword field.

func (*UpdateMaskingJobParameters) SetOnTheFlySourceConnectorUsername added in v1.6.0

func (o *UpdateMaskingJobParameters) SetOnTheFlySourceConnectorUsername(v string)

SetOnTheFlySourceConnectorUsername gets a reference to the given string and assigns it to the OnTheFlySourceConnectorUsername field.

func (UpdateMaskingJobParameters) ToMap added in v1.6.0

func (o UpdateMaskingJobParameters) ToMap() (map[string]interface{}, error)

type UpdateSnapshotParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateSnapshotParameters) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*UpdateSnapshotParameters) GetExpirationOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateSnapshotParameters) GetRetainForever() bool

GetRetainForever returns the RetainForever field value if set, zero value otherwise.

func (*UpdateSnapshotParameters) GetRetainForeverOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateSnapshotParameters) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*UpdateSnapshotParameters) HasRetainForever added in v1.6.0

func (o *UpdateSnapshotParameters) HasRetainForever() bool

HasRetainForever returns a boolean if a field has been set.

func (UpdateSnapshotParameters) MarshalJSON added in v1.6.0

func (o UpdateSnapshotParameters) MarshalJSON() ([]byte, error)

func (*UpdateSnapshotParameters) SetExpiration added in v1.6.0

func (o *UpdateSnapshotParameters) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*UpdateSnapshotParameters) SetRetainForever added in v1.6.0

func (o *UpdateSnapshotParameters) SetRetainForever(v bool)

SetRetainForever gets a reference to the given bool and assigns it to the RetainForever field.

func (UpdateSnapshotParameters) ToMap added in v1.6.0

func (o UpdateSnapshotParameters) ToMap() (map[string]interface{}, error)

type UpdateSnapshotResponse added in v1.6.0

type UpdateSnapshotResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateSnapshotResponse struct for UpdateSnapshotResponse

func NewUpdateSnapshotResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateSnapshotResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateSnapshotResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateSnapshotResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateSnapshotResponse) MarshalJSON added in v1.6.0

func (o UpdateSnapshotResponse) MarshalJSON() ([]byte, error)

func (*UpdateSnapshotResponse) SetJob added in v1.6.0

func (o *UpdateSnapshotResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateSnapshotResponse) ToMap added in v1.6.0

func (o UpdateSnapshotResponse) ToMap() (map[string]interface{}, error)

type UpdateTimeflowParameters added in v1.6.0

type UpdateTimeflowParameters struct {
	// The name of the timeflow.
	Name *string `json:"name,omitempty"`
}

UpdateTimeflowParameters Parameters to update a Timeflow.

func NewUpdateTimeflowParameters added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateTimeflowParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateTimeflowParameters) GetNameOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateTimeflowParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateTimeflowParameters) MarshalJSON added in v1.6.0

func (o UpdateTimeflowParameters) MarshalJSON() ([]byte, error)

func (*UpdateTimeflowParameters) SetName added in v1.6.0

func (o *UpdateTimeflowParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateTimeflowParameters) ToMap added in v1.6.0

func (o UpdateTimeflowParameters) ToMap() (map[string]interface{}, error)

type UpdateTimeflowResponse added in v1.6.0

type UpdateTimeflowResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateTimeflowResponse struct for UpdateTimeflowResponse

func NewUpdateTimeflowResponse added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateTimeflowResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateTimeflowResponse) GetJobOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateTimeflowResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateTimeflowResponse) MarshalJSON added in v1.6.0

func (o UpdateTimeflowResponse) MarshalJSON() ([]byte, error)

func (*UpdateTimeflowResponse) SetJob added in v1.6.0

func (o *UpdateTimeflowResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateTimeflowResponse) ToMap added in v1.6.0

func (o UpdateTimeflowResponse) ToMap() (map[string]interface{}, error)

type UpdateVDBGroupParameters added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBGroupParameters) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateVDBGroupParameters) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBGroupParameters) GetVdbIds() []string

GetVdbIds returns the VdbIds field value if set, zero value otherwise.

func (*UpdateVDBGroupParameters) GetVdbIdsOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBGroupParameters) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateVDBGroupParameters) HasVdbIds added in v1.2.0

func (o *UpdateVDBGroupParameters) HasVdbIds() bool

HasVdbIds returns a boolean if a field has been set.

func (UpdateVDBGroupParameters) MarshalJSON added in v1.2.0

func (o UpdateVDBGroupParameters) MarshalJSON() ([]byte, error)

func (*UpdateVDBGroupParameters) SetName added in v1.2.0

func (o *UpdateVDBGroupParameters) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateVDBGroupParameters) SetVdbIds added in v1.2.0

func (o *UpdateVDBGroupParameters) SetVdbIds(v []string)

SetVdbIds gets a reference to the given []string and assigns it to the VdbIds field.

func (UpdateVDBGroupParameters) ToMap added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetAppdataSourceParams() map[string]interface{}

GetAppdataSourceParams returns the AppdataSourceParams field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetAppdataSourceParamsOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetCdbTdeKeystorePassword() string

GetCdbTdeKeystorePassword returns the CdbTdeKeystorePassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCdbTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetCustomEnvFiles() []string

GetCustomEnvFiles returns the CustomEnvFiles field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetCustomEnvVars() map[string]string

GetCustomEnvVars returns the CustomEnvVars field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetCustomEnvVarsOk added in v1.6.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetDbPassword() string

GetDbPassword returns the DbPassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetDbPasswordOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetDbUsername() string

GetDbUsername returns the DbUsername field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetDbUsernameOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetEnvironmentUserId() string

GetEnvironmentUserId returns the EnvironmentUserId field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetEnvironmentUserIdOk added in v1.2.0

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 added in v1.2.0

GetHooks returns the Hooks field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetHooksOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetListenerIds() []string

GetListenerIds returns the ListenerIds field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetListenerIdsOk added in v1.2.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetMountPointOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetOracleRacCustomEnvFiles() []OracleRacCustomEnvFile

GetOracleRacCustomEnvFiles returns the OracleRacCustomEnvFiles field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetOracleRacCustomEnvFilesOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetOracleRacCustomEnvVars() []OracleRacCustomEnvVar

GetOracleRacCustomEnvVars returns the OracleRacCustomEnvVars field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetOracleRacCustomEnvVarsOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetParentTdeKeystorePassword() string

GetParentTdeKeystorePassword returns the ParentTdeKeystorePassword field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetParentTdeKeystorePasswordOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetParentTdeKeystorePath() string

GetParentTdeKeystorePath returns the ParentTdeKeystorePath field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetParentTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetTargetVcdbTdeKeystorePath() string

GetTargetVcdbTdeKeystorePath returns the TargetVcdbTdeKeystorePath field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTargetVcdbTdeKeystorePathOk added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) GetTdeKeyIdentifier() string

GetTdeKeyIdentifier returns the TdeKeyIdentifier field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTdeKeyIdentifierOk added in v1.6.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetTemplateIdOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBParameters) GetValidateDbCredentials() bool

GetValidateDbCredentials returns the ValidateDbCredentials field value if set, zero value otherwise.

func (*UpdateVDBParameters) GetValidateDbCredentialsOk added in v1.2.0

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 added in v1.6.0

func (o *UpdateVDBParameters) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasAppdataConfigParams added in v1.6.0

func (o *UpdateVDBParameters) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasAppdataSourceParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) HasConfigParams() bool

HasConfigParams returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCustomEnvFiles added in v1.6.0

func (o *UpdateVDBParameters) HasCustomEnvFiles() bool

HasCustomEnvFiles returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasCustomEnvVars added in v1.6.0

func (o *UpdateVDBParameters) HasCustomEnvVars() bool

HasCustomEnvVars returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasDbPassword added in v1.2.0

func (o *UpdateVDBParameters) HasDbPassword() bool

HasDbPassword returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasDbUsername added in v1.2.0

func (o *UpdateVDBParameters) HasDbUsername() bool

HasDbUsername returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasEnvironmentUserId added in v1.2.0

func (o *UpdateVDBParameters) HasEnvironmentUserId() bool

HasEnvironmentUserId returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasHooks added in v1.2.0

func (o *UpdateVDBParameters) HasHooks() bool

HasHooks returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasListenerIds added in v1.2.0

func (o *UpdateVDBParameters) HasListenerIds() bool

HasListenerIds returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasMountPoint added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) HasOracleRacCustomEnvFiles() bool

HasOracleRacCustomEnvFiles returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasOracleRacCustomEnvVars added in v1.6.0

func (o *UpdateVDBParameters) HasOracleRacCustomEnvVars() bool

HasOracleRacCustomEnvVars returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasParentTdeKeystorePassword added in v1.6.0

func (o *UpdateVDBParameters) HasParentTdeKeystorePassword() bool

HasParentTdeKeystorePassword returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasParentTdeKeystorePath added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) HasTargetVcdbTdeKeystorePath() bool

HasTargetVcdbTdeKeystorePath returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasTdeKeyIdentifier added in v1.6.0

func (o *UpdateVDBParameters) HasTdeKeyIdentifier() bool

HasTdeKeyIdentifier returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasTemplateId added in v1.2.0

func (o *UpdateVDBParameters) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*UpdateVDBParameters) HasValidateDbCredentials added in v1.2.0

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 added in v1.6.0

func (o *UpdateVDBParameters) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*UpdateVDBParameters) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) SetCustomEnvFiles(v []string)

SetCustomEnvFiles gets a reference to the given []string and assigns it to the CustomEnvFiles field.

func (*UpdateVDBParameters) SetCustomEnvVars added in v1.6.0

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 added in v1.2.0

func (o *UpdateVDBParameters) SetDbPassword(v string)

SetDbPassword gets a reference to the given string and assigns it to the DbPassword field.

func (*UpdateVDBParameters) SetDbUsername added in v1.2.0

func (o *UpdateVDBParameters) SetDbUsername(v string)

SetDbUsername gets a reference to the given string and assigns it to the DbUsername field.

func (*UpdateVDBParameters) SetEnvironmentUserId added in v1.2.0

func (o *UpdateVDBParameters) SetEnvironmentUserId(v string)

SetEnvironmentUserId gets a reference to the given string and assigns it to the EnvironmentUserId field.

func (*UpdateVDBParameters) SetHooks added in v1.2.0

SetHooks gets a reference to the given VirtualDatasetHooks and assigns it to the Hooks field.

func (*UpdateVDBParameters) SetListenerIds added in v1.2.0

func (o *UpdateVDBParameters) SetListenerIds(v []string)

SetListenerIds gets a reference to the given []string and assigns it to the ListenerIds field.

func (*UpdateVDBParameters) SetMountPoint added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) SetOracleRacCustomEnvFiles(v []OracleRacCustomEnvFile)

SetOracleRacCustomEnvFiles gets a reference to the given []OracleRacCustomEnvFile and assigns it to the OracleRacCustomEnvFiles field.

func (*UpdateVDBParameters) SetOracleRacCustomEnvVars added in v1.6.0

func (o *UpdateVDBParameters) SetOracleRacCustomEnvVars(v []OracleRacCustomEnvVar)

SetOracleRacCustomEnvVars gets a reference to the given []OracleRacCustomEnvVar and assigns it to the OracleRacCustomEnvVars field.

func (*UpdateVDBParameters) SetParentTdeKeystorePassword added in v1.6.0

func (o *UpdateVDBParameters) SetParentTdeKeystorePassword(v string)

SetParentTdeKeystorePassword gets a reference to the given string and assigns it to the ParentTdeKeystorePassword field.

func (*UpdateVDBParameters) SetParentTdeKeystorePath added in v1.6.0

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 added in v1.6.0

func (o *UpdateVDBParameters) SetTargetVcdbTdeKeystorePath(v string)

SetTargetVcdbTdeKeystorePath gets a reference to the given string and assigns it to the TargetVcdbTdeKeystorePath field.

func (*UpdateVDBParameters) SetTdeKeyIdentifier added in v1.6.0

func (o *UpdateVDBParameters) SetTdeKeyIdentifier(v string)

SetTdeKeyIdentifier gets a reference to the given string and assigns it to the TdeKeyIdentifier field.

func (*UpdateVDBParameters) SetTemplateId added in v1.2.0

func (o *UpdateVDBParameters) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*UpdateVDBParameters) SetValidateDbCredentials added in v1.2.0

func (o *UpdateVDBParameters) SetValidateDbCredentials(v bool)

SetValidateDbCredentials gets a reference to the given bool and assigns it to the ValidateDbCredentials field.

func (UpdateVDBParameters) ToMap added in v1.6.0

func (o UpdateVDBParameters) ToMap() (map[string]interface{}, error)

type UpdateVDBResponse added in v1.2.0

type UpdateVDBResponse struct {
	Job *Job `json:"job,omitempty"`
}

UpdateVDBResponse struct for UpdateVDBResponse

func NewUpdateVDBResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBResponse) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*UpdateVDBResponse) GetJobOk added in v1.2.0

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 added in v1.2.0

func (o *UpdateVDBResponse) HasJob() bool

HasJob returns a boolean if a field has been set.

func (UpdateVDBResponse) MarshalJSON added in v1.2.0

func (o UpdateVDBResponse) MarshalJSON() ([]byte, error)

func (*UpdateVDBResponse) SetJob added in v1.2.0

func (o *UpdateVDBResponse) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (UpdateVDBResponse) ToMap added in v1.6.0

func (o UpdateVDBResponse) ToMap() (map[string]interface{}, error)

type VCDB added in v1.6.0

type VCDB struct {
	// The vCDB object entity ID.
	Id *string `json:"id,omitempty"`
	// The name of this vCDB.
	Name NullableString `json:"name,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"`
	Tags    []Tag `json:"tags,omitempty"`
}

VCDB The Delphix Oracle Virtual Container Database.

func NewVCDB added in v1.6.0

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 added in v1.6.0

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) GetCreationDate added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VCDB) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*VCDB) GetEnabledOk added in v1.6.0

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 added in v1.6.0

func (o *VCDB) GetEngineId() string

GetEngineId returns the EngineId field value if set, zero value otherwise.

func (*VCDB) GetEngineIdOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VCDB) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VCDB) GetIdOk added in v1.6.0

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) GetName added in v1.6.0

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 added in v1.6.0

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) GetParentId added in v1.6.0

func (o *VCDB) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*VCDB) GetParentIdOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VCDB) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*VCDB) GetTagsOk added in v1.6.0

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) HasCreationDate added in v1.6.0

func (o *VCDB) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*VCDB) HasDatabaseVersion added in v1.6.0

func (o *VCDB) HasDatabaseVersion() bool

HasDatabaseVersion returns a boolean if a field has been set.

func (*VCDB) HasEnabled added in v1.6.0

func (o *VCDB) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*VCDB) HasEngineId added in v1.6.0

func (o *VCDB) HasEngineId() bool

HasEngineId returns a boolean if a field has been set.

func (*VCDB) HasEnvironmentId added in v1.6.0

func (o *VCDB) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

func (*VCDB) HasGroupName added in v1.6.0

func (o *VCDB) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*VCDB) HasId added in v1.6.0

func (o *VCDB) HasId() bool

HasId returns a boolean if a field has been set.

func (*VCDB) HasName added in v1.6.0

func (o *VCDB) HasName() bool

HasName returns a boolean if a field has been set.

func (*VCDB) HasParentId added in v1.6.0

func (o *VCDB) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*VCDB) HasSize added in v1.6.0

func (o *VCDB) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*VCDB) HasStatus added in v1.6.0

func (o *VCDB) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VCDB) HasTags added in v1.6.0

func (o *VCDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (VCDB) MarshalJSON added in v1.6.0

func (o VCDB) MarshalJSON() ([]byte, error)

func (*VCDB) SetCreationDate added in v1.6.0

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 added in v1.6.0

func (o *VCDB) SetCreationDateNil()

SetCreationDateNil sets the value for CreationDate to be an explicit nil

func (*VCDB) SetDatabaseVersion added in v1.6.0

func (o *VCDB) SetDatabaseVersion(v string)

SetDatabaseVersion gets a reference to the given NullableString and assigns it to the DatabaseVersion field.

func (*VCDB) SetDatabaseVersionNil added in v1.6.0

func (o *VCDB) SetDatabaseVersionNil()

SetDatabaseVersionNil sets the value for DatabaseVersion to be an explicit nil

func (*VCDB) SetEnabled added in v1.6.0

func (o *VCDB) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*VCDB) SetEngineId added in v1.6.0

func (o *VCDB) SetEngineId(v string)

SetEngineId gets a reference to the given string and assigns it to the EngineId field.

func (*VCDB) SetEnvironmentId added in v1.6.0

func (o *VCDB) SetEnvironmentId(v string)

SetEnvironmentId gets a reference to the given NullableString and assigns it to the EnvironmentId field.

func (*VCDB) SetEnvironmentIdNil added in v1.6.0

func (o *VCDB) SetEnvironmentIdNil()

SetEnvironmentIdNil sets the value for EnvironmentId to be an explicit nil

func (*VCDB) SetGroupName added in v1.6.0

func (o *VCDB) SetGroupName(v string)

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*VCDB) SetGroupNameNil added in v1.6.0

func (o *VCDB) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*VCDB) SetId added in v1.6.0

func (o *VCDB) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VCDB) SetName added in v1.6.0

func (o *VCDB) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*VCDB) SetNameNil added in v1.6.0

func (o *VCDB) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*VCDB) SetParentId added in v1.6.0

func (o *VCDB) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*VCDB) SetSize added in v1.6.0

func (o *VCDB) SetSize(v int64)

SetSize gets a reference to the given NullableInt64 and assigns it to the Size field.

func (*VCDB) SetSizeNil added in v1.6.0

func (o *VCDB) SetSizeNil()

SetSizeNil sets the value for Size to be an explicit nil

func (*VCDB) SetStatus added in v1.6.0

func (o *VCDB) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*VCDB) SetStatusNil added in v1.6.0

func (o *VCDB) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*VCDB) SetTags added in v1.6.0

func (o *VCDB) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (VCDB) ToMap added in v1.6.0

func (o VCDB) ToMap() (map[string]interface{}, error)

func (*VCDB) UnsetCreationDate added in v1.6.0

func (o *VCDB) UnsetCreationDate()

UnsetCreationDate ensures that no value is present for CreationDate, not even an explicit nil

func (*VCDB) UnsetDatabaseVersion added in v1.6.0

func (o *VCDB) UnsetDatabaseVersion()

UnsetDatabaseVersion ensures that no value is present for DatabaseVersion, not even an explicit nil

func (*VCDB) UnsetEnvironmentId added in v1.6.0

func (o *VCDB) UnsetEnvironmentId()

UnsetEnvironmentId ensures that no value is present for EnvironmentId, not even an explicit nil

func (*VCDB) UnsetGroupName added in v1.6.0

func (o *VCDB) UnsetGroupName()

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*VCDB) UnsetName added in v1.6.0

func (o *VCDB) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*VCDB) UnsetSize added in v1.6.0

func (o *VCDB) UnsetSize()

UnsetSize ensures that no value is present for Size, not even an explicit nil

func (*VCDB) UnsetStatus added in v1.6.0

func (o *VCDB) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type VCDBsApiService added in v1.6.0

type VCDBsApiService service

VCDBsApiService VCDBsApi service

func (*VCDBsApiService) CreateVcdbTags added in v1.6.0

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 added in v1.6.0

func (a *VCDBsApiService) CreateVcdbTagsExecute(r ApiCreateVcdbTagsRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VCDBsApiService) DeleteVcdbTags added in v1.6.0

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 added in v1.6.0

func (a *VCDBsApiService) DeleteVcdbTagsExecute(r ApiDeleteVcdbTagsRequest) (*http.Response, error)

Execute executes the request

func (*VCDBsApiService) GetTagsVcdb added in v1.6.0

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 added in v1.6.0

func (a *VCDBsApiService) GetTagsVcdbExecute(r ApiGetTagsVcdbRequest) (*TagsResponse, *http.Response, error)

Execute executes the request

@return TagsResponse

func (*VCDBsApiService) GetVcdbById added in v1.6.0

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 added in v1.6.0

func (a *VCDBsApiService) GetVcdbByIdExecute(r ApiGetVcdbByIdRequest) (*VCDB, *http.Response, error)

Execute executes the request

@return VCDB

func (*VCDBsApiService) GetVcdbs added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListVCDBsResponse

func (*VCDBsApiService) SearchVcdbs added in v1.6.0

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 added in v1.6.0

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 database version of this VDB.
	DatabaseVersion NullableString `json:"database_version,omitempty"`
	// The total size of this VDB, in bytes.
	Size NullableInt64 `json:"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 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"`
}

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) 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 added in v1.6.0

func (o *VDB) GetCurrentTimeflowId() string

GetCurrentTimeflowId returns the CurrentTimeflowId field value if set, zero value otherwise.

func (*VDB) GetCurrentTimeflowIdOk added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

func (o *VDB) GetHooks() VirtualDatasetHooks

GetHooks returns the Hooks field value if set, zero value otherwise.

func (*VDB) GetHooksOk added in v1.2.0

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) GetMasked added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VDB) GetMountPoint() string

GetMountPoint returns the MountPoint field value if set, zero value otherwise.

func (*VDB) GetMountPointOk added in v1.6.0

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) GetParentDsourceId added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) GetPreviousTimeflowId added in v1.6.0

func (o *VDB) GetPreviousTimeflowId() string

GetPreviousTimeflowId returns the PreviousTimeflowId field value if set, zero value otherwise.

func (*VDB) GetPreviousTimeflowIdOk added in v1.6.0

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) 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 added in v1.6.0

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 added in v1.6.0

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) HasAdditionalMountPoints added in v1.6.0

func (o *VDB) HasAdditionalMountPoints() bool

HasAdditionalMountPoints returns a boolean if a field has been set.

func (*VDB) HasAppdataConfigParams added in v1.6.0

func (o *VDB) HasAppdataConfigParams() bool

HasAppdataConfigParams returns a boolean if a field has been set.

func (*VDB) HasAppdataSourceParams added in v1.6.0

func (o *VDB) HasAppdataSourceParams() bool

HasAppdataSourceParams returns a boolean if a field has been set.

func (*VDB) HasCdbId added in v1.6.0

func (o *VDB) HasCdbId() bool

HasCdbId returns a boolean if a field has been set.

func (*VDB) HasConfigParams added in v1.6.0

func (o *VDB) HasConfigParams() bool

HasConfigParams 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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) HasMasked added in v1.6.0

func (o *VDB) HasMasked() bool

HasMasked returns a boolean if a field has been set.

func (*VDB) HasMountPoint added in v1.6.0

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) HasParentDsourceId added in v1.6.0

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 added in v1.6.0

func (o *VDB) HasParentTimeflowTimestamp() bool

HasParentTimeflowTimestamp returns a boolean if a field has been set.

func (*VDB) HasParentTimeflowTimezone added in v1.6.0

func (o *VDB) HasParentTimeflowTimezone() bool

HasParentTimeflowTimezone returns a boolean if a field has been set.

func (*VDB) HasPreviousTimeflowId added in v1.6.0

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) HasTags

func (o *VDB) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*VDB) HasTemplateId added in v1.6.0

func (o *VDB) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (VDB) MarshalJSON

func (o VDB) MarshalJSON() ([]byte, error)

func (*VDB) SetAdditionalMountPoints added in v1.6.0

func (o *VDB) SetAdditionalMountPoints(v []AdditionalMountPoint)

SetAdditionalMountPoints gets a reference to the given []AdditionalMountPoint and assigns it to the AdditionalMountPoints field.

func (*VDB) SetAppdataConfigParams added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VDB) SetCdbId(v string)

SetCdbId gets a reference to the given NullableString and assigns it to the CdbId field.

func (*VDB) SetCdbIdNil added in v1.6.0

func (o *VDB) SetCdbIdNil()

SetCdbIdNil sets the value for CdbId to be an explicit nil

func (*VDB) SetConfigParams added in v1.6.0

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) 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 added in v1.6.0

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 added in v1.6.0

func (o *VDB) SetEngineName(v string)

SetEngineName gets a reference to the given NullableString and assigns it to the EngineName field.

func (*VDB) SetEngineNameNil added in v1.6.0

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 added in v1.2.0

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) SetMasked added in v1.6.0

func (o *VDB) SetMasked(v bool)

SetMasked gets a reference to the given NullableBool and assigns it to the Masked field.

func (*VDB) SetMaskedNil added in v1.6.0

func (o *VDB) SetMaskedNil()

SetMaskedNil sets the value for Masked to be an explicit nil

func (*VDB) SetMountPoint added in v1.6.0

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) SetParentDsourceId added in v1.6.0

func (o *VDB) SetParentDsourceId(v string)

SetParentDsourceId gets a reference to the given NullableString and assigns it to the ParentDsourceId field.

func (*VDB) SetParentDsourceIdNil added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VDB) SetParentTimeflowTimestampNil()

SetParentTimeflowTimestampNil sets the value for ParentTimeflowTimestamp to be an explicit nil

func (*VDB) SetParentTimeflowTimezone added in v1.6.0

func (o *VDB) SetParentTimeflowTimezone(v string)

SetParentTimeflowTimezone gets a reference to the given NullableString and assigns it to the ParentTimeflowTimezone field.

func (*VDB) SetParentTimeflowTimezoneNil added in v1.6.0

func (o *VDB) SetParentTimeflowTimezoneNil()

SetParentTimeflowTimezoneNil sets the value for ParentTimeflowTimezone to be an explicit nil

func (*VDB) SetPreviousTimeflowId added in v1.6.0

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) 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 added in v1.6.0

func (o *VDB) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*VDB) SetTemplateIdNil added in v1.6.0

func (o *VDB) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (VDB) ToMap added in v1.6.0

func (o VDB) ToMap() (map[string]interface{}, error)

func (*VDB) UnsetCdbId added in v1.6.0

func (o *VDB) UnsetCdbId()

UnsetCdbId ensures that no value is present for CdbId, 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 added in v1.6.0

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) UnsetMasked added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VDB) UnsetParentTimeflowTimestamp()

UnsetParentTimeflowTimestamp ensures that no value is present for ParentTimeflowTimestamp, not even an explicit nil

func (*VDB) UnsetParentTimeflowTimezone added in v1.6.0

func (o *VDB) UnsetParentTimeflowTimezone()

UnsetParentTimeflowTimezone ensures that no value is present for ParentTimeflowTimezone, 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) UnsetTemplateId added in v1.6.0

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"`
	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) 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 added in v1.6.0

func (o *VDBGroup) GetTags() []Tag

GetTags returns the Tags field value if set, zero value otherwise.

func (*VDBGroup) GetTagsOk added in v1.6.0

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) HasTags added in v1.6.0

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) SetName

func (o *VDBGroup) SetName(v string)

SetName sets field value

func (*VDBGroup) SetTags added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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) ProvisionVdbGroupFromBookmark added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return ProvisionVDBGroupFromBookmarkResponse

func (*VDBGroupsApiService) RefreshVdbGroup added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return RefreshVDBGroupResponse

func (*VDBGroupsApiService) RollbackVdbGroup added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return RollbackVDBGroupResponse

func (*VDBGroupsApiService) SearchVdbGroups added in v1.2.0

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 added in v1.2.0

Execute executes the request

@return SearchVDBGroupResponse

func (*VDBGroupsApiService) UpdateVdbGroupById added in v1.2.0

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 added in v1.2.0

func (a *VDBGroupsApiService) UpdateVdbGroupByIdExecute(r ApiUpdateVdbGroupByIdRequest) (*VDBGroup, *http.Response, error)

Execute executes the request

@return VDBGroup

type VDBInventoryData added in v1.2.0

type VDBInventoryData struct {
	EngineName              *string    `json:"engine_name,omitempty"`
	Name                    *string    `json:"name,omitempty"`
	Type                    *string    `json:"type,omitempty"`
	Version                 *string    `json:"version,omitempty"`
	ParentName              *string    `json:"parent_name,omitempty"`
	ParentId                *string    `json:"parent_id,omitempty"`
	CreationDate            *time.Time `json:"creation_date,omitempty"`
	ParentTimeflowLocation  *string    `json:"parent_timeflow_location,omitempty"`
	ParentTimeflowTimestamp *time.Time `json:"parent_timeflow_timestamp,omitempty"`
	ParentTimeflowTimezone  *string    `json:"parent_timeflow_timezone,omitempty"`
	Enabled                 *bool      `json:"enabled,omitempty"`
	Status                  *string    `json:"status,omitempty"`
}

VDBInventoryData struct for VDBInventoryData

func NewVDBInventoryData added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*VDBInventoryData) GetCreationDateOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*VDBInventoryData) GetEnabledOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetEngineName() string

GetEngineName returns the EngineName field value if set, zero value otherwise.

func (*VDBInventoryData) GetEngineNameOk added in v1.2.0

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) GetName added in v1.2.0

func (o *VDBInventoryData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VDBInventoryData) GetNameOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentIdOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetParentName() string

GetParentName returns the ParentName field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentNameOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetParentTimeflowLocation() string

GetParentTimeflowLocation returns the ParentTimeflowLocation field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowLocationOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetParentTimeflowTimestamp() time.Time

GetParentTimeflowTimestamp returns the ParentTimeflowTimestamp field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowTimestampOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetParentTimeflowTimezone() string

GetParentTimeflowTimezone returns the ParentTimeflowTimezone field value if set, zero value otherwise.

func (*VDBInventoryData) GetParentTimeflowTimezoneOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*VDBInventoryData) GetStatusOk added in v1.2.0

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) GetType added in v1.2.0

func (o *VDBInventoryData) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*VDBInventoryData) GetTypeOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VDBInventoryData) GetVersionOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*VDBInventoryData) HasEnabled added in v1.2.0

func (o *VDBInventoryData) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*VDBInventoryData) HasEngineName added in v1.2.0

func (o *VDBInventoryData) HasEngineName() bool

HasEngineName returns a boolean if a field has been set.

func (*VDBInventoryData) HasName added in v1.2.0

func (o *VDBInventoryData) HasName() bool

HasName returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentId added in v1.2.0

func (o *VDBInventoryData) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentName added in v1.2.0

func (o *VDBInventoryData) HasParentName() bool

HasParentName returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowLocation added in v1.2.0

func (o *VDBInventoryData) HasParentTimeflowLocation() bool

HasParentTimeflowLocation returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowTimestamp added in v1.2.0

func (o *VDBInventoryData) HasParentTimeflowTimestamp() bool

HasParentTimeflowTimestamp returns a boolean if a field has been set.

func (*VDBInventoryData) HasParentTimeflowTimezone added in v1.2.0

func (o *VDBInventoryData) HasParentTimeflowTimezone() bool

HasParentTimeflowTimezone returns a boolean if a field has been set.

func (*VDBInventoryData) HasStatus added in v1.2.0

func (o *VDBInventoryData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VDBInventoryData) HasType added in v1.2.0

func (o *VDBInventoryData) HasType() bool

HasType returns a boolean if a field has been set.

func (*VDBInventoryData) HasVersion added in v1.2.0

func (o *VDBInventoryData) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VDBInventoryData) MarshalJSON added in v1.2.0

func (o VDBInventoryData) MarshalJSON() ([]byte, error)

func (*VDBInventoryData) SetCreationDate added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*VDBInventoryData) SetEngineName added in v1.2.0

func (o *VDBInventoryData) SetEngineName(v string)

SetEngineName gets a reference to the given string and assigns it to the EngineName field.

func (*VDBInventoryData) SetName added in v1.2.0

func (o *VDBInventoryData) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VDBInventoryData) SetParentId added in v1.2.0

func (o *VDBInventoryData) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*VDBInventoryData) SetParentName added in v1.2.0

func (o *VDBInventoryData) SetParentName(v string)

SetParentName gets a reference to the given string and assigns it to the ParentName field.

func (*VDBInventoryData) SetParentTimeflowLocation added in v1.2.0

func (o *VDBInventoryData) SetParentTimeflowLocation(v string)

SetParentTimeflowLocation gets a reference to the given string and assigns it to the ParentTimeflowLocation field.

func (*VDBInventoryData) SetParentTimeflowTimestamp added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryData) SetParentTimeflowTimezone(v string)

SetParentTimeflowTimezone gets a reference to the given string and assigns it to the ParentTimeflowTimezone field.

func (*VDBInventoryData) SetStatus added in v1.2.0

func (o *VDBInventoryData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*VDBInventoryData) SetType added in v1.2.0

func (o *VDBInventoryData) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*VDBInventoryData) SetVersion added in v1.2.0

func (o *VDBInventoryData) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (VDBInventoryData) ToMap added in v1.6.0

func (o VDBInventoryData) ToMap() (map[string]interface{}, error)

type VDBInventoryReportResponse added in v1.2.0

type VDBInventoryReportResponse struct {
	Items            []VDBInventoryData         `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata `json:"response_metadata,omitempty"`
}

VDBInventoryReportResponse struct for VDBInventoryReportResponse

func NewVDBInventoryReportResponse added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*VDBInventoryReportResponse) GetItemsOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryReportResponse) GetResponseMetadata() PaginatedResponseMetadata

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*VDBInventoryReportResponse) GetResponseMetadataOk added in v1.2.0

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 added in v1.2.0

func (o *VDBInventoryReportResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*VDBInventoryReportResponse) HasResponseMetadata added in v1.2.0

func (o *VDBInventoryReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (VDBInventoryReportResponse) MarshalJSON added in v1.2.0

func (o VDBInventoryReportResponse) MarshalJSON() ([]byte, error)

func (*VDBInventoryReportResponse) SetItems added in v1.2.0

SetItems gets a reference to the given []VDBInventoryData and assigns it to the Items field.

func (*VDBInventoryReportResponse) SetResponseMetadata added in v1.2.0

func (o *VDBInventoryReportResponse) SetResponseMetadata(v PaginatedResponseMetadata)

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (VDBInventoryReportResponse) ToMap added in v1.6.0

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) 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 added in v1.2.0

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 added in v1.2.0

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) 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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ProvisionVDBFromBookmarkParameters

func (*VDBsApiService) ProvisionVdbFromBookmarkExecute added in v1.2.0

func (a *VDBsApiService) ProvisionVdbFromBookmarkExecute(r ApiProvisionVdbFromBookmarkRequest) (*ProvisionVDBResponse, *http.Response, error)

Execute executes the request

@return ProvisionVDBResponse

func (*VDBsApiService) RefreshVdbByLocation added in v1.6.0

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 added in v1.6.0

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 added in v1.2.0

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 added in v1.2.0

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

func (*VDBsApiService) RollbackVdbBySnapshotExecute

Execute executes the request

@return RollbackVDBBySnapshotResponse

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

func (*VDBsApiService) RollbackVdbByTimestampExecute

Execute executes the request

@return RollbackVDBByTimestampResponse

func (*VDBsApiService) RollbackVdbFromBookmark added in v1.2.0

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

func (*VDBsApiService) RollbackVdbFromBookmarkExecute added in v1.2.0

Execute executes the request

@return RollbackVDBFromBookmarkResponse

func (*VDBsApiService) SearchVdbs added in v1.1.0

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 added in v1.1.0

Execute executes the request

@return SearchVDBsResponse

func (*VDBsApiService) SnapshotVdb added in v1.2.0

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 added in v1.2.0

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 added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SwitchTimeflowResponse

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 VirtualDatasetHooks added in v1.2.0

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 rewinding the VDB.
	PreRollback []Hook `json:"pre_rollback,omitempty"`
	// The commands to execute on the target environment after rewinding the VDB.
	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 added in v1.2.0

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 added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetConfigureClone() []Hook

GetConfigureClone returns the ConfigureClone field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetConfigureCloneOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPostRefresh() []Hook

GetPostRefresh returns the PostRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostRefreshOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPostRollback() []Hook

GetPostRollback returns the PostRollback field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostRollbackOk added in v1.2.0

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.

func (*VirtualDatasetHooks) GetPostSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) GetPostSnapshot() []Hook

GetPostSnapshot returns the PostSnapshot field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostSnapshotOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPostStart() []Hook

GetPostStart returns the PostStart field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostStartOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPostStop() []Hook

GetPostStop returns the PostStop field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPostStopOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPreRefresh() []Hook

GetPreRefresh returns the PreRefresh field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreRefreshOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPreRollback() []Hook

GetPreRollback returns the PreRollback field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreRollbackOk added in v1.2.0

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.

func (*VirtualDatasetHooks) GetPreSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) GetPreSnapshot() []Hook

GetPreSnapshot returns the PreSnapshot field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreSnapshotOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPreStart() []Hook

GetPreStart returns the PreStart field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreStartOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) GetPreStop() []Hook

GetPreStop returns the PreStop field value if set, zero value otherwise.

func (*VirtualDatasetHooks) GetPreStopOk added in v1.2.0

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 added in v1.2.0

func (o *VirtualDatasetHooks) HasConfigureClone() bool

HasConfigureClone returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostRefresh added in v1.2.0

func (o *VirtualDatasetHooks) HasPostRefresh() bool

HasPostRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostRollback added in v1.2.0

func (o *VirtualDatasetHooks) HasPostRollback() bool

HasPostRollback returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) HasPostSnapshot() bool

HasPostSnapshot returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostStart added in v1.2.0

func (o *VirtualDatasetHooks) HasPostStart() bool

HasPostStart returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPostStop added in v1.2.0

func (o *VirtualDatasetHooks) HasPostStop() bool

HasPostStop returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreRefresh added in v1.2.0

func (o *VirtualDatasetHooks) HasPreRefresh() bool

HasPreRefresh returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreRollback added in v1.2.0

func (o *VirtualDatasetHooks) HasPreRollback() bool

HasPreRollback returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) HasPreSnapshot() bool

HasPreSnapshot returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreStart added in v1.2.0

func (o *VirtualDatasetHooks) HasPreStart() bool

HasPreStart returns a boolean if a field has been set.

func (*VirtualDatasetHooks) HasPreStop added in v1.2.0

func (o *VirtualDatasetHooks) HasPreStop() bool

HasPreStop returns a boolean if a field has been set.

func (VirtualDatasetHooks) MarshalJSON added in v1.2.0

func (o VirtualDatasetHooks) MarshalJSON() ([]byte, error)

func (*VirtualDatasetHooks) SetConfigureClone added in v1.2.0

func (o *VirtualDatasetHooks) SetConfigureClone(v []Hook)

SetConfigureClone gets a reference to the given []Hook and assigns it to the ConfigureClone field.

func (*VirtualDatasetHooks) SetPostRefresh added in v1.2.0

func (o *VirtualDatasetHooks) SetPostRefresh(v []Hook)

SetPostRefresh gets a reference to the given []Hook and assigns it to the PostRefresh field.

func (*VirtualDatasetHooks) SetPostRollback added in v1.2.0

func (o *VirtualDatasetHooks) SetPostRollback(v []Hook)

SetPostRollback gets a reference to the given []Hook and assigns it to the PostRollback field.

func (*VirtualDatasetHooks) SetPostSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) SetPostSnapshot(v []Hook)

SetPostSnapshot gets a reference to the given []Hook and assigns it to the PostSnapshot field.

func (*VirtualDatasetHooks) SetPostStart added in v1.2.0

func (o *VirtualDatasetHooks) SetPostStart(v []Hook)

SetPostStart gets a reference to the given []Hook and assigns it to the PostStart field.

func (*VirtualDatasetHooks) SetPostStop added in v1.2.0

func (o *VirtualDatasetHooks) SetPostStop(v []Hook)

SetPostStop gets a reference to the given []Hook and assigns it to the PostStop field.

func (*VirtualDatasetHooks) SetPreRefresh added in v1.2.0

func (o *VirtualDatasetHooks) SetPreRefresh(v []Hook)

SetPreRefresh gets a reference to the given []Hook and assigns it to the PreRefresh field.

func (*VirtualDatasetHooks) SetPreRollback added in v1.2.0

func (o *VirtualDatasetHooks) SetPreRollback(v []Hook)

SetPreRollback gets a reference to the given []Hook and assigns it to the PreRollback field.

func (*VirtualDatasetHooks) SetPreSnapshot added in v1.2.0

func (o *VirtualDatasetHooks) SetPreSnapshot(v []Hook)

SetPreSnapshot gets a reference to the given []Hook and assigns it to the PreSnapshot field.

func (*VirtualDatasetHooks) SetPreStart added in v1.2.0

func (o *VirtualDatasetHooks) SetPreStart(v []Hook)

SetPreStart gets a reference to the given []Hook and assigns it to the PreStart field.

func (*VirtualDatasetHooks) SetPreStop added in v1.2.0

func (o *VirtualDatasetHooks) SetPreStop(v []Hook)

SetPreStop gets a reference to the given []Hook and assigns it to the PreStop field.

func (VirtualDatasetHooks) ToMap added in v1.6.0

func (o VirtualDatasetHooks) ToMap() (map[string]interface{}, error)

type VirtualizationPoliciesApiService added in v1.6.0

type VirtualizationPoliciesApiService service

VirtualizationPoliciesApiService VirtualizationPoliciesApi service

func (*VirtualizationPoliciesApiService) GetVirtualizationPolicyById added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return VirtualizationPolicy

func (*VirtualizationPoliciesApiService) ListVirtualizationPolicies added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return ListVirtualizationPoliciesResponse

func (*VirtualizationPoliciesApiService) SearchVirtualizationPolicies added in v1.6.0

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 added in v1.6.0

Execute executes the request

@return SearchVirtualizationPoliciesResponse

type VirtualizationPolicy added in v1.6.0

type VirtualizationPolicy struct {
	Id         string                   `json:"id"`
	Name       string                   `json:"name"`
	Namespace  *string                  `json:"namespace,omitempty"`
	EngineId   string                   `json:"engine_id"`
	PolicyType string                   `json:"policy_type"`
	TimezoneId string                   `json:"timezone_id"`
	Schedules  []VirtualizationSchedule `json:"schedules"`
}

VirtualizationPolicy struct for VirtualizationPolicy

func NewVirtualizationPolicy added in v1.6.0

func NewVirtualizationPolicy(id string, name string, engineId string, policyType string, timezoneId string, schedules []VirtualizationSchedule) *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 added in v1.6.0

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 added in v1.6.0

func (o *VirtualizationPolicy) GetEngineId() string

GetEngineId returns the EngineId field value

func (*VirtualizationPolicy) GetEngineIdOk added in v1.6.0

func (o *VirtualizationPolicy) GetEngineIdOk() (*string, bool)

GetEngineIdOk returns a tuple with the EngineId field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetId added in v1.6.0

func (o *VirtualizationPolicy) GetId() string

GetId returns the Id field value

func (*VirtualizationPolicy) GetIdOk added in v1.6.0

func (o *VirtualizationPolicy) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetName added in v1.6.0

func (o *VirtualizationPolicy) GetName() string

GetName returns the Name field value

func (*VirtualizationPolicy) GetNameOk added in v1.6.0

func (o *VirtualizationPolicy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetNamespace added in v1.6.0

func (o *VirtualizationPolicy) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*VirtualizationPolicy) GetNamespaceOk added in v1.6.0

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 added in v1.6.0

func (o *VirtualizationPolicy) GetPolicyType() string

GetPolicyType returns the PolicyType field value

func (*VirtualizationPolicy) GetPolicyTypeOk added in v1.6.0

func (o *VirtualizationPolicy) GetPolicyTypeOk() (*string, bool)

GetPolicyTypeOk returns a tuple with the PolicyType field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetSchedules added in v1.6.0

func (o *VirtualizationPolicy) GetSchedules() []VirtualizationSchedule

GetSchedules returns the Schedules field value

func (*VirtualizationPolicy) GetSchedulesOk added in v1.6.0

func (o *VirtualizationPolicy) GetSchedulesOk() ([]VirtualizationSchedule, bool)

GetSchedulesOk returns a tuple with the Schedules field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) GetTimezoneId added in v1.6.0

func (o *VirtualizationPolicy) GetTimezoneId() string

GetTimezoneId returns the TimezoneId field value

func (*VirtualizationPolicy) GetTimezoneIdOk added in v1.6.0

func (o *VirtualizationPolicy) GetTimezoneIdOk() (*string, bool)

GetTimezoneIdOk returns a tuple with the TimezoneId field value and a boolean to check if the value has been set.

func (*VirtualizationPolicy) HasNamespace added in v1.6.0

func (o *VirtualizationPolicy) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (VirtualizationPolicy) MarshalJSON added in v1.6.0

func (o VirtualizationPolicy) MarshalJSON() ([]byte, error)

func (*VirtualizationPolicy) SetEngineId added in v1.6.0

func (o *VirtualizationPolicy) SetEngineId(v string)

SetEngineId sets field value

func (*VirtualizationPolicy) SetId added in v1.6.0

func (o *VirtualizationPolicy) SetId(v string)

SetId sets field value

func (*VirtualizationPolicy) SetName added in v1.6.0

func (o *VirtualizationPolicy) SetName(v string)

SetName sets field value

func (*VirtualizationPolicy) SetNamespace added in v1.6.0

func (o *VirtualizationPolicy) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*VirtualizationPolicy) SetPolicyType added in v1.6.0

func (o *VirtualizationPolicy) SetPolicyType(v string)

SetPolicyType sets field value

func (*VirtualizationPolicy) SetSchedules added in v1.6.0

func (o *VirtualizationPolicy) SetSchedules(v []VirtualizationSchedule)

SetSchedules sets field value

func (*VirtualizationPolicy) SetTimezoneId added in v1.6.0

func (o *VirtualizationPolicy) SetTimezoneId(v string)

SetTimezoneId sets field value

func (VirtualizationPolicy) ToMap added in v1.6.0

func (o VirtualizationPolicy) ToMap() (map[string]interface{}, error)

type VirtualizationSchedule added in v1.6.0

type VirtualizationSchedule struct {
	CronString string `json:"cron_string"`
	CutoffTime int64  `json:"cutoff_time"`
}

VirtualizationSchedule struct for VirtualizationSchedule

func NewVirtualizationSchedule added in v1.6.0

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 added in v1.6.0

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 added in v1.6.0

func (o *VirtualizationSchedule) GetCronString() string

GetCronString returns the CronString field value

func (*VirtualizationSchedule) GetCronStringOk added in v1.6.0

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 added in v1.6.0

func (o *VirtualizationSchedule) GetCutoffTime() int64

GetCutoffTime returns the CutoffTime field value

func (*VirtualizationSchedule) GetCutoffTimeOk added in v1.6.0

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 added in v1.6.0

func (o VirtualizationSchedule) MarshalJSON() ([]byte, error)

func (*VirtualizationSchedule) SetCronString added in v1.6.0

func (o *VirtualizationSchedule) SetCronString(v string)

SetCronString sets field value

func (*VirtualizationSchedule) SetCutoffTime added in v1.6.0

func (o *VirtualizationSchedule) SetCutoffTime(v int64)

SetCutoffTime sets field value

func (VirtualizationSchedule) ToMap added in v1.6.0

func (o VirtualizationSchedule) ToMap() (map[string]interface{}, error)

type VirtualizationStorageSummaryData added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetDsourceCount() int64

GetDsourceCount returns the DsourceCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetDsourceCountOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetEngineHostname() string

GetEngineHostname returns the EngineHostname field value

func (*VirtualizationStorageSummaryData) GetEngineHostnameOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetEngineId() string

GetEngineId returns the EngineId field value

func (*VirtualizationStorageSummaryData) GetEngineIdOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetEngineName() string

GetEngineName returns the EngineName field value

func (*VirtualizationStorageSummaryData) GetEngineNameOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetFreeStorage() int64

GetFreeStorage returns the FreeStorage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetFreeStorageOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetTotalCapacity() int64

GetTotalCapacity returns the TotalCapacity field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetTotalCapacityOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetTotalObjectCount() int64

GetTotalObjectCount returns the TotalObjectCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetTotalObjectCountOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetUsedPercentage() float32

GetUsedPercentage returns the UsedPercentage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetUsedPercentageOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetUsedStorage() int64

GetUsedStorage returns the UsedStorage field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetUsedStorageOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) GetVdbCount() int64

GetVdbCount returns the VdbCount field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryData) GetVdbCountOk added in v1.1.0

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 added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasDsourceCount() bool

HasDsourceCount returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasFreeStorage added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasFreeStorage() bool

HasFreeStorage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasTotalCapacity added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasTotalCapacity() bool

HasTotalCapacity returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasTotalObjectCount added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasTotalObjectCount() bool

HasTotalObjectCount returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasUsedPercentage added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasUsedPercentage() bool

HasUsedPercentage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasUsedStorage added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasUsedStorage() bool

HasUsedStorage returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryData) HasVdbCount added in v1.1.0

func (o *VirtualizationStorageSummaryData) HasVdbCount() bool

HasVdbCount returns a boolean if a field has been set.

func (VirtualizationStorageSummaryData) MarshalJSON added in v1.1.0

func (o VirtualizationStorageSummaryData) MarshalJSON() ([]byte, error)

func (*VirtualizationStorageSummaryData) SetDsourceCount added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetDsourceCount(v int64)

SetDsourceCount gets a reference to the given int64 and assigns it to the DsourceCount field.

func (*VirtualizationStorageSummaryData) SetEngineHostname added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetEngineHostname(v string)

SetEngineHostname sets field value

func (*VirtualizationStorageSummaryData) SetEngineId added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetEngineId(v string)

SetEngineId sets field value

func (*VirtualizationStorageSummaryData) SetEngineName added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetEngineName(v string)

SetEngineName sets field value

func (*VirtualizationStorageSummaryData) SetFreeStorage added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetFreeStorage(v int64)

SetFreeStorage gets a reference to the given int64 and assigns it to the FreeStorage field.

func (*VirtualizationStorageSummaryData) SetTotalCapacity added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetTotalCapacity(v int64)

SetTotalCapacity gets a reference to the given int64 and assigns it to the TotalCapacity field.

func (*VirtualizationStorageSummaryData) SetTotalObjectCount added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetTotalObjectCount(v int64)

SetTotalObjectCount gets a reference to the given int64 and assigns it to the TotalObjectCount field.

func (*VirtualizationStorageSummaryData) SetUsedPercentage added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetUsedPercentage(v float32)

SetUsedPercentage gets a reference to the given float32 and assigns it to the UsedPercentage field.

func (*VirtualizationStorageSummaryData) SetUsedStorage added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetUsedStorage(v int64)

SetUsedStorage gets a reference to the given int64 and assigns it to the UsedStorage field.

func (*VirtualizationStorageSummaryData) SetVdbCount added in v1.1.0

func (o *VirtualizationStorageSummaryData) SetVdbCount(v int64)

SetVdbCount gets a reference to the given int64 and assigns it to the VdbCount field.

func (VirtualizationStorageSummaryData) ToMap added in v1.6.0

func (o VirtualizationStorageSummaryData) ToMap() (map[string]interface{}, error)

type VirtualizationStorageSummaryReportResponse added in v1.1.0

type VirtualizationStorageSummaryReportResponse struct {
	Items            []VirtualizationStorageSummaryData `json:"items,omitempty"`
	ResponseMetadata *PaginatedResponseMetadata         `json:"response_metadata,omitempty"`
}

VirtualizationStorageSummaryReportResponse struct for VirtualizationStorageSummaryReportResponse

func NewVirtualizationStorageSummaryReportResponse added in v1.1.0

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 added in v1.1.0

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 added in v1.1.0

GetItems returns the Items field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryReportResponse) GetItemsOk added in v1.1.0

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 added in v1.1.0

GetResponseMetadata returns the ResponseMetadata field value if set, zero value otherwise.

func (*VirtualizationStorageSummaryReportResponse) GetResponseMetadataOk added in v1.1.0

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 added in v1.1.0

HasItems returns a boolean if a field has been set.

func (*VirtualizationStorageSummaryReportResponse) HasResponseMetadata added in v1.1.0

func (o *VirtualizationStorageSummaryReportResponse) HasResponseMetadata() bool

HasResponseMetadata returns a boolean if a field has been set.

func (VirtualizationStorageSummaryReportResponse) MarshalJSON added in v1.1.0

func (*VirtualizationStorageSummaryReportResponse) SetItems added in v1.1.0

SetItems gets a reference to the given []VirtualizationStorageSummaryData and assigns it to the Items field.

func (*VirtualizationStorageSummaryReportResponse) SetResponseMetadata added in v1.1.0

SetResponseMetadata gets a reference to the given PaginatedResponseMetadata and assigns it to the ResponseMetadata field.

func (VirtualizationStorageSummaryReportResponse) ToMap added in v1.6.0

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