Class: OCI::OsManagementHub::Models::CreateStationProfileDetails

Inherits:
CreateProfileDetails show all
Defined in:
lib/oci/os_management_hub/models/create_station_profile_details.rb

Overview

Description of a group registration profile to be created.

Constant Summary collapse

VENDOR_NAME_ENUM =
[
  VENDOR_NAME_ORACLE = 'ORACLE'.freeze
].freeze
OS_FAMILY_ENUM =
[
  OS_FAMILY_ORACLE_LINUX_9 = 'ORACLE_LINUX_9'.freeze,
  OS_FAMILY_ORACLE_LINUX_8 = 'ORACLE_LINUX_8'.freeze,
  OS_FAMILY_ORACLE_LINUX_7 = 'ORACLE_LINUX_7'.freeze
].freeze
ARCH_TYPE_ENUM =
[
  ARCH_TYPE_X86_64 = 'X86_64'.freeze,
  ARCH_TYPE_AARCH64 = 'AARCH64'.freeze,
  ARCH_TYPE_I686 = 'I686'.freeze,
  ARCH_TYPE_NOARCH = 'NOARCH'.freeze,
  ARCH_TYPE_SRC = 'SRC'.freeze
].freeze

Constants inherited from CreateProfileDetails

OCI::OsManagementHub::Models::CreateProfileDetails::PROFILE_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from CreateProfileDetails

#compartment_id, #defined_tags, #description, #display_name, #freeform_tags, #management_station_id, #profile_type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CreateProfileDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ CreateStationProfileDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :display_name (String)

    The value to assign to the #display_name proprety

  • :compartment_id (String)

    The value to assign to the #compartment_id proprety

  • :description (String)

    The value to assign to the #description proprety

  • :management_station_id (String)

    The value to assign to the #management_station_id proprety

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags proprety

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

    The value to assign to the #defined_tags proprety

  • :vendor_name (String)

    The value to assign to the #vendor_name property

  • :os_family (String)

    The value to assign to the #os_family property

  • :arch_type (String)

    The value to assign to the #arch_type property



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
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 93

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

  attributes['profileType'] = 'STATION'

  super(attributes)

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

  self.vendor_name = attributes[:'vendorName'] if attributes[:'vendorName']

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

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

  self.os_family = attributes[:'osFamily'] if attributes[:'osFamily']

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

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

  self.arch_type = attributes[:'archType'] if attributes[:'archType']

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

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

Instance Attribute Details

#arch_typeString

The architecture type.

Returns:

  • (String)


40
41
42
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 40

def arch_type
  @arch_type
end

#os_familyString

The operating system family.

Returns:

  • (String)


36
37
38
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 36

def os_family
  @os_family
end

#vendor_nameString

The software source vendor name.

Returns:

  • (String)


32
33
34
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 32

def vendor_name
  @vendor_name
end

Class Method Details

.attribute_mapObject

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



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 43

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'displayName',
    'compartment_id': :'compartmentId',
    'description': :'description',
    'management_station_id': :'managementStationId',
    'profile_type': :'profileType',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'vendor_name': :'vendorName',
    'os_family': :'osFamily',
    'arch_type': :'archType'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 61

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'String',
    'compartment_id': :'String',
    'description': :'String',
    'management_station_id': :'String',
    'profile_type': :'String',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'vendor_name': :'String',
    'os_family': :'String',
    'arch_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



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 153

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

  self.class == other.class &&
    display_name == other.display_name &&
    compartment_id == other.compartment_id &&
    description == other.description &&
    management_station_id == other.management_station_id &&
    profile_type == other.profile_type &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    vendor_name == other.vendor_name &&
    os_family == other.os_family &&
    arch_type == other.arch_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



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 192

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


172
173
174
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 172

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



181
182
183
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 181

def hash
  [display_name, compartment_id, description, management_station_id, profile_type, freeform_tags, defined_tags, vendor_name, os_family, arch_type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



225
226
227
228
229
230
231
232
233
234
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 225

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



219
220
221
# File 'lib/oci/os_management_hub/models/create_station_profile_details.rb', line 219

def to_s
  to_hash.to_s
end