class Azure::OperationalInsights::Mgmt::V2015_03_20::Models::LinkTarget

Metadata for a workspace that isn't linked to an Azure subscription.

Attributes

customer_id[RW]

@return [String] The GUID that uniquely identifies the workspace.

display_name[RW]

@return [String] The display name of the workspace.

location[RW]

@return [String] The location of the workspace.

workspace_name[RW]

@return [String] The DNS valid workspace name.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-03-20/generated/azure_mgmt_operational_insights/models/link_target.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'LinkTarget',
    type: {
      name: 'Composite',
      class_name: 'LinkTarget',
      model_properties: {
        customer_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'customerId',
          type: {
            name: 'String'
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        },
        workspace_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'workspaceName',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end