Class: OCI::DelegateAccessControl::Models::ServiceProviderAction

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/delegate_access_control/models/service_provider_action.rb

Overview

Details of the Service Provider Action. Service provider actions are a pre-defined set of commands available to the support operator on different layers of the infrastructure. Although the groupings may differ depending on the infrastructure layers, the groups are designed to enable the support operator access to commands to resolve a specific set of issues.

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
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ServiceProviderAction

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 119

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']

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

Instance Attribute Details

#componentString

Name of the infrastructure layer associated with the Service Provider Action.

Returns:

  • (String)


46
47
48
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 46

def component
  @component
end

#customer_display_nameString

Display Name of the Service Provider Action.

Returns:

  • (String)


42
43
44
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 42

def customer_display_name
  @customer_display_name
end

#descriptionString

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.

Returns:

  • (String)


64
65
66
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 64

def description
  @description
end

#idString

[Required] Unique Oracle assigned identifier for the Service Provider Action.

Returns:

  • (String)


34
35
36
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 34

def id
  @id
end

#lifecycle_stateString

The current lifecycle state of the Service Provider Action.

Returns:

  • (String)


58
59
60
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 58

def lifecycle_state
  @lifecycle_state
end

#nameString

[Required] Unique name of the Service Provider Action.

Returns:

  • (String)


38
39
40
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 38

def name
  @name
end

#propertiesArray<OCI::DelegateAccessControl::Models::ServiceProviderActionProperties>

Fine grained properties associated with the Delegation Control.



68
69
70
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 68

def properties
  @properties
end

#resource_typeString

resourceType for which the ServiceProviderAction is applicable

Returns:

  • (String)


50
51
52
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 50

def resource_type
  @resource_type
end

#service_provider_service_typesArray<String>

List of Service Provider Service Types that this Service Provider Action is applicable to.

Returns:

  • (Array<String>)


54
55
56
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 54

def service_provider_service_types
  @service_provider_service_types
end

Class Method Details

.attribute_mapObject

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



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 71

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',
    'properties': :'properties'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 88

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',
    'properties': :'Array<OCI::DelegateAccessControl::Models::ServiceProviderActionProperties>'
    # 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



213
214
215
216
217
218
219
220
221
222
223
224
225
226
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 213

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 &&
    properties == other.properties
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



251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 251

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


231
232
233
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 231

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



240
241
242
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 240

def hash
  [id, name, customer_display_name, component, resource_type, service_provider_service_types, lifecycle_state, description, properties].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



284
285
286
287
288
289
290
291
292
293
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 284

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



278
279
280
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 278

def to_s
  to_hash.to_s
end