Class: Azure::ServiceBus::Mgmt::V2015_08_01::Models::NamespaceCreateOrUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb

Overview

Parameters supplied to the Create Or Update Namespace operation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#create_acsnamespaceBoolean

Returns Indicates whether to create an ACS namespace.

Returns:

  • (Boolean)

    Indicates whether to create an ACS namespace.



44
45
46
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 44

def create_acsnamespace
  @create_acsnamespace
end

#created_atDateTime

Returns The time the namespace was created.

Returns:

  • (DateTime)

    The time the namespace was created.



34
35
36
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 34

def created_at
  @created_at
end

#enabledBoolean

Returns Specifies whether this instance is enabled.

Returns:

  • (Boolean)

    Specifies whether this instance is enabled.



47
48
49
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 47

def enabled
  @enabled
end

#locationString

Returns Namespace location.

Returns:

  • (String)

    Namespace location.



16
17
18
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 16

def location
  @location
end

#provisioning_stateString

Returns Provisioning state of the namespace.

Returns:

  • (String)

    Provisioning state of the namespace.



25
26
27
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 25

def provisioning_state
  @provisioning_state
end

#service_bus_endpointString

operations.

Returns:

  • (String)

    Endpoint you can use to perform Service Bus



41
42
43
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 41

def service_bus_endpoint
  @service_bus_endpoint
end

#skuSku

Returns:



19
20
21
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 19

def sku
  @sku
end

#statusNamespaceState

include: ‘Unknown’, ‘Creating’, ‘Created’, ‘Activating’, ‘Enabling’, ‘Active’, ‘Disabling’, ‘Disabled’, ‘SoftDeleting’, ‘SoftDeleted’, ‘Removing’, ‘Removed’, ‘Failed’

Returns:



31
32
33
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 31

def status
  @status
end

#tagsHash{String => String}

Returns Namespace tags.

Returns:

  • (Hash{String => String})

    Namespace tags.



22
23
24
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 22

def tags
  @tags
end

#updated_atDateTime

Returns The time the namespace was updated.

Returns:

  • (DateTime)

    The time the namespace was updated.



37
38
39
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 37

def updated_at
  @updated_at
end

Class Method Details

.mapperObject

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



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
# File 'lib/2015-08-01/generated/azure_mgmt_service_bus/models/namespace_create_or_update_parameters.rb', line 54

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NamespaceCreateOrUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'NamespaceCreateOrUpdateParameters',
      model_properties: {
        location: {
          client_side_validation: true,
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        sku: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'Sku'
          }
        },
        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,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.status',
          type: {
            name: 'Enum',
            module: 'NamespaceState'
          }
        },
        created_at: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.createdAt',
          type: {
            name: 'DateTime'
          }
        },
        updated_at: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.updatedAt',
          type: {
            name: 'DateTime'
          }
        },
        service_bus_endpoint: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.serviceBusEndpoint',
          type: {
            name: 'String'
          }
        },
        create_acsnamespace: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.createACSNamespace',
          type: {
            name: 'Boolean'
          }
        },
        enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.enabled',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end