Class: OCI::DelegateAccessControl::Models::ServiceProviderActionSummary

Inherits:
Object
  • Object
show all
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_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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ServiceProviderActionSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :id (String)

    The value to assign to the #id property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :name (String)

    The value to assign to the #name property

  • :customer_display_name (String)

    The value to assign to the #customer_display_name property

  • :component (String)

    The value to assign to the #component property

  • :resource_type (String)

    The value to assign to the #resource_type property

  • :is_ssh_access_allowed (BOOLEAN)

    The value to assign to the #is_ssh_access_allowed property

  • :service_provider_service_types (Array<String>)

    The value to assign to the #service_provider_service_types property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :description (String)

    The value to assign to the #description property



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
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 120

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

Instance Attribute Details

#compartment_idString

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

Returns:

  • (String)


32
33
34
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 32

def compartment_id
  @compartment_id
end

#componentString

Name of the component for which the Service Provider Action is applicable.

Returns:

  • (String)


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

def component
  @component
end

#customer_display_nameString

Display Name of the Service Provider Action.

Returns:

  • (String)


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

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)


66
67
68
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 66

def description
  @description
end

#idString

[Required] Unique identifier assigned by Oracle to a Service Provider Action.

Returns:

  • (String)


28
29
30
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 28

def id
  @id
end

#is_ssh_access_allowedBOOLEAN

Indicates whether the service provider action allows SSH access.

Returns:

  • (BOOLEAN)


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

def is_ssh_access_allowed
  @is_ssh_access_allowed
end

#lifecycle_stateString

The current lifecycle state of the Service Provider Action.

Returns:

  • (String)


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

def lifecycle_state
  @lifecycle_state
end

#nameString

[Required] Name of the Service Provider Action.

Returns:

  • (String)


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

def name
  @name
end

#resource_typeString

resourceType for which the ServiceProviderAction is applicable

Returns:

  • (String)


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

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


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

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.



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

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

.swagger_typesObject

Attribute type mapping.



87
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_summary.rb', line 87

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



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

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



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

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


230
231
232
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 230

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



239
240
241
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 239

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

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



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

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



277
278
279
# File 'lib/oci/delegate_access_control/models/service_provider_action_summary.rb', line 277

def to_s
  to_hash.to_s
end