Class: OCI::OsManagementHub::Models::ManageModuleStreamsOnManagedInstanceDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb

Overview

The set of changes to make to the state of the modules, streams, and profiles on a managed instance

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ManageModuleStreamsOnManagedInstanceDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 87

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.is_dry_run = attributes[:'isDryRun'] unless attributes[:'isDryRun'].nil?
  self.is_dry_run = false if is_dry_run.nil? && !attributes.key?(:'isDryRun') # rubocop:disable Style/StringLiterals

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

  self.is_dry_run = attributes[:'is_dry_run'] unless attributes[:'is_dry_run'].nil?
  self.is_dry_run = false if is_dry_run.nil? && !attributes.key?(:'isDryRun') && !attributes.key?(:'is_dry_run') # rubocop:disable Style/StringLiterals

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

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

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

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

  self.work_request_details = attributes[:'workRequestDetails'] if attributes[:'workRequestDetails']

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

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

Instance Attribute Details

#disableArray<OCI::OsManagementHub::Models::ModuleStreamDetails>

The set of module streams to disable. Any profiles that are installed for the module stream will be removed as part of the operation. Once complete, the streams will be in 'DISABLED' status.



30
31
32
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 30

def disable
  @disable
end

#enableArray<OCI::OsManagementHub::Models::ModuleStreamDetails>

The set of module streams to enable. If any streams of a module are already enabled, the service switches from the current stream to the new stream. Once complete, the streams will be in 'ENABLED' status.



24
25
26
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 24

def enable
  @enable
end

#installArray<OCI::OsManagementHub::Models::ModuleStreamProfileDetails>

The set of module stream profiles to install. Any packages that are part of the profile are installed on the managed instance. Once complete, the profile will be in 'INSTALLED' status. The operation will return an error if you attempt to install a profile from a disabled stream, unless enabling the new module stream is included in this operation.



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

def install
  @install
end

#is_dry_runBOOLEAN

Indicates if this operation is a dry run or if the operation should be committed. If set to true, the result of the operation will be evaluated but not committed. If set to false, the operation is committed to the managed instance. The default is false.

Returns:

  • (BOOLEAN)


18
19
20
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 18

def is_dry_run
  @is_dry_run
end

#removeArray<OCI::OsManagementHub::Models::ModuleStreamProfileDetails>

The set of module stream profiles to remove. Once complete, the profile will be in 'AVAILABLE' status. The status of packages within the profile after the operation is complete is defined by the package manager on the managed instance group.



42
43
44
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 42

def remove
  @remove
end

#work_request_detailsOCI::OsManagementHub::Models::WorkRequestDetails



45
46
47
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 45

def work_request_details
  @work_request_details
end

Class Method Details

.attribute_mapObject

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



48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 48

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'is_dry_run': :'isDryRun',
    'enable': :'enable',
    'disable': :'disable',
    'install': :'install',
    'remove': :'remove',
    'work_request_details': :'workRequestDetails'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'is_dry_run': :'BOOLEAN',
    'enable': :'Array<OCI::OsManagementHub::Models::ModuleStreamDetails>',
    'disable': :'Array<OCI::OsManagementHub::Models::ModuleStreamDetails>',
    'install': :'Array<OCI::OsManagementHub::Models::ModuleStreamProfileDetails>',
    'remove': :'Array<OCI::OsManagementHub::Models::ModuleStreamProfileDetails>',
    'work_request_details': :'OCI::OsManagementHub::Models::WorkRequestDetails'
    # 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



123
124
125
126
127
128
129
130
131
132
133
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 123

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

  self.class == other.class &&
    is_dry_run == other.is_dry_run &&
    enable == other.enable &&
    disable == other.disable &&
    install == other.install &&
    remove == other.remove &&
    work_request_details == other.work_request_details
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



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 158

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


138
139
140
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 138

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



147
148
149
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 147

def hash
  [is_dry_run, enable, disable, install, remove, work_request_details].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



191
192
193
194
195
196
197
198
199
200
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 191

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



185
186
187
# File 'lib/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.rb', line 185

def to_s
  to_hash.to_s
end