Class: OCI::Core::Models::ShapePlatformConfigOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/core/models/shape_platform_config_options.rb

Overview

The list of supported platform configuration options for this shape.

Constant Summary collapse

TYPE_ENUM =
[
  TYPE_AMD_MILAN_BM = 'AMD_MILAN_BM'.freeze,
  TYPE_AMD_MILAN_BM_GPU = 'AMD_MILAN_BM_GPU'.freeze,
  TYPE_AMD_ROME_BM = 'AMD_ROME_BM'.freeze,
  TYPE_AMD_ROME_BM_GPU = 'AMD_ROME_BM_GPU'.freeze,
  TYPE_GENERIC_BM = 'GENERIC_BM'.freeze,
  TYPE_INTEL_ICELAKE_BM = 'INTEL_ICELAKE_BM'.freeze,
  TYPE_INTEL_SKYLAKE_BM = 'INTEL_SKYLAKE_BM'.freeze,
  TYPE_AMD_VM = 'AMD_VM'.freeze,
  TYPE_INTEL_VM = 'INTEL_VM'.freeze,
  TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ShapePlatformConfigOptions

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
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
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 116

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.type = attributes[:'type'] if attributes[:'type']

  self.secure_boot_options = attributes[:'secureBootOptions'] if attributes[:'secureBootOptions']

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

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

  self.measured_boot_options = attributes[:'measuredBootOptions'] if attributes[:'measuredBootOptions']

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

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

  self.trusted_platform_module_options = attributes[:'trustedPlatformModuleOptions'] if attributes[:'trustedPlatformModuleOptions']

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

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

  self.numa_nodes_per_socket_platform_options = attributes[:'numaNodesPerSocketPlatformOptions'] if attributes[:'numaNodesPerSocketPlatformOptions']

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

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

  self.memory_encryption_options = attributes[:'memoryEncryptionOptions'] if attributes[:'memoryEncryptionOptions']

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

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

  self.symmetric_multi_threading_options = attributes[:'symmetricMultiThreadingOptions'] if attributes[:'symmetricMultiThreadingOptions']

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

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

  self.access_control_service_options = attributes[:'accessControlServiceOptions'] if attributes[:'accessControlServiceOptions']

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

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

  self.virtual_instructions_options = attributes[:'virtualInstructionsOptions'] if attributes[:'virtualInstructionsOptions']

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

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

  self.input_output_memory_management_unit_options = attributes[:'inputOutputMemoryManagementUnitOptions'] if attributes[:'inputOutputMemoryManagementUnitOptions']

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

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

  self.percentage_of_cores_enabled_options = attributes[:'percentageOfCoresEnabledOptions'] if attributes[:'percentageOfCoresEnabledOptions']

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

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

Instance Attribute Details

#access_control_service_optionsOCI::Core::Models::ShapeAccessControlServiceEnabledPlatformOptions



50
51
52
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 50

def access_control_service_options
  @access_control_service_options
end

#input_output_memory_management_unit_optionsOCI::Core::Models::ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions



56
57
58
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 56

def input_output_memory_management_unit_options
  @input_output_memory_management_unit_options
end

#measured_boot_optionsOCI::Core::Models::ShapeMeasuredBootOptions



35
36
37
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 35

def measured_boot_options
  @measured_boot_options
end

#memory_encryption_optionsOCI::Core::Models::ShapeMemoryEncryptionOptions



44
45
46
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 44

def memory_encryption_options
  @memory_encryption_options
end

#numa_nodes_per_socket_platform_optionsOCI::Core::Models::ShapeNumaNodesPerSocketPlatformOptions



41
42
43
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 41

def numa_nodes_per_socket_platform_options
  @numa_nodes_per_socket_platform_options
end

#percentage_of_cores_enabled_optionsOCI::Core::Models::PercentageOfCoresEnabledOptions



59
60
61
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 59

def percentage_of_cores_enabled_options
  @percentage_of_cores_enabled_options
end

#secure_boot_optionsOCI::Core::Models::ShapeSecureBootOptions



32
33
34
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 32

def secure_boot_options
  @secure_boot_options
end

#symmetric_multi_threading_optionsOCI::Core::Models::ShapeSymmetricMultiThreadingEnabledPlatformOptions



47
48
49
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 47

def symmetric_multi_threading_options
  @symmetric_multi_threading_options
end

#trusted_platform_module_optionsOCI::Core::Models::ShapeTrustedPlatformModuleOptions



38
39
40
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 38

def trusted_platform_module_options
  @trusted_platform_module_options
end

#typeString

The type of platform being configured.

Returns:

  • (String)


29
30
31
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 29

def type
  @type
end

#virtual_instructions_optionsOCI::Core::Models::ShapeVirtualInstructionsEnabledPlatformOptions



53
54
55
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 53

def virtual_instructions_options
  @virtual_instructions_options
end

Class Method Details

.attribute_mapObject

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



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 62

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'type': :'type',
    'secure_boot_options': :'secureBootOptions',
    'measured_boot_options': :'measuredBootOptions',
    'trusted_platform_module_options': :'trustedPlatformModuleOptions',
    'numa_nodes_per_socket_platform_options': :'numaNodesPerSocketPlatformOptions',
    'memory_encryption_options': :'memoryEncryptionOptions',
    'symmetric_multi_threading_options': :'symmetricMultiThreadingOptions',
    'access_control_service_options': :'accessControlServiceOptions',
    'virtual_instructions_options': :'virtualInstructionsOptions',
    'input_output_memory_management_unit_options': :'inputOutputMemoryManagementUnitOptions',
    'percentage_of_cores_enabled_options': :'percentageOfCoresEnabledOptions'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 81

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'type': :'String',
    'secure_boot_options': :'OCI::Core::Models::ShapeSecureBootOptions',
    'measured_boot_options': :'OCI::Core::Models::ShapeMeasuredBootOptions',
    'trusted_platform_module_options': :'OCI::Core::Models::ShapeTrustedPlatformModuleOptions',
    'numa_nodes_per_socket_platform_options': :'OCI::Core::Models::ShapeNumaNodesPerSocketPlatformOptions',
    'memory_encryption_options': :'OCI::Core::Models::ShapeMemoryEncryptionOptions',
    'symmetric_multi_threading_options': :'OCI::Core::Models::ShapeSymmetricMultiThreadingEnabledPlatformOptions',
    'access_control_service_options': :'OCI::Core::Models::ShapeAccessControlServiceEnabledPlatformOptions',
    'virtual_instructions_options': :'OCI::Core::Models::ShapeVirtualInstructionsEnabledPlatformOptions',
    'input_output_memory_management_unit_options': :'OCI::Core::Models::ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions',
    'percentage_of_cores_enabled_options': :'OCI::Core::Models::PercentageOfCoresEnabledOptions'
    # 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



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 205

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

  self.class == other.class &&
    type == other.type &&
    secure_boot_options == other.secure_boot_options &&
    measured_boot_options == other.measured_boot_options &&
    trusted_platform_module_options == other.trusted_platform_module_options &&
    numa_nodes_per_socket_platform_options == other.numa_nodes_per_socket_platform_options &&
    memory_encryption_options == other.memory_encryption_options &&
    symmetric_multi_threading_options == other.symmetric_multi_threading_options &&
    access_control_service_options == other.access_control_service_options &&
    virtual_instructions_options == other.virtual_instructions_options &&
    input_output_memory_management_unit_options == other.input_output_memory_management_unit_options &&
    percentage_of_cores_enabled_options == other.percentage_of_cores_enabled_options
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



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

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


225
226
227
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 225

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



234
235
236
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 234

def hash
  [type, secure_boot_options, measured_boot_options, trusted_platform_module_options, numa_nodes_per_socket_platform_options, memory_encryption_options, symmetric_multi_threading_options, access_control_service_options, virtual_instructions_options, input_output_memory_management_unit_options, percentage_of_cores_enabled_options].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



278
279
280
281
282
283
284
285
286
287
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 278

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



272
273
274
# File 'lib/oci/core/models/shape_platform_config_options.rb', line 272

def to_s
  to_hash.to_s
end