Class: OCI::DelegateAccessControl::Models::ServiceProviderActionSummary
- Inherits:
-
Object
- Object
- OCI::DelegateAccessControl::Models::ServiceProviderActionSummary
- Defined in:
- lib/oci/delegate_access_control/models/service_provider_action_summary.rb
Overview
Details of the Service Provider Action. Service provider actions are pre-defined set of commands available to the support operator on different layers of the infrastructure.
Constant Summary collapse
- RESOURCE_TYPE_ENUM =
[ RESOURCE_TYPE_VMCLUSTER = 'VMCLUSTER'.freeze, RESOURCE_TYPE_CLOUDVMCLUSTER = 'CLOUDVMCLUSTER'.freeze, RESOURCE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- SERVICE_PROVIDER_SERVICE_TYPES_ENUM =
[ SERVICE_PROVIDER_SERVICE_TYPES_TROUBLESHOOTING = 'TROUBLESHOOTING'.freeze, SERVICE_PROVIDER_SERVICE_TYPES_ASSISTED_PATCHING = 'ASSISTED_PATCHING'.freeze, SERVICE_PROVIDER_SERVICE_TYPES_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#component ⇒ String
Name of the component for which the Service Provider Action is applicable.
-
#customer_display_name ⇒ String
Display Name of the Service Provider Action.
-
#description ⇒ String
Description of the Service Provider Action in terms of associated risk profile, and characteristics of the operating system commands made available to the support operator under this Service Provider Action.
-
#id ⇒ String
[Required] Unique identifier assigned by Oracle to a Service Provider Action.
-
#lifecycle_state ⇒ String
The current lifecycle state of the Service Provider Action.
-
#name ⇒ String
[Required] Name of the Service Provider Action.
-
#resource_type ⇒ String
resourceType for which the ServiceProviderAction is applicable.
-
#service_provider_service_types ⇒ Array<String>
List of Service Provider Service Types that this Service Provider Action is applicable to.
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 = {}) ⇒ ServiceProviderActionSummary
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.
Constructor Details
#initialize(attributes = {}) ⇒ ServiceProviderActionSummary
Initializes the object
104 105 106 107 108 109 110 111 112 113 114 115 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 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 104 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.id = attributes[:'id'] if attributes[:'id'] self.name = attributes[:'name'] if attributes[:'name'] self.customer_display_name = attributes[:'customerDisplayName'] if attributes[:'customerDisplayName'] raise 'You cannot provide both :customerDisplayName and :customer_display_name' if attributes.key?(:'customerDisplayName') && attributes.key?(:'customer_display_name') self.customer_display_name = attributes[:'customer_display_name'] if attributes[:'customer_display_name'] self.component = attributes[:'component'] if attributes[:'component'] self.resource_type = attributes[:'resourceType'] if attributes[:'resourceType'] raise 'You cannot provide both :resourceType and :resource_type' if attributes.key?(:'resourceType') && attributes.key?(:'resource_type') self.resource_type = attributes[:'resource_type'] if attributes[:'resource_type'] self.service_provider_service_types = attributes[:'serviceProviderServiceTypes'] if attributes[:'serviceProviderServiceTypes'] raise 'You cannot provide both :serviceProviderServiceTypes and :service_provider_service_types' if attributes.key?(:'serviceProviderServiceTypes') && attributes.key?(:'service_provider_service_types') self.service_provider_service_types = attributes[:'service_provider_service_types'] if attributes[:'service_provider_service_types'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.description = attributes[:'description'] if attributes[:'description'] end |
Instance Attribute Details
#component ⇒ String
Name of the component for which the Service Provider Action is applicable.
38 39 40 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 38 def component @component end |
#customer_display_name ⇒ String
Display Name of the Service Provider Action.
34 35 36 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 34 def customer_display_name @customer_display_name end |
#description ⇒ String
Description of the Service Provider Action in terms of associated risk profile, and characteristics of the operating system commands made available to the support operator under this Service Provider Action.
56 57 58 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 56 def description @description end |
#id ⇒ String
[Required] Unique identifier assigned by Oracle to a Service Provider Action.
26 27 28 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 26 def id @id end |
#lifecycle_state ⇒ String
The current lifecycle state of the Service Provider Action.
50 51 52 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 50 def lifecycle_state @lifecycle_state end |
#name ⇒ String
[Required] Name of the Service Provider Action.
30 31 32 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 30 def name @name end |
#resource_type ⇒ String
resourceType for which the ServiceProviderAction is applicable
42 43 44 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 42 def resource_type @resource_type end |
#service_provider_service_types ⇒ Array<String>
List of Service Provider Service Types that this Service Provider Action is applicable to.
46 47 48 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 46 def service_provider_service_types @service_provider_service_types end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 59 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'name': :'name', 'customer_display_name': :'customerDisplayName', 'component': :'component', 'resource_type': :'resourceType', 'service_provider_service_types': :'serviceProviderServiceTypes', 'lifecycle_state': :'lifecycleState', 'description': :'description' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 75 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'name': :'String', 'customer_display_name': :'String', 'component': :'String', 'resource_type': :'String', 'service_provider_service_types': :'Array<String>', 'lifecycle_state': :'String', 'description': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 183 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && name == other.name && customer_display_name == other.customer_display_name && component == other.component && resource_type == other.resource_type && service_provider_service_types == other.service_provider_service_types && lifecycle_state == other.lifecycle_state && description == other.description end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 220 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
200 201 202 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 200 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
209 210 211 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 209 def hash [id, name, customer_display_name, component, resource_type, service_provider_service_types, lifecycle_state, description].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 253 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
247 248 249 |
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 247 def to_s to_hash.to_s end |