Class: OCI::Database::Models::CreateCloudExadataInfrastructureDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb

Overview

Request to create cloud Exadata infrastructure. Applies to Exadata Cloud Service instances only.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CreateCloudExadataInfrastructureDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):



145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 145

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.availability_domain = attributes[:'availabilityDomain'] if attributes[:'availabilityDomain']

  raise 'You cannot provide both :availabilityDomain and :availability_domain' if attributes.key?(:'availabilityDomain') && attributes.key?(:'availability_domain')

  self.availability_domain = attributes[:'availability_domain'] if attributes[:'availability_domain']

  self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

  raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id')

  self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id']

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

  raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name')

  self.display_name = attributes[:'display_name'] if attributes[:'display_name']

  self.shape = attributes[:'shape'] if attributes[:'shape']

  self.compute_count = attributes[:'computeCount'] if attributes[:'computeCount']

  raise 'You cannot provide both :computeCount and :compute_count' if attributes.key?(:'computeCount') && attributes.key?(:'compute_count')

  self.compute_count = attributes[:'compute_count'] if attributes[:'compute_count']

  self.storage_count = attributes[:'storageCount'] if attributes[:'storageCount']

  raise 'You cannot provide both :storageCount and :storage_count' if attributes.key?(:'storageCount') && attributes.key?(:'storage_count')

  self.storage_count = attributes[:'storage_count'] if attributes[:'storage_count']

  self.maintenance_window = attributes[:'maintenanceWindow'] if attributes[:'maintenanceWindow']

  raise 'You cannot provide both :maintenanceWindow and :maintenance_window' if attributes.key?(:'maintenanceWindow') && attributes.key?(:'maintenance_window')

  self.maintenance_window = attributes[:'maintenance_window'] if attributes[:'maintenance_window']

  self.maintenance_version_preferences = attributes[:'maintenanceVersionPreferences'] if attributes[:'maintenanceVersionPreferences']

  raise 'You cannot provide both :maintenanceVersionPreferences and :maintenance_version_preferences' if attributes.key?(:'maintenanceVersionPreferences') && attributes.key?(:'maintenance_version_preferences')

  self.maintenance_version_preferences = attributes[:'maintenance_version_preferences'] if attributes[:'maintenance_version_preferences']

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

  raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags')

  self.freeform_tags = attributes[:'freeform_tags'] if attributes[:'freeform_tags']

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

  raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags')

  self.defined_tags = attributes[:'defined_tags'] if attributes[:'defined_tags']

  self.cluster_placement_group_id = attributes[:'clusterPlacementGroupId'] if attributes[:'clusterPlacementGroupId']

  raise 'You cannot provide both :clusterPlacementGroupId and :cluster_placement_group_id' if attributes.key?(:'clusterPlacementGroupId') && attributes.key?(:'cluster_placement_group_id')

  self.cluster_placement_group_id = attributes[:'cluster_placement_group_id'] if attributes[:'cluster_placement_group_id']

  self.subscription_id = attributes[:'subscriptionId'] if attributes[:'subscriptionId']

  raise 'You cannot provide both :subscriptionId and :subscription_id' if attributes.key?(:'subscriptionId') && attributes.key?(:'subscription_id')

  self.subscription_id = attributes[:'subscription_id'] if attributes[:'subscription_id']

  self.customer_contacts = attributes[:'customerContacts'] if attributes[:'customerContacts']

  raise 'You cannot provide both :customerContacts and :customer_contacts' if attributes.key?(:'customerContacts') && attributes.key?(:'customer_contacts')

  self.customer_contacts = attributes[:'customer_contacts'] if attributes[:'customer_contacts']

  self.database_server_type = attributes[:'databaseServerType'] if attributes[:'databaseServerType']

  raise 'You cannot provide both :databaseServerType and :database_server_type' if attributes.key?(:'databaseServerType') && attributes.key?(:'database_server_type')

  self.database_server_type = attributes[:'database_server_type'] if attributes[:'database_server_type']

  self.storage_server_type = attributes[:'storageServerType'] if attributes[:'storageServerType']

  raise 'You cannot provide both :storageServerType and :storage_server_type' if attributes.key?(:'storageServerType') && attributes.key?(:'storage_server_type')

  self.storage_server_type = attributes[:'storage_server_type'] if attributes[:'storage_server_type']
end

Instance Attribute Details

#availability_domainString

[Required] The availability domain where the cloud Exadata infrastructure is located.

Returns:

  • (String)


14
15
16
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 14

def availability_domain
  @availability_domain
end

#cluster_placement_group_idString

The OCID of the cluster placement group of the Exadata Infrastructure or Db System.

Returns:

  • (String)


60
61
62
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 60

def cluster_placement_group_id
  @cluster_placement_group_id
end

#compartment_idString

[Required] The OCID of the compartment.

Returns:

  • (String)


18
19
20
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 18

def compartment_id
  @compartment_id
end

#compute_countInteger

The number of compute servers for the cloud Exadata infrastructure.

Returns:

  • (Integer)


32
33
34
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 32

def compute_count
  @compute_count
end

#customer_contactsArray<OCI::Database::Models::CustomerContact>

Customer contacts.



68
69
70
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 68

def customer_contacts
  @customer_contacts
end

#database_server_typeString

The database server type of the Exadata infrastructure.

Returns:

  • (String)


72
73
74
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 72

def database_server_type
  @database_server_type
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Returns:

  • (Hash<String, Hash<String, Object>>)


56
57
58
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 56

def defined_tags
  @defined_tags
end

#display_nameString

[Required] The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.

Returns:

  • (String)


23
24
25
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 23

def display_name
  @display_name
end

#freeform_tagsHash<String, String>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.

Example: {\"Department\": \"Finance\"}

Returns:

  • (Hash<String, String>)


50
51
52
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 50

def freeform_tags
  @freeform_tags
end

#maintenance_version_preferencesOCI::Database::Models::MaintenanceVersionPreferenceDetails



42
43
44
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 42

def maintenance_version_preferences
  @maintenance_version_preferences
end

#maintenance_windowOCI::Database::Models::MaintenanceWindow



39
40
41
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 39

def maintenance_window
  @maintenance_window
end

#shapeString

[Required] The shape of the cloud Exadata infrastructure resource.

Returns:

  • (String)


28
29
30
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 28

def shape
  @shape
end

#storage_countInteger

The number of storage servers for the cloud Exadata infrastructure.

Returns:

  • (Integer)


36
37
38
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 36

def storage_count
  @storage_count
end

#storage_server_typeString

The storage server type of the Exadata infrastructure.

Returns:

  • (String)


76
77
78
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 76

def storage_server_type
  @storage_server_type
end

#subscription_idString

The OCID of the subscription with which resource needs to be associated with.

Returns:

  • (String)


64
65
66
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 64

def subscription_id
  @subscription_id
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 79

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'availability_domain': :'availabilityDomain',
    'compartment_id': :'compartmentId',
    'display_name': :'displayName',
    'shape': :'shape',
    'compute_count': :'computeCount',
    'storage_count': :'storageCount',
    'maintenance_window': :'maintenanceWindow',
    'maintenance_version_preferences': :'maintenanceVersionPreferences',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'cluster_placement_group_id': :'clusterPlacementGroupId',
    'subscription_id': :'subscriptionId',
    'customer_contacts': :'customerContacts',
    'database_server_type': :'databaseServerType',
    'storage_server_type': :'storageServerType'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 102

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'availability_domain': :'String',
    'compartment_id': :'String',
    'display_name': :'String',
    'shape': :'String',
    'compute_count': :'Integer',
    'storage_count': :'Integer',
    'maintenance_window': :'OCI::Database::Models::MaintenanceWindow',
    'maintenance_version_preferences': :'OCI::Database::Models::MaintenanceVersionPreferenceDetails',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'cluster_placement_group_id': :'String',
    'subscription_id': :'String',
    'customer_contacts': :'Array<OCI::Database::Models::CustomerContact>',
    'database_server_type': :'String',
    'storage_server_type': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 245

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    availability_domain == other.availability_domain &&
    compartment_id == other.compartment_id &&
    display_name == other.display_name &&
    shape == other.shape &&
    compute_count == other.compute_count &&
    storage_count == other.storage_count &&
    maintenance_window == other.maintenance_window &&
    maintenance_version_preferences == other.maintenance_version_preferences &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    cluster_placement_group_id == other.cluster_placement_group_id &&
    subscription_id == other.subscription_id &&
    customer_contacts == other.customer_contacts &&
    database_server_type == other.database_server_type &&
    storage_server_type == other.storage_server_type
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 289

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


269
270
271
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 269

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



278
279
280
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 278

def hash
  [availability_domain, compartment_id, display_name, shape, compute_count, storage_count, maintenance_window, maintenance_version_preferences, freeform_tags, defined_tags, cluster_placement_group_id, subscription_id, customer_contacts, database_server_type, storage_server_type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



322
323
324
325
326
327
328
329
330
331
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 322

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



316
317
318
# File 'lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb', line 316

def to_s
  to_hash.to_s
end