class Azure::ServiceBus::Mgmt::V2015_08_01::Models::NamespaceCreateOrUpdateParameters
Parameters supplied to the Create Or Update Namespace operation.
Attributes
@return [Boolean] Indicates whether to create an ACS namespace.
@return [DateTime] The time the namespace was created.
@return [Boolean] Specifies whether this instance is enabled.
@return [String] Namespace location.
@return [String] Provisioning state of the namespace.
@return [String] Endpoint you can use to perform Service Bus operations.
@return [Sku]
@return [NamespaceState] State of the namespace. Possible values include: 'Unknown', 'Creating', 'Created', 'Activating', 'Enabling', 'Active', 'Disabling', 'Disabled', 'SoftDeleting', 'SoftDeleted', 'Removing', 'Removed', 'Failed'
@return [DateTime] The time the namespace was updated.
Public Class Methods
Mapper for NamespaceCreateOrUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# 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