Class: Azure::ServiceBus::Mgmt::V2017_04_01::Models::Destination

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#archive_name_formatString

Namespace/EventHub/PartitionId/Year/Month/Day/Hour/Minute/Second. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order

Returns:

  • (String)

    Blob naming convention for archive, e.g.



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_containerString

Returns Blob container Name.

Returns:

  • (String)

    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

#nameString

Returns Name for capture destination.

Returns:

  • (String)

    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_idString

create the blobs

Returns:

  • (String)

    Resource id of the storage account to be used to



20
21
22
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/destination.rb', line 20

def 
  @storage_account_resource_id
end

Class Method Details

.mapperObject

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