Class: OCI::FleetAppsManagement::Models::ScriptBasedExecutionDetails
- Inherits:
-
ExecutionDetails
- Object
- ExecutionDetails
- OCI::FleetAppsManagement::Models::ScriptBasedExecutionDetails
- 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
-
#command ⇒ String
Optional command to execute the content.
- #content ⇒ OCI::FleetAppsManagement::Models::ContentDetails
-
#credentials ⇒ Array<OCI::FleetAppsManagement::Models::ConfigAssociationDetails>
Credentials required for executing the task.
-
#is_executable_content ⇒ BOOLEAN
Is the Content an executable file?.
-
#is_locked ⇒ BOOLEAN
Is the script locked to prevent changes directly in Object Storage?.
-
#system_variables ⇒ Array<String>
The list of system variables.
- #variables ⇒ OCI::FleetAppsManagement::Models::TaskVariable
Attributes inherited from ExecutionDetails
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 = {}) ⇒ ScriptBasedExecutionDetails
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 ExecutionDetails
Constructor Details
#initialize(attributes = {}) ⇒ ScriptBasedExecutionDetails
Initializes the object
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 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 86 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 self.system_variables = attributes[:'systemVariables'] if attributes[:'systemVariables'] raise 'You cannot provide both :systemVariables and :system_variables' if attributes.key?(:'systemVariables') && attributes.key?(:'system_variables') self.system_variables = attributes[:'system_variables'] if attributes[:'system_variables'] end |
Instance Attribute Details
#command ⇒ String
Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
22 23 24 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 22 def command @command end |
#content ⇒ OCI::FleetAppsManagement::Models::ContentDetails
16 17 18 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 16 def content @content end |
#credentials ⇒ Array<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_content ⇒ BOOLEAN
Is the Content an executable file?
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_locked ⇒ BOOLEAN
Is the script locked to prevent changes directly in Object Storage?
31 32 33 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 31 def is_locked @is_locked end |
#system_variables ⇒ Array<String>
The list of system variables.
39 40 41 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 39 def system_variables @system_variables end |
#variables ⇒ OCI::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_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 42 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', 'system_variables': :'systemVariables' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 58 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', 'system_variables': :'Array<String>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 134 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 && system_variables == other.system_variables end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 171 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
151 152 153 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 151 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
160 161 162 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 160 def hash [execution_type, variables, content, command, credentials, is_locked, is_executable_content, system_variables].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
204 205 206 207 208 209 210 211 212 213 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 204 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
198 199 200 |
# File 'lib/oci/fleet_apps_management/models/script_based_execution_details.rb', line 198 def to_s to_hash.to_s end |