Class: Azure::StorageSync::Mgmt::V2018_04_02::Models::CloudEndpointCreateParameters
- Inherits:
-
Object
- Object
- Azure::StorageSync::Mgmt::V2018_04_02::Models::CloudEndpointCreateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb
Overview
The parameters used when creating a storage sync service.
Instance Attribute Summary collapse
-
#location ⇒ String
This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.).
-
#storage_account_resource_id ⇒ String
Storage Account Resource Id.
-
#storage_account_share_name ⇒ String
Storage Account Share name.
-
#storage_account_tenant_id ⇒ String
Storage Account Tenant Id.
-
#tags ⇒ Hash{String => String}
that describe the resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CloudEndpointCreateParameters class as Ruby Hash.
Instance Attribute Details
#location ⇒ String
This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
20 21 22 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 20 def location @location end |
#storage_account_resource_id ⇒ String
Returns Storage Account Resource Id.
31 32 33 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 31 def storage_account_resource_id @storage_account_resource_id end |
#storage_account_share_name ⇒ String
Returns Storage Account Share name.
34 35 36 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 34 def storage_account_share_name @storage_account_share_name end |
#storage_account_tenant_id ⇒ String
Returns Storage Account Tenant Id.
37 38 39 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 37 def storage_account_tenant_id @storage_account_tenant_id end |
#tags ⇒ Hash{String => String}
that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
28 29 30 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 28 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for CloudEndpointCreateParameters class as Ruby Hash. This will be used for serialization/deserialization.
44 45 46 47 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 |
# File 'lib/2018-04-02/generated/azure_mgmt_storagesync/models/cloud_endpoint_create_parameters.rb', line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CloudEndpointCreateParameters', type: { name: 'Composite', class_name: 'CloudEndpointCreateParameters', model_properties: { 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' } } } }, storage_account_resource_id: { client_side_validation: true, required: false, serialized_name: 'properties.storageAccountResourceId', type: { name: 'String' } }, storage_account_share_name: { client_side_validation: true, required: false, serialized_name: 'properties.storageAccountShareName', type: { name: 'String' } }, storage_account_tenant_id: { client_side_validation: true, required: false, serialized_name: 'properties.storageAccountTenantId', type: { name: 'String' } } } } } end |