Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 2.1 KB

File metadata and controls

28 lines (22 loc) · 2.1 KB

IntersightClient::IwotenantTenantStatus

Properties

Name Type Description Notes
class_id String The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to 'iwotenant.TenantStatus']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'iwotenant.TenantStatus']
deploy_status String The deployStatus provides the current status of this deployment. * `NotStarted` - The workflow to deploy the tenant cluster has not yet started. * `InProgress` - The workflow to deploy the tenant cluster in progress. All the tasks required for thesuccessful tenant creation are running. * `Completed` - The workflow to deploy the tenant cluster has completed and health checks have passed. * `Failed` - The workflow to deploy the tenant cluster has failed. Detailed reason for the failure isprovided from Tenant.deployStatus. [optional][readonly][default to 'NotStarted']
iwo_id String The iwoId uniquely identifies a IWO tenant. The iwoId is used as part of namespace, (logical) database names, policies in vault and many others. As of now, accountMoid has to be provided as the iwoId. [optional][readonly]
reference_time Time During IWO tenant upgrade (or reconfiguration), deployStatus is set to InProgress and referenceTime set to current time. When tenant upgrade (or reconfiguration) does not complete within a pre-defined time using this as reference, deployStatus is set as Failed. [optional][readonly]
account IamAccountRelationship [optional]

Example

require 'intersight_client'

instance = IntersightClient::IwotenantTenantStatus.new(
  class_id: null,
  object_type: null,
  deploy_status: null,
  iwo_id: null,
  reference_time: null,
  account: null
)