package
0.0.0-20211229091835-58b2192b5263
Repository: https://github.com/hashdatainc/terraform-provider-hashdata.git
Documentation: pkg.go.dev

# README

Go API client for cloudmgr

Cloud Manager Restful API Documentation.

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: v2.0
  • Package version: 4.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit www.hashdata.cn

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 "./cloudmgr"

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:8000

ClassMethodHTTP requestDescription
AccountClientServiceApiCreateClientPost /account/api/v2/clientsCreate a new client.
AccountClientServiceApiDeleteClientDelete /account/api/v2/clients/{id}Delete an existent client.
AccountClientServiceApiDescribeClientGet /account/api/v2/clients/{id}Describe the client detail with given client id.
AccountClientServiceApiListClientGet /account/api/v2/clientsList clients.
AccountTeamServiceApiAddUserToTeamPost /account/api/v2/teams/{teamid}/usersAdd an user to the team with given role.
AccountTeamServiceApiCreateTeamPost /account/api/v2/teamsCreate a new team.
AccountTeamServiceApiDeleteTeamDelete /account/api/v2/teams/{teamid}Delete an existent team.
AccountTeamServiceApiDeleteUserFromTeamDelete /account/api/v2/teams/{teamid}/users/{userid}Remove an user from a team.
AccountTeamServiceApiDescribeTeamGet /account/api/v2/teams/{teamid}Describe the detail of a team.
AccountTeamServiceApiListTeamGet /account/api/v2/teamsList all teams.
AccountTeamServiceApiListUserOfTeamGet /account/api/v2/teams/{teamid}/usersList all users of a team.
AccountTeamServiceApiModifyTeamPut /account/api/v2/teams/{teamid}Modify an existent team.
AccountTenantServiceApiCreateExternalTenantPost /account/api/v2/tenants/externalCreate a new tenant from outside.
AccountTenantServiceApiCreateTenantPost /account/api/v2/tenantsCreate a new tenant.
AccountTenantServiceApiDeleteTenantDelete /account/api/v2/tenants/{tenantid}Delete a tenant.
AccountTenantServiceApiDescribeExternalTenantGet /account/api/v2/tenants/externalDescribe the detail of tenant.
AccountTenantServiceApiDescribeTenantGet /account/api/v2/tenants/{tenantid}Describe the detail of tenant.
AccountTenantServiceApiListTenantGet /account/api/v2/tenantsList all tenants.
AccountUserServiceApiChangePasswordPut /account/api/v2/users/{userid}/passwordModify user's password.
AccountUserServiceApiComplementExternalUserAndTenantPut /account/api/v2/users/external/{user.id}/tenants/external/{tenant.id}Complete external user's information and external tenant's information.
AccountUserServiceApiCreateExternalUserPost /account/api/v2/users/externalCreate a new user from outside.
AccountUserServiceApiCreateUserPost /account/api/v2/usersCreate a new user.
AccountUserServiceApiDeleteUserDelete /account/api/v2/users/{userid}Delete an user.
AccountUserServiceApiDescribeExternalUserGet /account/api/v2/users/externalDescribe the detail of an user.
AccountUserServiceApiDescribeSelfGet /account/api/v2/users/selfDescribe current login user.
AccountUserServiceApiDescribeUserGet /account/api/v2/users/{userid}Describe the detail of an user.
AccountUserServiceApiListTeamOfUserGet /account/api/v2/users/{userid}/teamsList all teams which the user belongs to.
AccountUserServiceApiListUserGet /account/api/v2/usersList all users.
AccountUserServiceApiModifyUserPut /account/api/v2/users/{userid}Modify an user.
AlertInfoServiceApiConfirmAlertInfoPut /ops/api/v2/alertinfo/confirm/{id}confirm a alert info.
AlertInfoServiceApiCreateAlertInfoPost /ops/api/v2/alertinfo/createcreate a alert info.
AlertInfoServiceApiDescribeAlertInfoGet /ops/api/v2/alertinfo/{id}get a alert info.
AlertInfoServiceApiListAlertInfoGet /ops/api/v2/alertinfoslist alert infos.
AlertInfoServiceApiProcessAlertInfoPut /ops/api/v2/alertinfo/process/{id}processed a alert info.
AlertmanagerServiceApiCreateSilencePost /ops/api/v2/silencecreate silence of alertmanagement.
AlertmanagerServiceApiDeleteSilenceDelete /ops/api/v2/silencedelete silence of alertmanagement.
AlertmanagerServiceApiDescribeSilenceGet /ops/api/v2/silence/{id}decribe silence of alertmanagement.
AlertmanagerServiceApiListAlertGet /ops/api/v2/alertslist alerts of alertmanagement.
AlertmanagerServiceApiListSilenceGet /ops/api/v2/silenceslist silence of alertmanagement.
AlertmanagerServiceApiModifySilencePut /ops/api/v2/silencecreate silence of alertmanagement.
ContactGroupServiceApiAddContactToGroupPost /notification/api/v2/groups/{group}/contactsAdd contacts to group.
ContactGroupServiceApiCreateContactGroupPost /notification/api/v2/groupsCreate a contact group.
ContactGroupServiceApiDeleteContactGroupDelete /notification/api/v2/groups/{id}Delete a contact group.
ContactGroupServiceApiDescribeContactGroupGet /notification/api/v2/groups/{id}Describe the detail of a given contact group.
ContactGroupServiceApiListContactGroupGet /notification/api/v2/groupsList contact group.
ContactGroupServiceApiRemoveContactFromGroupDelete /notification/api/v2/groups/{group}/contacts/{contact}Remove a contact from group.
ContactGroupServiceApiTestContactGroupPut /notification/api/v2/groups/{id}Test a given contact group.
CoreAlertServiceApiCreateAlertRulePost /default/api/v2/services/{service}/alertsCreate a service alert rule.
CoreAlertServiceApiDeleteAlertRuleDelete /default/api/v2/service/{service}/alerts/{alert}Delete an alert rule of a service.
CoreAlertServiceApiDeleteAlertRuleByServiceDelete /default/api/v2/service/{service}/alertsDelete all alert rules of a service.
CoreAlertServiceApiDescribeAlertRuleGet /default/api/v2/services/{service}/alerts/{alert}Describe the detail of a given alert rule.
CoreAlertServiceApiListAlertRuleGet /default/api/v2/services/{service}/alertsList the alerts of a given service.
CoreBucketServiceApiDescribeBucketGet /default/api/v2/buckets/{id}Describe the detail of a given bucket.
CoreBucketServiceApiListObjectGet /default/api/v2/buckets/{bucket}/contentsList the contents of a given bucket.
CoreCommonServiceApiDescribeAlertConfigGet /default/api/v2/commons/alertDescribe alert availability of system and a service.
CoreCommonServiceApiInitializeTenantPost /default/api/v2/commons/tenant/onboardingCustomer onboarding
CoreElasticIpServiceApiAttachElasticIpPost /default/api/v2/network/eips/{id}/attachAttach an eip to specified instance.
CoreElasticIpServiceApiCreateElasticIpPost /default/api/v2/network/eipsCreate a new eip.
CoreElasticIpServiceApiDeleteElasticIpDelete /default/api/v2/network/eips/{id}release an eip.
CoreElasticIpServiceApiDescribeElasticIpGet /default/api/v2/network/eips/{id}Describe an eip detail.
CoreElasticIpServiceApiDetachElasticIpGet /default/api/v2/network/eips/{id}/detachDetach an eip from instance.
CoreElasticIpServiceApiListElasticIpGet /default/api/v2/network/eipsList all eips.
CoreElasticIpServiceApiModifyElasticIpMaxBandWidthPut /default/api/v2/network/eips/{id}Modify maxBandWidth for specified eip.
CoreHdfsConfigServiceApiActivateHdfsConfigPut /default/api/v2/services/{service}/hdfs/{timestamp}/activationActivate a specified hdfs configuration of a service.
CoreHdfsConfigServiceApiCreateHdfsConfigPost /default/api/v2/services/{service}/hdfsCreate a service hdfs configuration.
CoreHdfsConfigServiceApiDeleteHdfsConfigDelete /default/api/v2/service/{service}/hdfs/{timestamp}Delete a hdfs configuration of a service.
CoreHdfsConfigServiceApiDescribeHdfsConfigGet /default/api/v2/services/{service}/hdfs/{timestamp}Describe the detail of a given hdfs configuration.
CoreHdfsConfigServiceApiListHdfsConfigGet /default/api/v2/services/{service}/hdfsList the hdfs configuration of a given service.
CoreInstanceServiceApiDescribeInstanceGet /default/api/v2/instances/{id}Describe the detail of a given instance.
CoreInstanceServiceApiListInstanceGet /default/api/v2/instancesList all instance.
CoreInstanceServiceApiListVolumeGet /default/api/v2/instances/{instance}/volumesList all volumes of of a given instance.
CoreInstanceTypeGroupServiceApiCreateInstanceTypeGroupPost /default/api/v2/instances/types/groupsCreate an instance type group.
CoreInstanceTypeGroupServiceApiDeleteInstanceTypeGroupDelete /default/api/v2/instances/types/groups/{name}Delete an instance type group.
CoreInstanceTypeGroupServiceApiDescribeInstanceTypeGroupGet /default/api/v2/instances/types/groups/{name}Describe the detail of a given instance type group.
CoreInstanceTypeGroupServiceApiListInstanceTypeGroupGet /default/api/v2/instances/types/groupsList all instance type group.
CoreInstanceTypeGroupServiceApiUpdateInstanceTypeGroupPut /default/api/v2/instances/types/groups/{name}Update an instance type group.
CoreInstanceTypeServiceApiCreateInstanceTypePost /default/api/v2/instances/typesCreate an instance type.
CoreInstanceTypeServiceApiDeleteInstanceTypeDelete /default/api/v2/instances/types/{name}Delete an instance type.
CoreInstanceTypeServiceApiDescribeInstanceTypeGet /default/api/v2/instances/types/{name}Describe the detail of a given instance type.
CoreInstanceTypeServiceApiDescribeInstanceTypeByComponentTypeGet /default/api/v2/instances/types/componentDescribe the detail of a given instance type.
CoreInstanceTypeServiceApiListInstanceTypeGet /default/api/v2/instances/typesList all instance type.
CoreInstanceTypeServiceApiUpdateInstanceTypePut /default/api/v2/instances/types/{name}Update an instance type.
CoreJobServiceApiDescribeJobGet /default/api/v2/jobs/{id}Describe the detail of a given job.
CoreJobServiceApiGetJobLogGet /default/api/v2/jobs/{id}/logsFetch job log.
CoreJobServiceApiListJobGet /default/api/v2/jobsList all jobs.
CoreNetworkInterfaceServiceApiAttachNetworkInterfacePost /default/api/v2/network/nics/{id}/attachAttach a nic to specified instance.
CoreNetworkInterfaceServiceApiCreateNetworkInterfacePost /default/api/v2/network/nicsCreate a new nic.
CoreNetworkInterfaceServiceApiDeleteNetworkInterfaceDelete /default/api/v2/network/nics/{id}release a nic.
CoreNetworkInterfaceServiceApiDescribeNetworkInterfaceGet /default/api/v2/network/nics/{id}Describe an eip detail.
CoreNetworkInterfaceServiceApiDetachNetworkInterfaceGet /default/api/v2/network/nics/{id}/detachDetach a nic from instance.
CoreNetworkInterfaceServiceApiListNetworkInterfaceGet /default/api/v2/network/nicsList all nics.
CoreOssZoneConfigServiceApiCreateOssZoneConfigPost /default/api/v2/oss/zones/configsCreate an object storage service configuration.
CoreOssZoneConfigServiceApiDeleteOssZoneConfigDelete /default/api/v2/oss/zones/configs/{id}Delete an object storage service configuration.
CoreOssZoneConfigServiceApiDescribeOssZoneConfigGet /default/api/v2/oss/zones/configs/{id}Describe the detail of an object storage service configuration.
CoreOssZoneConfigServiceApiListOssZoneConfigGet /default/api/v2/oss/zones/configsList all object storage service configuration.
CoreOssZoneConfigServiceApiUpdateOssZoneConfigPut /default/api/v2/oss/zones/configs/{id}Update n object storage service configuration.
CoreOssZoneServiceApiCreateOssZonePost /default/api/v2/oss/zonesCreate an object storage zone.
CoreOssZoneServiceApiDeleteOssZoneDelete /default/api/v2/oss/zones/{name}Delete an object storage zone.
CoreOssZoneServiceApiDescribeOssZoneGet /default/api/v2/oss/zones/{name}Describe the detail of a given object storage zone.
CoreOssZoneServiceApiListOssZoneGet /default/api/v2/oss/zonesList all object storage zone.
CoreQuotaServiceApiCreateQuotaPost /default/api/v2/quotasCreate default quota configure for given tenant.
CoreQuotaServiceApiListQuotaGet /default/api/v2/quotasList all configured quota.
CoreQuotaServiceApiUpdateQuotaPut /default/api/v2/quotasAdjust quota for given tenant.
CoreRegionConfigServiceApiCreateRegionConfigPost /default/api/v2/regions/configsCreate a data center region configuration.
CoreRegionConfigServiceApiDeleteRegionConfigDelete /default/api/v2/regions/configs/{id}Delete a data center region configuration.
CoreRegionConfigServiceApiDescribeRegionConfigGet /default/api/v2/regions/configs/{id}Describe the detail of a given data center region configuration.
CoreRegionConfigServiceApiListRegionConfigGet /default/api/v2/regions/configsList all data center region configuration.
CoreRegionConfigServiceApiUpdateRegionConfigPut /default/api/v2/regions/configs/{id}Update a data center region configuration.
CoreRegionServiceApiCreateRegionPost /default/api/v2/regionsCreate a new data center region.
CoreRegionServiceApiDeleteRegionDelete /default/api/v2/regions/{name}Delete a data center region.
CoreRegionServiceApiDescribeRegionGet /default/api/v2/regions/{name}Describe the detail of a given data center region.
CoreRegionServiceApiListRegionGet /default/api/v2/regionsList all data center region.
CoreResourcePoolServiceApiAddInstanceToResourcePoolPost /default/api/v2/resources/{id}/instancesAdd instances to a resource pool
CoreResourcePoolServiceApiCreateResourcePoolPost /default/api/v2/resourcesCreate a new data center zone.
CoreResourcePoolServiceApiDeleteInstanceFromResourcePoolDelete /default/api/v2/resources/{id}/instances/{instance}Remove a instance from a resource pool.
CoreResourcePoolServiceApiDeleteResourcePoolDelete /default/api/v2/resources/{id}Delete a data center zone.
CoreResourcePoolServiceApiDescribeResourcePoolGet /default/api/v2/resources/{id}Describe the detail of a given resource pool.
CoreResourcePoolServiceApiListPoolInstanceGet /default/api/v2/resources/{id}/instancesList all instances in resource pool.
CoreResourcePoolServiceApiListResourcePoolGet /default/api/v2/resourcesList all resource pool.
CoreRoleServiceApiDescribeRoleGet /default/api/v2/roles/{name}Describe the detail of a given role.
CoreRoleServiceApiListRoleGet /default/api/v2/rolesList all roles.
CoreServiceApiAddProjectTagPut /default/api/v2/services/projectTagDescribe the detail of a given service.
CoreServiceApiCheckServiceActionPermissionPut /default/api/v2/services/{id}/actionCheck if login user has permission to perform action on a given service.
CoreServiceApiCountServiceGet /default/api/v2/services/countcount services.
CoreServiceApiDeleteServiceDelete /default/api/v2/services/{id}Destroy a given service.
CoreServiceApiDescribeServiceGet /default/api/v2/services/{id}Describe the detail of a given service.
CoreServiceApiDescribeTunnelInfoGet /default/api/v2/services/tunneldescribe tunnel info of service.
CoreServiceApiEnableInternalChargePut /default/api/v2/services/enableInternalChargeenable internal charge for service.
CoreServiceApiExportServiceStateMachineDetailInfoGet /default/api/v2/services/{id}/statemachine/infoList service and component state machine detail info.
CoreServiceApiInplaceUpgradeServicePost /default/api/v2/services/{service}/upgrade/inplaceInplace upgrade service version.
CoreServiceApiListBucketGet /default/api/v2/services/{service}/bucketsList all bucket the given service has.
CoreServiceApiListFaultsGet /default/api/v2/services/{id}/faultsList all faluts which service got.
CoreServiceApiListMetadataGet /default/api/v2/services/{service}/metadataList service metadata.
CoreServiceApiListMonitorServiceGet /default/api/v2/services/monitorList monitor service.
CoreServiceApiListRecoveriesGet /default/api/v2/services/{id}/recoveriesList all recoveries which service got.
CoreServiceApiListServiceGet /default/api/v2/servicesList all service.
CoreServiceApiListServiceComponentHeatlhStatusGet /default/api/v2/services/{id}/component/healthList service Component health status.
CoreServiceApiListServiceDependentGet /default/api/v2/services/{id}/dependencyList all dependencies which catalog got.
CoreServiceApiListServiceFeatureGet /default/api/v2/services/{id}/featuresList all features which a service support.
CoreServiceApiListServiceInstanceGet /default/api/v2/services/{service}/instancesList all service instances.
CoreServiceApiListServiceRecoveryDetailGet /default/api/v2/service/recoveries/{id}List recovery detail by recovery id.
CoreServiceApiListServiceReferenceGet /default/api/v2/services/{id}/referenceList all references which computing service got.
CoreServiceApiListServiceStatusesGet /default/api/v2/services/statusesList all status of a service can be in.
CoreServiceApiListTeamOfServiceGet /default/api/v2/services/{service}/teamsList all teams the given service belongs to.
CoreServiceApiListUnhandledFaultsGet /default/api/v2/services/{id}/unhandledfaultsList all Unhandled faults which service got.
CoreServiceApiModifyChargeInfoPut /default/api/v2/services/modifyChargeInfo/{id}Modify Charge infomation.
CoreServiceApiModifyServicePut /default/api/v2/services/{id}Modify attribute of a service.
CoreServiceApiProtectServiceGet /default/api/v2/services/{id}/protectProtect the given service from delete or stop.
CoreServiceApiResetStateMachineGet /default/api/v2/services/{id}/statemachine/resetreset service state machine by a given service.
CoreServiceApiResizeVolumesPost /default/api/v2/services/{id}/volumes/resizeAdjust volume size of a given service.
CoreServiceApiRestartServicePost /default/api/v2/services/{id}/restartRestart a service.
CoreServiceApiScaleInServicePost /default/api/v2/services/{id}/scaleinScale in a given service.
CoreServiceApiScaleOutServicePost /default/api/v2/services/{id}/scaleoutScale out a given service.
CoreServiceApiStartServicePost /default/api/v2/services/{id}/startStart a service.
CoreServiceApiStopServicePost /default/api/v2/services/{id}/stopStop a service.
CoreServiceApiToggleAlertAvailabilityGet /default/api/v2/services/{id}/alertToggle alert availability.
CoreServiceApiToggleAutoRecoveryAvailabilityGet /default/api/v2/services/{id}/recoveryToggle auto recovery availability.
CoreServiceApiUpgradeGuestAgentGet /default/api/v2/services/{id}/guestagent/upgradeupgrade all guest agent by a given service.
CoreServiceApiUpgradeServicePost /default/api/v2/services/{service}/upgradeUpgrade service version.
CoreServiceTypeServiceApiListServiceTypeGet /default/api/v2/services/typesList all type of service.
CoreServiceVersionServiceApiCreateServiceVersionPost /default/api/v2/services/versionsCreate a new service version.
CoreServiceVersionServiceApiDeleteServiceVersionDelete /default/api/v2/services/versions/{id}Delete a service version.
CoreServiceVersionServiceApiDescribeServiceVersionGet /default/api/v2/services/versions/{id}Describe the detail of a given service version.
CoreServiceVersionServiceApiListServiceVersionGet /default/api/v2/services/versionsList all service versions.
CoreServiceVersionServiceApiUpdateServiceVersionPut /default/api/v2/services/versions/{id}Update a service version.
CoreTeamServiceApiAddServiceToTeamPost /default/api/v2/teams/{team}/servicesAdd a service to a team
CoreTeamServiceApiDeleteServiceFromTeamDelete /default/api/v2/teams/{team}/services/{service}Remove service from a team.
CoreTeamServiceApiListServiceOfTeamGet /default/api/v2/teams/{id}/servicesList all service of a team.
CoreUnmanagedServiceApiCreateUnmanagedServicePost /default/api/v2/services/unmanagedCreate a unmanaged service.
CoreVendorServiceApiListVendorGet /default/api/v2/vendorsList all cloud vendors.
CoreVolumeTypeServiceApiCreateVolumeTypePost /default/api/v2/volumes/typesCreate a new volume type.
CoreVolumeTypeServiceApiDeleteVolumeTypeDelete /default/api/v2/volumes/types/{name}Delete a volume type.
CoreVolumeTypeServiceApiDescribeVolumeTypeGet /default/api/v2/volumes/types/{name}Describe the detail of a given volume type.
CoreVolumeTypeServiceApiListVolumeTypeGet /default/api/v2/volumes/typesList all volume type.
CoreVpcServiceApiListVpcGet /default/api/v2/vpcsList all available vpc.
CoreVpcServiceApiListVpcSubnetsGet /default/api/v2/vpcs/{vpc}List all available subnet in a given vpc.
CoreWarehouseServiceApiCreateCatalogPost /default/api/v2/services/catalogCreate a catalog service.
CoreWarehouseServiceApiCreateWarehousePost /default/api/v2/services/warehouseCreate a database service.
CoreZoneConfigServiceApiCreateZoneConfigPost /default/api/v2/zones/configsCreate a data center zone configuration.
CoreZoneConfigServiceApiDeleteZoneConfigDelete /default/api/v2/zones/configs/{id}Delete a data center zone configuration.
CoreZoneConfigServiceApiDescribeZoneConfigGet /default/api/v2/zones/configs/{id}Describe the detail of a given data center zone configuration.
CoreZoneConfigServiceApiListZoneConfigGet /default/api/v2/zones/configsList all data center zone configuration.
CoreZoneConfigServiceApiUpdateZoneConfigPut /default/api/v2/zones/configs/{id}Update a data center zone configuration.
CoreZoneServiceApiCreateZonePost /default/api/v2/zonesCreate a new data center zone.
CoreZoneServiceApiDeleteZoneDelete /default/api/v2/zones/{name}Delete a data center zone.
CoreZoneServiceApiDescribeZoneGet /default/api/v2/zones/{name}Describe the detail of a given data center zone.
CoreZoneServiceApiListZoneGet /default/api/v2/zonesList all data center zone.
MaintenanceServiceApiConfigThreadPoolPost /default/api/v2/system/maintenance/configure/thread-poolConfigure thread pool.
MessageServiceApiDescribeMessageGet /notification/api/v2/messages/{id}Describe the detail of a given message.
MessageServiceApiListMessageGet /notification/api/v2/messagesList all messages.
MeteringServiceApiStartMeteringPut /default/api/v2/services/startmetering/{id}Service start metering.
ResourceUsageServiceApiCalculateResourceUsageGet /ksyun/ccb/api/v2/tenants/configsCalculate resource usage for configuring cluster
ResourceUsageServiceApiDescribeResourceUsageGet /ksyun/ccb/api/v2/tenants/regions/{region}Describe the resource usage of a given region.
ResourceUsageServiceApiListResourceUsageGet /ksyun/ccb/api/v2/tenantsList resource usage for all tenants.
ServiceConfigServiceApiCreateServiceConfigPost /ksyun/ccb/api/v2/configs/creationSave service configuration for creating, expanding or shrinking action.
ServiceConfigServiceApiDescribeServiceConfigPost /ksyun/ccb/api/v2/configs/inquirationInquire result of service configuration executing
ServiceConfigServiceApiExecuteServiceConfigPost /ksyun/ccb/api/v2/configs/executionCreate, expand or shrink service by configuration

Documentation For Models

Documentation For Authorization

oauth2

  • Type: OAuth
  • Flow: password
  • Authorization URL:
  • Scopes:
  • ROLE_SUPERVISOR: login as supervisor
  • ROLE_USER: login as user

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

[email protected]

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccountAddUserToTeamRequest instantiates a new AccountAddUserToTeamRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountAddUserToTeamRequestWithDefaults instantiates a new AccountAddUserToTeamRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountChangePasswordRequest instantiates a new AccountChangePasswordRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountChangePasswordRequestWithDefaults instantiates a new AccountChangePasswordRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountComplementExternalUserAndTenantRequest instantiates a new AccountComplementExternalUserAndTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountComplementExternalUserAndTenantRequestWithDefaults instantiates a new AccountComplementExternalUserAndTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateClientRequest instantiates a new AccountCreateClientRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateClientRequestWithDefaults instantiates a new AccountCreateClientRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateExternalTenantRequest instantiates a new AccountCreateExternalTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateExternalTenantRequestWithDefaults instantiates a new AccountCreateExternalTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateExternalUserRequest instantiates a new AccountCreateExternalUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateExternalUserRequestWithDefaults instantiates a new AccountCreateExternalUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateTeamRequest instantiates a new AccountCreateTeamRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateTeamRequestWithDefaults instantiates a new AccountCreateTeamRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateTenantRequest instantiates a new AccountCreateTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateTenantRequestWithDefaults instantiates a new AccountCreateTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountCreateUserRequest instantiates a new AccountCreateUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreateUserRequestWithDefaults instantiates a new AccountCreateUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeClientResponse instantiates a new AccountDescribeClientResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeClientResponseWithDefaults instantiates a new AccountDescribeClientResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeTeamOfUserResponse instantiates a new AccountDescribeTeamOfUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeTeamOfUserResponseWithDefaults instantiates a new AccountDescribeTeamOfUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeTeamResponse instantiates a new AccountDescribeTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeTeamResponseWithDefaults instantiates a new AccountDescribeTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeTenantResponse instantiates a new AccountDescribeTenantResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeTenantResponseWithDefaults instantiates a new AccountDescribeTenantResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeUserOfTeamResponse instantiates a new AccountDescribeUserOfTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeUserOfTeamResponseWithDefaults instantiates a new AccountDescribeUserOfTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountDescribeUserResponse instantiates a new AccountDescribeUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountDescribeUserResponseWithDefaults instantiates a new AccountDescribeUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListClientResponse instantiates a new AccountListClientResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListClientResponseWithDefaults instantiates a new AccountListClientResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListTeamOfUserResponse instantiates a new AccountListTeamOfUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListTeamOfUserResponseWithDefaults instantiates a new AccountListTeamOfUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListTeamResponse instantiates a new AccountListTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListTeamResponseWithDefaults instantiates a new AccountListTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListTenantResponse instantiates a new AccountListTenantResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListTenantResponseWithDefaults instantiates a new AccountListTenantResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListUserOfTeamResponse instantiates a new AccountListUserOfTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListUserOfTeamResponseWithDefaults instantiates a new AccountListUserOfTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListUserResponse instantiates a new AccountListUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListUserResponseWithDefaults instantiates a new AccountListUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountModifyExternalTenantRequest instantiates a new AccountModifyExternalTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountModifyExternalTenantRequestWithDefaults instantiates a new AccountModifyExternalTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountModifyExternalUserRequest instantiates a new AccountModifyExternalUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountModifyExternalUserRequestWithDefaults instantiates a new AccountModifyExternalUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountModifyTeamRequest instantiates a new AccountModifyTeamRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountModifyTeamRequestWithDefaults instantiates a new AccountModifyTeamRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountModifyUserRequest instantiates a new AccountModifyUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountModifyUserRequestWithDefaults instantiates a new AccountModifyUserRequest object This 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 APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewCloudmgrcommonIaasResource instantiates a new CloudmgrcommonIaasResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudmgrcommonIaasResourceWithDefaults instantiates a new CloudmgrcommonIaasResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudmgrcoreIaasResource instantiates a new CloudmgrcoreIaasResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudmgrcoreIaasResourceWithDefaults instantiates a new CloudmgrcoreIaasResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonActionResponse instantiates a new CommonActionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonActionResponseWithDefaults instantiates a new CommonActionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonDescribeJobResponse instantiates a new CommonDescribeJobResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonDescribeJobResponseWithDefaults instantiates a new CommonDescribeJobResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonIaasProperties instantiates a new CommonIaasProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonIaasPropertiesWithDefaults instantiates a new CommonIaasProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonIaasResource instantiates a new CommonIaasResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonIaasResourceWithDefaults instantiates a new CommonIaasResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonPriceConfig instantiates a new CommonPriceConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonPriceConfigWithDefaults instantiates a new CommonPriceConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonProjectInfo instantiates a new CommonProjectInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonProjectInfoWithDefaults instantiates a new CommonProjectInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonResourceConfig instantiates a new CommonResourceConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonResourceConfigWithDefaults instantiates a new CommonResourceConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommonResourceInfo instantiates a new CommonResourceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommonResourceInfoWithDefaults instantiates a new CommonResourceInfo object This 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.
NewCoreAddInstanceToResourcePoolRequest instantiates a new CoreAddInstanceToResourcePoolRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreAddInstanceToResourcePoolRequestWithDefaults instantiates a new CoreAddInstanceToResourcePoolRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreAddProjectTagRequest instantiates a new CoreAddProjectTagRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreAddProjectTagRequestWithDefaults instantiates a new CoreAddProjectTagRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreAddServiceToTeamRequest instantiates a new CoreAddServiceToTeamRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreAddServiceToTeamRequestWithDefaults instantiates a new CoreAddServiceToTeamRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreAttachElasticIpRequest instantiates a new CoreAttachElasticIpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreAttachElasticIpRequestWithDefaults instantiates a new CoreAttachElasticIpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreAttachNetworkInterfaceRequest instantiates a new CoreAttachNetworkInterfaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreAttachNetworkInterfaceRequestWithDefaults instantiates a new CoreAttachNetworkInterfaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCalculateDiskResponse instantiates a new CoreCalculateDiskResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCalculateDiskResponseWithDefaults instantiates a new CoreCalculateDiskResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCalculateResourceUsageResponse instantiates a new CoreCalculateResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCalculateResourceUsageResponseWithDefaults instantiates a new CoreCalculateResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreConfigThreadPoolRequest instantiates a new CoreConfigThreadPoolRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreConfigThreadPoolRequestWithDefaults instantiates a new CoreConfigThreadPoolRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCountServiceResponse instantiates a new CoreCountServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCountServiceResponseWithDefaults instantiates a new CoreCountServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateCatalogRequest instantiates a new CoreCreateCatalogRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateCatalogRequestWithDefaults instantiates a new CoreCreateCatalogRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateElasticIpRequest instantiates a new CoreCreateElasticIpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateElasticIpRequestWithDefaults instantiates a new CoreCreateElasticIpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateElasticNicRequest instantiates a new CoreCreateElasticNicRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateElasticNicRequestWithDefaults instantiates a new CoreCreateElasticNicRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateHdfsConfigRequest instantiates a new CoreCreateHdfsConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateHdfsConfigRequestWithDefaults instantiates a new CoreCreateHdfsConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateInstanceTypeGroupRequest instantiates a new CoreCreateInstanceTypeGroupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateInstanceTypeGroupRequestWithDefaults instantiates a new CoreCreateInstanceTypeGroupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateInstanceTypeRequest instantiates a new CoreCreateInstanceTypeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateInstanceTypeRequestWithDefaults instantiates a new CoreCreateInstanceTypeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateInternetAccessRequest instantiates a new CoreCreateInternetAccessRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateInternetAccessRequestWithDefaults instantiates a new CoreCreateInternetAccessRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateNetworkInterfaceRequest instantiates a new CoreCreateNetworkInterfaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateNetworkInterfaceRequestWithDefaults instantiates a new CoreCreateNetworkInterfaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateOssZoneConfigRequest instantiates a new CoreCreateOssZoneConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateOssZoneConfigRequestWithDefaults instantiates a new CoreCreateOssZoneConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateOssZoneRequest instantiates a new CoreCreateOssZoneRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateOssZoneRequestWithDefaults instantiates a new CoreCreateOssZoneRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateQuotaRequest instantiates a new CoreCreateQuotaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateQuotaRequestWithDefaults instantiates a new CoreCreateQuotaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateRegionConfigRequest instantiates a new CoreCreateRegionConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateRegionConfigRequestWithDefaults instantiates a new CoreCreateRegionConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateRegionRequest instantiates a new CoreCreateRegionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateRegionRequestWithDefaults instantiates a new CoreCreateRegionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateResourcePoolRequest instantiates a new CoreCreateResourcePoolRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateResourcePoolRequestWithDefaults instantiates a new CoreCreateResourcePoolRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateServiceComponentRequest instantiates a new CoreCreateServiceComponentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateServiceComponentRequestWithDefaults instantiates a new CoreCreateServiceComponentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateServiceFeatureRequest instantiates a new CoreCreateServiceFeatureRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateServiceFeatureRequestWithDefaults instantiates a new CoreCreateServiceFeatureRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateServiceIaasExtraRequest instantiates a new CoreCreateServiceIaasExtraRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateServiceIaasExtraRequestWithDefaults instantiates a new CoreCreateServiceIaasExtraRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateServiceOssZoneRequest instantiates a new CoreCreateServiceOssZoneRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateServiceOssZoneRequestWithDefaults instantiates a new CoreCreateServiceOssZoneRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateServiceVersionRequest instantiates a new CoreCreateServiceVersionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateServiceVersionRequestWithDefaults instantiates a new CoreCreateServiceVersionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateUnmanagedServiceRequest instantiates a new CoreCreateUnmanagedServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateUnmanagedServiceRequestWithDefaults instantiates a new CoreCreateUnmanagedServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateVolumeTypeRequest instantiates a new CoreCreateVolumeTypeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateVolumeTypeRequestWithDefaults instantiates a new CoreCreateVolumeTypeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateWarehouseRequest instantiates a new CoreCreateWarehouseRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateWarehouseRequestWithDefaults instantiates a new CoreCreateWarehouseRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateZoneConfigRequest instantiates a new CoreCreateZoneConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateZoneConfigRequestWithDefaults instantiates a new CoreCreateZoneConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreCreateZoneRequest instantiates a new CoreCreateZoneRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreCreateZoneRequestWithDefaults instantiates a new CoreCreateZoneRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeAlertConfigResponse instantiates a new CoreDescribeAlertConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeAlertConfigResponseWithDefaults instantiates a new CoreDescribeAlertConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeBucketResponse instantiates a new CoreDescribeBucketResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeBucketResponseWithDefaults instantiates a new CoreDescribeBucketResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeComponentHealthDetailResponse instantiates a new CoreDescribeComponentHealthDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeComponentHealthDetailResponseWithDefaults instantiates a new CoreDescribeComponentHealthDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeComponentStateMachineStateDetailResponse instantiates a new CoreDescribeComponentStateMachineStateDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeComponentStateMachineStateDetailResponseWithDefaults instantiates a new CoreDescribeComponentStateMachineStateDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeElasticIpResponse instantiates a new CoreDescribeElasticIpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeElasticIpResponseWithDefaults instantiates a new CoreDescribeElasticIpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeElasticNicResponse instantiates a new CoreDescribeElasticNicResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeElasticNicResponseWithDefaults instantiates a new CoreDescribeElasticNicResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeFaultResponse instantiates a new CoreDescribeFaultResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeFaultResponseWithDefaults instantiates a new CoreDescribeFaultResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeHdfsConfigBriefResponse instantiates a new CoreDescribeHdfsConfigBriefResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeHdfsConfigBriefResponseWithDefaults instantiates a new CoreDescribeHdfsConfigBriefResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeHdfsConfigResponse instantiates a new CoreDescribeHdfsConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeHdfsConfigResponseWithDefaults instantiates a new CoreDescribeHdfsConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeInstanceResponse instantiates a new CoreDescribeInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeInstanceResponseWithDefaults instantiates a new CoreDescribeInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeInstanceTypeGroupResponse instantiates a new CoreDescribeInstanceTypeGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeInstanceTypeGroupResponseWithDefaults instantiates a new CoreDescribeInstanceTypeGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeInstanceTypeResponse instantiates a new CoreDescribeInstanceTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeInstanceTypeResponseWithDefaults instantiates a new CoreDescribeInstanceTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeInternetResponse instantiates a new CoreDescribeInternetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeInternetResponseWithDefaults instantiates a new CoreDescribeInternetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeMetadataResponse instantiates a new CoreDescribeMetadataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeMetadataResponseWithDefaults instantiates a new CoreDescribeMetadataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeNetworkInterfaceResponse instantiates a new CoreDescribeNetworkInterfaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeNetworkInterfaceResponseWithDefaults instantiates a new CoreDescribeNetworkInterfaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeNodeStateMachineStateDetailResponse instantiates a new CoreDescribeNodeStateMachineStateDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeNodeStateMachineStateDetailResponseWithDefaults instantiates a new CoreDescribeNodeStateMachineStateDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeObjectResponse instantiates a new CoreDescribeObjectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeObjectResponseWithDefaults instantiates a new CoreDescribeObjectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeOssZoneConfigResponse instantiates a new CoreDescribeOssZoneConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeOssZoneConfigResponseWithDefaults instantiates a new CoreDescribeOssZoneConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeOssZoneResponse instantiates a new CoreDescribeOssZoneResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeOssZoneResponseWithDefaults instantiates a new CoreDescribeOssZoneResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeQuotaResponse instantiates a new CoreDescribeQuotaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeQuotaResponseWithDefaults instantiates a new CoreDescribeQuotaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeRecoveryResponse instantiates a new CoreDescribeRecoveryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeRecoveryResponseWithDefaults instantiates a new CoreDescribeRecoveryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeRegionConfigResponse instantiates a new CoreDescribeRegionConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeRegionConfigResponseWithDefaults instantiates a new CoreDescribeRegionConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeRegionResponse instantiates a new CoreDescribeRegionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeRegionResponseWithDefaults instantiates a new CoreDescribeRegionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeResourcePoolResponse instantiates a new CoreDescribeResourcePoolResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeResourcePoolResponseWithDefaults instantiates a new CoreDescribeResourcePoolResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeResourceUsageResponse instantiates a new CoreDescribeResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeResourceUsageResponseWithDefaults instantiates a new CoreDescribeResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeRoleResponse instantiates a new CoreDescribeRoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeRoleResponseWithDefaults instantiates a new CoreDescribeRoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceComponentResponse instantiates a new CoreDescribeServiceComponentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceComponentResponseWithDefaults instantiates a new CoreDescribeServiceComponentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceDependencyResponse instantiates a new CoreDescribeServiceDependencyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceDependencyResponseWithDefaults instantiates a new CoreDescribeServiceDependencyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceOfTeamResponse instantiates a new CoreDescribeServiceOfTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceOfTeamResponseWithDefaults instantiates a new CoreDescribeServiceOfTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceResponse instantiates a new CoreDescribeServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceResponseWithDefaults instantiates a new CoreDescribeServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceStateMachineStateDetailResponse instantiates a new CoreDescribeServiceStateMachineStateDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceStateMachineStateDetailResponseWithDefaults instantiates a new CoreDescribeServiceStateMachineStateDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceTypeResponse instantiates a new CoreDescribeServiceTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceTypeResponseWithDefaults instantiates a new CoreDescribeServiceTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeServiceVersionResponse instantiates a new CoreDescribeServiceVersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeServiceVersionResponseWithDefaults instantiates a new CoreDescribeServiceVersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeSubnetResponse instantiates a new CoreDescribeSubnetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeSubnetResponseWithDefaults instantiates a new CoreDescribeSubnetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeTeamOfServiceResponse instantiates a new CoreDescribeTeamOfServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeTeamOfServiceResponseWithDefaults instantiates a new CoreDescribeTeamOfServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeTunnelInfoResponse instantiates a new CoreDescribeTunnelInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeTunnelInfoResponseWithDefaults instantiates a new CoreDescribeTunnelInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeUnhandledFaultResponse instantiates a new CoreDescribeUnhandledFaultResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeUnhandledFaultResponseWithDefaults instantiates a new CoreDescribeUnhandledFaultResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVendorListResponse instantiates a new CoreDescribeVendorListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVendorListResponseWithDefaults instantiates a new CoreDescribeVendorListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVendorResponse instantiates a new CoreDescribeVendorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVendorResponseWithDefaults instantiates a new CoreDescribeVendorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVolumeResponse instantiates a new CoreDescribeVolumeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVolumeResponseWithDefaults instantiates a new CoreDescribeVolumeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVolumeTypeResponse instantiates a new CoreDescribeVolumeTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVolumeTypeResponseWithDefaults instantiates a new CoreDescribeVolumeTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVpcDomainMappingResponse instantiates a new CoreDescribeVpcDomainMappingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVpcDomainMappingResponseWithDefaults instantiates a new CoreDescribeVpcDomainMappingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeVpcResponse instantiates a new CoreDescribeVpcResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeVpcResponseWithDefaults instantiates a new CoreDescribeVpcResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeWorkloadDetailResponse instantiates a new CoreDescribeWorkloadDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeWorkloadDetailResponseWithDefaults instantiates a new CoreDescribeWorkloadDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeZoneConfigResponse instantiates a new CoreDescribeZoneConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeZoneConfigResponseWithDefaults instantiates a new CoreDescribeZoneConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreDescribeZoneResponse instantiates a new CoreDescribeZoneResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreDescribeZoneResponseWithDefaults instantiates a new CoreDescribeZoneResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreEnableInternalChargeRequest instantiates a new CoreEnableInternalChargeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreEnableInternalChargeRequestWithDefaults instantiates a new CoreEnableInternalChargeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreExportServiceStateMachineInfoReponse instantiates a new CoreExportServiceStateMachineInfoReponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreExportServiceStateMachineInfoReponseWithDefaults instantiates a new CoreExportServiceStateMachineInfoReponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreHost instantiates a new CoreHost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreHostWithDefaults instantiates a new CoreHost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreInitializeTenantRequest instantiates a new CoreInitializeTenantRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreInitializeTenantRequestWithDefaults instantiates a new CoreInitializeTenantRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreInplaceUpgradeServiceRequest instantiates a new CoreInplaceUpgradeServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreInplaceUpgradeServiceRequestWithDefaults instantiates a new CoreInplaceUpgradeServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreJobLogResponse instantiates a new CoreJobLogResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreJobLogResponseWithDefaults instantiates a new CoreJobLogResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreKrb5 instantiates a new CoreKrb5 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreKrb5Snippet instantiates a new CoreKrb5Snippet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreKrb5SnippetWithDefaults instantiates a new CoreKrb5Snippet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreKrb5WithDefaults instantiates a new CoreKrb5 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListElasticIpResponse instantiates a new CoreListElasticIpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListElasticIpResponseWithDefaults instantiates a new CoreListElasticIpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListFaultResponse instantiates a new CoreListFaultResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListFaultResponseWithDefaults instantiates a new CoreListFaultResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListHdfsConfigResponse instantiates a new CoreListHdfsConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListHdfsConfigResponseWithDefaults instantiates a new CoreListHdfsConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListInstanceResponse instantiates a new CoreListInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListInstanceResponseWithDefaults instantiates a new CoreListInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListInstanceTypeGroupResponse instantiates a new CoreListInstanceTypeGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListInstanceTypeGroupResponseWithDefaults instantiates a new CoreListInstanceTypeGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListInstanceTypeResponse instantiates a new CoreListInstanceTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListInstanceTypeResponseWithDefaults instantiates a new CoreListInstanceTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListJobResponse instantiates a new CoreListJobResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListJobResponseWithDefaults instantiates a new CoreListJobResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListMonitorServiceResponse instantiates a new CoreListMonitorServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListMonitorServiceResponseWithDefaults instantiates a new CoreListMonitorServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListNetworkInterfaceResponse instantiates a new CoreListNetworkInterfaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListNetworkInterfaceResponseWithDefaults instantiates a new CoreListNetworkInterfaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListObjectResponse instantiates a new CoreListObjectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListObjectResponseWithDefaults instantiates a new CoreListObjectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListOssZoneConfigResponse instantiates a new CoreListOssZoneConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListOssZoneConfigResponseWithDefaults instantiates a new CoreListOssZoneConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListOssZoneResponse instantiates a new CoreListOssZoneResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListOssZoneResponseWithDefaults instantiates a new CoreListOssZoneResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListQuotaResponse instantiates a new CoreListQuotaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListQuotaResponseWithDefaults instantiates a new CoreListQuotaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListRecoveryResponse instantiates a new CoreListRecoveryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListRecoveryResponseWithDefaults instantiates a new CoreListRecoveryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListRegionConfigResponse instantiates a new CoreListRegionConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListRegionConfigResponseWithDefaults instantiates a new CoreListRegionConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListRegionResponse instantiates a new CoreListRegionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListRegionResponseWithDefaults instantiates a new CoreListRegionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListResourcePoolResponse instantiates a new CoreListResourcePoolResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListResourcePoolResponseWithDefaults instantiates a new CoreListResourcePoolResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListResourceUsageResponse instantiates a new CoreListResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListResourceUsageResponseWithDefaults instantiates a new CoreListResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListRoleResponse instantiates a new CoreListRoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListRoleResponseWithDefaults instantiates a new CoreListRoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceBucketResponse instantiates a new CoreListServiceBucketResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceBucketResponseWithDefaults instantiates a new CoreListServiceBucketResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceComponentHealthResponse instantiates a new CoreListServiceComponentHealthResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceComponentHealthResponseWithDefaults instantiates a new CoreListServiceComponentHealthResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceDependencyResponse instantiates a new CoreListServiceDependencyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceDependencyResponseWithDefaults instantiates a new CoreListServiceDependencyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceFeatureResponse instantiates a new CoreListServiceFeatureResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceFeatureResponseWithDefaults instantiates a new CoreListServiceFeatureResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceMetadataResponse instantiates a new CoreListServiceMetadataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceMetadataResponseWithDefaults instantiates a new CoreListServiceMetadataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceOfTeamResponse instantiates a new CoreListServiceOfTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceOfTeamResponseWithDefaults instantiates a new CoreListServiceOfTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceRecoveryDetailResponse instantiates a new CoreListServiceRecoveryDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceRecoveryDetailResponseWithDefaults instantiates a new CoreListServiceRecoveryDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceResponse instantiates a new CoreListServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceResponseWithDefaults instantiates a new CoreListServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceStatusesResponse instantiates a new CoreListServiceStatusesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceStatusesResponseWithDefaults instantiates a new CoreListServiceStatusesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceTypeResponse instantiates a new CoreListServiceTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceTypeResponseWithDefaults instantiates a new CoreListServiceTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListServiceVersionResponse instantiates a new CoreListServiceVersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListServiceVersionResponseWithDefaults instantiates a new CoreListServiceVersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListTeamOfServiceResponse instantiates a new CoreListTeamOfServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListTeamOfServiceResponseWithDefaults instantiates a new CoreListTeamOfServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListUnhandledFaultResponse instantiates a new CoreListUnhandledFaultResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListUnhandledFaultResponseWithDefaults instantiates a new CoreListUnhandledFaultResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListVolumeResponse instantiates a new CoreListVolumeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListVolumeResponseWithDefaults instantiates a new CoreListVolumeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListVolumeTypeResponse instantiates a new CoreListVolumeTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListVolumeTypeResponseWithDefaults instantiates a new CoreListVolumeTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListVpcDomainMappingResponse instantiates a new CoreListVpcDomainMappingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListVpcDomainMappingResponseWithDefaults instantiates a new CoreListVpcDomainMappingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListVpcResponse instantiates a new CoreListVpcResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListVpcResponseWithDefaults instantiates a new CoreListVpcResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListVpcSubnetsResponse instantiates a new CoreListVpcSubnetsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListVpcSubnetsResponseWithDefaults instantiates a new CoreListVpcSubnetsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListWorkloadDetailResponse instantiates a new CoreListWorkloadDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListWorkloadDetailResponseWithDefaults instantiates a new CoreListWorkloadDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListZoneConfigResponse instantiates a new CoreListZoneConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListZoneConfigResponseWithDefaults instantiates a new CoreListZoneConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreListZoneResponse instantiates a new CoreListZoneResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreListZoneResponseWithDefaults instantiates a new CoreListZoneResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreModifyChargeInfoRequest instantiates a new CoreModifyChargeInfoRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreModifyChargeInfoRequestWithDefaults instantiates a new CoreModifyChargeInfoRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreModifyElasticIpMaxBandWidthRequest instantiates a new CoreModifyElasticIpMaxBandWidthRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreModifyElasticIpMaxBandWidthRequestWithDefaults instantiates a new CoreModifyElasticIpMaxBandWidthRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreModifyServiceRequest instantiates a new CoreModifyServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreModifyServiceRequestWithDefaults instantiates a new CoreModifyServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreReservedResource instantiates a new CoreReservedResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreReservedResourceWithDefaults instantiates a new CoreReservedResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreResizeServiceVolumesRequest instantiates a new CoreResizeServiceVolumesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreResizeServiceVolumesRequestWithDefaults instantiates a new CoreResizeServiceVolumesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleInServiceComponentRequest instantiates a new CoreScaleInServiceComponentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleInServiceComponentRequestWithDefaults instantiates a new CoreScaleInServiceComponentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleInServiceRequest instantiates a new CoreScaleInServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleInServiceRequestWithDefaults instantiates a new CoreScaleInServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleOutIaasResource instantiates a new CoreScaleOutIaasResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleOutIaasResourceWithDefaults instantiates a new CoreScaleOutIaasResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleOutReservedResource instantiates a new CoreScaleOutReservedResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleOutReservedResourceWithDefaults instantiates a new CoreScaleOutReservedResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleOutServiceComponentRequest instantiates a new CoreScaleOutServiceComponentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleOutServiceComponentRequestWithDefaults instantiates a new CoreScaleOutServiceComponentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreScaleOutServiceRequest instantiates a new CoreScaleOutServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreScaleOutServiceRequestWithDefaults instantiates a new CoreScaleOutServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreStartServiceRequest instantiates a new CoreStartServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreStartServiceRequestWithDefaults instantiates a new CoreStartServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreStopServiceRequest instantiates a new CoreStopServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreStopServiceRequestWithDefaults instantiates a new CoreStopServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateInstanceTypeGroupRequest instantiates a new CoreUpdateInstanceTypeGroupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateInstanceTypeGroupRequestWithDefaults instantiates a new CoreUpdateInstanceTypeGroupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateInstanceTypeRequest instantiates a new CoreUpdateInstanceTypeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateInstanceTypeRequestWithDefaults instantiates a new CoreUpdateInstanceTypeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateOssZoneConfigRequest instantiates a new CoreUpdateOssZoneConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateOssZoneConfigRequestWithDefaults instantiates a new CoreUpdateOssZoneConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateQuotaRequest instantiates a new CoreUpdateQuotaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateQuotaRequestWithDefaults instantiates a new CoreUpdateQuotaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateRegionConfigRequest instantiates a new CoreUpdateRegionConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateRegionConfigRequestWithDefaults instantiates a new CoreUpdateRegionConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateServiceVersionRequest instantiates a new CoreUpdateServiceVersionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateServiceVersionRequestWithDefaults instantiates a new CoreUpdateServiceVersionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateVersionDetailRequest instantiates a new CoreUpdateVersionDetailRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateVersionDetailRequestWithDefaults instantiates a new CoreUpdateVersionDetailRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpdateZoneConfigRequest instantiates a new CoreUpdateZoneConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpdateZoneConfigRequestWithDefaults instantiates a new CoreUpdateZoneConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreUpgradeServiceRequest instantiates a new CoreUpgradeServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreUpgradeServiceRequestWithDefaults instantiates a new CoreUpgradeServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreWorkloadTagResponse instantiates a new CoreWorkloadTagResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreWorkloadTagResponseWithDefaults instantiates a new CoreWorkloadTagResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCoreWorkloadTextResponse instantiates a new CoreWorkloadTextResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCoreWorkloadTextResponseWithDefaults instantiates a new CoreWorkloadTextResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunCalculateResourceUsageResponse instantiates a new KsyunCalculateResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunCalculateResourceUsageResponseWithDefaults instantiates a new KsyunCalculateResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunCreateServiceConfigRequest instantiates a new KsyunCreateServiceConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunCreateServiceConfigRequestWithDefaults instantiates a new KsyunCreateServiceConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunCreateServiceConfigResponse instantiates a new KsyunCreateServiceConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunCreateServiceConfigResponseWithDefaults instantiates a new KsyunCreateServiceConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunDescribeResourceUsageResponse instantiates a new KsyunDescribeResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunDescribeResourceUsageResponseWithDefaults instantiates a new KsyunDescribeResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunDescribeServiceConfigRequest instantiates a new KsyunDescribeServiceConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunDescribeServiceConfigRequestWithDefaults instantiates a new KsyunDescribeServiceConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunDescribeServiceConfigResponse instantiates a new KsyunDescribeServiceConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunDescribeServiceConfigResponseWithDefaults instantiates a new KsyunDescribeServiceConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunExecuteServiceConfigRequest instantiates a new KsyunExecuteServiceConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunExecuteServiceConfigRequestWithDefaults instantiates a new KsyunExecuteServiceConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunExecuteServiceConfigResponse instantiates a new KsyunExecuteServiceConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunExecuteServiceConfigResponseWithDefaults instantiates a new KsyunExecuteServiceConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKsyunListResourceUsageResponse instantiates a new KsyunListResourceUsageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKsyunListResourceUsageResponseWithDefaults instantiates a new KsyunListResourceUsageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationAddContactToGroupRequest instantiates a new NotificationAddContactToGroupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationAddContactToGroupRequestWithDefaults instantiates a new NotificationAddContactToGroupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationCreateContactGroupRequest instantiates a new NotificationCreateContactGroupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationCreateContactGroupRequestWithDefaults instantiates a new NotificationCreateContactGroupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationDescribeContactGroupResponse instantiates a new NotificationDescribeContactGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationDescribeContactGroupResponseWithDefaults instantiates a new NotificationDescribeContactGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationDescribeContactResponse instantiates a new NotificationDescribeContactResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationDescribeContactResponseWithDefaults instantiates a new NotificationDescribeContactResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationDescribeMessageResponse instantiates a new NotificationDescribeMessageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationDescribeMessageResponseWithDefaults instantiates a new NotificationDescribeMessageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationListContactGroupResponse instantiates a new NotificationListContactGroupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationListContactGroupResponseWithDefaults instantiates a new NotificationListContactGroupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationListMessageResponse instantiates a new NotificationListMessageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationListMessageResponseWithDefaults instantiates a new NotificationListMessageResponse object This 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
NewOpsAddCommentResponse instantiates a new OpsAddCommentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsAddCommentResponseWithDefaults instantiates a new OpsAddCommentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCallbackResponse instantiates a new OpsCallbackResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCallbackResponseWithDefaults instantiates a new OpsCallbackResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCountCloudmgrComponentResponse instantiates a new OpsCountCloudmgrComponentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCountCloudmgrComponentResponseWithDefaults instantiates a new OpsCountCloudmgrComponentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCreateBalanceAccountResponse instantiates a new OpsCreateBalanceAccountResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCreateBalanceAccountResponseWithDefaults instantiates a new OpsCreateBalanceAccountResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCreateSilenceRequest instantiates a new OpsCreateSilenceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCreateSilenceRequestWithDefaults instantiates a new OpsCreateSilenceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCreateSilenceResponse instantiates a new OpsCreateSilenceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCreateSilenceResponseWithDefaults instantiates a new OpsCreateSilenceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCreateTicketResponse instantiates a new OpsCreateTicketResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCreateTicketResponseWithDefaults instantiates a new OpsCreateTicketResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsCreateTransactionResponse instantiates a new OpsCreateTransactionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsCreateTransactionResponseWithDefaults instantiates a new OpsCreateTransactionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeAggregateBillingResponse instantiates a new OpsDescribeAggregateBillingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeAggregateBillingResponseWithDefaults instantiates a new OpsDescribeAggregateBillingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeAlertInfoResponse instantiates a new OpsDescribeAlertInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeAlertInfoResponseWithDefaults instantiates a new OpsDescribeAlertInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeAlertResponse instantiates a new OpsDescribeAlertResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeAlertResponseWithDefaults instantiates a new OpsDescribeAlertResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeBalanceAccountResponse instantiates a new OpsDescribeBalanceAccountResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeBalanceAccountResponseWithDefaults instantiates a new OpsDescribeBalanceAccountResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeBucketInfoResponse instantiates a new OpsDescribeBucketInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeBucketInfoResponseWithDefaults instantiates a new OpsDescribeBucketInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeCloudmgrComponentResponse instantiates a new OpsDescribeCloudmgrComponentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeCloudmgrComponentResponseWithDefaults instantiates a new OpsDescribeCloudmgrComponentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeCommentResponse instantiates a new OpsDescribeCommentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeCommentResponseWithDefaults instantiates a new OpsDescribeCommentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeMaintenanceUserResponse instantiates a new OpsDescribeMaintenanceUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeMaintenanceUserResponseWithDefaults instantiates a new OpsDescribeMaintenanceUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeOpeningBankResponse instantiates a new OpsDescribeOpeningBankResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeOpeningBankResponseWithDefaults instantiates a new OpsDescribeOpeningBankResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeResourcePriceResponse instantiates a new OpsDescribeResourcePriceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeResourcePriceResponseWithDefaults instantiates a new OpsDescribeResourcePriceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeSilenceResponse instantiates a new OpsDescribeSilenceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeSilenceResponseWithDefaults instantiates a new OpsDescribeSilenceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeTicketDetailResponse instantiates a new OpsDescribeTicketDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeTicketDetailResponseWithDefaults instantiates a new OpsDescribeTicketDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeTicketResponse instantiates a new OpsDescribeTicketResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeTicketResponseWithDefaults instantiates a new OpsDescribeTicketResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsDescribeTransactionResponse instantiates a new OpsDescribeTransactionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsDescribeTransactionResponseWithDefaults instantiates a new OpsDescribeTransactionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListAggregateBillingResponse instantiates a new OpsListAggregateBillingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListAggregateBillingResponseWithDefaults instantiates a new OpsListAggregateBillingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListAlertInfoResponse instantiates a new OpsListAlertInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListAlertInfoResponseWithDefaults instantiates a new OpsListAlertInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListAlertResponse instantiates a new OpsListAlertResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListAlertResponseWithDefaults instantiates a new OpsListAlertResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListBucketInfoResponse instantiates a new OpsListBucketInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListBucketInfoResponseWithDefaults instantiates a new OpsListBucketInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListCloudmgrComponentResponse instantiates a new OpsListCloudmgrComponentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListCloudmgrComponentResponseWithDefaults instantiates a new OpsListCloudmgrComponentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListCommentResponse instantiates a new OpsListCommentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListCommentResponseWithDefaults instantiates a new OpsListCommentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListMaintenanceUserResponse instantiates a new OpsListMaintenanceUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListMaintenanceUserResponseWithDefaults instantiates a new OpsListMaintenanceUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListOpeningBankResponse instantiates a new OpsListOpeningBankResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListOpeningBankResponseWithDefaults instantiates a new OpsListOpeningBankResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListResourcePriceResponse instantiates a new OpsListResourcePriceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListResourcePriceResponseWithDefaults instantiates a new OpsListResourcePriceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListSilenceResponse instantiates a new OpsListSilenceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListSilenceResponseWithDefaults instantiates a new OpsListSilenceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListTicketResponse instantiates a new OpsListTicketResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListTicketResponseWithDefaults instantiates a new OpsListTicketResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsListTransactionResponse instantiates a new OpsListTransactionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsListTransactionResponseWithDefaults instantiates a new OpsListTransactionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsMatcher instantiates a new OpsMatcher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsMatcherWithDefaults instantiates a new OpsMatcher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsMeteringResource instantiates a new OpsMeteringResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsMeteringResourceWithDefaults instantiates a new OpsMeteringResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsModifySilenceRequest instantiates a new OpsModifySilenceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsModifySilenceRequestWithDefaults instantiates a new OpsModifySilenceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsModifySilenceResponse instantiates a new OpsModifySilenceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsModifySilenceResponseWithDefaults instantiates a new OpsModifySilenceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOpsSumBillingResponse instantiates a new OpsSumBillingResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOpsSumBillingResponseWithDefaults instantiates a new OpsSumBillingResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVmalertCreateAlertRuleRequest instantiates a new VmalertCreateAlertRuleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVmalertCreateAlertRuleRequestWithDefaults instantiates a new VmalertCreateAlertRuleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVmalertDescribeAlertRuleResponse instantiates a new VmalertDescribeAlertRuleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVmalertDescribeAlertRuleResponseWithDefaults instantiates a new VmalertDescribeAlertRuleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVmalertListAlertRuleResponse instantiates a new VmalertListAlertRuleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVmalertListAlertRuleResponseWithDefaults instantiates a new VmalertListAlertRuleResponse object This 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

AccountAddUserToTeamRequest struct for AccountAddUserToTeamRequest.
AccountChangePasswordRequest struct for AccountChangePasswordRequest.
AccountComplementExternalUserAndTenantRequest struct for AccountComplementExternalUserAndTenantRequest.
AccountCreateClientRequest struct for AccountCreateClientRequest.
AccountCreateExternalTenantRequest struct for AccountCreateExternalTenantRequest.
AccountCreateExternalUserRequest struct for AccountCreateExternalUserRequest.
AccountCreateTeamRequest struct for AccountCreateTeamRequest.
AccountCreateTenantRequest struct for AccountCreateTenantRequest.
AccountCreateUserRequest struct for AccountCreateUserRequest.
AccountDescribeClientResponse struct for AccountDescribeClientResponse.
AccountDescribeTeamOfUserResponse struct for AccountDescribeTeamOfUserResponse.
AccountDescribeTeamResponse struct for AccountDescribeTeamResponse.
AccountDescribeTenantResponse struct for AccountDescribeTenantResponse.
AccountDescribeUserOfTeamResponse struct for AccountDescribeUserOfTeamResponse.
AccountDescribeUserResponse struct for AccountDescribeUserResponse.
AccountListClientResponse struct for AccountListClientResponse.
AccountListTeamOfUserResponse struct for AccountListTeamOfUserResponse.
AccountListTeamResponse struct for AccountListTeamResponse.
AccountListTenantResponse struct for AccountListTenantResponse.
AccountListUserOfTeamResponse struct for AccountListUserOfTeamResponse.
AccountListUserResponse struct for AccountListUserResponse.
AccountModifyExternalTenantRequest struct for AccountModifyExternalTenantRequest.
AccountModifyExternalUserRequest struct for AccountModifyExternalUserRequest.
AccountModifyTeamRequest struct for AccountModifyTeamRequest.
AccountModifyUserRequest struct for AccountModifyUserRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Cloud Manager API API vv2.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
CloudmgrcommonIaasResource struct for CloudmgrcommonIaasResource.
CloudmgrcoreIaasResource struct for CloudmgrcoreIaasResource.
CommonActionResponse struct for CommonActionResponse.
CommonDescribeJobResponse struct for CommonDescribeJobResponse.
CommonIaasProperties struct for CommonIaasProperties.
CommonIaasResource struct for CommonIaasResource.
CommonPriceConfig struct for CommonPriceConfig.
CommonProjectInfo struct for CommonProjectInfo.
CommonResourceConfig struct for CommonResourceConfig.
CommonResourceInfo struct for CommonResourceInfo.
Configuration stores the configuration of the API client.
CoreAddInstanceToResourcePoolRequest struct for CoreAddInstanceToResourcePoolRequest.
CoreAddProjectTagRequest struct for CoreAddProjectTagRequest.
CoreAddServiceToTeamRequest struct for CoreAddServiceToTeamRequest.
CoreAttachElasticIpRequest struct for CoreAttachElasticIpRequest.
CoreAttachNetworkInterfaceRequest struct for CoreAttachNetworkInterfaceRequest.
CoreCalculateDiskResponse struct for CoreCalculateDiskResponse.
CoreCalculateResourceUsageResponse struct for CoreCalculateResourceUsageResponse.
CoreConfigThreadPoolRequest struct for CoreConfigThreadPoolRequest.
CoreCountServiceResponse struct for CoreCountServiceResponse.
CoreCreateCatalogRequest struct for CoreCreateCatalogRequest.
CoreCreateElasticIpRequest struct for CoreCreateElasticIpRequest.
CoreCreateElasticNicRequest struct for CoreCreateElasticNicRequest.
CoreCreateHdfsConfigRequest struct for CoreCreateHdfsConfigRequest.
CoreCreateInstanceTypeGroupRequest struct for CoreCreateInstanceTypeGroupRequest.
CoreCreateInstanceTypeRequest struct for CoreCreateInstanceTypeRequest.
CoreCreateInternetAccessRequest struct for CoreCreateInternetAccessRequest.
CoreCreateNetworkInterfaceRequest struct for CoreCreateNetworkInterfaceRequest.
CoreCreateOssZoneConfigRequest struct for CoreCreateOssZoneConfigRequest.
CoreCreateOssZoneRequest struct for CoreCreateOssZoneRequest.
CoreCreateQuotaRequest struct for CoreCreateQuotaRequest.
CoreCreateRegionConfigRequest struct for CoreCreateRegionConfigRequest.
CoreCreateRegionRequest struct for CoreCreateRegionRequest.
CoreCreateResourcePoolRequest struct for CoreCreateResourcePoolRequest.
CoreCreateServiceComponentRequest struct for CoreCreateServiceComponentRequest.
CoreCreateServiceFeatureRequest struct for CoreCreateServiceFeatureRequest.
CoreCreateServiceIaasExtraRequest struct for CoreCreateServiceIaasExtraRequest.
CoreCreateServiceOssZoneRequest struct for CoreCreateServiceOssZoneRequest.
CoreCreateServiceVersionRequest struct for CoreCreateServiceVersionRequest.
CoreCreateUnmanagedServiceRequest struct for CoreCreateUnmanagedServiceRequest.
CoreCreateVolumeTypeRequest struct for CoreCreateVolumeTypeRequest.
CoreCreateWarehouseRequest struct for CoreCreateWarehouseRequest.
CoreCreateZoneConfigRequest struct for CoreCreateZoneConfigRequest.
CoreCreateZoneRequest struct for CoreCreateZoneRequest.
CoreDescribeAlertConfigResponse struct for CoreDescribeAlertConfigResponse.
CoreDescribeBucketResponse struct for CoreDescribeBucketResponse.
CoreDescribeComponentHealthDetailResponse struct for CoreDescribeComponentHealthDetailResponse.
CoreDescribeComponentStateMachineStateDetailResponse struct for CoreDescribeComponentStateMachineStateDetailResponse.
CoreDescribeElasticIpResponse struct for CoreDescribeElasticIpResponse.
CoreDescribeElasticNicResponse struct for CoreDescribeElasticNicResponse.
CoreDescribeFaultResponse struct for CoreDescribeFaultResponse.
CoreDescribeHdfsConfigBriefResponse struct for CoreDescribeHdfsConfigBriefResponse.
CoreDescribeHdfsConfigResponse struct for CoreDescribeHdfsConfigResponse.
CoreDescribeInstanceResponse struct for CoreDescribeInstanceResponse.
CoreDescribeInstanceTypeGroupResponse struct for CoreDescribeInstanceTypeGroupResponse.
CoreDescribeInstanceTypeResponse struct for CoreDescribeInstanceTypeResponse.
CoreDescribeInternetResponse struct for CoreDescribeInternetResponse.
CoreDescribeMetadataResponse struct for CoreDescribeMetadataResponse.
CoreDescribeNetworkInterfaceResponse struct for CoreDescribeNetworkInterfaceResponse.
CoreDescribeNodeStateMachineStateDetailResponse struct for CoreDescribeNodeStateMachineStateDetailResponse.
CoreDescribeObjectResponse struct for CoreDescribeObjectResponse.
CoreDescribeOssZoneConfigResponse struct for CoreDescribeOssZoneConfigResponse.
CoreDescribeOssZoneResponse struct for CoreDescribeOssZoneResponse.
CoreDescribeQuotaResponse struct for CoreDescribeQuotaResponse.
CoreDescribeRecoveryResponse struct for CoreDescribeRecoveryResponse.
CoreDescribeRegionConfigResponse struct for CoreDescribeRegionConfigResponse.
CoreDescribeRegionResponse struct for CoreDescribeRegionResponse.
CoreDescribeResourcePoolResponse struct for CoreDescribeResourcePoolResponse.
CoreDescribeResourceUsageResponse struct for CoreDescribeResourceUsageResponse.
CoreDescribeRoleResponse struct for CoreDescribeRoleResponse.
CoreDescribeServiceComponentResponse struct for CoreDescribeServiceComponentResponse.
CoreDescribeServiceDependencyResponse struct for CoreDescribeServiceDependencyResponse.
CoreDescribeServiceOfTeamResponse struct for CoreDescribeServiceOfTeamResponse.
CoreDescribeServiceResponse struct for CoreDescribeServiceResponse.
CoreDescribeServiceStateMachineStateDetailResponse struct for CoreDescribeServiceStateMachineStateDetailResponse.
CoreDescribeServiceTypeResponse struct for CoreDescribeServiceTypeResponse.
CoreDescribeServiceVersionResponse struct for CoreDescribeServiceVersionResponse.
CoreDescribeSubnetResponse struct for CoreDescribeSubnetResponse.
CoreDescribeTeamOfServiceResponse struct for CoreDescribeTeamOfServiceResponse.
CoreDescribeTunnelInfoResponse struct for CoreDescribeTunnelInfoResponse.
CoreDescribeUnhandledFaultResponse struct for CoreDescribeUnhandledFaultResponse.
CoreDescribeVendorListResponse struct for CoreDescribeVendorListResponse.
CoreDescribeVendorResponse struct for CoreDescribeVendorResponse.
CoreDescribeVolumeResponse struct for CoreDescribeVolumeResponse.
CoreDescribeVolumeTypeResponse struct for CoreDescribeVolumeTypeResponse.
CoreDescribeVpcDomainMappingResponse struct for CoreDescribeVpcDomainMappingResponse.
CoreDescribeVpcResponse struct for CoreDescribeVpcResponse.
CoreDescribeWorkloadDetailResponse struct for CoreDescribeWorkloadDetailResponse.
CoreDescribeZoneConfigResponse struct for CoreDescribeZoneConfigResponse.
CoreDescribeZoneResponse struct for CoreDescribeZoneResponse.
CoreEnableInternalChargeRequest struct for CoreEnableInternalChargeRequest.
CoreExportServiceStateMachineInfoReponse struct for CoreExportServiceStateMachineInfoReponse.
CoreHost struct for CoreHost.
CoreInitializeTenantRequest struct for CoreInitializeTenantRequest.
CoreInplaceUpgradeServiceRequest struct for CoreInplaceUpgradeServiceRequest.
CoreJobLogResponse struct for CoreJobLogResponse.
CoreKrb5 struct for CoreKrb5.
CoreKrb5Snippet struct for CoreKrb5Snippet.
CoreListElasticIpResponse struct for CoreListElasticIpResponse.
CoreListFaultResponse struct for CoreListFaultResponse.
CoreListHdfsConfigResponse struct for CoreListHdfsConfigResponse.
CoreListInstanceResponse struct for CoreListInstanceResponse.
CoreListInstanceTypeGroupResponse struct for CoreListInstanceTypeGroupResponse.
CoreListInstanceTypeResponse struct for CoreListInstanceTypeResponse.
CoreListJobResponse struct for CoreListJobResponse.
CoreListMonitorServiceResponse struct for CoreListMonitorServiceResponse.
CoreListNetworkInterfaceResponse struct for CoreListNetworkInterfaceResponse.
CoreListObjectResponse struct for CoreListObjectResponse.
CoreListOssZoneConfigResponse struct for CoreListOssZoneConfigResponse.
CoreListOssZoneResponse struct for CoreListOssZoneResponse.
CoreListQuotaResponse struct for CoreListQuotaResponse.
CoreListRecoveryResponse struct for CoreListRecoveryResponse.
CoreListRegionConfigResponse struct for CoreListRegionConfigResponse.
CoreListRegionResponse struct for CoreListRegionResponse.
CoreListResourcePoolResponse struct for CoreListResourcePoolResponse.
CoreListResourceUsageResponse struct for CoreListResourceUsageResponse.
CoreListRoleResponse struct for CoreListRoleResponse.
CoreListServiceBucketResponse struct for CoreListServiceBucketResponse.
CoreListServiceComponentHealthResponse struct for CoreListServiceComponentHealthResponse.
CoreListServiceDependencyResponse struct for CoreListServiceDependencyResponse.
CoreListServiceFeatureResponse struct for CoreListServiceFeatureResponse.
CoreListServiceMetadataResponse struct for CoreListServiceMetadataResponse.
CoreListServiceOfTeamResponse struct for CoreListServiceOfTeamResponse.
CoreListServiceRecoveryDetailResponse struct for CoreListServiceRecoveryDetailResponse.
CoreListServiceResponse struct for CoreListServiceResponse.
CoreListServiceStatusesResponse struct for CoreListServiceStatusesResponse.
CoreListServiceTypeResponse struct for CoreListServiceTypeResponse.
CoreListServiceVersionResponse struct for CoreListServiceVersionResponse.
CoreListTeamOfServiceResponse struct for CoreListTeamOfServiceResponse.
CoreListUnhandledFaultResponse struct for CoreListUnhandledFaultResponse.
CoreListVolumeResponse struct for CoreListVolumeResponse.
CoreListVolumeTypeResponse struct for CoreListVolumeTypeResponse.
CoreListVpcDomainMappingResponse struct for CoreListVpcDomainMappingResponse.
CoreListVpcResponse struct for CoreListVpcResponse.
CoreListVpcSubnetsResponse struct for CoreListVpcSubnetsResponse.
CoreListWorkloadDetailResponse struct for CoreListWorkloadDetailResponse.
CoreListZoneConfigResponse struct for CoreListZoneConfigResponse.
CoreListZoneResponse struct for CoreListZoneResponse.
CoreModifyChargeInfoRequest struct for CoreModifyChargeInfoRequest.
CoreModifyElasticIpMaxBandWidthRequest struct for CoreModifyElasticIpMaxBandWidthRequest.
CoreModifyServiceRequest struct for CoreModifyServiceRequest.
CoreReservedResource struct for CoreReservedResource.
CoreResizeServiceVolumesRequest struct for CoreResizeServiceVolumesRequest.
CoreScaleInServiceComponentRequest struct for CoreScaleInServiceComponentRequest.
CoreScaleInServiceRequest struct for CoreScaleInServiceRequest.
CoreScaleOutIaasResource struct for CoreScaleOutIaasResource.
CoreScaleOutReservedResource struct for CoreScaleOutReservedResource.
CoreScaleOutServiceComponentRequest struct for CoreScaleOutServiceComponentRequest.
CoreScaleOutServiceRequest struct for CoreScaleOutServiceRequest.
CoreStartServiceRequest struct for CoreStartServiceRequest.
CoreStopServiceRequest struct for CoreStopServiceRequest.
CoreUpdateInstanceTypeGroupRequest struct for CoreUpdateInstanceTypeGroupRequest.
CoreUpdateInstanceTypeRequest struct for CoreUpdateInstanceTypeRequest.
CoreUpdateOssZoneConfigRequest struct for CoreUpdateOssZoneConfigRequest.
CoreUpdateQuotaRequest struct for CoreUpdateQuotaRequest.
CoreUpdateRegionConfigRequest struct for CoreUpdateRegionConfigRequest.
CoreUpdateServiceVersionRequest struct for CoreUpdateServiceVersionRequest.
CoreUpdateVersionDetailRequest struct for CoreUpdateVersionDetailRequest.
CoreUpdateZoneConfigRequest struct for CoreUpdateZoneConfigRequest.
CoreUpgradeServiceRequest struct for CoreUpgradeServiceRequest.
CoreWorkloadTagResponse struct for CoreWorkloadTagResponse.
CoreWorkloadTextResponse struct for CoreWorkloadTextResponse.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
KsyunCalculateResourceUsageResponse struct for KsyunCalculateResourceUsageResponse.
KsyunCreateServiceConfigRequest struct for KsyunCreateServiceConfigRequest.
KsyunCreateServiceConfigResponse struct for KsyunCreateServiceConfigResponse.
KsyunDescribeResourceUsageResponse struct for KsyunDescribeResourceUsageResponse.
KsyunDescribeServiceConfigRequest struct for KsyunDescribeServiceConfigRequest.
KsyunDescribeServiceConfigResponse struct for KsyunDescribeServiceConfigResponse.
KsyunExecuteServiceConfigRequest struct for KsyunExecuteServiceConfigRequest.
KsyunExecuteServiceConfigResponse struct for KsyunExecuteServiceConfigResponse.
KsyunListResourceUsageResponse struct for KsyunListResourceUsageResponse.
NotificationAddContactToGroupRequest struct for NotificationAddContactToGroupRequest.
NotificationCreateContactGroupRequest struct for NotificationCreateContactGroupRequest.
NotificationDescribeContactGroupResponse struct for NotificationDescribeContactGroupResponse.
NotificationDescribeContactResponse struct for NotificationDescribeContactResponse.
NotificationDescribeMessageResponse struct for NotificationDescribeMessageResponse.
NotificationListContactGroupResponse struct for NotificationListContactGroupResponse.
NotificationListMessageResponse struct for NotificationListMessageResponse.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OpsAddCommentResponse struct for OpsAddCommentResponse.
OpsCallbackResponse struct for OpsCallbackResponse.
OpsCountCloudmgrComponentResponse struct for OpsCountCloudmgrComponentResponse.
OpsCreateBalanceAccountResponse struct for OpsCreateBalanceAccountResponse.
OpsCreateSilenceRequest struct for OpsCreateSilenceRequest.
OpsCreateSilenceResponse struct for OpsCreateSilenceResponse.
OpsCreateTicketResponse struct for OpsCreateTicketResponse.
OpsCreateTransactionResponse struct for OpsCreateTransactionResponse.
OpsDescribeAggregateBillingResponse struct for OpsDescribeAggregateBillingResponse.
OpsDescribeAlertInfoResponse struct for OpsDescribeAlertInfoResponse.
OpsDescribeAlertResponse struct for OpsDescribeAlertResponse.
OpsDescribeBalanceAccountResponse struct for OpsDescribeBalanceAccountResponse.
OpsDescribeBucketInfoResponse struct for OpsDescribeBucketInfoResponse.
OpsDescribeCloudmgrComponentResponse struct for OpsDescribeCloudmgrComponentResponse.
OpsDescribeCommentResponse struct for OpsDescribeCommentResponse.
OpsDescribeMaintenanceUserResponse struct for OpsDescribeMaintenanceUserResponse.
OpsDescribeOpeningBankResponse struct for OpsDescribeOpeningBankResponse.
OpsDescribeResourcePriceResponse struct for OpsDescribeResourcePriceResponse.
OpsDescribeSilenceResponse struct for OpsDescribeSilenceResponse.
OpsDescribeTicketDetailResponse struct for OpsDescribeTicketDetailResponse.
OpsDescribeTicketResponse struct for OpsDescribeTicketResponse.
OpsDescribeTransactionResponse struct for OpsDescribeTransactionResponse.
OpsListAggregateBillingResponse struct for OpsListAggregateBillingResponse.
OpsListAlertInfoResponse struct for OpsListAlertInfoResponse.
OpsListAlertResponse struct for OpsListAlertResponse.
OpsListBucketInfoResponse struct for OpsListBucketInfoResponse.
OpsListCloudmgrComponentResponse struct for OpsListCloudmgrComponentResponse.
OpsListCommentResponse struct for OpsListCommentResponse.
OpsListMaintenanceUserResponse struct for OpsListMaintenanceUserResponse.
OpsListOpeningBankResponse struct for OpsListOpeningBankResponse.
OpsListResourcePriceResponse struct for OpsListResourcePriceResponse.
OpsListSilenceResponse struct for OpsListSilenceResponse.
OpsListTicketResponse struct for OpsListTicketResponse.
OpsListTransactionResponse struct for OpsListTransactionResponse.
OpsMatcher struct for OpsMatcher.
OpsMeteringResource struct for OpsMeteringResource.
OpsModifySilenceRequest struct for OpsModifySilenceRequest.
OpsModifySilenceResponse struct for OpsModifySilenceResponse.
OpsSumBillingResponse struct for OpsSumBillingResponse.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
VmalertCreateAlertRuleRequest struct for VmalertCreateAlertRuleRequest.
VmalertDescribeAlertRuleResponse struct for VmalertDescribeAlertRuleResponse.
VmalertListAlertRuleResponse struct for VmalertListAlertRuleResponse.

# Type aliases

AccountClientServiceApiService AccountClientServiceApi service.
AccountTeamServiceApiService AccountTeamServiceApi service.
AccountTenantServiceApiService AccountTenantServiceApi service.
AccountUserServiceApiService AccountUserServiceApi service.
AlertInfoServiceApiService AlertInfoServiceApi service.
AlertmanagerServiceApiService AlertmanagerServiceApi service.
ContactGroupServiceApiService ContactGroupServiceApi service.
CoreAlertServiceApiService CoreAlertServiceApi service.
CoreBucketServiceApiService CoreBucketServiceApi service.
CoreCommonServiceApiService CoreCommonServiceApi service.
CoreElasticIpServiceApiService CoreElasticIpServiceApi service.
CoreHdfsConfigServiceApiService CoreHdfsConfigServiceApi service.
CoreInstanceServiceApiService CoreInstanceServiceApi service.
CoreInstanceTypeGroupServiceApiService CoreInstanceTypeGroupServiceApi service.
CoreInstanceTypeServiceApiService CoreInstanceTypeServiceApi service.
CoreJobServiceApiService CoreJobServiceApi service.
CoreNetworkInterfaceServiceApiService CoreNetworkInterfaceServiceApi service.
CoreOssZoneConfigServiceApiService CoreOssZoneConfigServiceApi service.
CoreOssZoneServiceApiService CoreOssZoneServiceApi service.
CoreQuotaServiceApiService CoreQuotaServiceApi service.
CoreRegionConfigServiceApiService CoreRegionConfigServiceApi service.
CoreRegionServiceApiService CoreRegionServiceApi service.
CoreResourcePoolServiceApiService CoreResourcePoolServiceApi service.
CoreRoleServiceApiService CoreRoleServiceApi service.
CoreServiceApiService CoreServiceApi service.
CoreServiceTypeServiceApiService CoreServiceTypeServiceApi service.
CoreServiceVersionServiceApiService CoreServiceVersionServiceApi service.
CoreTeamServiceApiService CoreTeamServiceApi service.
CoreUnmanagedServiceApiService CoreUnmanagedServiceApi service.
CoreVendorServiceApiService CoreVendorServiceApi service.
CoreVolumeTypeServiceApiService CoreVolumeTypeServiceApi service.
CoreVpcServiceApiService CoreVpcServiceApi service.
CoreWarehouseServiceApiService CoreWarehouseServiceApi service.
CoreZoneConfigServiceApiService CoreZoneConfigServiceApi service.
CoreZoneServiceApiService CoreZoneServiceApi service.
MaintenanceServiceApiService MaintenanceServiceApi service.
MessageServiceApiService MessageServiceApi service.
MeteringServiceApiService MeteringServiceApi service.
ResourceUsageServiceApiService ResourceUsageServiceApi service.
ServerConfigurations stores multiple ServerConfiguration items.
ServiceConfigServiceApiService ServiceConfigServiceApi service.