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_EXADBVMCLUSTER = 'EXADBVMCLUSTER'.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_MANAGED_SOFTWARE_UPDATES = 'MANAGED_SOFTWARE_UPDATES'.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):



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 135

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.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

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

  self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_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.is_ssh_access_allowed = attributes[:'isSshAccessAllowed'] unless attributes[:'isSshAccessAllowed'].nil?

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

  self.is_ssh_access_allowed = attributes[:'is_ssh_access_allowed'] unless attributes[:'is_ssh_access_allowed'].nil?

  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

#compartment_idString

The OCID of the compartment that contains the Service Provider Action.

Returns:

  • (String)


40
41
42
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 40

def compartment_id
  @compartment_id
end

#componentString

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

Returns:

  • (String)


52
53
54
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 52

def component
  @component
end

#customer_display_nameString

Display Name of the Service Provider Action.

Returns:

  • (String)


48
49
50
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 48

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)


74
75
76
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 74

def description
  @description
end

#idString

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

Returns:

  • (String)


36
37
38
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 36

def id
  @id
end

#is_ssh_access_allowedBOOLEAN

Indicates whether the service provider action allows SSH access.

Returns:

  • (BOOLEAN)


60
61
62
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 60

def is_ssh_access_allowed
  @is_ssh_access_allowed
end

#lifecycle_stateString

The current lifecycle state of the Service Provider Action.

Returns:

  • (String)


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

def lifecycle_state
  @lifecycle_state
end

#nameString

[Required] Unique name of the Service Provider Action.

Returns:

  • (String)


44
45
46
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 44

def name
  @name
end

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

Fine grained properties associated with the Delegation Control.



78
79
80
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 78

def properties
  @properties
end

#resource_typeString

resourceType for which the ServiceProviderAction is applicable

Returns:

  • (String)


56
57
58
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 56

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>)


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

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.



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 81

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'compartment_id': :'compartmentId',
    'name': :'name',
    'customer_display_name': :'customerDisplayName',
    'component': :'component',
    'resource_type': :'resourceType',
    'is_ssh_access_allowed': :'isSshAccessAllowed',
    'service_provider_service_types': :'serviceProviderServiceTypes',
    'lifecycle_state': :'lifecycleState',
    'description': :'description',
    'properties': :'properties'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 100

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'compartment_id': :'String',
    'name': :'String',
    'customer_display_name': :'String',
    'component': :'String',
    'resource_type': :'String',
    'is_ssh_access_allowed': :'BOOLEAN',
    '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



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 241

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

  self.class == other.class &&
    id == other.id &&
    compartment_id == other.compartment_id &&
    name == other.name &&
    customer_display_name == other.customer_display_name &&
    component == other.component &&
    resource_type == other.resource_type &&
    is_ssh_access_allowed == other.is_ssh_access_allowed &&
    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



281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 281

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


261
262
263
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 261

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



270
271
272
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 270

def hash
  [id, compartment_id, name, customer_display_name, component, resource_type, is_ssh_access_allowed, 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



314
315
316
317
318
319
320
321
322
323
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 314

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



308
309
310
# File 'lib/oci/delegate_access_control/models/service_provider_action.rb', line 308

def to_s
  to_hash.to_s
end