Class: OCI::OsManagementHub::Models::CreateUbuntuStandAloneProfileDetails
- Inherits:
-
CreateProfileDetails
- Object
- CreateProfileDetails
- OCI::OsManagementHub::Models::CreateUbuntuStandAloneProfileDetails
- Defined in:
- lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb
Overview
Provides the information used to create an Ubuntu standalone registration profile.
Constant Summary collapse
- VENDOR_NAME_ENUM =
[ VENDOR_NAME_ORACLE = 'ORACLE'.freeze, VENDOR_NAME_MICROSOFT = 'MICROSOFT'.freeze, VENDOR_NAME_CANONICAL = 'CANONICAL'.freeze ].freeze
- OS_FAMILY_ENUM =
[ OS_FAMILY_ORACLE_LINUX_10 = 'ORACLE_LINUX_10'.freeze, 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, OS_FAMILY_ORACLE_LINUX_6 = 'ORACLE_LINUX_6'.freeze, OS_FAMILY_WINDOWS_SERVER_2016 = 'WINDOWS_SERVER_2016'.freeze, OS_FAMILY_WINDOWS_SERVER_2019 = 'WINDOWS_SERVER_2019'.freeze, OS_FAMILY_WINDOWS_SERVER_2022 = 'WINDOWS_SERVER_2022'.freeze, OS_FAMILY_WINDOWS_SERVER_2025 = 'WINDOWS_SERVER_2025'.freeze, OS_FAMILY_WINDOWS_11 = 'WINDOWS_11'.freeze, OS_FAMILY_ALL = 'ALL'.freeze, OS_FAMILY_UBUNTU_20_04 = 'UBUNTU_20_04'.freeze, OS_FAMILY_UBUNTU_22_04 = 'UBUNTU_22_04'.freeze, OS_FAMILY_UBUNTU_24_04 = 'UBUNTU_24_04'.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, ARCH_TYPE_I386 = 'I386'.freeze, ARCH_TYPE_AMD64 = 'AMD64'.freeze, ARCH_TYPE_ARM64 = 'ARM64'.freeze, ARCH_TYPE_ALL = 'ALL'.freeze ].freeze
Constants inherited from CreateProfileDetails
OCI::OsManagementHub::Models::CreateProfileDetails::PROFILE_TYPE_ENUM
Instance Attribute Summary collapse
-
#arch_type ⇒ String
[Required] The architecture type.
-
#os_family ⇒ String
[Required] The operating system family.
-
#vendor_name ⇒ String
[Required] The vendor of the operating system for the instance.
Attributes inherited from CreateProfileDetails
#compartment_id, #defined_tags, #description, #display_name, #freeform_tags, #is_default_profile, #management_station_id, #profile_type, #registration_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 = {}) ⇒ CreateUbuntuStandAloneProfileDetails
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 CreateProfileDetails
Constructor Details
#initialize(attributes = {}) ⇒ CreateUbuntuStandAloneProfileDetails
Initializes the object
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 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 116 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['profileType'] = 'UBUNTU_STANDALONE' 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_type ⇒ String
[Required] The architecture type.
57 58 59 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 57 def arch_type @arch_type end |
#os_family ⇒ String
[Required] The operating system family.
53 54 55 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 53 def os_family @os_family end |
#vendor_name ⇒ String
[Required] The vendor of the operating system for the instance.
49 50 51 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 49 def vendor_name @vendor_name end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 60 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'display_name': :'displayName', 'compartment_id': :'compartmentId', 'description': :'description', 'management_station_id': :'managementStationId', 'profile_type': :'profileType', 'registration_type': :'registrationType', 'is_default_profile': :'isDefaultProfile', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'vendor_name': :'vendorName', 'os_family': :'osFamily', 'arch_type': :'archType' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 80 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'display_name': :'String', 'compartment_id': :'String', 'description': :'String', 'management_station_id': :'String', 'profile_type': :'String', 'registration_type': :'String', 'is_default_profile': :'BOOLEAN', '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.
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 176 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 && registration_type == other.registration_type && is_default_profile == other.is_default_profile && == other. && == other. && 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
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 217 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
197 198 199 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 197 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
206 207 208 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 206 def hash [display_name, compartment_id, description, management_station_id, profile_type, registration_type, is_default_profile, , , vendor_name, os_family, arch_type].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
250 251 252 253 254 255 256 257 258 259 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 250 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
244 245 246 |
# File 'lib/oci/os_management_hub/models/create_ubuntu_stand_alone_profile_details.rb', line 244 def to_s to_hash.to_s end |