Class: Azure::ServiceBus::Mgmt::V2017_04_01::Models::Destination
- Inherits:
-
Object
- Object
- Azure::ServiceBus::Mgmt::V2017_04_01::Models::Destination
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb
Overview
Capture storage details for capture description
Instance Attribute Summary collapse
-
#archive_name_format ⇒ String
Namespace/EventHub/PartitionId/Year/Month/Day/Hour/Minute/Second.
-
#blob_container ⇒ String
Blob container Name.
-
#name ⇒ String
Name for capture destination.
-
#storage_account_resource_id ⇒ String
create the blobs.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Destination class as Ruby Hash.
Instance Attribute Details
#archive_name_format ⇒ String
Namespace/EventHub/PartitionId/Year/Month/Day/Hour/Minute/Second. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order
29 30 31 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 29 def archive_name_format @archive_name_format end |
#blob_container ⇒ String
Returns Blob container Name.
23 24 25 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 23 def blob_container @blob_container end |
#name ⇒ String
Returns Name for capture destination.
16 17 18 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 16 def name @name end |
#storage_account_resource_id ⇒ String
create the blobs
20 21 22 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 20 def storage_account_resource_id @storage_account_resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for Destination class as Ruby Hash. This will be used for serialization/deserialization.
36 37 38 39 40 41 42 43 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 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Destination', type: { name: 'Composite', class_name: 'Destination', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, storage_account_resource_id: { client_side_validation: true, required: false, serialized_name: 'properties.storageAccountResourceId', type: { name: 'String' } }, blob_container: { client_side_validation: true, required: false, serialized_name: 'properties.blobContainer', type: { name: 'String' } }, archive_name_format: { client_side_validation: true, required: false, serialized_name: 'properties.archiveNameFormat', type: { name: 'String' } } } } } end |