Class: OCI::Core::Models::CreateVtapDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/core/models/create_vtap_details.rb

Overview

These details are included in a request to create a virtual test access point (VTAP).

Constant Summary collapse

ENCAPSULATION_PROTOCOL_ENUM =
[
  ENCAPSULATION_PROTOCOL_VXLAN = 'VXLAN'.freeze
].freeze
SOURCE_TYPE_ENUM =
[
  SOURCE_TYPE_VNIC = 'VNIC'.freeze,
  SOURCE_TYPE_SUBNET = 'SUBNET'.freeze,
  SOURCE_TYPE_LOAD_BALANCER = 'LOAD_BALANCER'.freeze,
  SOURCE_TYPE_DB_SYSTEM = 'DB_SYSTEM'.freeze,
  SOURCE_TYPE_EXADATA_VM_CLUSTER = 'EXADATA_VM_CLUSTER'.freeze,
  SOURCE_TYPE_AUTONOMOUS_DATA_WAREHOUSE = 'AUTONOMOUS_DATA_WAREHOUSE'.freeze
].freeze
TRAFFIC_MODE_ENUM =
[
  TRAFFIC_MODE_DEFAULT = 'DEFAULT'.freeze,
  TRAFFIC_MODE_PRIORITY = 'PRIORITY'.freeze
].freeze
TARGET_TYPE_ENUM =
[
  TARGET_TYPE_VNIC = 'VNIC'.freeze,
  TARGET_TYPE_NETWORK_LOAD_BALANCER = 'NETWORK_LOAD_BALANCER'.freeze,
  TARGET_TYPE_IP_ADDRESS = 'IP_ADDRESS'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CreateVtapDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :vcn_id (String)

    The value to assign to the #vcn_id property

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

    The value to assign to the #defined_tags property

  • :display_name (String)

    The value to assign to the #display_name property

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags property

  • :source_id (String)

    The value to assign to the #source_id property

  • :target_id (String)

    The value to assign to the #target_id property

  • :target_ip (String)

    The value to assign to the #target_ip property

  • :capture_filter_id (String)

    The value to assign to the #capture_filter_id property

  • :encapsulation_protocol (String)

    The value to assign to the #encapsulation_protocol property

  • :vxlan_network_identifier (Integer)

    The value to assign to the #vxlan_network_identifier property

  • :is_vtap_enabled (BOOLEAN)

    The value to assign to the #is_vtap_enabled property

  • :source_type (String)

    The value to assign to the #source_type property

  • :traffic_mode (String)

    The value to assign to the #traffic_mode property

  • :max_packet_size (Integer)

    The value to assign to the #max_packet_size property

  • :target_type (String)

    The value to assign to the #target_type property

  • :source_private_endpoint_ip (String)

    The value to assign to the #source_private_endpoint_ip property

  • :source_private_endpoint_subnet_id (String)

    The value to assign to the #source_private_endpoint_subnet_id property



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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# File 'lib/oci/core/models/create_vtap_details.rb', line 207

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

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

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

  self.target_id = attributes[:'targetId'] if attributes[:'targetId']

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

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

  self.target_ip = attributes[:'targetIp'] if attributes[:'targetIp']

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

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

  self.capture_filter_id = attributes[:'captureFilterId'] if attributes[:'captureFilterId']

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

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

  self.encapsulation_protocol = attributes[:'encapsulationProtocol'] if attributes[:'encapsulationProtocol']

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

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

  self.vxlan_network_identifier = attributes[:'vxlanNetworkIdentifier'] if attributes[:'vxlanNetworkIdentifier']

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

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

  self.is_vtap_enabled = attributes[:'isVtapEnabled'] unless attributes[:'isVtapEnabled'].nil?
  self.is_vtap_enabled = false if is_vtap_enabled.nil? && !attributes.key?(:'isVtapEnabled') # rubocop:disable Style/StringLiterals

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

  self.is_vtap_enabled = attributes[:'is_vtap_enabled'] unless attributes[:'is_vtap_enabled'].nil?
  self.is_vtap_enabled = false if is_vtap_enabled.nil? && !attributes.key?(:'isVtapEnabled') && !attributes.key?(:'is_vtap_enabled') # rubocop:disable Style/StringLiterals

  self.source_type = attributes[:'sourceType'] if attributes[:'sourceType']

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

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

  self.traffic_mode = attributes[:'trafficMode'] if attributes[:'trafficMode']
  self.traffic_mode = "DEFAULT" if traffic_mode.nil? && !attributes.key?(:'trafficMode') # rubocop:disable Style/StringLiterals

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

  self.traffic_mode = attributes[:'traffic_mode'] if attributes[:'traffic_mode']
  self.traffic_mode = "DEFAULT" if traffic_mode.nil? && !attributes.key?(:'trafficMode') && !attributes.key?(:'traffic_mode') # rubocop:disable Style/StringLiterals

  self.max_packet_size = attributes[:'maxPacketSize'] if attributes[:'maxPacketSize']

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

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

  self.target_type = attributes[:'targetType'] if attributes[:'targetType']

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

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

  self.source_private_endpoint_ip = attributes[:'sourcePrivateEndpointIp'] if attributes[:'sourcePrivateEndpointIp']

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

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

  self.source_private_endpoint_subnet_id = attributes[:'sourcePrivateEndpointSubnetId'] if attributes[:'sourcePrivateEndpointSubnetId']

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

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

Instance Attribute Details

#capture_filter_idString

[Required] The capture filter's Oracle ID (OCID).

Returns:

  • (String)


83
84
85
# File 'lib/oci/core/models/create_vtap_details.rb', line 83

def capture_filter_id
  @capture_filter_id
end

#compartment_idString

[Required] The OCID of the compartment containing the Vtap resource.

Returns:

  • (String)


37
38
39
# File 'lib/oci/core/models/create_vtap_details.rb', line 37

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. For more information, see Resource Tags.

Example: {\"Operations\": {\"CostCenter\": \"42\"}}

Returns:

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


49
50
51
# File 'lib/oci/core/models/create_vtap_details.rb', line 49

def defined_tags
  @defined_tags
end

#display_nameString

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Returns:

  • (String)


55
56
57
# File 'lib/oci/core/models/create_vtap_details.rb', line 55

def display_name
  @display_name
end

#encapsulation_protocolString

Defines an encapsulation header type for the VTAP's mirrored traffic.

Returns:

  • (String)


88
89
90
# File 'lib/oci/core/models/create_vtap_details.rb', line 88

def encapsulation_protocol
  @encapsulation_protocol
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. For more information, see Resource Tags.

Example: {\"Department\": \"Finance\"}

Returns:

  • (Hash<String, String>)


63
64
65
# File 'lib/oci/core/models/create_vtap_details.rb', line 63

def freeform_tags
  @freeform_tags
end

#is_vtap_enabledBOOLEAN

Used to start or stop a Vtap resource.

  • TRUE directs the VTAP to start mirroring traffic.

  • FALSE (Default) directs the VTAP to stop mirroring traffic.

Returns:

  • (BOOLEAN)


101
102
103
# File 'lib/oci/core/models/create_vtap_details.rb', line 101

def is_vtap_enabled
  @is_vtap_enabled
end

#max_packet_sizeInteger

The maximum size of the packets to be included in the filter.

Returns:

  • (Integer)


114
115
116
# File 'lib/oci/core/models/create_vtap_details.rb', line 114

def max_packet_size
  @max_packet_size
end

#source_idString

[Required] The OCID of the source point where packets are captured.

Returns:

  • (String)


68
69
70
# File 'lib/oci/core/models/create_vtap_details.rb', line 68

def source_id
  @source_id
end

#source_private_endpoint_ipString

The IP Address of the source private endpoint.

Returns:

  • (String)


124
125
126
# File 'lib/oci/core/models/create_vtap_details.rb', line 124

def source_private_endpoint_ip
  @source_private_endpoint_ip
end

#source_private_endpoint_subnet_idString

The OCID of the subnet that source private endpoint belongs to.

Returns:

  • (String)


129
130
131
# File 'lib/oci/core/models/create_vtap_details.rb', line 129

def source_private_endpoint_subnet_id
  @source_private_endpoint_subnet_id
end

#source_typeString

The source type for the VTAP.

Returns:

  • (String)


106
107
108
# File 'lib/oci/core/models/create_vtap_details.rb', line 106

def source_type
  @source_type
end

#target_idString

The OCID of the destination resource where mirrored packets are sent.

Returns:

  • (String)


73
74
75
# File 'lib/oci/core/models/create_vtap_details.rb', line 73

def target_id
  @target_id
end

#target_ipString

The IP address of the destination resource where mirrored packets are sent.

Returns:

  • (String)


78
79
80
# File 'lib/oci/core/models/create_vtap_details.rb', line 78

def target_ip
  @target_ip
end

#target_typeString

The target type for the VTAP.

Returns:

  • (String)


119
120
121
# File 'lib/oci/core/models/create_vtap_details.rb', line 119

def target_type
  @target_type
end

#traffic_modeString

Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT

Returns:

  • (String)


110
111
112
# File 'lib/oci/core/models/create_vtap_details.rb', line 110

def traffic_mode
  @traffic_mode
end

#vcn_idString

[Required] The OCID of the VCN containing the Vtap resource.

Returns:

  • (String)


41
42
43
# File 'lib/oci/core/models/create_vtap_details.rb', line 41

def vcn_id
  @vcn_id
end

#vxlan_network_identifierInteger

The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.

Returns:

  • (Integer)


93
94
95
# File 'lib/oci/core/models/create_vtap_details.rb', line 93

def vxlan_network_identifier
  @vxlan_network_identifier
end

Class Method Details

.attribute_mapObject

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



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/oci/core/models/create_vtap_details.rb', line 132

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'compartmentId',
    'vcn_id': :'vcnId',
    'defined_tags': :'definedTags',
    'display_name': :'displayName',
    'freeform_tags': :'freeformTags',
    'source_id': :'sourceId',
    'target_id': :'targetId',
    'target_ip': :'targetIp',
    'capture_filter_id': :'captureFilterId',
    'encapsulation_protocol': :'encapsulationProtocol',
    'vxlan_network_identifier': :'vxlanNetworkIdentifier',
    'is_vtap_enabled': :'isVtapEnabled',
    'source_type': :'sourceType',
    'traffic_mode': :'trafficMode',
    'max_packet_size': :'maxPacketSize',
    'target_type': :'targetType',
    'source_private_endpoint_ip': :'sourcePrivateEndpointIp',
    'source_private_endpoint_subnet_id': :'sourcePrivateEndpointSubnetId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/oci/core/models/create_vtap_details.rb', line 158

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'compartment_id': :'String',
    'vcn_id': :'String',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'display_name': :'String',
    'freeform_tags': :'Hash<String, String>',
    'source_id': :'String',
    'target_id': :'String',
    'target_ip': :'String',
    'capture_filter_id': :'String',
    'encapsulation_protocol': :'String',
    'vxlan_network_identifier': :'Integer',
    'is_vtap_enabled': :'BOOLEAN',
    'source_type': :'String',
    'traffic_mode': :'String',
    'max_packet_size': :'Integer',
    'target_type': :'String',
    'source_private_endpoint_ip': :'String',
    'source_private_endpoint_subnet_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



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/core/models/create_vtap_details.rb', line 365

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

  self.class == other.class &&
    compartment_id == other.compartment_id &&
    vcn_id == other.vcn_id &&
    defined_tags == other.defined_tags &&
    display_name == other.display_name &&
    freeform_tags == other.freeform_tags &&
    source_id == other.source_id &&
    target_id == other.target_id &&
    target_ip == other.target_ip &&
    capture_filter_id == other.capture_filter_id &&
    encapsulation_protocol == other.encapsulation_protocol &&
    vxlan_network_identifier == other.vxlan_network_identifier &&
    is_vtap_enabled == other.is_vtap_enabled &&
    source_type == other.source_type &&
    traffic_mode == other.traffic_mode &&
    max_packet_size == other.max_packet_size &&
    target_type == other.target_type &&
    source_private_endpoint_ip == other.source_private_endpoint_ip &&
    source_private_endpoint_subnet_id == other.source_private_endpoint_subnet_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



412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
# File 'lib/oci/core/models/create_vtap_details.rb', line 412

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


392
393
394
# File 'lib/oci/core/models/create_vtap_details.rb', line 392

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



401
402
403
# File 'lib/oci/core/models/create_vtap_details.rb', line 401

def hash
  [compartment_id, vcn_id, defined_tags, display_name, freeform_tags, source_id, target_id, target_ip, capture_filter_id, encapsulation_protocol, vxlan_network_identifier, is_vtap_enabled, source_type, traffic_mode, max_packet_size, target_type, source_private_endpoint_ip, source_private_endpoint_subnet_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



445
446
447
448
449
450
451
452
453
454
# File 'lib/oci/core/models/create_vtap_details.rb', line 445

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



439
440
441
# File 'lib/oci/core/models/create_vtap_details.rb', line 439

def to_s
  to_hash.to_s
end