Categorygithub.com/yugabyte/platform-go-client
modulepackage
0.0.0-20240927075814-3f9ed9d72e75
Repository: https://github.com/yugabyte/platform-go-client.git
Documentation: pkg.go.dev

# README

Go API client for ywclient

ALPHA - NOT FOR EXTERNAL USE

Overview

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

  • API version: v1
  • Package version: 2.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import sw "./ywclient"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
AccessKeysApiCreateAccesskeyPost /api/v1/customers/{cUUID}/providers/{pUUID}/access_keysCreate/Upload Access Key for onprem provider region - deprecated
AccessKeysApiDeleteAccesskeyDelete /api/v1/customers/{cUUID}/providers/{pUUID}/access_keys/{keyCode}Delete an access key
AccessKeysApiEditAccesskeyPut /api/v1/customers/{cUUID}/providers/{pUUID}/access_keys/{keyCode}Modify the existing access Key
AccessKeysApiIndexGet /api/v1/customers/{cUUID}/providers/{pUUID}/access_keys/{keyCode}Get an access key
AccessKeysApiListGet /api/v1/customers/{cUUID}/providers/{pUUID}/access_keysList access keys for a specific provider
AccessKeysApiListAllForCustomerGet /api/v1/customers/{cUUID}/access_keysList access keys for all providers of a customer
AlertsApiAcknowledgePost /api/v1/customers/{cUUID}/alerts/{alertUUID}/acknowledgeAcknowledge an alert
AlertsApiAcknowledgeByFilterPost /api/v1/customers/{cUUID}/alerts/acknowledgeAcknowledge all alerts - deprecated
AlertsApiAlertNotificationPreviewPost /api/v1/customers/{cUUID}/alert_notification_previewPrepare alert notification preview
AlertsApiCountAlertsPost /api/v1/customers/{cUUID}/alerts/countCount alerts
AlertsApiCreateAlertChannelPost /api/v1/customers/{cUUID}/alert_channelsCreate an alert channel
AlertsApiCreateAlertConfigurationPost /api/v1/customers/{cUUID}/alert_configurationsCreate an alert configuration
AlertsApiCreateAlertDestinationPost /api/v1/customers/{cUUID}/alert_destinationsCreate an alert destination
AlertsApiDeleteAlertChannelDelete /api/v1/customers/{cUUID}/alert_channels/{acUUID}Delete an alert channel
AlertsApiDeleteAlertChannelTemplatesDelete /api/v1/customers/{cUUID}/alert_channel_templates/{acType}Delete alert channel templates
AlertsApiDeleteAlertConfigurationDelete /api/v1/customers/{cUUID}/alert_configurations/{configurationUUID}Delete an alert configuration
AlertsApiDeleteAlertDestinationDelete /api/v1/customers/{cUUID}/alert_destinations/{adUUID}Delete an alert destination
AlertsApiDeleteAlertTemplateSettingsDelete /api/v1/customers/{cUUID}/alert_template_settings/{settingsUUID}Delete an alert template settings - deprecated
AlertsApiDeleteAlertTemplateVariablesDelete /api/v1/customers/{cUUID}/alert_template_variables/{variableUUID}Delete an alert template variables
AlertsApiEditAlertTemplateSettingsPut /api/v1/customers/{cUUID}/alert_template_settingsCreate or update alert template settings list - deprecated
AlertsApiEditAlertTemplateVariablesPut /api/v1/customers/{cUUID}/alert_template_variablesCreate or update alert template variables
AlertsApiGetGet /api/v1/customers/{cUUID}/alerts/{alertUUID}Get details of an alert
AlertsApiGetAlertChannelGet /api/v1/customers/{cUUID}/alert_channels/{acUUID}Get an alert channel
AlertsApiGetAlertChannelTemplatesGet /api/v1/customers/{cUUID}/alert_channel_templates/{acType}Get alert channel templates
AlertsApiGetAlertConfigurationGet /api/v1/customers/{cUUID}/alert_configurations/{configurationUUID}Get an alert configuration
AlertsApiGetAlertDestinationGet /api/v1/customers/{cUUID}/alert_destinations/{adUUID}Get an alert destination
AlertsApiListActiveGet /api/v1/customers/{cUUID}/alerts/activeList active alerts - deprecated
AlertsApiListAlertChannelTemplatesGet /api/v1/customers/{cUUID}/alert_channel_templatesList all alert channel templates
AlertsApiListAlertChannelsGet /api/v1/customers/{cUUID}/alert_channelsList all alert channels
AlertsApiListAlertConfigurationsPost /api/v1/customers/{cUUID}/alert_configurations/listGet filtered list of alert configurations
AlertsApiListAlertDestinationsGet /api/v1/customers/{cUUID}/alert_destinationsList alert destinations
AlertsApiListAlertTemplateSettingsGet /api/v1/customers/{cUUID}/alert_template_settingsGet alert template settings - deprecated
AlertsApiListAlertTemplateVariablesGet /api/v1/customers/{cUUID}/alert_template_variablesList alert template variables
AlertsApiListAlertTemplatesPost /api/v1/customers/{cUUID}/alert_templatesGet filtered list of alert configuration templates
AlertsApiListOfAlertsGet /api/v1/customers/{cUUID}/alertsList all alerts
AlertsApiPageAlertConfigurationsPost /api/v1/customers/{cUUID}/alert_configurations/pageList all alert configurations (paginated)
AlertsApiPageAlertsPost /api/v1/customers/{cUUID}/alerts/pageList alerts (paginated)
AlertsApiSendTestAlertPost /api/v1/customers/{cUUID}/alert_configurations/{configurationUUID}/test_alertSend test alert for alert configuration
AlertsApiSetAlertChannelTemplatesPost /api/v1/customers/{cUUID}/alert_channel_templates/{acType}Set alert channel templates
AlertsApiUpdateAlertChannelPut /api/v1/customers/{cUUID}/alert_channels/{acUUID}Update an alert channel
AlertsApiUpdateAlertConfigurationPut /api/v1/customers/{cUUID}/alert_configurations/{configurationUUID}Update an alert configuration
AlertsApiUpdateAlertDestinationPut /api/v1/customers/{cUUID}/alert_destinations/{adUUID}Update an alert destination
AsynchronousReplicationApiCreateXClusterConfigPost /api/v1/customers/{cUUID}/xcluster_configsCreate xcluster config
AsynchronousReplicationApiDeleteXClusterConfigDelete /api/v1/customers/{cUUID}/xcluster_configs/{xccUUID}Delete xcluster config
AsynchronousReplicationApiEditXClusterConfigPut /api/v1/customers/{cUUID}/xcluster_configs/{xccUUID}Edit xcluster config
AsynchronousReplicationApiGetXClusterConfigGet /api/v1/customers/{cUUID}/xcluster_configs/{xccUUID}Get xcluster config
AsynchronousReplicationApiNeedBootstrapTablePost /api/v1/customers/{cUUID}/universes/{uniUUID}/need_bootstrapWhether tables need bootstrap before setting up cross cluster replication
AsynchronousReplicationApiRestartXClusterConfigPost /api/v1/customers/{cUUID}/xcluster_configs/{xccUUID}Restart xcluster config
AsynchronousReplicationApiSyncXClusterConfigPost /api/v1/customers/{cUUID}/xcluster_configs/syncSync xcluster config - deprecated
AsynchronousReplicationApiSyncXClusterConfigV2Post /api/v1/customers/{cUUID}/xcluster_configs/{xccUUID}/syncSync xcluster config (V2)
AuditApiGetTaskAuditGet /api/v1/customers/{cUUID}/tasks/{tUUID}/audit_infoGet audit info for a task
AuditApiGetUserFromTaskGet /api/v1/customers/{cUUID}/tasks/{tUUID}/audit_userGet the user associated with a task
AuditApiListOfAuditGet /api/v1/customers/{cUUID}/users/{uUUID}/audit_trailList a user's audit entries
AvailabilityZonesApiCreateAZPost /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}/zonesCreate an availability zone - deprecated
AvailabilityZonesApiCreateZonePost /api/v1/customers/{cUUID}/providers/{pUUID}/provider_regions/{rUUID}/region_zonesCreate an availability zone
AvailabilityZonesApiDeleteAZDelete /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}/zones/{azUUID}Delete an availability zone
AvailabilityZonesApiEditAZPut /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}/zones/{azUUID}Edit an Availabilty Zone - deprecated
AvailabilityZonesApiEditZonePut /api/v1/customers/{cUUID}/providers/{pUUID}/provider_regions/{rUUID}/region_zones/{azUUID}Modify an availability zone
AvailabilityZonesApiListOfAZGet /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}/zonesList availability zones
BackupsApiAdvancedRestorePreflightPost /api/v1/customers/{cUUID}/restore/advanced_restore_preflightAdvanced Restore Preflight checks
BackupsApiCreateBackupSchedulePost /api/v1/customers/{cUUID}/create_backup_scheduleCreate Backup Schedule - deprecated
BackupsApiCreateBackupScheduleAsyncPost /api/v1/customers/{cUUID}/create_backup_schedule_asyncCreate Backup Schedule Async
BackupsApiCreateMultiTableBackupPut /api/v1/customers/{cUUID}/universes/{uniUUID}/multi_table_backupCreate a multi-table backup - deprecated
BackupsApiCreateSingleTableBackupPut /api/v1/customers/{cUUID}/universes/{uniUUID}/tables/{tableUUID}/create_backupCreate a single-table backup - deprecated
BackupsApiCreatebackupPost /api/v1/customers/{cUUID}/backupsCreate a backup V2
BackupsApiDeleteBackupsDelete /api/v1/customers/{cUUID}/backupsDelete Backups - deprecated
BackupsApiDeleteBackupsV2Post /api/v1/customers/{cUUID}/backups/deleteDelete backups V2
BackupsApiEditBackupV2Put /api/v1/customers/{cUUID}/backups/{backupUUID}Edit a backup V2
BackupsApiFetchBackupsByTaskUUIDGet /api/v1/customers/{cUUID}/universes/{uniUUID}/backups/tasks/{tUUID}List backups associated with a task
BackupsApiGetBackupV2Get /api/v1/customers/{cUUID}/backups/{backupUUID}Get Backup V2
BackupsApiGetThrottleParamsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/ybc_throttle_paramsGet throttle params from YB-Controller
BackupsApiListBackupRestoresV2Post /api/v1/customers/{cUUID}/restore/pageList Backup Restores (paginated)
BackupsApiListBackupsV2Post /api/v1/customers/{cUUID}/backups/pageList Backups (paginated) V2
BackupsApiListIncrementalBackupsGet /api/v1/customers/{cUUID}/backups/{backupUUID}/list_incrementsList Incremental backups
BackupsApiListOfBackupsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/backupsList a customer's backups - deprecated
BackupsApiListRestorableKeyspaceTablesGet /api/v1/customers/{cUUID}/backups/{baseBackupUUID}/restorable_keyspace_tablesList of all restorable entities in the incremental backup chain
BackupsApiRestorePost /api/v1/customers/{cUUID}/universes/{uniUUID}/backups/restoreRestore from a backup - deprecated
BackupsApiRestoreBackupV2Post /api/v1/customers/{cUUID}/restoreRestore from a backup V2
BackupsApiRestorePreflightPost /api/v1/customers/{cUUID}/restore/preflightRestore preflight checks
BackupsApiSetThrottleParamsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/ybc_throttle_paramsSet throttle params in YB-Controller
BackupsApiSetUniverseBackupFlagPut /api/v1/customers/{cUUID}/universes/{uniUUID}/update_backup_stateSet a universe's backup flag
BackupsApiStopBackupPost /api/v1/customers/{cUUID}/backups/{backupUUID}/stopStop a backup
BackupsApiUniverseBackupPost /api/v1/customers/{customerUUID}/universes/{universeUUID}/universe_backupCreate a Universe Backup
BackupsApiValidateKeyspaceTablesToRestorePost /api/v1/customers/{cUUID}/restore/validate_restorable_keyspace_tablesValidate keyspace and tables to Restore against Backup
CertificateInfoApiDeleteCertificateDelete /api/v1/customers/{cUUID}/certificates/{rUUID}Delete a certificate
CertificateInfoApiEditCertificatePost /api/v1/customers/{cUUID}/certificates/{rUUID}/editEdit TLS certificate config details
CertificateInfoApiGetListOfCertificateGet /api/v1/customers/{cUUID}/certificatesList a customer's certificates
CertificateInfoApiGetRootCertGet /api/v1/customers/{cUUID}/certificates/{rUUID}/downloadGet a customer's root certificate
CertificateInfoApiUploadPost /api/v1/customers/{cUUID}/certificatesRestore a certificate from backup
CloudProvidersApiAccessKeyRotationPost /api/v1/customers/{cUUID}/providers/{pUUID}/access_key_rotationRotate access key for a provider
CloudProvidersApiCreateProvidersPost /api/v1/customers/{cUUID}/providersCreate a provider
CloudProvidersApiDeleteDelete /api/v1/customers/{cUUID}/providers/{pUUID}Delete a cloud provider
CloudProvidersApiEditAccessKeyRotationSchedulePut /api/v1/customers/{cUUID}/providers/{pUUID}/access_key_rotation/schedule/{sUUID}Edit a access key rotation schedule
CloudProvidersApiEditProviderPut /api/v1/customers/{cUUID}/providers/{pUUID}/editUpdate a provider
CloudProvidersApiGetListOfProvidersGet /api/v1/customers/{cUUID}/providersList cloud providers
CloudProvidersApiGetProviderGet /api/v1/customers/{cUUID}/providers/{pUUID}Get a cloud provider
CloudProvidersApiGetRegionMetadataGet /api/v1/customers/{cUUID}/providers/region_metadata/{code}Retrieves the region metadata for the cloud providers
CloudProvidersApiListSchedulesGet /api/v1/customers/{cUUID}/providers/{pUUID}/access_key_rotation/scheduleList all schedules for a provider's access key rotation
CloudProvidersApiRefreshPricingPut /api/v1/customers/{cUUID}/providers/{pUUID}/refresh_pricingRefresh provider pricing info
CloudProvidersApiScheduledAccessKeyRotationPost /api/v1/customers/{cUUID}/providers/{pUUID}/access_key_rotation/scheduleRotate access key for a provider - Scheduled
CustomCACertificatesApiAddCAPost /api/v1/customers/{cUUID}/customCAStoreAdd a named custom CA certificate
CustomCACertificatesApiDeleteCustomCACertificateDelete /api/v1/customers/{cUUID}/customCAStoreCertificates/{certUUID}Delete a named custom CA certificate
CustomCACertificatesApiGetAllCustomCaCertificatesGet /api/v1/customers/{cUUID}/customCAStoreCertificates/{certUUID}Download a custom CA certificates of a customer
CustomCACertificatesApiListAllCustomCaCertificatesGet /api/v1/customers/{cUUID}/customCAStoreCertificatesList all custom CA certificates of a customer
CustomCACertificatesApiUpdateCAPost /api/v1/customers/{cUUID}/customCAStore/{certUUID}Update a named custom CA certificate
CustomerConfigurationApiCreateCustomerConfigPost /api/v1/customers/{cUUID}/configsCreate a customer configuration
CustomerConfigurationApiDeleteCustomerConfigDelete /api/v1/customers/{cUUID}/configs/{configUUID}Delete a customer configuration
CustomerConfigurationApiDeleteCustomerConfigV2Delete /api/v1/customers/{cUUID}/configs/{configUUID}/deleteDelete a customer configuration V2
CustomerConfigurationApiEditCustomerConfigPut /api/v1/customers/{cUUID}/configs/{configUUID}Update a customer configuration
CustomerConfigurationApiEditCustomerConfig_0Put /api/v1/customers/{cUUID}/configs/{configUUID}/editUpdate a customer configuration V2
CustomerConfigurationApiGetListOfCustomerConfigGet /api/v1/customers/{cUUID}/configsList all customer configurations
CustomerConfigurationApiListBucketsPost /api/v1/customers/{cUUID}/cloud/{cloud}/bucketsList buckets with provided credentials
CustomerManagementApiCustomerDetailGet /api/v1/customers/{cUUID}Get a customer's details
CustomerManagementApiDeleteCustomerDelete /api/v1/customers/{cUUID}Delete a customer
CustomerManagementApiGetHostInfoGet /api/v1/customers/{cUUID}/host_infoGet a customer's host info
CustomerManagementApiListOfCustomersGet /api/v1/customersList customers
CustomerManagementApiUpdateCustomerPut /api/v1/customers/{cUUID}Update a customer
CustomerTasksApiAbortTaskPost /api/v1/customers/{cUUID}/tasks/{tUUID}/abortAbort a task
CustomerTasksApiFailedSubtasksGet /api/v1/customers/{cUUID}/tasks/{tUUID}/failedFetch failed subtasks - deprecated
CustomerTasksApiListFailedSubtasksGet /api/v1/customers/{cUUID}/tasks/{tUUID}/failed_subtasksGet a list of task's failed subtasks
CustomerTasksApiRetryTaskPost /api/v1/customers/{cUUID}/tasks/{tUUID}/retryRetry a Universe or Provider task
CustomerTasksApiTaskStatusGet /api/v1/customers/{cUUID}/tasks/{tUUID}Get a task's status
CustomerTasksApiTasksListGet /api/v1/customers/{cUUID}/tasks_listList task
DisasterRecoveryApiCreateDrConfigPost /api/v1/customers/{cUUID}/dr_configsCreate disaster recovery config
DisasterRecoveryApiDeleteXClusterConfigDelete /api/v1/customers/{cUUID}/dr_configs/{drUUID}Delete xcluster config
DisasterRecoveryApiEditDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/editEdit disaster recovery config
DisasterRecoveryApiFailoverDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/failoverFailover a disaster recovery config
DisasterRecoveryApiGetDrConfigGet /api/v1/customers/{cUUID}/dr_configs/{drUUID}Get disaster recovery config
DisasterRecoveryApiGetDrConfigSafetimeGet /api/v1/customers/{cUUID}/dr_configs/{drUUID}/safetimeGet disaster recovery config safetime
DisasterRecoveryApiPauseDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/pausePause DR config
DisasterRecoveryApiReplaceReplicaDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/replace_replicaReplace Replica in a disaster recovery config
DisasterRecoveryApiRestartDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/restartRestart disaster recovery config
DisasterRecoveryApiResumeDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/resumeResume DR config
DisasterRecoveryApiSetDatabasesDrConfigPut /api/v1/customers/{cUUID}/dr_configs/{drUUID}/set_dbsSet databases in disaster recovery config
DisasterRecoveryApiSetTablesDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/set_tablesSet tables in disaster recovery config
DisasterRecoveryApiSwitchoverDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/switchoverSwitchover a disaster recovery config
DisasterRecoveryApiSyncDrConfigPost /api/v1/customers/{cUUID}/dr_configs/{drUUID}/syncSync disaster recovery config
EncryptionAtRestApiCreateKMSConfigPost /api/v1/customers/{cUUID}/kms_configs/{kmsProvider}Create a KMS configuration
EncryptionAtRestApiDeleteKMSConfigDelete /api/v1/customers/{cUUID}/kms_configs/{configUUID}Delete a KMS configuration
EncryptionAtRestApiEditKMSConfigPost /api/v1/customers/{cUUID}/kms_configs/{configUUID}/editEdit a KMS configuration
EncryptionAtRestApiGetKMSConfigGet /api/v1/customers/{cUUID}/kms_configs/{configUUID}Get details of a KMS configuration
EncryptionAtRestApiListKMSConfigsGet /api/v1/customers/{cUUID}/kms_configsList KMS configurations
EncryptionAtRestApiRefreshKMSConfigPut /api/v1/customers/{cUUID}/kms_configs/{configUUID}/refreshRefresh KMS Config
EncryptionAtRestApiRemoveKeyRefHistoryDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/kmsThis API removes a universe's key reference history - deprecated
ExtractMetadataFromRemoteTarballApiExtractMetadataPost /api/v1/customers/{cUUID}/ybdb_release/extract_metadatahelper to extract release metadata from a remote tarball
ExtractMetadataFromRemoteTarballApiExtractMetadata_0Get /api/v1/customers/{cUUID}/ybdb_release/extract_metadata/{rUUID}get the extract release metadata from a remote tarball
GrafanaDashboardApiGrafanaDashboardGet /api/v1/grafana_dashboardGet Grafana Dashboard
InstanceTypesApiCreateInstanceTypePost /api/v1/customers/{cUUID}/providers/{pUUID}/instance_typesCreate an instance type
InstanceTypesApiDeleteInstanceTypeDelete /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types/{code}Delete an instance type
InstanceTypesApiGetAZUTypesGet /api/v1/metadata/azu_typesList supported Azure disk types
InstanceTypesApiGetEBSTypesGet /api/v1/metadata/ebs_typesList supported EBS volume types
InstanceTypesApiGetGCPTypesGet /api/v1/metadata/gcp_typesList supported GCP disk types
InstanceTypesApiInstanceTypeDetailGet /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types/{code}Get details of an instance type
InstanceTypesApiListOfInstanceTypeGet /api/v1/customers/{cUUID}/providers/{pUUID}/instance_typesList a provider's instance types
KubernetesOverridesControllerApiValidateKubernetesOverridesPost /api/v1/customers/{cUUID}/validate_kubernetes_overridesValidate kubernetes overrides.
LDAPOIDCRoleManagementApiDeleteOidcGroupMappingDelete /api/v1/customers/{cUUID}/oidc_mappings/{groupName}Delete a OIDC group mapping
LDAPOIDCRoleManagementApiListLdapDnToYbaRolesGet /api/v1/customers/{cUUID}/ldap_mappingsList LDAP Mappings
LDAPOIDCRoleManagementApiListOidcGroupToYbaRolesGet /api/v1/customers/{cUUID}/oidc_mappingsList OIDC Group Mappings
LDAPOIDCRoleManagementApiMapOidcGroupToYbaRolesPut /api/v1/customers/{cUUID}/oidc_mappingsSet OIDC Mappings
LDAPOIDCRoleManagementApiSetLdapDnToYbaRolesPut /api/v1/customers/{cUUID}/ldap_mappingsSet LDAP Mappings
LDAPRoleManagementApiSyncLdapUniversePost /api/v1/customers/{cUUID}/universes/{univUUID}/ldap_roles_syncPerform an LDAP users sync on the universe
LicenseManagementApiDeleteLicenseDelete /api/v1/customers/{cUUID}/licenses/{lUUID}Delete a license
LicenseManagementApiUploadLicensePost /api/v1/customers/{cUUID}/licensesUploads the license
LoggingConfigApiSetAuditLoggingSettingsPost /api/v1/audit_logging_configSet Audit Logging Level
LoggingConfigApiSetLoggingSettingsPost /api/v1/logging_configSet Logging Level
MaintenanceWindowsApiCreatePost /api/v1/customers/{cUUID}/maintenance_windowsCreate maintenance window
MaintenanceWindowsApiDeleteDelete /api/v1/customers/{cUUID}/maintenance_windows/{windowUUID}Delete maintenance window
MaintenanceWindowsApiGetGet /api/v1/customers/{cUUID}/maintenance_windows/{windowUUID}Get details of a maintenance window
MaintenanceWindowsApiListOfMaintenanceWindowsPost /api/v1/customers/{cUUID}/maintenance_windows/listList maintenance windows
MaintenanceWindowsApiPagePost /api/v1/customers/{cUUID}/maintenance_windows/pageList maintenance windows (paginated)
MaintenanceWindowsApiUpdatePut /api/v1/customers/{cUUID}/maintenance_windows/{windowUUID}Update maintenance window
MetricsApiMetricsDetailGet /api/v1/prometheus_metricsGet Prometheus metrics
NewReleaseManagementApiCreateNewReleasePost /api/v1/customers/{cUUID}/ybdb_releaseCreate a release
NewReleaseManagementApiDeleteNewReleaseDelete /api/v1/customers/{cUUID}/ybdb_release/{rUUID}delete a release
NewReleaseManagementApiGetNewReleaseGet /api/v1/customers/{cUUID}/ybdb_release/{rUUID}Get a release
NewReleaseManagementApiListNewReleasesGet /api/v1/customers/{cUUID}/ybdb_releaseList releases
NewReleaseManagementApiUpdateNewReleasePut /api/v1/customers/{cUUID}/ybdb_release/{rUUID}Update a release
NodeAgentsApiDownloadNodeAgentInstallerGet /api/v1/node_agents/downloadDownload Node Agent Installer or Package
NodeAgentsApiGetNodeAgentGet /api/v1/customers/{cUUID}/node_agents/{nUUID}Get Node Agent
NodeAgentsApiListNodeAgentsGet /api/v1/customers/{cUUID}/node_agentsList Node Agents
NodeAgentsApiPageListNodeAgentsPost /api/v1/customers/{cUUID}/node_agents/pageList Node Agents (paginated)
NodeAgentsApiReinstallNodeAgentPost /api/v1/customers/{cUUID}/universes/{uniUUID}/node_agentsReinstall Node Agent
NodeInstancesApiCreateNodeInstancePost /api/v1/customers/{cUUID}/zones/{azUUID}/nodesCreate a node instance
NodeInstancesApiDeleteInstanceDelete /api/v1/customers/{cUUID}/providers/{pUUID}/instances/{instanceIP}Delete a node instance
NodeInstancesApiDetachedNodeActionPost /api/v1/customers/{cUUID}/providers/{pUUID}/instances/{instanceIP}Detached node action
NodeInstancesApiGetNodeDetailsGet /api/v1/customers/{cUUID}/universes/{universeUUID}/nodes/{nodeName}/detailsGet node details
NodeInstancesApiGetNodeInstanceGet /api/v1/customers/{cUUID}/nodes/{nodeUUID}/listGet a node instance
NodeInstancesApiListByProviderGet /api/v1/customers/{cUUID}/providers/{pUUID}/nodes/listList all of a provider's node instances
NodeInstancesApiListByZoneGet /api/v1/customers/{cUUID}/zones/{azUUID}/nodes/listList all of a zone's node instances
NodeInstancesApiNodeActionPut /api/v1/customers/{cUUID}/universes/{universeUUID}/nodes/{nodeName}Update a node
NodeInstancesApiUpdateStatePut /api/v1/customers/{cUUID}/providers/{pUUID}/instances/{instanceIP}/stateUpdate node instance state
NodeInstancesApiValidateNodeInstancePost /api/v1/customers/{cUUID}/zones/{azUUID}/nodes/validateValidate a node instance
PITRManagementApiCreatePitrConfigPost /api/v1/customers/{cUUID}/universes/{uniUUID}/keyspaces/{tableType}/{keyspaceName}/pitr_configCreate pitr config for a keyspace in a universe
PITRManagementApiDeletePitrConfigDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/pitr_config/{pUUID}Delete pitr config on a universe
PITRManagementApiListOfPitrConfigsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/pitr_configList the PITR configs of a universe
PITRManagementApiPerformPitrPost /api/v1/customers/{cUUID}/universes/{uniUUID}/pitrPerform PITR on a universe
PerformanceAdvisorApiDeleteDelete /api/v1/customers/{cUUID}/performance_recommendationsDelete performance recommendations
PerformanceAdvisorApiGetGet /api/v1/customers/{cUUID}/performance_recommendations/{rUUID}Get performance recommendation details
PerformanceAdvisorApiGetLatestRunGet /api/v1/customers/{cUUID}/universes/{uniUUID}/last_runGet last performance advisor run details
PerformanceAdvisorApiGetSettingsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/perf_advisor_settingsGet universe performance advisor settings
PerformanceAdvisorApiPagePost /api/v1/customers/{cUUID}/performance_recommendations/pageList performance recommendations (paginated)
PerformanceAdvisorApiPageAuditInfoPost /api/v1/customers/{cUUID}/performance_recommendation_state_change/pageList performance recommendations state change audit events (paginated)
PerformanceAdvisorApiRunPerfAdvisorPost /api/v1/customers/{cUUID}/universes/{uniUUID}/start_manuallyStart performance advisor run for universe
PerformanceAdvisorApiUpdateSettingsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/perf_advisor_settingsUpdate universe performance advisor settings
PreviewApiCreateImageBundlePost /api/v1/customers/{cUUID}/providers/{pUUID}/image_bundleCreate a image bundle
PreviewApiDeleteDelete /api/v1/customers/{cUUID}/providers/{pUUID}/image_bundle/{iBUUID}Delete a image bundle
PreviewApiEditImageBundlePut /api/v1/customers/{cUUID}/providers/{pUUID}/image_bundle/{iBUUID}Update a image bundle
PreviewApiGetImageBundleGet /api/v1/customers/{cUUID}/providers/{pUUID}/image_bundle/{iBUUID}Get a image bundle
PreviewApiGetListOfImageBundlesGet /api/v1/customers/{cUUID}/providers/{pUUID}/image_bundleList image bundles
RegionManagementApiCreateProviderRegionPost /api/v1/customers/{cUUID}/providers/{pUUID}/provider_regionsCreate a new region
RegionManagementApiCreateRegionPost /api/v1/customers/{cUUID}/providers/{pUUID}/regionsCreate Region - deprecated
RegionManagementApiDeleteRegionDelete /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}Delete a region
RegionManagementApiEditProviderRegionPut /api/v1/customers/{cUUID}/providers/{pUUID}/provider_regions/{rUUID}Modify a region
RegionManagementApiEditRegionPut /api/v1/customers/{cUUID}/providers/{pUUID}/regions/{rUUID}Edit regions - deprecated
RegionManagementApiGetRegionGet /api/v1/customers/{cUUID}/providers/{pUUID}/regionsList a provider's regions
RegionManagementApiListAllRegionsGet /api/v1/customers/{cUUID}/regionsList regions for all providers
ReleaseManagementApiCreateReleasePost /api/v1/customers/{cUUID}/releasesDeprecated: sinceVersion 2024.1. Use ReleasesController.create instead. Create a release
ReleaseManagementApiDeleteReleaseDelete /api/v1/customers/{cUUID}/releases/{name}Deprecated: sinceVersion: 2024.1. Use ReleasesController.delete instead. Delete a release
ReleaseManagementApiGetListOfRegionReleasesGet /api/v1/customers/{cUUID}/providers/{pUUID}/releasesList releases by provider - deprecated
ReleaseManagementApiGetListOfReleasesGet /api/v1/customers/{cUUID}/releasesDeprecated: sinceVersion: 2024.1. Use ReleasesController.list instead. List all releases
ReleaseManagementApiRefreshPut /api/v1/customers/{cUUID}/releasesRefresh a release
ReleaseManagementApiUpdateReleasePut /api/v1/customers/{cUUID}/releases/{name}Deprecated: sinceVersion: 2024.1. Use ReleasesController.update instead. Update a release
RuntimeConfigurationApiDeleteKeyDelete /api/v1/customers/{cUUID}/runtime_config/{scope}/key/{key}Delete a configuration key
RuntimeConfigurationApiGetConfigGet /api/v1/customers/{cUUID}/runtime_config/{scope}List configuration entries for a scope
RuntimeConfigurationApiGetConfigurationKeyGet /api/v1/customers/{cUUID}/runtime_config/{scope}/key/{key}Get a configuration key
RuntimeConfigurationApiListKeyInfoGet /api/v1/runtime_config/mutable_key_infoList mutable keys
RuntimeConfigurationApiListKeysGet /api/v1/runtime_config/mutable_keysList mutable keys
RuntimeConfigurationApiListScopesGet /api/v1/customers/{cUUID}/runtime_config/scopesList configuration scopes
RuntimeConfigurationApiSetKeyPut /api/v1/customers/{cUUID}/runtime_config/{scope}/key/{key}Update a configuration key
ScheduleManagementApiDeleteBackupScheduleAsyncDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/schedules/{sUUID}/delete_backup_schedule_asyncDelete a backup schedule async
ScheduleManagementApiDeleteScheduleDelete /api/v1/customers/{cUUID}/schedules/{sUUID}Delete a schedule - deprecated
ScheduleManagementApiDeleteScheduleV2Delete /api/v1/customers/{cUUID}/schedules/{sUUID}/deleteDelete a schedule V2 - deprecated
ScheduleManagementApiEditBackupScheduleAsyncPut /api/v1/customers/{cUUID}/universes/{uniUUID}/schedules/{sUUID}/edit_backup_schedule_asyncEdit a backup schedule async
ScheduleManagementApiEditBackupScheduleV2Put /api/v1/customers/{cUUID}/schedules/{sUUID}Edit a backup schedule V2 - deprecated
ScheduleManagementApiGetScheduleGet /api/v1/customers/{cUUID}/schedules/{sUUID}Get Schedule
ScheduleManagementApiListSchedulesGet /api/v1/customers/{cUUID}/schedulesList schedules - deprecated
ScheduleManagementApiListSchedulesV2Post /api/v1/customers/{cUUID}/schedules/pageList schedules V2
ScheduleManagementApiToggleBackupSchedulePut /api/v1/customers/{cUUID}/universes/{uniUUID}/schedules/{sUUID}/pause_resumeToggle a backup schedule
SessionManagementApiApiLoginPost /api/v1/api_loginAuthenticate user using email and password
SessionManagementApiApiTokenPut /api/v1/customers/{cUUID}/api_tokenRegenerate and fetch API token
SessionManagementApiAppVersionGet /api/v1/app_versionappVersion
SessionManagementApiCustomerCountGet /api/v1/customer_countcustomerCount
SessionManagementApiGetAdminNotificationsGet /api/v1/customers/{cUUID}/admin_notificationsCurrent list of notifications for admin
SessionManagementApiGetFilteredLogsGet /api/v1/logsgetFilteredLogs
SessionManagementApiGetLogsGet /api/v1/logs/{maxLines}getLogs
SessionManagementApiGetSessionInfoGet /api/v1/session_infoGet current user and customer uuid. This will not generate or return the API token, use /api_token API for that.
SessionManagementApiRegisterCustomerPost /api/v1/registerRegister a customer
SupportBundleManagementApiCreateSupportBundlePost /api/v1/customers/{cUUID}/universes/{uniUUID}/support_bundleCreate support bundle for specific universe
SupportBundleManagementApiDeleteSupportBundleDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/support_bundle/{sbUUID}Delete a support bundle
SupportBundleManagementApiDownloadSupportBundleGet /api/v1/customers/{cUUID}/universes/{uniUUID}/support_bundle/{sbUUID}/downloadDownload support bundle
SupportBundleManagementApiGetSupportBundleGet /api/v1/customers/{cUUID}/universes/{uniUUID}/support_bundle/{sbUUID}Get a support bundle from a universe
SupportBundleManagementApiListSupportBundleGet /api/v1/customers/{cUUID}/universes/{uniUUID}/support_bundleList all support bundles from a universe
SupportBundleManagementApiListSupportBundleComponentsGet /api/v1/customers/{cUUID}/support_bundle/componentsList all components available in support bundle
UniverseActionsApiImportUniversePost /api/v1/customers/{cUUID}/universes/importImport a universe - deprecated
UniverseCDCManagementApiListReplicationSlotGet /api/v1/customers/{cUUID}/universes/{uniUUID}/cdc_replication_slotsList CDC Replication slot for a cluster
UniverseClusterMutationsApiCreateAllClustersPost /api/v1/customers/{cUUID}/universes/clustersCreate Universe Clusters
UniverseClusterMutationsApiCreateReadOnlyClusterPost /api/v1/customers/{cUUID}/universes/{uniUUID}/clusters/read_onlyCreate ReadOnly Cluster
UniverseClusterMutationsApiDeleteReadonlyClusterDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/clusters/read_only/{clustUUID}Delete Readonly Cluster
UniverseClusterMutationsApiUpdatePrimaryClusterPut /api/v1/customers/{cUUID}/universes/{uniUUID}/clusters/primaryUpdate Primary Cluster
UniverseClusterMutationsApiUpdateReadOnlyClusterPut /api/v1/customers/{cUUID}/universes/{uniUUID}/clusters/read_onlyUpdate Readonly Cluster
UniverseDatabaseManagementApiConfigureYCQLPost /api/v1/customers/{cUUID}/universes/{univUUID}/configure/ycqlConfigure YCQL
UniverseDatabaseManagementApiConfigureYSQLPost /api/v1/customers/{cUUID}/universes/{univUUID}/configure/ysqlConfigure YSQL
UniverseInformationApiDownloadNodeLogsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/{nodeName}/download_logsDownload a node's logs - deprecated
UniverseInformationApiGetLiveQueriesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/live_queriesGet live queries for a universe
UniverseInformationApiGetMasterLeaderIPGet /api/v1/customers/{cUUID}/universes/{uniUUID}/leaderGet IP address of a universe's master leader
UniverseInformationApiGetSlowQueriesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/slow_queriesGet slow queries for a universe
UniverseInformationApiGetUniverseCostGet /api/v1/customers/{cUUID}/universes/{uniUUID}/costGet a cost estimate for a universe - deprecated
UniverseInformationApiGetUniverseResourcesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/universe_resourcesGet a resource usage estimate for a universe
UniverseInformationApiHealthCheckUniverseGet /api/v1/customers/{cUUID}/universes/{uniUUID}/health_checkReturn results for the last health check
UniverseInformationApiResetSlowQueriesDelete /api/v1/customers/{cUUID}/universes/{uniUUID}/slow_queriesReset slow queries for a universe
UniverseInformationApiUniverseStatusGet /api/v1/customers/{cUUID}/universes/{uniUUID}/statusGet a universe's status
UniverseManagementApiConfigureUniverseAlertsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/config_alertsConfigure alerts for a universe
UniverseManagementApiDeleteUniverseDelete /api/v1/customers/{cUUID}/universes/{uniUUID}Delete a universe
UniverseManagementApiGetUniverseGet /api/v1/customers/{cUUID}/universes/{uniUUID}Get a universe
UniverseManagementApiListUniversesGet /api/v1/customers/{cUUID}/universesList universes
UniverseManagementApiPauseUniversePost /api/v1/customers/{cUUID}/universes/{uniUUID}/pausePause a universe
UniverseManagementApiResumeUniversePost /api/v1/customers/{cUUID}/universes/{uniUUID}/resumeResume a paused universe
UniverseManagementApiSetUniverseBackupFlagPut /api/v1/customers/{cUUID}/universes/{uniUUID}/update_backup_stateSet a universe's backup flag
UniverseManagementApiSetUniverseHelm3CompatiblePut /api/v1/customers/{cUUID}/universes/{uniUUID}/mark_helm3_compatibleFlag a universe as Helm 3-compatible - deprecated
UniverseManagementApiSetUniverseKeyPost /api/v1/customers/{cUUID}/universes/{uniUUID}/set_keySet a universe's key
UniverseManagementApiUpdateLoadBalancerConfigPut /api/v1/customers/{cUUID}/universes/{uniUUID}/update_lb_configUpdate load balancer config
UniverseNodeMetadataMetamasterApiGetMasterAddressesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/mastersList a master node's addresses
UniverseNodeMetadataMetamasterApiGetRedisServerAddressesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/redisserversList a REDIS server's addresses
UniverseNodeMetadataMetamasterApiGetUniverseMasterNodesGet /metamaster/universe/{universeUUID}List a universe's master nodes
UniverseNodeMetadataMetamasterApiGetYQLServerAddressesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/yqlserversList a YQL server's addresses
UniverseNodeMetadataMetamasterApiGetYSQLServerAddressesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/ysqlserversList a YSQL server's addresses
UniversePerformanceSuggestionsApiGetQueryDistributionSuggestionsGet /api/v1/customers/{cUUID}/universes/{uniUUID}/query_distribution_suggestionsGet query distribution improvement suggestion for a universe
UniversePerformanceSuggestionsApiGetRangeHashGet /api/v1/customers/{cUUID}/universes/{uniUUID}/range_hashReturn list of hash indexes
UniversePerformanceSuggestionsApiGetUnusedIndexesGet /api/v1/customers/{cUUID}/universes/{uniUUID}/unused_indexesReturn list of each unused index across the universe
UniverseUpgradesManagementApiFinalizeUpgradePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/finalizeFinalize Upgrade
UniverseUpgradesManagementApiPreFinalizeSoftwareUpgradeInfoGet /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/finalize/infoFinalize Software Upgrade info
UniverseUpgradesManagementApiRebootUniversePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/rebootReboot universe
UniverseUpgradesManagementApiResizeNodePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/resize_nodeResize Node
UniverseUpgradesManagementApiRestartUniversePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/restartRestart Universe
UniverseUpgradesManagementApiRollbackUpgradePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/rollbackRollback Upgrade
UniverseUpgradesManagementApiSoftwareUpgradePreCheckPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/software/precheckSoftware Upgrade universe pre-check
UniverseUpgradesManagementApiUpdateProxyConfigPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/proxy_configUpdate Proxy Config
UniverseUpgradesManagementApiUpgradeCertsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/certsUpgrade Certs
UniverseUpgradesManagementApiUpgradeDBVersionPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/db_versionUpgrade DB version
UniverseUpgradesManagementApiUpgradeGFlagsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/gflagsUpgrade GFlags
UniverseUpgradesManagementApiUpgradeKubernetesOverridesPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/kubernetes_overridesUpgrade KubernetesOverrides
UniverseUpgradesManagementApiUpgradeSoftwarePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/softwareUpgrade Software
UniverseUpgradesManagementApiUpgradeSystemdPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/systemdUpgrade Systemd
UniverseUpgradesManagementApiUpgradeThirdpartySoftwarePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/thirdparty_softwareUpgrade third-party software
UniverseUpgradesManagementApiUpgradeTlsPost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/tlsUpgrade TLS
UniverseUpgradesManagementApiUpgradeVMImagePost /api/v1/customers/{cUUID}/universes/{uniUUID}/upgrade/vmUpgrade VM Image
UploadReleasePackagesApiGetUploadReleaseGet /api/v1/customers/{cUUID}/ybdb_release/upload/{rUUID}get an uploaded release metadata
UploadReleasePackagesApiUploadReleasePost /api/v1/customers/{cUUID}/ybdb_release/uploadupload a release tgz
UserManagementApiChangePasswordPut /api/v1/customers/{cUUID}/users/{uUUID}/change_passwordChange password - deprecated
UserManagementApiCreateUserPost /api/v1/customers/{cUUID}/usersCreate a user
UserManagementApiDeleteUserDelete /api/v1/customers/{cUUID}/users/{uUUID}Delete a user
UserManagementApiGetUserDetailsGet /api/v1/customers/{cUUID}/users/{uUUID}Get a user's details
UserManagementApiListUsersGet /api/v1/customers/{cUUID}/usersList all users
UserManagementApiResetUserPasswordPut /api/v1/customers/{cUUID}/reset_passwordReset the user's password
UserManagementApiRetrieveOIDCAuthTokenGet /api/v1/customers/{cUUID}/users/{uUUID}/oidc_auth_tokenRetrieve OIDC auth token
UserManagementApiUpdateUserProfilePut /api/v1/customers/{cUUID}/users/{uUUID}/update_profileUpdate a user's profile
UserManagementApiUpdateUserRolePut /api/v1/customers/{cUUID}/users/{uUUID}Change a user's role

Documentation For Models

Documentation For Authorization

apiKeyAuth

  • Type: API key
  • API key parameter name: X-AUTH-YW-API-TOKEN
  • Location: HTTP header

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

Documentation for Utility Methods

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

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

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccessKey instantiates a new AccessKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessKeyFormData instantiates a new AccessKeyFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessKeyFormDataWithDefaults instantiates a new AccessKeyFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessKeyId instantiates a new AccessKeyId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessKeyIdWithDefaults instantiates a new AccessKeyId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessKeyWithDefaults instantiates a new AccessKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdminNotification instantiates a new AdminNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdminNotificationWithDefaults instantiates a new AdminNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlert instantiates a new Alert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertApiFilter instantiates a new AlertApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertApiFilterWithDefaults instantiates a new AlertApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannel instantiates a new AlertChannel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelEmailParams instantiates a new AlertChannelEmailParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelEmailParamsAllOf instantiates a new AlertChannelEmailParamsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelEmailParamsAllOfWithDefaults instantiates a new AlertChannelEmailParamsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelEmailParamsWithDefaults instantiates a new AlertChannelEmailParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelFormData instantiates a new AlertChannelFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelFormDataWithDefaults instantiates a new AlertChannelFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelPagerDutyParams instantiates a new AlertChannelPagerDutyParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelPagerDutyParamsAllOf instantiates a new AlertChannelPagerDutyParamsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelPagerDutyParamsAllOfWithDefaults instantiates a new AlertChannelPagerDutyParamsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelPagerDutyParamsWithDefaults instantiates a new AlertChannelPagerDutyParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelParams instantiates a new AlertChannelParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelParamsWithDefaults instantiates a new AlertChannelParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelSlackParams instantiates a new AlertChannelSlackParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelSlackParamsAllOf instantiates a new AlertChannelSlackParamsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelSlackParamsAllOfWithDefaults instantiates a new AlertChannelSlackParamsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelSlackParamsWithDefaults instantiates a new AlertChannelSlackParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelTemplates instantiates a new AlertChannelTemplates object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelTemplatesExtWithDefaultValues instantiates a new AlertChannelTemplatesExtWithDefaultValues object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelTemplatesExtWithDefaultValuesWithDefaults instantiates a new AlertChannelTemplatesExtWithDefaultValues object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelTemplatesWithDefaults instantiates a new AlertChannelTemplates object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelWebHookParams instantiates a new AlertChannelWebHookParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelWebHookParamsAllOf instantiates a new AlertChannelWebHookParamsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertChannelWebHookParamsAllOfWithDefaults instantiates a new AlertChannelWebHookParamsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelWebHookParamsWithDefaults instantiates a new AlertChannelWebHookParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertChannelWithDefaults instantiates a new AlertChannel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfiguration instantiates a new AlertConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationApiFilter instantiates a new AlertConfigurationApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationApiFilterWithDefaults instantiates a new AlertConfigurationApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationPagedApiQuery instantiates a new AlertConfigurationPagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationPagedApiQueryWithDefaults instantiates a new AlertConfigurationPagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationPagedResponse instantiates a new AlertConfigurationPagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationPagedResponseWithDefaults instantiates a new AlertConfigurationPagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationTarget instantiates a new AlertConfigurationTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationTargetWithDefaults instantiates a new AlertConfigurationTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationTemplate instantiates a new AlertConfigurationTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationTemplateWithDefaults instantiates a new AlertConfigurationTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationThreshold instantiates a new AlertConfigurationThreshold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertConfigurationThresholdWithDefaults instantiates a new AlertConfigurationThreshold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertConfigurationWithDefaults instantiates a new AlertConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertDefinition instantiates a new AlertDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertDefinitionLabel instantiates a new AlertDefinitionLabel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertDefinitionLabelKey instantiates a new AlertDefinitionLabelKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertDefinitionLabelKeyWithDefaults instantiates a new AlertDefinitionLabelKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertDefinitionLabelWithDefaults instantiates a new AlertDefinitionLabel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertDefinitionWithDefaults instantiates a new AlertDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertDestination instantiates a new AlertDestination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertDestinationFormData instantiates a new AlertDestinationFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertDestinationFormDataWithDefaults instantiates a new AlertDestinationFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertDestinationWithDefaults instantiates a new AlertDestination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertingData instantiates a new AlertingData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertingDataWithDefaults instantiates a new AlertingData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertLabel instantiates a new AlertLabel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertLabelKey instantiates a new AlertLabelKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertLabelKeyWithDefaults instantiates a new AlertLabelKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertLabelWithDefaults instantiates a new AlertLabel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertPagedApiQuery instantiates a new AlertPagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertPagedApiQueryWithDefaults instantiates a new AlertPagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertPagedResponse instantiates a new AlertPagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertPagedResponseWithDefaults instantiates a new AlertPagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateApiFilter instantiates a new AlertTemplateApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateApiFilterWithDefaults instantiates a new AlertTemplateApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateSettings instantiates a new AlertTemplateSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateSettingsFormData instantiates a new AlertTemplateSettingsFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateSettingsFormDataWithDefaults instantiates a new AlertTemplateSettingsFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateSettingsWithDefaults instantiates a new AlertTemplateSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateVariable instantiates a new AlertTemplateVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateVariablesFormData instantiates a new AlertTemplateVariablesFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateVariablesFormDataWithDefaults instantiates a new AlertTemplateVariablesFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateVariablesList instantiates a new AlertTemplateVariablesList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAlertTemplateVariablesListWithDefaults instantiates a new AlertTemplateVariablesList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertTemplateVariableWithDefaults instantiates a new AlertTemplateVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAlertWithDefaults instantiates a new Alert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAllowedUniverseTasksResp instantiates a new AllowedUniverseTasksResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAllowedUniverseTasksRespWithDefaults instantiates a new AllowedUniverseTasksResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewArtifact instantiates a new Artifact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArtifactWithDefaults instantiates a new Artifact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAudit instantiates a new Audit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuditLogConfig instantiates a new AuditLogConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuditLogConfigParams instantiates a new AuditLogConfigParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuditLogConfigParamsWithDefaults instantiates a new AuditLogConfigParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuditLogConfigWithDefaults instantiates a new AuditLogConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuditLoggingConfig instantiates a new AuditLoggingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuditLoggingConfigWithDefaults instantiates a new AuditLoggingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuditWithDefaults instantiates a new Audit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailabilityZone instantiates a new AvailabilityZone object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailabilityZoneData instantiates a new AvailabilityZoneData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailabilityZoneDataWithDefaults instantiates a new AvailabilityZoneData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailabilityZoneDetails instantiates a new AvailabilityZoneDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailabilityZoneDetailsWithDefaults instantiates a new AvailabilityZoneDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailabilityZoneEditData instantiates a new AvailabilityZoneEditData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailabilityZoneEditDataWithDefaults instantiates a new AvailabilityZoneEditData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailabilityZoneFormData instantiates a new AvailabilityZoneFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailabilityZoneFormDataWithDefaults instantiates a new AvailabilityZoneFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailabilityZoneWithDefaults instantiates a new AvailabilityZone object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSCloudInfo instantiates a new AWSCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSCloudInfoWithDefaults instantiates a new AWSCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSCloudWatchConfig instantiates a new AWSCloudWatchConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSCloudWatchConfigAllOf instantiates a new AWSCloudWatchConfigAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSCloudWatchConfigAllOfWithDefaults instantiates a new AWSCloudWatchConfigAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSCloudWatchConfigWithDefaults instantiates a new AWSCloudWatchConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSRegionCloudInfo instantiates a new AWSRegionCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSRegionCloudInfoWithDefaults instantiates a new AWSRegionCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAZCloudInfo instantiates a new AZCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAZCloudInfoWithDefaults instantiates a new AZCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAZOverrides instantiates a new AZOverrides object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAZOverridesWithDefaults instantiates a new AZOverrides object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureCloudInfo instantiates a new AzureCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureCloudInfoWithDefaults instantiates a new AzureCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureRegionCloudInfo instantiates a new AzureRegionCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureRegionCloudInfoWithDefaults instantiates a new AzureRegionCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackup instantiates a new Backup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupApiFilter instantiates a new BackupApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupApiFilterWithDefaults instantiates a new BackupApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupPagedApiQuery instantiates a new BackupPagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupPagedApiQueryWithDefaults instantiates a new BackupPagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupPagedApiResponse instantiates a new BackupPagedApiResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupPagedApiResponseWithDefaults instantiates a new BackupPagedApiResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupPointInTimeRestoreWindow instantiates a new BackupPointInTimeRestoreWindow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupPointInTimeRestoreWindowWithDefaults instantiates a new BackupPointInTimeRestoreWindow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupRequestParams instantiates a new BackupRequestParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupRequestParamsWithDefaults instantiates a new BackupRequestParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupResp instantiates a new BackupResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupRespWithDefaults instantiates a new BackupResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupScheduleEditParams instantiates a new BackupScheduleEditParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupScheduleEditParamsWithDefaults instantiates a new BackupScheduleEditParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupScheduleToggleParams instantiates a new BackupScheduleToggleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupScheduleToggleParamsWithDefaults instantiates a new BackupScheduleToggleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupStorageInfo instantiates a new BackupStorageInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupStorageInfoWithDefaults instantiates a new BackupStorageInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupTableParams instantiates a new BackupTableParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBackupTableParamsWithDefaults instantiates a new BackupTableParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBackupWithDefaults instantiates a new Backup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBasicAuthInformation instantiates a new BasicAuthInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBasicAuthInformationAllOf instantiates a new BasicAuthInformationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBasicAuthInformationAllOfWithDefaults instantiates a new BasicAuthInformationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBasicAuthInformationWithDefaults instantiates a new BasicAuthInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBootstarpBackupParams instantiates a new BootstarpBackupParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBootstarpBackupParamsWithDefaults instantiates a new BootstarpBackupParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBootstrapBackupParams instantiates a new BootstrapBackupParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBootstrapBackupParamsWithDefaults instantiates a new BootstrapBackupParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBootstrapParams instantiates a new BootstrapParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBootstrapParamsWithDefaults instantiates a new BootstrapParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBulkImportParams instantiates a new BulkImportParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBulkImportParamsWithDefaults instantiates a new BulkImportParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBundleDetails instantiates a new BundleDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBundleDetailsWithDefaults instantiates a new BundleDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBundleInfo instantiates a new BundleInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBundleInfoWithDefaults instantiates a new BundleInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateDetails instantiates a new CertificateDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateDetailsWithDefaults instantiates a new CertificateDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateInfo instantiates a new CertificateInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateInfoExt instantiates a new CertificateInfoExt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateInfoExtWithDefaults instantiates a new CertificateInfoExt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateInfoWithDefaults instantiates a new CertificateInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateParams instantiates a new CertificateParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateParamsWithDefaults instantiates a new CertificateParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertsRotateParams instantiates a new CertsRotateParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertsRotateParamsWithDefaults instantiates a new CertsRotateParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientCertParams instantiates a new ClientCertParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientCertParamsWithDefaults instantiates a new ClientCertParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudInfo instantiates a new CloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudInfoWithDefaults instantiates a new CloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudSpecificInfo instantiates a new CloudSpecificInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudSpecificInfoWithDefaults instantiates a new CloudSpecificInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCluster instantiates a new Cluster object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClusterWithDefaults instantiates a new Cluster object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewColumnDetails instantiates a new ColumnDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewColumnDetailsWithDefaults instantiates a new ColumnDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonBackupInfo instantiates a new CommonBackupInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonBackupInfoWithDefaults instantiates a new CommonBackupInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommunicationPorts instantiates a new CommunicationPorts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommunicationPortsWithDefaults instantiates a new CommunicationPorts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfDataType instantiates a new ConfDataType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfDataTypeObject instantiates a new ConfDataTypeObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfDataTypeObjectWithDefaults instantiates a new ConfDataTypeObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfDataTypeWithDefaults instantiates a new ConfDataType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfig instantiates a new Config object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigEntry instantiates a new ConfigEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigEntryWithDefaults instantiates a new ConfigEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigureYCQLFormData instantiates a new ConfigureYCQLFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigureYCQLFormDataWithDefaults instantiates a new ConfigureYCQLFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigureYSQLFormData instantiates a new ConfigureYSQLFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigureYSQLFormDataWithDefaults instantiates a new ConfigureYSQLFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigWithDefaults instantiates a new Config object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfKeyInfo instantiates a new ConfKeyInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfKeyInfoWithDefaults instantiates a new ConfKeyInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreatePitrConfigParams instantiates a new CreatePitrConfigParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatePitrConfigParamsWithDefaults instantiates a new CreatePitrConfigParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRelease instantiates a new CreateRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateReleaseWithDefaults instantiates a new CreateRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTablespaceParams instantiates a new CreateTablespaceParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTablespaceParamsWithDefaults instantiates a new CreateTablespaceParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCurrentAdminNotificationMessages instantiates a new CurrentAdminNotificationMessages object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCurrentAdminNotificationMessagesWithDefaults instantiates a new CurrentAdminNotificationMessages object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomCaCertificateInfo instantiates a new CustomCaCertificateInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomCaCertificateInfoWithDefaults instantiates a new CustomCaCertificateInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomCACertParams instantiates a new CustomCACertParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomCACertParamsWithDefaults instantiates a new CustomCACertParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomCertInfo instantiates a new CustomCertInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomCertInfoWithDefaults instantiates a new CustomCertInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomer instantiates a new Customer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerAlertData instantiates a new CustomerAlertData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerAlertDataWithDefaults instantiates a new CustomerAlertData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerConfig instantiates a new CustomerConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerConfigUI instantiates a new CustomerConfigUI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerConfigUIWithDefaults instantiates a new CustomerConfigUI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerConfigWithDefaults instantiates a new CustomerConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerCountResp instantiates a new CustomerCountResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerCountRespWithDefaults instantiates a new CustomerCountResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerDetailsData instantiates a new CustomerDetailsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerDetailsDataWithDefaults instantiates a new CustomerDetailsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerLicense instantiates a new CustomerLicense object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerLicenseWithDefaults instantiates a new CustomerLicense object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerLoginFormData instantiates a new CustomerLoginFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerLoginFormDataWithDefaults instantiates a new CustomerLoginFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerRegisterFormData instantiates a new CustomerRegisterFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerRegisterFormDataWithDefaults instantiates a new CustomerRegisterFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerTaskData instantiates a new CustomerTaskData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerTaskDataWithDefaults instantiates a new CustomerTaskData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerWithDefaults instantiates a new Customer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomServerCertData instantiates a new CustomServerCertData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomServerCertDataWithDefaults instantiates a new CustomServerCertData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomServerCertInfo instantiates a new CustomServerCertInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomServerCertInfoWithDefaults instantiates a new CustomServerCertInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatabaseSecurityFormData instantiates a new DatabaseSecurityFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatabaseSecurityFormDataWithDefaults instantiates a new DatabaseSecurityFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatabaseUserFormData instantiates a new DatabaseUserFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatabaseUserFormDataWithDefaults instantiates a new DatabaseUserFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDataDogConfig instantiates a new DataDogConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDataDogConfigAllOf instantiates a new DataDogConfigAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDataDogConfigAllOfWithDefaults instantiates a new DataDogConfigAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDataDogConfigWithDefaults instantiates a new DataDogConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBackupInfo instantiates a new DeleteBackupInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBackupInfoWithDefaults instantiates a new DeleteBackupInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteBackupParams instantiates a new DeleteBackupParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteBackupParamsWithDefaults instantiates a new DeleteBackupParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDetails instantiates a new Details object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDetailsWithDefaults instantiates a new Details object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceInfo instantiates a new DeviceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceInfoWithDefaults instantiates a new DeviceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfig instantiates a new DrConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigCreateForm instantiates a new DrConfigCreateForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigCreateFormWithDefaults instantiates a new DrConfigCreateForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigEditForm instantiates a new DrConfigEditForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigEditFormWithDefaults instantiates a new DrConfigEditForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigFailoverForm instantiates a new DrConfigFailoverForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigFailoverFormWithDefaults instantiates a new DrConfigFailoverForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigGetResp instantiates a new DrConfigGetResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigGetRespWithDefaults instantiates a new DrConfigGetResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigReplaceReplicaForm instantiates a new DrConfigReplaceReplicaForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigReplaceReplicaFormWithDefaults instantiates a new DrConfigReplaceReplicaForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigRestartForm instantiates a new DrConfigRestartForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigRestartFormWithDefaults instantiates a new DrConfigRestartForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigSafetimeResp instantiates a new DrConfigSafetimeResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigSafetimeRespWithDefaults instantiates a new DrConfigSafetimeResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigSetDatabasesForm instantiates a new DrConfigSetDatabasesForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigSetDatabasesFormWithDefaults instantiates a new DrConfigSetDatabasesForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigSetTablesForm instantiates a new DrConfigSetTablesForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigSetTablesFormWithDefaults instantiates a new DrConfigSetTablesForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigSwitchoverForm instantiates a new DrConfigSwitchoverForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDrConfigSwitchoverFormWithDefaults instantiates a new DrConfigSwitchoverForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDrConfigWithDefaults instantiates a new DrConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEditAccessKeyRotationScheduleParams instantiates a new EditAccessKeyRotationScheduleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEditAccessKeyRotationScheduleParamsWithDefaults instantiates a new EditAccessKeyRotationScheduleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEditBackupParams instantiates a new EditBackupParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEditBackupParamsWithDefaults instantiates a new EditBackupParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEditBackupScheduleParams instantiates a new EditBackupScheduleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEditBackupScheduleParamsWithDefaults instantiates a new EditBackupScheduleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptionAtRestConfig instantiates a new EncryptionAtRestConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptionAtRestConfigWithDefaults instantiates a new EncryptionAtRestConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptionAtRestKeyParams instantiates a new EncryptionAtRestKeyParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptionAtRestKeyParamsWithDefaults instantiates a new EncryptionAtRestKeyParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtractMetadata instantiates a new ExtractMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtractMetadataWithDefaults instantiates a new ExtractMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtraDependencies instantiates a new ExtraDependencies object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtraDependenciesWithDefaults instantiates a new ExtraDependencies object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFailedSubtasks instantiates a new FailedSubtasks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFailedSubtasksWithDefaults instantiates a new FailedSubtasks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFinalizeUpgradeInfoResponse instantiates a new FinalizeUpgradeInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFinalizeUpgradeInfoResponseWithDefaults instantiates a new FinalizeUpgradeInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFinalizeUpgradeParams instantiates a new FinalizeUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFinalizeUpgradeParamsWithDefaults instantiates a new FinalizeUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPCloudInfo instantiates a new GCPCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPCloudInfoWithDefaults instantiates a new GCPCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPCloudMonitoringConfig instantiates a new GCPCloudMonitoringConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPCloudMonitoringConfigAllOf instantiates a new GCPCloudMonitoringConfigAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPCloudMonitoringConfigAllOfWithDefaults instantiates a new GCPCloudMonitoringConfigAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPCloudMonitoringConfigWithDefaults instantiates a new GCPCloudMonitoringConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPRegionCloudInfo instantiates a new GCPRegionCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPRegionCloudInfoWithDefaults instantiates a new GCPRegionCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCSLocation instantiates a new GCSLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCSLocationWithDefaults instantiates a new GCSLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGFlagsUpgradeParams instantiates a new GFlagsUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGFlagsUpgradeParamsWithDefaults instantiates a new GFlagsUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupMappingInfo instantiates a new GroupMappingInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupMappingInfoWithDefaults instantiates a new GroupMappingInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHashedTimestampColumnFinderResponse instantiates a new HashedTimestampColumnFinderResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHashedTimestampColumnFinderResponseWithDefaults instantiates a new HashedTimestampColumnFinderResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHashicorpVaultConfigParams instantiates a new HashicorpVaultConfigParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHashicorpVaultConfigParamsWithDefaults instantiates a new HashicorpVaultConfigParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHTTPAuthInformation instantiates a new HTTPAuthInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHTTPAuthInformationWithDefaults instantiates a new HTTPAuthInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHttpLocation instantiates a new HttpLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHttpLocationWithDefaults instantiates a new HttpLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageBundle instantiates a new ImageBundle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageBundleDetails instantiates a new ImageBundleDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageBundleDetailsWithDefaults instantiates a new ImageBundleDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageBundleUpgradeInfo instantiates a new ImageBundleUpgradeInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageBundleUpgradeInfoWithDefaults instantiates a new ImageBundleUpgradeInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageBundleWithDefaults instantiates a new ImageBundle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImpactedXClusterConnectedUniverse instantiates a new ImpactedXClusterConnectedUniverse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImpactedXClusterConnectedUniverseWithDefaults instantiates a new ImpactedXClusterConnectedUniverse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportUniverseFormData instantiates a new ImportUniverseFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportUniverseFormDataWithDefaults instantiates a new ImportUniverseFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstanceType instantiates a new InstanceType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstanceTypeDetails instantiates a new InstanceTypeDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstanceTypeDetailsWithDefaults instantiates a new InstanceTypeDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstanceTypeKey instantiates a new InstanceTypeKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstanceTypeKeyWithDefaults instantiates a new InstanceTypeKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstanceTypeResp instantiates a new InstanceTypeResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstanceTypeRespWithDefaults instantiates a new InstanceTypeResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstanceTypeWithDefaults instantiates a new InstanceType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SNodeResourceSpec instantiates a new K8SNodeResourceSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SNodeResourceSpecWithDefaults instantiates a new K8SNodeResourceSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKeyInfo instantiates a new KeyInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKeyInfoWithDefaults instantiates a new KeyInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKeyspaceTable instantiates a new KeyspaceTable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKeyspaceTables instantiates a new KeyspaceTables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKeyspaceTablesList instantiates a new KeyspaceTablesList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKeyspaceTablesListWithDefaults instantiates a new KeyspaceTablesList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKeyspaceTablesWithDefaults instantiates a new KeyspaceTables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKeyspaceTableWithDefaults instantiates a new KeyspaceTable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesInfo instantiates a new KubernetesInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesInfoWithDefaults instantiates a new KubernetesInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesOverrideError instantiates a new KubernetesOverrideError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesOverrideErrorWithDefaults instantiates a new KubernetesOverrideError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesOverridesResponse instantiates a new KubernetesOverridesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesOverridesResponseWithDefaults instantiates a new KubernetesOverridesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesOverridesUpgradeParams instantiates a new KubernetesOverridesUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesOverridesUpgradeParamsWithDefaults instantiates a new KubernetesOverridesUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesRegionInfo instantiates a new KubernetesRegionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesRegionInfoWithDefaults instantiates a new KubernetesRegionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapDnToYbaRoleData instantiates a new LdapDnToYbaRoleData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapDnToYbaRoleDataWithDefaults instantiates a new LdapDnToYbaRoleData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapDnYbaRoleDataPair instantiates a new LdapDnYbaRoleDataPair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapDnYbaRoleDataPairWithDefaults instantiates a new LdapDnYbaRoleDataPair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapUnivSyncFormData instantiates a new LdapUnivSyncFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapUnivSyncFormDataWithDefaults instantiates a new LdapUnivSyncFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocalCloudInfo instantiates a new LocalCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocalCloudInfoWithDefaults instantiates a new LocalCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogData instantiates a new LogData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogDataWithDefaults instantiates a new LogData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMaintenanceWindow instantiates a new MaintenanceWindow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMaintenanceWindowApiFilter instantiates a new MaintenanceWindowApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMaintenanceWindowApiFilterWithDefaults instantiates a new MaintenanceWindowApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMaintenanceWindowPagedApiQuery instantiates a new MaintenanceWindowPagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMaintenanceWindowPagedApiQueryWithDefaults instantiates a new MaintenanceWindowPagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMaintenanceWindowPagedResponse instantiates a new MaintenanceWindowPagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMaintenanceWindowPagedResponseWithDefaults instantiates a new MaintenanceWindowPagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMaintenanceWindowWithDefaults instantiates a new MaintenanceWindow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMasterInfo instantiates a new MasterInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMasterInfoWithDefaults instantiates a new MasterInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMasterNode instantiates a new MasterNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMasterNodesInfo instantiates a new MasterNodesInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMasterNodesInfoWithDefaults instantiates a new MasterNodesInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMasterNodeWithDefaults instantiates a new MasterNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMastersList instantiates a new MastersList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMastersListWithDefaults instantiates a new MastersList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetadata instantiates a new Metadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetadataWithDefaults instantiates a new Metadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetric instantiates a new Metric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricLabel instantiates a new MetricLabel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricLabelWithDefaults instantiates a new MetricLabel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricQueryParams instantiates a new MetricQueryParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricQueryParamsWithDefaults instantiates a new MetricQueryParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricSettings instantiates a new MetricSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricSettingsWithDefaults instantiates a new MetricSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricValue instantiates a new MetricValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricValueWithDefaults instantiates a new MetricValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricWithDefaults instantiates a new Metric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMultiTableBackupRequestParams instantiates a new MultiTableBackupRequestParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMultiTableBackupRequestParamsWithDefaults instantiates a new MultiTableBackupRequestParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNamespaceInfoResp instantiates a new NamespaceInfoResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNamespaceInfoRespWithDefaults instantiates a new NamespaceInfoResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNamespaceSafetime instantiates a new NamespaceSafetime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNamespaceSafetimeWithDefaults instantiates a new NamespaceSafetime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNoAuth instantiates a new NoAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNoAuthWithDefaults instantiates a new NoAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeActionFormData instantiates a new NodeActionFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeActionFormDataWithDefaults instantiates a new NodeActionFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeAgent instantiates a new NodeAgent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeAgentApiFilter instantiates a new NodeAgentApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeAgentApiFilterWithDefaults instantiates a new NodeAgentApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeAgentPagedApiQuery instantiates a new NodeAgentPagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeAgentPagedApiQueryWithDefaults instantiates a new NodeAgentPagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeAgentPagedApiResponse instantiates a new NodeAgentPagedApiResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeAgentPagedApiResponseWithDefaults instantiates a new NodeAgentPagedApiResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeAgentResp instantiates a new NodeAgentResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeAgentRespWithDefaults instantiates a new NodeAgentResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeAgentWithDefaults instantiates a new NodeAgent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeConfig instantiates a new NodeConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeConfigWithDefaults instantiates a new NodeConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeData instantiates a new NodeData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeDataWithDefaults instantiates a new NodeData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeDetails instantiates a new NodeDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeDetailsResp instantiates a new NodeDetailsResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeDetailsRespWithDefaults instantiates a new NodeDetailsResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeDetailsWithDefaults instantiates a new NodeDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeInstance instantiates a new NodeInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeInstanceData instantiates a new NodeInstanceData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeInstanceDataWithDefaults instantiates a new NodeInstanceData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeInstanceFormData instantiates a new NodeInstanceFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeInstanceFormDataWithDefaults instantiates a new NodeInstanceFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeInstanceStateFormData instantiates a new NodeInstanceStateFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeInstanceStateFormDataWithDefaults instantiates a new NodeInstanceStateFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeInstanceWithDefaults instantiates a new NodeInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeQueryDistributionDetails instantiates a new NodeQueryDistributionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeQueryDistributionDetailsWithDefaults instantiates a new NodeQueryDistributionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOidcGroupToYbaRolesData instantiates a new OidcGroupToYbaRolesData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOidcGroupToYbaRolesDataWithDefaults instantiates a new OidcGroupToYbaRolesData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOidcGroupToYbaRolesPair instantiates a new OidcGroupToYbaRolesPair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOidcGroupToYbaRolesPairWithDefaults instantiates a new OidcGroupToYbaRolesPair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOnPremCloudInfo instantiates a new OnPremCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOnPremCloudInfoWithDefaults instantiates a new OnPremCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOverridenDetails instantiates a new OverridenDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOverridenDetailsWithDefaults instantiates a new OverridenDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPackage instantiates a new Package object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPackagePaths instantiates a new PackagePaths object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPackagePathsWithDefaults instantiates a new PackagePaths object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPackagesRequestParams instantiates a new PackagesRequestParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPackagesRequestParamsWithDefaults instantiates a new PackagesRequestParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPackageWithDefaults instantiates a new Package object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParametersForAdvancedRestorePreflightChecks instantiates a new ParametersForAdvancedRestorePreflightChecks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParametersForAdvancedRestorePreflightChecksWithDefaults instantiates a new ParametersForAdvancedRestorePreflightChecks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParametersForRestorePreflightChecks instantiates a new ParametersForRestorePreflightChecks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParametersForRestorePreflightChecksWithDefaults instantiates a new ParametersForRestorePreflightChecks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParametersForValidatingRestorableKeyspaceAndTablesInBackup instantiates a new ParametersForValidatingRestorableKeyspaceAndTablesInBackup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParametersForValidatingRestorableKeyspaceAndTablesInBackupWithDefaults instantiates a new ParametersForValidatingRestorableKeyspaceAndTablesInBackup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerBackupLocationKeyspaceTables instantiates a new PerBackupLocationKeyspaceTables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerBackupLocationKeyspaceTablesWithDefaults instantiates a new PerBackupLocationKeyspaceTables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerfAdvisorManualRunStatus instantiates a new PerfAdvisorManualRunStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerfAdvisorManualRunStatusWithDefaults instantiates a new PerfAdvisorManualRunStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerfAdvisorSettingsFormData instantiates a new PerfAdvisorSettingsFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerfAdvisorSettingsFormDataWithDefaults instantiates a new PerfAdvisorSettingsFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerfAdvisorSettingsWithDefaults instantiates a new PerfAdvisorSettingsWithDefaults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerfAdvisorSettingsWithDefaultsWithDefaults instantiates a new PerfAdvisorSettingsWithDefaults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerformanceRecommendation instantiates a new PerformanceRecommendation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerformanceRecommendationFilter instantiates a new PerformanceRecommendationFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerformanceRecommendationFilterWithDefaults instantiates a new PerformanceRecommendationFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerformanceRecommendationPagedQuery instantiates a new PerformanceRecommendationPagedQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerformanceRecommendationPagedQueryWithDefaults instantiates a new PerformanceRecommendationPagedQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerformanceRecommendationPagedResponse instantiates a new PerformanceRecommendationPagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerformanceRecommendationPagedResponseWithDefaults instantiates a new PerformanceRecommendationPagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerformanceRecommendationWithDefaults instantiates a new PerformanceRecommendation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerLocationBackupInfo instantiates a new PerLocationBackupInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerLocationBackupInfoWithDefaults instantiates a new PerLocationBackupInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermission instantiates a new Permission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionDetails instantiates a new PermissionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionDetailsWithDefaults instantiates a new PermissionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionInfo instantiates a new PermissionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionInfoIdentifier instantiates a new PermissionInfoIdentifier object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionInfoIdentifierWithDefaults instantiates a new PermissionInfoIdentifier object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionInfoWithDefaults instantiates a new PermissionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionWithDefaults instantiates a new Permission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerProcessDetails instantiates a new PerProcessDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerProcessDetailsWithDefaults instantiates a new PerProcessDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerProcessFlags instantiates a new PerProcessFlags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerProcessFlagsWithDefaults instantiates a new PerProcessFlags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPitrConfig instantiates a new PitrConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPitrConfigWithDefaults instantiates a new PitrConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPitrParams instantiates a new PitrParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPitrParamsWithDefaults instantiates a new PitrParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlacementAZ instantiates a new PlacementAZ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlacementAZWithDefaults instantiates a new PlacementAZ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlacementBlock instantiates a new PlacementBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlacementBlockWithDefaults instantiates a new PlacementBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlacementCloud instantiates a new PlacementCloud object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlacementCloudWithDefaults instantiates a new PlacementCloud object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlacementInfo instantiates a new PlacementInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlacementInfoWithDefaults instantiates a new PlacementInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlacementRegion instantiates a new PlacementRegion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlacementRegionWithDefaults instantiates a new PlacementRegion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlatformLoggingConfig instantiates a new PlatformLoggingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlatformLoggingConfigWithDefaults instantiates a new PlatformLoggingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPresetThrottleValues instantiates a new PresetThrottleValues object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPresetThrottleValuesWithDefaults instantiates a new PresetThrottleValues object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrevYBSoftwareConfig instantiates a new PrevYBSoftwareConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrevYBSoftwareConfigWithDefaults instantiates a new PrevYBSoftwareConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrincipal instantiates a new Principal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrincipalWithDefaults instantiates a new Principal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProvider instantiates a new Provider object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderDetails instantiates a new ProviderDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderDetailsWithDefaults instantiates a new ProviderDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderWithDefaults instantiates a new Provider object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProxyConfig instantiates a new ProxyConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProxyConfigUpdateParams instantiates a new ProxyConfigUpdateParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProxyConfigUpdateParamsWithDefaults instantiates a new ProxyConfigUpdateParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProxyConfigWithDefaults instantiates a new ProxyConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryDistributionSuggestionResponse instantiates a new QueryDistributionSuggestionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryDistributionSuggestionResponseWithDefaults instantiates a new QueryDistributionSuggestionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegion instantiates a new Region object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionCloudInfo instantiates a new RegionCloudInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionCloudInfoWithDefaults instantiates a new RegionCloudInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionDetails instantiates a new RegionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionDetailsWithDefaults instantiates a new RegionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionEditFormData instantiates a new RegionEditFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionEditFormDataWithDefaults instantiates a new RegionEditFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionFormData instantiates a new RegionFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionFormDataWithDefaults instantiates a new RegionFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionLocations instantiates a new RegionLocations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionLocationsWithDefaults instantiates a new RegionLocations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionMetadata instantiates a new RegionMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionMetadataInfo instantiates a new RegionMetadataInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegionMetadataInfoWithDefaults instantiates a new RegionMetadataInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionMetadataWithDefaults instantiates a new RegionMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegionWithDefaults instantiates a new Region object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReinstallNodeAgentForm instantiates a new ReinstallNodeAgentForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReinstallNodeAgentFormWithDefaults instantiates a new ReinstallNodeAgentForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseFormData instantiates a new ReleaseFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseFormDataWithDefaults instantiates a new ReleaseFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseMetadata instantiates a new ReleaseMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseMetadataWithDefaults instantiates a new ReleaseMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReplicaPlacement instantiates a new ReplicaPlacement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReplicaPlacementWithDefaults instantiates a new ReplicaPlacement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResizeNodeParams instantiates a new ResizeNodeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResizeNodeParamsWithDefaults instantiates a new ResizeNodeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceDefinition instantiates a new ResourceDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceDefinitionWithDefaults instantiates a new ResourceDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceGroup instantiates a new ResourceGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceGroupWithDefaults instantiates a new ResourceGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResponseExtractMetadata instantiates a new ResponseExtractMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResponseExtractMetadataWithDefaults instantiates a new ResponseExtractMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResponseRelease instantiates a new ResponseRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResponseReleaseWithDefaults instantiates a new ResponseRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestartBootstrapParams instantiates a new RestartBootstrapParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestartBootstrapParamsWithDefaults instantiates a new RestartBootstrapParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestartTaskParams instantiates a new RestartTaskParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestartTaskParamsWithDefaults instantiates a new RestartTaskParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestoreApiFilter instantiates a new RestoreApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestoreApiFilterWithDefaults instantiates a new RestoreApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestoreBackupParams instantiates a new RestoreBackupParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestoreBackupParamsWithDefaults instantiates a new RestoreBackupParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestoreKeyspace instantiates a new RestoreKeyspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestoreKeyspaceWithDefaults instantiates a new RestoreKeyspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestorePagedApiQuery instantiates a new RestorePagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestorePagedApiQueryWithDefaults instantiates a new RestorePagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestorePagedApiResponse instantiates a new RestorePagedApiResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestorePagedApiResponseWithDefaults instantiates a new RestorePagedApiResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestorePreflightParams instantiates a new RestorePreflightParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestorePreflightParamsWithDefaults instantiates a new RestorePreflightParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestorePreflightResponse instantiates a new RestorePreflightResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestorePreflightResponseWithDefaults instantiates a new RestorePreflightResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestoreResp instantiates a new RestoreResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestoreRespWithDefaults instantiates a new RestoreResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestoreSnapshotScheduleParams instantiates a new RestoreSnapshotScheduleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestoreSnapshotScheduleParamsWithDefaults instantiates a new RestoreSnapshotScheduleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewRoleAttribute instantiates a new RoleAttribute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleAttributeWithDefaults instantiates a new RoleAttribute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleBinding instantiates a new RoleBinding object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleBindingFormData instantiates a new RoleBindingFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleBindingFormDataWithDefaults instantiates a new RoleBindingFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleBindingWithDefaults instantiates a new RoleBinding object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleFormData instantiates a new RoleFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleFormDataWithDefaults instantiates a new RoleFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleResourceDefinition instantiates a new RoleResourceDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleResourceDefinitionWithDefaults instantiates a new RoleResourceDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewRollbackUpgradeParams instantiates a new RollbackUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRollbackUpgradeParamsWithDefaults instantiates a new RollbackUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRollMaxBatchSize instantiates a new RollMaxBatchSize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRollMaxBatchSizeWithDefaults instantiates a new RollMaxBatchSize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRunQueryFormData instantiates a new RunQueryFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRunQueryFormDataWithDefaults instantiates a new RunQueryFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRuntimeConfigData instantiates a new RuntimeConfigData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRuntimeConfigDataWithDefaults instantiates a new RuntimeConfigData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewS3Location instantiates a new S3Location object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewS3LocationWithDefaults instantiates a new S3Location object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchedule instantiates a new Schedule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduleApiFilter instantiates a new ScheduleApiFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduleApiFilterWithDefaults instantiates a new ScheduleApiFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchedulePagedApiQuery instantiates a new SchedulePagedApiQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchedulePagedApiQueryWithDefaults instantiates a new SchedulePagedApiQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSchedulePagedResponse instantiates a new SchedulePagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSchedulePagedResponseWithDefaults instantiates a new SchedulePagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScheduleWithDefaults instantiates a new Schedule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScopedConfig instantiates a new ScopedConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScopedConfigWithDefaults instantiates a new ScopedConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessionInfo instantiates a new SessionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionInfoWithDefaults instantiates a new SessionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmtpData instantiates a new SmtpData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmtpDataWithDefaults instantiates a new SmtpData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareUpgradeInfoRequest instantiates a new SoftwareUpgradeInfoRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareUpgradeInfoRequestWithDefaults instantiates a new SoftwareUpgradeInfoRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareUpgradeInfoResponse instantiates a new SoftwareUpgradeInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareUpgradeInfoResponseWithDefaults instantiates a new SoftwareUpgradeInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareUpgradeParams instantiates a new SoftwareUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareUpgradeParamsWithDefaults instantiates a new SoftwareUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSpecificGFlags instantiates a new SpecificGFlags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSpecificGFlagsWithDefaults instantiates a new SpecificGFlags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSplunkConfig instantiates a new SplunkConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSplunkConfigAllOf instantiates a new SplunkConfigAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSplunkConfigAllOfWithDefaults instantiates a new SplunkConfigAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSplunkConfigWithDefaults instantiates a new SplunkConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateChangeAuditInfo instantiates a new StateChangeAuditInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateChangeAuditInfoFilter instantiates a new StateChangeAuditInfoFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateChangeAuditInfoFilterWithDefaults instantiates a new StateChangeAuditInfoFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateChangeAuditInfoPagedQuery instantiates a new StateChangeAuditInfoPagedQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateChangeAuditInfoPagedQueryWithDefaults instantiates a new StateChangeAuditInfoPagedQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateChangeAuditInfoPagedResponse instantiates a new StateChangeAuditInfoPagedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateChangeAuditInfoPagedResponseWithDefaults instantiates a new StateChangeAuditInfoPagedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateChangeAuditInfoWithDefaults instantiates a new StateChangeAuditInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubtaskData instantiates a new SubtaskData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubtaskDataWithDefaults instantiates a new SubtaskData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupportBundle instantiates a new SupportBundle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupportBundleFormData instantiates a new SupportBundleFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupportBundleFormDataWithDefaults instantiates a new SupportBundleFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupportBundleWithDefaults instantiates a new SupportBundle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSuppressHealthCheckNotificationsConfig instantiates a new SuppressHealthCheckNotificationsConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSuppressHealthCheckNotificationsConfigWithDefaults instantiates a new SuppressHealthCheckNotificationsConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSystemdUpgradeParams instantiates a new SystemdUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSystemdUpgradeParamsWithDefaults instantiates a new SystemdUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTableDefinitionTaskParams instantiates a new TableDefinitionTaskParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTableDefinitionTaskParamsWithDefaults instantiates a new TableDefinitionTaskParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTableDetails instantiates a new TableDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTableDetailsWithDefaults instantiates a new TableDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTableInfoResp instantiates a new TableInfoResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTableInfoRespWithDefaults instantiates a new TableInfoResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTablespace instantiates a new Tablespace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTableSpaceInfo instantiates a new TableSpaceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTableSpaceInfoWithDefaults instantiates a new TableSpaceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTablespaceResponse instantiates a new TablespaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTablespaceResponseWithDefaults instantiates a new TablespaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTablespaceWithDefaults instantiates a new Tablespace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTelemetryProvider instantiates a new TelemetryProvider object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTelemetryProviderConfig instantiates a new TelemetryProviderConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTelemetryProviderConfigWithDefaults instantiates a new TelemetryProviderConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTelemetryProviderWithDefaults instantiates a new TelemetryProvider object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewThirdpartySoftwareUpgradeParams instantiates a new ThirdpartySoftwareUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewThirdpartySoftwareUpgradeParamsWithDefaults instantiates a new ThirdpartySoftwareUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewThrottleParamValue instantiates a new ThrottleParamValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewThrottleParamValueWithDefaults instantiates a new ThrottleParamValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTlsToggleParams instantiates a new TlsToggleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTlsToggleParamsWithDefaults instantiates a new TlsToggleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenAuthInformation instantiates a new TokenAuthInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenAuthInformationAllOf instantiates a new TokenAuthInformationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenAuthInformationAllOfWithDefaults instantiates a new TokenAuthInformationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenAuthInformationWithDefaults instantiates a new TokenAuthInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTriggerHealthCheckResult instantiates a new TriggerHealthCheckResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerHealthCheckResultWithDefaults instantiates a new TriggerHealthCheckResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTroubleshootingPlatform instantiates a new TroubleshootingPlatform object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTroubleshootingPlatformDetailsModel instantiates a new TroubleshootingPlatformDetailsModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTroubleshootingPlatformDetailsModelWithDefaults instantiates a new TroubleshootingPlatformDetailsModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTroubleshootingPlatformWithDefaults instantiates a new TroubleshootingPlatform object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverse instantiates a new Universe object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseBackupRequestFormData instantiates a new UniverseBackupRequestFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseBackupRequestFormDataWithDefaults instantiates a new UniverseBackupRequestFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseConfigureTaskParams instantiates a new UniverseConfigureTaskParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseConfigureTaskParamsWithDefaults instantiates a new UniverseConfigureTaskParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseDefinitionTaskParams instantiates a new UniverseDefinitionTaskParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseDefinitionTaskParamsResp instantiates a new UniverseDefinitionTaskParamsResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseDefinitionTaskParamsRespWithDefaults instantiates a new UniverseDefinitionTaskParamsResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseDefinitionTaskParamsWithDefaults instantiates a new UniverseDefinitionTaskParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseDetailSubset instantiates a new UniverseDetailSubset object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseDetailSubsetWithDefaults instantiates a new UniverseDetailSubset object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseLogsExporterConfig instantiates a new UniverseLogsExporterConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseLogsExporterConfigWithDefaults instantiates a new UniverseLogsExporterConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniversePerformanceAdvisorStatus instantiates a new UniversePerformanceAdvisorStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniversePerformanceAdvisorStatusWithDefaults instantiates a new UniversePerformanceAdvisorStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseResourceDetails instantiates a new UniverseResourceDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseResourceDetailsWithDefaults instantiates a new UniverseResourceDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseResp instantiates a new UniverseResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniverseRespWithDefaults instantiates a new UniverseResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniverseWithDefaults instantiates a new Universe object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnusedIndexFinderResponse instantiates a new UnusedIndexFinderResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnusedIndexFinderResponseWithDefaults instantiates a new UnusedIndexFinderResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateLoadBalancerConfig instantiates a new UpdateLoadBalancerConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateLoadBalancerConfigWithDefaults instantiates a new UpdateLoadBalancerConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRelease instantiates a new UpdateRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateReleaseWithDefaults instantiates a new UpdateRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpgradeTaskParams instantiates a new UpgradeTaskParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpgradeTaskParamsWithDefaults instantiates a new UpgradeTaskParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserIntent instantiates a new UserIntent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserIntentOverrides instantiates a new UserIntentOverrides object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserIntentOverridesWithDefaults instantiates a new UserIntentOverrides object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserIntentWithDefaults instantiates a new UserIntent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserOIDCAuthToken instantiates a new UserOIDCAuthToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserOIDCAuthTokenWithDefaults instantiates a new UserOIDCAuthToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserPasswordChangeFormData instantiates a new UserPasswordChangeFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserPasswordChangeFormDataWithDefaults instantiates a new UserPasswordChangeFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserProfileData instantiates a new UserProfileData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserProfileDataWithDefaults instantiates a new UserProfileData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserRegistrationData instantiates a new UserRegistrationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserRegistrationDataWithDefaults instantiates a new UserRegistrationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsers instantiates a new Users object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersWithDefaults instantiates a new Users object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserWithFeatures instantiates a new UserWithFeatures object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserWithFeaturesWithDefaults instantiates a new UserWithFeatures object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidationResult instantiates a new ValidationResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidationResultWithDefaults instantiates a new ValidationResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVMImageUpgradeParams instantiates a new VMImageUpgradeParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVMImageUpgradeParamsWithDefaults instantiates a new VMImageUpgradeParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumeDetails instantiates a new VolumeDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumeDetailsWithDefaults instantiates a new VolumeDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfig instantiates a new XClusterConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigCreateFormData instantiates a new XClusterConfigCreateFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigCreateFormDataWithDefaults instantiates a new XClusterConfigCreateFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfigEditFormData instantiates a new XClusterConfigEditFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigEditFormDataWithDefaults instantiates a new XClusterConfigEditFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfigGetResp instantiates a new XClusterConfigGetResp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigGetRespWithDefaults instantiates a new XClusterConfigGetResp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfigNeedBootstrapFormData instantiates a new XClusterConfigNeedBootstrapFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigNeedBootstrapFormDataWithDefaults instantiates a new XClusterConfigNeedBootstrapFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfigRestartFormData instantiates a new XClusterConfigRestartFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterConfigRestartFormDataWithDefaults instantiates a new XClusterConfigRestartFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterConfigWithDefaults instantiates a new XClusterConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterInfo instantiates a new XClusterInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterInfoWithDefaults instantiates a new XClusterInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterNamespaceConfig instantiates a new XClusterNamespaceConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterNamespaceConfigWithDefaults instantiates a new XClusterNamespaceConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewXClusterTableConfig instantiates a new XClusterTableConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewXClusterTableConfigWithDefaults instantiates a new XClusterTableConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYBAError instantiates a new YBAError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYBAErrorWithDefaults instantiates a new YBAError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYbcThrottleParameters instantiates a new YbcThrottleParameters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYbcThrottleParametersResponse instantiates a new YbcThrottleParametersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYbcThrottleParametersResponseWithDefaults instantiates a new YbcThrottleParametersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYbcThrottleParametersWithDefaults instantiates a new YbcThrottleParameters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYBPCreateSuccess instantiates a new YBPCreateSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYBPCreateSuccessWithDefaults instantiates a new YBPCreateSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYBPError instantiates a new YBPError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYBPErrorWithDefaults instantiates a new YBPError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYBPSuccess instantiates a new YBPSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYBPSuccessWithDefaults instantiates a new YBPSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYBPTask instantiates a new YBPTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYBPTaskWithDefaults instantiates a new YBPTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYCQLAuditConfig instantiates a new YCQLAuditConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYCQLAuditConfigWithDefaults instantiates a new YCQLAuditConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewYSQLAuditConfig instantiates a new YSQLAuditConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewYSQLAuditConfigWithDefaults instantiates a new YSQLAuditConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AccessKey Access key for the cloud provider.
AccessKeyFormData struct for AccessKeyFormData.
AccessKeyId struct for AccessKeyId.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AdminNotification struct for AdminNotification.
Alert Alert definition.
AlertApiFilter struct for AlertApiFilter.
AlertChannel Alert notification channel.
AlertChannelEmailParams struct for AlertChannelEmailParams.
AlertChannelEmailParamsAllOf struct for AlertChannelEmailParamsAllOf.
AlertChannelFormData struct for AlertChannelFormData.
AlertChannelPagerDutyParams struct for AlertChannelPagerDutyParams.
AlertChannelPagerDutyParamsAllOf struct for AlertChannelPagerDutyParamsAllOf.
AlertChannelParams Supertype for channel params for different channel types.
AlertChannelSlackParams struct for AlertChannelSlackParams.
AlertChannelSlackParamsAllOf struct for AlertChannelSlackParamsAllOf.
AlertChannelTemplates Alert channel templates.
AlertChannelTemplatesExtWithDefaultValues struct for AlertChannelTemplatesExtWithDefaultValues.
AlertChannelWebHookParams struct for AlertChannelWebHookParams.
AlertChannelWebHookParamsAllOf struct for AlertChannelWebHookParamsAllOf.
AlertConfiguration Alert configuration.
AlertConfigurationApiFilter struct for AlertConfigurationApiFilter.
AlertConfigurationPagedApiQuery struct for AlertConfigurationPagedApiQuery.
AlertConfigurationPagedResponse struct for AlertConfigurationPagedResponse.
AlertConfigurationTarget Alert target.
AlertConfigurationTemplate Alert configuration template.
AlertConfigurationThreshold Alert configuration threshold.
AlertDefinition struct for AlertDefinition.
AlertDefinitionLabel struct for AlertDefinitionLabel.
AlertDefinitionLabelKey struct for AlertDefinitionLabelKey.
AlertDestination Alert notification destination.
AlertDestinationFormData struct for AlertDestinationFormData.
AlertingData Alerting configuration.
AlertLabel struct for AlertLabel.
AlertLabelKey struct for AlertLabelKey.
AlertPagedApiQuery struct for AlertPagedApiQuery.
AlertPagedResponse struct for AlertPagedResponse.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AlertTemplateApiFilter struct for AlertTemplateApiFilter.
AlertTemplateSettings Alert template settings.
AlertTemplateSettingsFormData struct for AlertTemplateSettingsFormData.
AlertTemplateVariable Alert template variable.
AlertTemplateVariablesFormData struct for AlertTemplateVariablesFormData.
AlertTemplateVariablesList struct for AlertTemplateVariablesList.
AllowedUniverseTasksResp struct for AllowedUniverseTasksResp.
APIClient manages communication with the YugabyteDB Anywhere APIs API vv1 In most cases there should be only one, shared, APIClient.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIResponse stores the API response returned by the server.
Artifact struct for Artifact.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Audit Audit logging for requests and responses.
No description provided by the author
No description provided by the author
No description provided by the author
AuditLogConfig Audit Log Configuration.
AuditLogConfigParams struct for AuditLogConfigParams.
AuditLoggingConfig Audit Logging Configuration.
AvailabilityZone Availability zone (AZ) for a region.
AvailabilityZoneData Details of an availability zone, used by the API and UI to validate data against input constraints.
AvailabilityZoneDetails struct for AvailabilityZoneDetails.
AvailabilityZoneEditData Model used to edit an availability zone.
AvailabilityZoneFormData struct for AvailabilityZoneFormData.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AWSCloudInfo struct for AWSCloudInfo.
AWSCloudWatchConfig struct for AWSCloudWatchConfig.
AWSCloudWatchConfigAllOf AWSCloudWatchConfig Config.
AWSRegionCloudInfo struct for AWSRegionCloudInfo.
AZCloudInfo struct for AZCloudInfo.
AZOverrides WARNING: This is a preview API that could change.
AzureCloudInfo struct for AzureCloudInfo.
AzureRegionCloudInfo struct for AzureRegionCloudInfo.
Backup A single backup.
BackupApiFilter struct for BackupApiFilter.
BackupPagedApiQuery struct for BackupPagedApiQuery.
BackupPagedApiResponse struct for BackupPagedApiResponse.
BackupPointInTimeRestoreWindow struct for BackupPointInTimeRestoreWindow.
BackupRequestParams Backup table parameters.
BackupResp struct for BackupResp.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BackupScheduleEditParams struct for BackupScheduleEditParams.
BackupScheduleToggleParams struct for BackupScheduleToggleParams.
BackupStorageInfo Backup Storage Info for doing restore operation.
BackupTableParams Backup table parameters.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BasicAuthInformation struct for BasicAuthInformation.
BasicAuthInformationAllOf struct for BasicAuthInformationAllOf.
BootstarpBackupParams Backup parameters for bootstrapping.
BootstrapBackupParams Backup parameters for bootstrapping.
BootstrapParams Bootstrap parameters.
BulkImportParams Bulk import parameters.
BundleDetails struct for BundleDetails.
BundleInfo struct for BundleInfo.
CertificateDetails struct for CertificateDetails.
CertificateInfo SSL certificate used by the universe.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CertificateInfoExt SSL certificate used by the universe.
CertificateParams struct for CertificateParams.
CertsRotateParams struct for CertsRotateParams.
ClientCertParams struct for ClientCertParams.
CloudInfo struct for CloudInfo.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CloudSpecificInfo Node information reported by the cloud provider.
Cluster struct for Cluster.
ColumnDetails Details of a CQL database column.
CommonBackupInfo struct for CommonBackupInfo.
CommunicationPorts Communication ports.
ConfDataType struct for ConfDataType.
ConfDataTypeObject struct for ConfDataTypeObject.
Config struct for Config.
ConfigEntry Configuration entry.
Configuration stores the configuration of the API client.
ConfigureYCQLFormData YCQL properties.
ConfigureYSQLFormData YSQL properties.
ConfKeyInfo struct for ConfKeyInfo.
CreatePitrConfigParams Create PITR config parameters.
CreateRelease Release metadata required to create a new release.
CreateTablespaceParams struct for CreateTablespaceParams.
CurrentAdminNotificationMessages struct for CurrentAdminNotificationMessages.
CustomCaCertificateInfo Custom CA certificate.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CustomCACertParams struct for CustomCACertParams.
CustomCertInfo struct for CustomCertInfo.
Customer Customer information, including associated universes.
CustomerAlertData Format of an alert, used by the API and UI to validate data against input constraints.
CustomerConfig Customer configuration.
CustomerConfigUI Customer configuration with additional information.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CustomerCountResp struct for CustomerCountResp.
CustomerDetailsData Customer details, including their universe UUIDs.
CustomerLicense Customer Licenses.
CustomerLoginFormData struct for CustomerLoginFormData.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CustomerRegisterFormData struct for CustomerRegisterFormData.
CustomerTaskData Customer task data.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CustomServerCertData struct for CustomServerCertData.
CustomServerCertInfo struct for CustomServerCertInfo.
DatabaseSecurityFormData Database security properties.
DatabaseUserFormData struct for DatabaseUserFormData.
DataDogConfig struct for DataDogConfig.
DataDogConfigAllOf DataDog Config.
No description provided by the author
No description provided by the author
No description provided by the author
DeleteBackupInfo struct for DeleteBackupInfo.
DeleteBackupParams struct for DeleteBackupParams.
Details struct for Details.
DeviceInfo Device information.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DrConfig disaster recovery config object.
DrConfigCreateForm drConfig create form.
DrConfigEditForm drConfig edit form.
DrConfigFailoverForm drConfig failover form.
DrConfigGetResp disaster recovery get response.
DrConfigReplaceReplicaForm drConfig edit form.
DrConfigRestartForm dr config restart form.
DrConfigSafetimeResp Get DR config safetime response.
DrConfigSetDatabasesForm dr config set databases form.
DrConfigSetTablesForm dr config set tables form.
DrConfigSwitchoverForm drConfig failover form.
EditAccessKeyRotationScheduleParams struct for EditAccessKeyRotationScheduleParams.
EditBackupParams Edit backup parameters.
EditBackupScheduleParams Info to edit the schedule params for backups.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
EncryptionAtRestConfig Encryption at rest configuration.
EncryptionAtRestKeyParams struct for EncryptionAtRestKeyParams.
ExtractMetadata url to release TGZ to extract metadata from.
No description provided by the author
No description provided by the author
ExtraDependencies Extra dependencies.
FailedSubtasks Failed Subtasks.
FinalizeUpgradeInfoResponse Finalize Upgrade Info Response.
FinalizeUpgradeParams struct for FinalizeUpgradeParams.
GCPCloudInfo struct for GCPCloudInfo.
GCPCloudMonitoringConfig struct for GCPCloudMonitoringConfig.
GCPCloudMonitoringConfigAllOf GCPCloudMonitoringConfig Config.
GCPRegionCloudInfo struct for GCPRegionCloudInfo.
GCSLocation struct for GCSLocation.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GFlagsUpgradeParams struct for GFlagsUpgradeParams.
No description provided by the author
GroupMappingInfo struct for GroupMappingInfo.
HashedTimestampColumnFinderResponse struct for HashedTimestampColumnFinderResponse.
HashicorpVaultConfigParams struct for HashicorpVaultConfigParams.
HTTPAuthInformation struct for HTTPAuthInformation.
HttpLocation struct for HttpLocation.
ImageBundle struct for ImageBundle.
ImageBundleDetails struct for ImageBundleDetails.
ImageBundleUpgradeInfo struct for ImageBundleUpgradeInfo.
ImpactedXClusterConnectedUniverse struct for ImpactedXClusterConnectedUniverse.
ImportUniverseFormData struct for ImportUniverseFormData.
InstanceType Information about an instance.
InstanceTypeDetails struct for InstanceTypeDetails.
InstanceTypeKey struct for InstanceTypeKey.
InstanceTypeResp Details of a cloud instance type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
K8SNodeResourceSpec struct for K8SNodeResourceSpec.
KeyInfo struct for KeyInfo.
KeyspaceTable Keyspace and table info for backup.
KeyspaceTables struct for KeyspaceTables.
KeyspaceTablesList struct for KeyspaceTablesList.
KubernetesInfo struct for KubernetesInfo.
KubernetesOverrideError struct for KubernetesOverrideError.
No description provided by the author
KubernetesOverridesResponse struct for KubernetesOverridesResponse.
KubernetesOverridesUpgradeParams struct for KubernetesOverridesUpgradeParams.
KubernetesRegionInfo struct for KubernetesRegionInfo.
LdapDnToYbaRoleData A list of LDAP DN, YBA role pairs.
LdapDnYbaRoleDataPair struct for LdapDnYbaRoleDataPair.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
LdapUnivSyncFormData Config to sync universe roles with ldap users.
No description provided by the author
No description provided by the author
LocalCloudInfo struct for LocalCloudInfo.
LogData struct for LogData.
No description provided by the author
No description provided by the author
MaintenanceWindow Maintenance Window.
MaintenanceWindowApiFilter struct for MaintenanceWindowApiFilter.
MaintenanceWindowPagedApiQuery struct for MaintenanceWindowPagedApiQuery.
MaintenanceWindowPagedResponse struct for MaintenanceWindowPagedResponse.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
MasterInfo Information about master.
MasterNode struct for MasterNode.
MasterNodesInfo struct for MasterNodesInfo.
MastersList struct for MastersList.
Metadata struct for Metadata.
Metric struct for Metric.
MetricLabel struct for MetricLabel.
MetricQueryParams Metrics request data.
No description provided by the author
MetricSettings Settings, selected for particular metric.
MetricValue struct for MetricValue.
MultiTableBackupRequestParams Multi-table backup parameters.
NamespaceInfoResp Namespace information response.
NamespaceSafetime struct for NamespaceSafetime.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NoAuth struct for NoAuth.
NodeActionFormData struct for NodeActionFormData.
NodeAgent Node agent details.
NodeAgentApiFilter struct for NodeAgentApiFilter.
NodeAgentPagedApiQuery struct for NodeAgentPagedApiQuery.
NodeAgentPagedApiResponse struct for NodeAgentPagedApiResponse.
NodeAgentResp Node agent details.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NodeConfig A node configuration.
NodeData struct for NodeData.
NodeDetails Details of a cloud node.
NodeDetailsResp struct for NodeDetailsResp.
NodeInstance A single node instance, attached to a provider and availability zone.
NodeInstanceData Details of a node instance.
NodeInstanceFormData struct for NodeInstanceFormData.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NodeInstanceStateFormData struct for NodeInstanceStateFormData.
NodeQueryDistributionDetails struct for NodeQueryDistributionDetails.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OidcGroupToYbaRolesData struct for OidcGroupToYbaRolesData.
OidcGroupToYbaRolesPair struct for OidcGroupToYbaRolesPair.
OnPremCloudInfo struct for OnPremCloudInfo.
OverridenDetails struct for OverridenDetails.
Package struct for Package.
PackagePaths struct for PackagePaths.
No description provided by the author
PackagesRequestParams Packages request parameters.
ParametersForAdvancedRestorePreflightChecks struct for ParametersForAdvancedRestorePreflightChecks.
ParametersForRestorePreflightChecks struct for ParametersForRestorePreflightChecks.
ParametersForValidatingRestorableKeyspaceAndTablesInBackup struct for ParametersForValidatingRestorableKeyspaceAndTablesInBackup.
PerBackupLocationKeyspaceTables struct for PerBackupLocationKeyspaceTables.
PerfAdvisorManualRunStatus struct for PerfAdvisorManualRunStatus.
PerfAdvisorSettingsFormData struct for PerfAdvisorSettingsFormData.
PerfAdvisorSettingsWithDefaults struct for PerfAdvisorSettingsWithDefaults.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PerformanceRecommendation struct for PerformanceRecommendation.
PerformanceRecommendationFilter struct for PerformanceRecommendationFilter.
PerformanceRecommendationPagedQuery struct for PerformanceRecommendationPagedQuery.
PerformanceRecommendationPagedResponse struct for PerformanceRecommendationPagedResponse.
PerLocationBackupInfo struct for PerLocationBackupInfo.
Permission struct for Permission.
PermissionDetails struct for PermissionDetails.
PermissionInfo struct for PermissionInfo.
PermissionInfoIdentifier struct for PermissionInfoIdentifier.
PerProcessDetails WARNING: This is a preview API that could change.
PerProcessFlags struct for PerProcessFlags.
PitrConfig PITR config created on the universe.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PitrParams PITR parameters.
PlacementAZ struct for PlacementAZ.
PlacementBlock struct for PlacementBlock.
PlacementCloud struct for PlacementCloud.
PlacementInfo struct for PlacementInfo.
PlacementRegion struct for PlacementRegion.
PlatformLoggingConfig struct for PlatformLoggingConfig.
PresetThrottleValues struct for PresetThrottleValues.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PrevYBSoftwareConfig struct for PrevYBSoftwareConfig.
Principal struct for Principal.
Provider struct for Provider.
ProviderDetails struct for ProviderDetails.
ProxyConfig The Proxy Settings for the Universe.
ProxyConfigUpdateParams struct for ProxyConfigUpdateParams.
QueryDistributionSuggestionResponse struct for QueryDistributionSuggestionResponse.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Region Region within a given provider.
RegionCloudInfo struct for RegionCloudInfo.
RegionDetails struct for RegionDetails.
RegionEditFormData struct for RegionEditFormData.
RegionFormData struct for RegionFormData.
RegionLocations struct for RegionLocations.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
RegionMetadata struct for RegionMetadata.
RegionMetadataInfo struct for RegionMetadataInfo.
ReinstallNodeAgentForm struct for ReinstallNodeAgentForm.
ReleaseFormData Specification for release locations.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ReleaseMetadata Yugabyte release metadata.
ReplicaPlacement struct for ReplicaPlacement.
ResizeNodeParams struct for ResizeNodeParams.
ResourceDefinition struct for ResourceDefinition.
ResourceGroup struct for ResourceGroup.
ResponseExtractMetadata struct for ResponseExtractMetadata.
ResponseRelease struct for ResponseRelease.
RestartBootstrapParams Bootstrap parameters for restarting.
RestartTaskParams struct for RestartTaskParams.
RestoreApiFilter struct for RestoreApiFilter.
RestoreBackupParams struct for RestoreBackupParams.
RestoreKeyspace Keyspace level restores.
RestorePagedApiQuery struct for RestorePagedApiQuery.
RestorePagedApiResponse struct for RestorePagedApiResponse.
RestorePreflightParams struct for RestorePreflightParams.
RestorePreflightResponse struct for RestorePreflightResponse.
RestoreResp struct for RestoreResp.
RestoreSnapshotScheduleParams Restore snapshot schedule parameters.
Role struct for Role.
RoleAttribute struct for RoleAttribute.
RoleBinding struct for RoleBinding.
RoleBindingFormData Role Binding form metadata.
RoleFormData Role form metadata.
RoleResourceDefinition Defines the association of Role to Resource Groups.
RollbackUpgradeParams struct for RollbackUpgradeParams.
RollMaxBatchSize WARNING: This is a preview API that could change.Information about suggested number of servers to roll at a time.
RunQueryFormData struct for RunQueryFormData.
RuntimeConfigData Runtime configuration data.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
S3Location struct for S3Location.
Schedule Backup schedule.
ScheduleApiFilter struct for ScheduleApiFilter.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SchedulePagedApiQuery struct for SchedulePagedApiQuery.
SchedulePagedResponse struct for SchedulePagedResponse.
ScopedConfig Scoped configuration.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SessionInfo Session information.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SmtpData SMTP configuration information.
SoftwareUpgradeInfoRequest Software upgrade info request.
SoftwareUpgradeInfoResponse Software Upgrade Info response.
SoftwareUpgradeParams struct for SoftwareUpgradeParams.
SpecificGFlags GFlags for current cluster.
SplunkConfig struct for SplunkConfig.
SplunkConfigAllOf Splunk Config.
StateChangeAuditInfo struct for StateChangeAuditInfo.
StateChangeAuditInfoFilter struct for StateChangeAuditInfoFilter.
StateChangeAuditInfoPagedQuery struct for StateChangeAuditInfoPagedQuery.
StateChangeAuditInfoPagedResponse struct for StateChangeAuditInfoPagedResponse.
SubtaskData Detailed subtask data.
SupportBundle struct for SupportBundle.
SupportBundleFormData Support bundle form metadata.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SuppressHealthCheckNotificationsConfig struct for SuppressHealthCheckNotificationsConfig.
SystemdUpgradeParams struct for SystemdUpgradeParams.
TableDefinitionTaskParams struct for TableDefinitionTaskParams.
TableDetails Table details.
TableInfoResp Table information response.
No description provided by the author
No description provided by the author
Tablespace struct for Tablespace.
TableSpaceInfo Tablespace information.
TablespaceResponse struct for TablespaceResponse.
No description provided by the author
TelemetryProvider Telemetry Provider Model.
TelemetryProviderConfig Telemetry Provider Configuration.
ThirdpartySoftwareUpgradeParams struct for ThirdpartySoftwareUpgradeParams.
ThrottleParamValue struct for ThrottleParamValue.
TlsToggleParams struct for TlsToggleParams.
TokenAuthInformation struct for TokenAuthInformation.
TokenAuthInformationAllOf struct for TokenAuthInformationAllOf.
TriggerHealthCheckResult The response type for triggering a health check.
TroubleshootingPlatform Troubleshooting Platform Model.
TroubleshootingPlatformDetailsModel struct for TroubleshootingPlatformDetailsModel.
Universe struct for Universe.
No description provided by the author
UniverseBackupRequestFormData Universe Backup Form Data.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UniverseConfigureTaskParams struct for UniverseConfigureTaskParams.
No description provided by the author
No description provided by the author
UniverseDefinitionTaskParams struct for UniverseDefinitionTaskParams.
UniverseDefinitionTaskParamsResp struct for UniverseDefinitionTaskParamsResp.
UniverseDetailSubset A small subset of universe information.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UniverseLogsExporterConfig Universe Logs Exporter Config.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UniversePerformanceAdvisorStatus struct for UniversePerformanceAdvisorStatus.
No description provided by the author
No description provided by the author
No description provided by the author
UniverseResourceDetails struct for UniverseResourceDetails.
UniverseResp Universe-creation response.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UnusedIndexFinderResponse struct for UnusedIndexFinderResponse.
UpdateLoadBalancerConfig struct for UpdateLoadBalancerConfig.
UpdateRelease Release metadata required to create a new release.
UpgradeTaskParams struct for UpgradeTaskParams.
No description provided by the author
No description provided by the author
UserIntent struct for UserIntent.
UserIntentOverrides WARNING: This is a preview API that could change.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
UserOIDCAuthToken struct for UserOIDCAuthToken.
UserPasswordChangeFormData User registration data.
UserProfileData User profile data.
UserRegistrationData User registration data.
Users A user associated with a customer.
UserWithFeatures A user with set of features, associated with a customer.
ValidationResult Validation result of a node config.
VMImageUpgradeParams struct for VMImageUpgradeParams.
VolumeDetails struct for VolumeDetails.
XClusterConfig xcluster config object.
XClusterConfigCreateFormData xcluster create form.
XClusterConfigEditFormData xcluster edit form.
XClusterConfigGetResp xcluster get response.
XClusterConfigNeedBootstrapFormData struct for XClusterConfigNeedBootstrapFormData.
XClusterConfigRestartFormData xcluster restart form.
XClusterInfo struct for XClusterInfo.
XClusterNamespaceConfig struct for XClusterNamespaceConfig.
XClusterTableConfig struct for XClusterTableConfig.
YBAError struct for YBAError.
No description provided by the author
No description provided by the author
No description provided by the author
YbcThrottleParameters YB-Controller throttle parameters.
YbcThrottleParametersResponse YB-Controller throttle parameters response.
YBPCreateSuccess struct for YBPCreateSuccess.
YBPError Generic error response from the YugabyteDB Anywhere API.
YBPSuccess struct for YBPSuccess.
YBPTask struct for YBPTask.
YCQLAuditConfig YCQL Audit Logging Configuration.
YSQLAuditConfig YSQL Audit Logging Configuration.

# Type aliases

AccessKeysApiService AccessKeysApi service.
AlertsApiService AlertsApi service.
AsynchronousReplicationApiService AsynchronousReplicationApi service.
AuditApiService AuditApi service.
AvailabilityZonesApiService AvailabilityZonesApi service.
BackupsApiService BackupsApi service.
CertificateInfoApiService CertificateInfoApi service.
CloudProvidersApiService CloudProvidersApi service.
CustomCACertificatesApiService CustomCACertificatesApi service.
CustomerConfigurationApiService CustomerConfigurationApi service.
CustomerManagementApiService CustomerManagementApi service.
CustomerTasksApiService CustomerTasksApi service.
DefaultApiService DefaultApi service.
DisasterRecoveryApiService DisasterRecoveryApi service.
EncryptionAtRestApiService EncryptionAtRestApi service.
ExtractMetadataFromRemoteTarballApiService ExtractMetadataFromRemoteTarballApi service.
GrafanaDashboardApiService GrafanaDashboardApi service.
InstanceTypesApiService InstanceTypesApi service.
KubernetesOverridesControllerApiService KubernetesOverridesControllerApi service.
LDAPOIDCRoleManagementApiService LDAPOIDCRoleManagementApi service.
LDAPRoleManagementApiService LDAPRoleManagementApi service.
LicenseManagementApiService LicenseManagementApi service.
LoggingConfigApiService LoggingConfigApi service.
MaintenanceWindowsApiService MaintenanceWindowsApi service.
MetricsApiService MetricsApi service.
NewReleaseManagementApiService NewReleaseManagementApi service.
NodeAgentsApiService NodeAgentsApi service.
NodeInstancesApiService NodeInstancesApi service.
PackagesControllerApiService PackagesControllerApi service.
PerformanceAdvisorApiService PerformanceAdvisorApi service.
PITRManagementApiService PITRManagementApi service.
PreviewApiService PreviewApi service.
RBACManagementApiService RBACManagementApi service.
RegionManagementApiService RegionManagementApi service.
ReleaseManagementApiService ReleaseManagementApi service.
RuntimeConfigurationApiService RuntimeConfigurationApi service.
ScheduleManagementApiService ScheduleManagementApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SessionManagementApiService SessionManagementApi service.
SupportBundleManagementApiService SupportBundleManagementApi service.
TableManagementApiService TableManagementApi service.
TabletServerManagementApiService TabletServerManagementApi service.
UniverseActionsApiService UniverseActionsApi service.
UniverseCDCManagementApiService UniverseCDCManagementApi service.
UniverseClusterMutationsApiService UniverseClusterMutationsApi service.
UniverseDatabaseManagementApiService UniverseDatabaseManagementApi service.
UniverseInformationApiService UniverseInformationApi service.
UniverseManagementApiService UniverseManagementApi service.
UniverseNodeMetadataMetamasterApiService UniverseNodeMetadataMetamasterApi service.
UniversePerformanceSuggestionsApiService UniversePerformanceSuggestionsApi service.
UniverseUpgradesManagementApiService UniverseUpgradesManagementApi service.
UploadReleasePackagesApiService UploadReleasePackagesApi service.
UserManagementApiService UserManagementApi service.
YbcManagementApiService YbcManagementApi service.