Class: Azure::ServiceBus::Mgmt::V2017_04_01::Models::AccessKeys
- Inherits:
-
Object
- Object
- Azure::ServiceBus::Mgmt::V2017_04_01::Models::AccessKeys
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb
Overview
Namespace/ServiceBus Connection String
Instance Attribute Summary collapse
-
#alias_primary_connection_string ⇒ String
enabled.
-
#alias_secondary_connection_string ⇒ String
enabled.
-
#key_name ⇒ String
A string that describes the authorization rule.
-
#primary_connection_string ⇒ String
authorization rule.
-
#primary_key ⇒ String
validating the SAS token.
-
#secondary_connection_string ⇒ String
authorization rule.
-
#secondary_key ⇒ String
validating the SAS token.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AccessKeys class as Ruby Hash.
Instance Attribute Details
#alias_primary_connection_string ⇒ String
enabled
25 26 27 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 25 def alias_primary_connection_string @alias_primary_connection_string end |
#alias_secondary_connection_string ⇒ String
enabled
29 30 31 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 29 def alias_secondary_connection_string @alias_secondary_connection_string end |
#key_name ⇒ String
Returns A string that describes the authorization rule.
40 41 42 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 40 def key_name @key_name end |
#primary_connection_string ⇒ String
authorization rule.
17 18 19 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 17 def primary_connection_string @primary_connection_string end |
#primary_key ⇒ String
validating the SAS token.
33 34 35 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 33 def primary_key @primary_key end |
#secondary_connection_string ⇒ String
authorization rule.
21 22 23 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 21 def secondary_connection_string @secondary_connection_string end |
#secondary_key ⇒ String
validating the SAS token.
37 38 39 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 37 def secondary_key @secondary_key end |
Class Method Details
.mapper ⇒ Object
Mapper for AccessKeys class as Ruby Hash. This will be used for serialization/deserialization.
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/2017-04-01/generated/azure_mgmt_service_bus/models/access_keys.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AccessKeys', type: { name: 'Composite', class_name: 'AccessKeys', model_properties: { primary_connection_string: { client_side_validation: true, required: false, read_only: true, serialized_name: 'primaryConnectionString', type: { name: 'String' } }, secondary_connection_string: { client_side_validation: true, required: false, read_only: true, serialized_name: 'secondaryConnectionString', type: { name: 'String' } }, alias_primary_connection_string: { client_side_validation: true, required: false, read_only: true, serialized_name: 'aliasPrimaryConnectionString', type: { name: 'String' } }, alias_secondary_connection_string: { client_side_validation: true, required: false, read_only: true, serialized_name: 'aliasSecondaryConnectionString', type: { name: 'String' } }, primary_key: { client_side_validation: true, required: false, read_only: true, serialized_name: 'primaryKey', type: { name: 'String' } }, secondary_key: { client_side_validation: true, required: false, read_only: true, serialized_name: 'secondaryKey', type: { name: 'String' } }, key_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'keyName', type: { name: 'String' } } } } } end |