class Azure::Confluent::Mgmt::V2020_03_01::Models::OrganizationResource

Organization resource.

Attributes

created_time[RW]

@return [DateTime] The creation time of the resource.

id[RW]

@return [String] The ARM id of the resource.

location[RW]

@return [String] Location of Organization resource

name[RW]

@return [String] The name of the resource.

offer_detail[RW]

@return [OrganizationResourcePropertiesOfferDetail] Confluent offer detail

organization_id[RW]

@return [String] Id of the Confluent organization.

provisioning_state[RW]

@return [ProvisionState] Provision states for confluent RP. Possible values include: 'Accepted', 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled', 'Deleted', 'NotSpecified'

sso_url[RW]

@return [String] SSO url for the Confluent organization.

tags[RW]

@return [Hash{String => String}] Organization resource tags

type[RW]

@return [String] The type of the resource.

user_detail[RW]

@return [OrganizationResourcePropertiesUserDetail] Subscriber detail

Private Class Methods

mapper() click to toggle source

Mapper for OrganizationResource class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-03-01/generated/azure_mgmt_confluent/models/organization_resource.rb, line 56
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OrganizationResource',
    type: {
      name: 'Composite',
      class_name: 'OrganizationResource',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        created_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.createdTime',
          type: {
            name: 'DateTime'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        organization_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.organizationId',
          type: {
            name: 'String'
          }
        },
        sso_url: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.ssoUrl',
          type: {
            name: 'String'
          }
        },
        offer_detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.offerDetail',
          type: {
            name: 'Composite',
            class_name: 'OrganizationResourcePropertiesOfferDetail'
          }
        },
        user_detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.userDetail',
          type: {
            name: 'Composite',
            class_name: 'OrganizationResourcePropertiesUserDetail'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end