Class: OCI::Multicloud::Models::AzureCloudServiceProviderMetadataItem
- Inherits:
-
CloudServiceProviderMetadataItem
- Object
- CloudServiceProviderMetadataItem
- OCI::Multicloud::Models::AzureCloudServiceProviderMetadataItem
- Defined in:
- lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb
Overview
Azure Cloud Service Provider metadata item.
Constant Summary
Constants inherited from CloudServiceProviderMetadataItem
CloudServiceProviderMetadataItem::SUBSCRIPTION_TYPE_ENUM
Instance Attribute Summary collapse
-
#resource_group ⇒ String
[Required] Azure resource group that was used for creating this resource.
-
#subscription ⇒ String
[Required] Azure subscription that was used for creating this resource.
Attributes inherited from CloudServiceProviderMetadataItem
#csp_additional_properties, #csp_resource_anchor_id, #csp_resource_anchor_name, #region, #resource_anchor_name, #resource_anchor_uri, #subscription_type
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ AzureCloudServiceProviderMetadataItem
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Methods inherited from CloudServiceProviderMetadataItem
Constructor Details
#initialize(attributes = {}) ⇒ AzureCloudServiceProviderMetadataItem
Initializes the object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 69 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['subscriptionType'] = 'ORACLEDBATAZURE' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.resource_group = attributes[:'resourceGroup'] if attributes[:'resourceGroup'] raise 'You cannot provide both :resourceGroup and :resource_group' if attributes.key?(:'resourceGroup') && attributes.key?(:'resource_group') self.resource_group = attributes[:'resource_group'] if attributes[:'resource_group'] self.subscription = attributes[:'subscription'] if attributes[:'subscription'] end |
Instance Attribute Details
#resource_group ⇒ String
[Required] Azure resource group that was used for creating this resource.
15 16 17 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 15 def resource_group @resource_group end |
#subscription ⇒ String
[Required] Azure subscription that was used for creating this resource.
19 20 21 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 19 def subscription @subscription end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 22 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'region': :'region', 'resource_anchor_name': :'resourceAnchorName', 'csp_resource_anchor_id': :'cspResourceAnchorId', 'csp_resource_anchor_name': :'cspResourceAnchorName', 'resource_anchor_uri': :'resourceAnchorUri', 'csp_additional_properties': :'cspAdditionalProperties', 'subscription_type': :'subscriptionType', 'resource_group': :'resourceGroup', 'subscription': :'subscription' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 39 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'region': :'String', 'resource_anchor_name': :'String', 'csp_resource_anchor_id': :'String', 'csp_resource_anchor_name': :'String', 'resource_anchor_uri': :'String', 'csp_additional_properties': :'Hash<String, String>', 'subscription_type': :'String', 'resource_group': :'String', 'subscription': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 95 def ==(other) return true if equal?(other) self.class == other.class && region == other.region && resource_anchor_name == other.resource_anchor_name && csp_resource_anchor_id == other.csp_resource_anchor_id && csp_resource_anchor_name == other.csp_resource_anchor_name && resource_anchor_uri == other.resource_anchor_uri && csp_additional_properties == other.csp_additional_properties && subscription_type == other.subscription_type && resource_group == other.resource_group && subscription == other.subscription end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 133 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
113 114 115 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 113 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
122 123 124 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 122 def hash [region, resource_anchor_name, csp_resource_anchor_id, csp_resource_anchor_name, resource_anchor_uri, csp_additional_properties, subscription_type, resource_group, subscription].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
166 167 168 169 170 171 172 173 174 175 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 166 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
160 161 162 |
# File 'lib/oci/multicloud/models/azure_cloud_service_provider_metadata_item.rb', line 160 def to_s to_hash.to_s end |