Class: OCI::FleetAppsManagement::Models::ScriptBasedExecutionDetails

Inherits:
ExecutionDetails
  • Object
show all
Defined in:
lib/oci/fleet_apps_management/models/script_based_execution_details.rb

Overview

Details for script-based execution.

Constant Summary

Constants inherited from ExecutionDetails

ExecutionDetails::EXECUTION_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from ExecutionDetails

#execution_type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ExecutionDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ ScriptBasedExecutionDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



79
80
81
82
83
84
85
86
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
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 79

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

  attributes['executionType'] = 'SCRIPT'

  super(attributes)

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

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

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

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

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

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

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

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

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

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

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

Instance Attribute Details

#commandString

Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.

Returns:

  • (String)


22
23
24
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 22

def command
  @command
end

#contentOCI::FleetAppsManagement::Models::ContentDetails



16
17
18
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 16

def content
  @content
end

#credentialsArray<OCI::FleetAppsManagement::Models::ConfigAssociationDetails>

Credentials required for executing the task.



27
28
29
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 27

def credentials
  @credentials
end

#is_executable_contentBOOLEAN

Is the Content an executable file?

Returns:

  • (BOOLEAN)


35
36
37
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 35

def is_executable_content
  @is_executable_content
end

#is_lockedBOOLEAN

Is the script locked to prevent changes directly in Object Storage?

Returns:

  • (BOOLEAN)


31
32
33
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 31

def is_locked
  @is_locked
end

#variablesOCI::FleetAppsManagement::Models::TaskVariable



13
14
15
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 13

def variables
  @variables
end

Class Method Details

.attribute_mapObject

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



38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 38

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'execution_type': :'executionType',
    'variables': :'variables',
    'content': :'content',
    'command': :'command',
    'credentials': :'credentials',
    'is_locked': :'isLocked',
    'is_executable_content': :'isExecutableContent'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 53

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'execution_type': :'String',
    'variables': :'OCI::FleetAppsManagement::Models::TaskVariable',
    'content': :'OCI::FleetAppsManagement::Models::ContentDetails',
    'command': :'String',
    'credentials': :'Array<OCI::FleetAppsManagement::Models::ConfigAssociationDetails>',
    'is_locked': :'BOOLEAN',
    'is_executable_content': :'BOOLEAN'
    # 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



121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 121

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

  self.class == other.class &&
    execution_type == other.execution_type &&
    variables == other.variables &&
    content == other.content &&
    command == other.command &&
    credentials == other.credentials &&
    is_locked == other.is_locked &&
    is_executable_content == other.is_executable_content
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



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

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


137
138
139
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 137

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



146
147
148
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 146

def hash
  [execution_type, variables, content, command, credentials, is_locked, is_executable_content].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



190
191
192
193
194
195
196
197
198
199
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 190

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



184
185
186
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 184

def to_s
  to_hash.to_s
end