Class: Azure::OperationalInsights::Mgmt::V2015_11_01_preview::Models::Workspace

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb

Overview

The top level Workspace resource container.

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #location, #name, #tags, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#customer_idString

associated with the workspace.

Returns:

  • (String)

    This is a read-only property. Represents the ID



26
27
28
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 26

def customer_id
  @customer_id
end

#e_tagString

Returns The ETag of the workspace.

Returns:

  • (String)

    The ETag of the workspace.



41
42
43
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 41

def e_tag
  @e_tag
end

#portal_urlString

Kept here for backward compatibility.

Returns:

  • (String)

    This is a legacy property and is not used anymore.



30
31
32
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 30

def portal_url
  @portal_url
end

#provisioning_stateEntityStatus

Possible values include: ‘Creating’, ‘Succeeded’, ‘Failed’, ‘Canceled’, ‘Deleting’, ‘ProvisioningAccount’

Returns:

  • (EntityStatus)

    The provisioning state of the workspace.



18
19
20
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 18

def provisioning_state
  @provisioning_state
end

#retention_in_daysInteger

Unlimited retention for the Unlimited Sku. 730 days is the maximum allowed for all other Skus.

Returns:

  • (Integer)

    The workspace data retention in days. -1 means



38
39
40
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 38

def retention_in_days
  @retention_in_days
end

#skuSku

Returns The SKU of the workspace.

Returns:

  • (Sku)

    The SKU of the workspace.



33
34
35
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 33

def sku
  @sku
end

#sourceString

to ‘Azure’ by the service. Kept here for backward compatibility.

Returns:

  • (String)

    This is a read-only legacy property. It is always set



22
23
24
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 22

def source
  @source
end

Class Method Details

.mapperObject

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



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/models/workspace.rb', line 48

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Workspace',
    type: {
      name: 'Composite',
      class_name: 'Workspace',
      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'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        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'
                }
            }
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        source: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.source',
          type: {
            name: 'String'
          }
        },
        customer_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.customerId',
          type: {
            name: 'String'
          }
        },
        portal_url: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.portalUrl',
          type: {
            name: 'String'
          }
        },
        sku: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.sku',
          type: {
            name: 'Composite',
            class_name: 'Sku'
          }
        },
        retention_in_days: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.retentionInDays',
          constraints: {
            InclusiveMaximum: 730,
            InclusiveMinimum: -1
          },
          type: {
            name: 'Number'
          }
        },
        e_tag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'eTag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end