Class: OCI::DataIntegration::Models::Workspace

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/data_integration/models/workspace.rb

Overview

A workspace is an organizational construct to keep multiple data integration solutions and their resources (data assets, data flows, tasks, and so on) separate from each other, helping you to stay organized. For example, you could have separate workspaces for development, testing, and production.

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_CREATING = 'CREATING'.freeze,
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_DELETING = 'DELETING'.freeze,
  LIFECYCLE_STATE_DELETED = 'DELETED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_STARTING = 'STARTING'.freeze,
  LIFECYCLE_STATE_STOPPING = 'STOPPING'.freeze,
  LIFECYCLE_STATE_STOPPED = 'STOPPED'.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 = {}) ⇒ Workspace

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :vcn_id (String)

    The value to assign to the #vcn_id property

  • :subnet_id (String)

    The value to assign to the #subnet_id property

  • :dns_server_ip (String)

    The value to assign to the #dns_server_ip property

  • :dns_server_zone (String)

    The value to assign to the #dns_server_zone property

  • :is_private_network_enabled (BOOLEAN)

    The value to assign to the #is_private_network_enabled property

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags property

  • :defined_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #defined_tags property

  • :description (String)

    The value to assign to the #description property

  • :display_name (String)

    The value to assign to the #display_name property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :time_created (DateTime)

    The value to assign to the #time_created property

  • :time_updated (DateTime)

    The value to assign to the #time_updated property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :state_message (String)

    The value to assign to the #state_message property

  • :id (String)

    The value to assign to the #id property

  • :endpoint_id (String)

    The value to assign to the #endpoint_id property

  • :endpoint_name (String)

    The value to assign to the #endpoint_name property

  • :registry_id (String)

    The value to assign to the #registry_id property



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# File 'lib/oci/data_integration/models/workspace.rb', line 191

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

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

  self.vcn_id = attributes[:'vcn_id'] if attributes[:'vcn_id']

  self.subnet_id = attributes[:'subnetId'] if attributes[:'subnetId']

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

  self.subnet_id = attributes[:'subnet_id'] if attributes[:'subnet_id']

  self.dns_server_ip = attributes[:'dnsServerIp'] if attributes[:'dnsServerIp']

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

  self.dns_server_ip = attributes[:'dns_server_ip'] if attributes[:'dns_server_ip']

  self.dns_server_zone = attributes[:'dnsServerZone'] if attributes[:'dnsServerZone']

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

  self.dns_server_zone = attributes[:'dns_server_zone'] if attributes[:'dns_server_zone']

  self.is_private_network_enabled = attributes[:'isPrivateNetworkEnabled'] unless attributes[:'isPrivateNetworkEnabled'].nil?

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

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

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

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

  self.freeform_tags = attributes[:'freeform_tags'] if attributes[:'freeform_tags']

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

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

  self.defined_tags = attributes[:'defined_tags'] if attributes[:'defined_tags']

  self.description = attributes[:'description'] if attributes[:'description']

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

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

  self.display_name = attributes[:'display_name'] if attributes[:'display_name']

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

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

  self.time_created = attributes[:'time_created'] if attributes[:'time_created']

  self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated']

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

  self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated']

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

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

  self.state_message = attributes[:'state_message'] if attributes[:'state_message']

  self.id = attributes[:'id'] if attributes[:'id']

  self.endpoint_id = attributes[:'endpointId'] if attributes[:'endpointId']

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

  self.endpoint_id = attributes[:'endpoint_id'] if attributes[:'endpoint_id']

  self.endpoint_name = attributes[:'endpointName'] if attributes[:'endpointName']

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

  self.endpoint_name = attributes[:'endpoint_name'] if attributes[:'endpoint_name']

  self.registry_id = attributes[:'registryId'] if attributes[:'registryId']

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

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

Instance Attribute Details

#compartment_idString

The OCID of the compartment containing the workspace.

Returns:

  • (String)


68
69
70
# File 'lib/oci/data_integration/models/workspace.rb', line 68

def compartment_id
  @compartment_id
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {\"Operations\": {\"CostCenter\": \"42\"}}

Returns:

  • (Hash<String, Hash<String, Object>>)


56
57
58
# File 'lib/oci/data_integration/models/workspace.rb', line 56

def defined_tags
  @defined_tags
end

#descriptionString

A detailed description for the workspace.

Returns:

  • (String)


60
61
62
# File 'lib/oci/data_integration/models/workspace.rb', line 60

def description
  @description
end

#display_nameString

[Required] A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.

Returns:

  • (String)


64
65
66
# File 'lib/oci/data_integration/models/workspace.rb', line 64

def display_name
  @display_name
end

#dns_server_ipString

The IP of the custom DNS.

Returns:

  • (String)


36
37
38
# File 'lib/oci/data_integration/models/workspace.rb', line 36

def dns_server_ip
  @dns_server_ip
end

#dns_server_zoneString

The DNS zone of the custom DNS to use to resolve names.

Returns:

  • (String)


40
41
42
# File 'lib/oci/data_integration/models/workspace.rb', line 40

def dns_server_zone
  @dns_server_zone
end

#endpoint_idString

OCID of the private endpoint associated with the container/workspace.

Returns:

  • (String)


105
106
107
# File 'lib/oci/data_integration/models/workspace.rb', line 105

def endpoint_id
  @endpoint_id
end

#endpoint_nameString

Name of the private endpoint associated with the container/workspace.

Returns:

  • (String)


109
110
111
# File 'lib/oci/data_integration/models/workspace.rb', line 109

def endpoint_name
  @endpoint_name
end

#freeform_tagsHash<String, String>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {\"Department\": \"Finance\"}

Returns:

  • (Hash<String, String>)


50
51
52
# File 'lib/oci/data_integration/models/workspace.rb', line 50

def freeform_tags
  @freeform_tags
end

#idString

[Required] A system-generated and immutable identifier assigned to the workspace upon creation.

Returns:

  • (String)


101
102
103
# File 'lib/oci/data_integration/models/workspace.rb', line 101

def id
  @id
end

#is_private_network_enabledBOOLEAN

Specifies whether the private network connection is enabled or disabled.

Returns:

  • (BOOLEAN)


44
45
46
# File 'lib/oci/data_integration/models/workspace.rb', line 44

def is_private_network_enabled
  @is_private_network_enabled
end

#lifecycle_stateString

Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.

Returns:

  • (String)


93
94
95
# File 'lib/oci/data_integration/models/workspace.rb', line 93

def lifecycle_state
  @lifecycle_state
end

#registry_idString

DCMS Registry ID associated with the container/workspace.

Returns:

  • (String)


113
114
115
# File 'lib/oci/data_integration/models/workspace.rb', line 113

def registry_id
  @registry_id
end

#state_messageString

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.

Returns:

  • (String)


97
98
99
# File 'lib/oci/data_integration/models/workspace.rb', line 97

def state_message
  @state_message
end

#subnet_idString

The OCID of the subnet for customer connected databases.

Returns:

  • (String)


32
33
34
# File 'lib/oci/data_integration/models/workspace.rb', line 32

def subnet_id
  @subnet_id
end

#time_createdDateTime

The date and time the workspace was created, in the timestamp format defined by RFC3339.

Returns:

  • (DateTime)


73
74
75
# File 'lib/oci/data_integration/models/workspace.rb', line 73

def time_created
  @time_created
end

#time_updatedDateTime

The date and time the workspace was updated, in the timestamp format defined by RFC3339.

Returns:

  • (DateTime)


77
78
79
# File 'lib/oci/data_integration/models/workspace.rb', line 77

def time_updated
  @time_updated
end

#vcn_idString

The OCID of the VCN the subnet is in.

Returns:

  • (String)


28
29
30
# File 'lib/oci/data_integration/models/workspace.rb', line 28

def vcn_id
  @vcn_id
end

Class Method Details

.attribute_mapObject

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



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/oci/data_integration/models/workspace.rb', line 116

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'vcn_id': :'vcnId',
    'subnet_id': :'subnetId',
    'dns_server_ip': :'dnsServerIp',
    'dns_server_zone': :'dnsServerZone',
    'is_private_network_enabled': :'isPrivateNetworkEnabled',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'description': :'description',
    'display_name': :'displayName',
    'compartment_id': :'compartmentId',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'lifecycle_state': :'lifecycleState',
    'state_message': :'stateMessage',
    'id': :'id',
    'endpoint_id': :'endpointId',
    'endpoint_name': :'endpointName',
    'registry_id': :'registryId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/oci/data_integration/models/workspace.rb', line 142

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'vcn_id': :'String',
    'subnet_id': :'String',
    'dns_server_ip': :'String',
    'dns_server_zone': :'String',
    'is_private_network_enabled': :'BOOLEAN',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'description': :'String',
    'display_name': :'String',
    'compartment_id': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'lifecycle_state': :'String',
    'state_message': :'String',
    'id': :'String',
    'endpoint_id': :'String',
    'endpoint_name': :'String',
    'registry_id': :'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



318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# File 'lib/oci/data_integration/models/workspace.rb', line 318

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

  self.class == other.class &&
    vcn_id == other.vcn_id &&
    subnet_id == other.subnet_id &&
    dns_server_ip == other.dns_server_ip &&
    dns_server_zone == other.dns_server_zone &&
    is_private_network_enabled == other.is_private_network_enabled &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    description == other.description &&
    display_name == other.display_name &&
    compartment_id == other.compartment_id &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    lifecycle_state == other.lifecycle_state &&
    state_message == other.state_message &&
    id == other.id &&
    endpoint_id == other.endpoint_id &&
    endpoint_name == other.endpoint_name &&
    registry_id == other.registry_id
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



365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# File 'lib/oci/data_integration/models/workspace.rb', line 365

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


345
346
347
# File 'lib/oci/data_integration/models/workspace.rb', line 345

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



354
355
356
# File 'lib/oci/data_integration/models/workspace.rb', line 354

def hash
  [vcn_id, subnet_id, dns_server_ip, dns_server_zone, is_private_network_enabled, freeform_tags, defined_tags, description, display_name, compartment_id, time_created, time_updated, lifecycle_state, state_message, id, endpoint_id, endpoint_name, registry_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



398
399
400
401
402
403
404
405
406
407
# File 'lib/oci/data_integration/models/workspace.rb', line 398

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



392
393
394
# File 'lib/oci/data_integration/models/workspace.rb', line 392

def to_s
  to_hash.to_s
end