Class: OCI::VnMonitoring::Models::CreateVtapDetails
- Inherits:
-
Object
- Object
- OCI::VnMonitoring::Models::CreateVtapDetails
- Defined in:
- lib/oci/vn_monitoring/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
-
#capture_filter_id ⇒ String
[Required] The capture filter's Oracle ID (OCID).
-
#compartment_id ⇒ String
[Required] The OCID of the compartment containing the
Vtap
resource. -
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#display_name ⇒ String
A user-friendly name.
-
#encapsulation_protocol ⇒ String
Defines an encapsulation header type for the VTAP's mirrored traffic.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#is_vtap_enabled ⇒ BOOLEAN
Used to start or stop a
Vtap
resource. -
#max_packet_size ⇒ Integer
The maximum size of the packets to be included in the filter.
-
#source_id ⇒ String
[Required] The OCID of the source point where packets are captured.
-
#source_private_endpoint_ip ⇒ String
The IP Address of the source private endpoint.
-
#source_private_endpoint_subnet_id ⇒ String
The OCID of the subnet that source private endpoint belongs to.
-
#source_type ⇒ String
The source type for the VTAP.
-
#target_id ⇒ String
The OCID of the destination resource where mirrored packets are sent.
-
#target_ip ⇒ String
The IP address of the destination resource where mirrored packets are sent.
-
#target_type ⇒ String
The target type for the VTAP.
-
#traffic_mode ⇒ String
Used to control the priority of traffic.
-
#vcn_id ⇒ String
[Required] The OCID of the VCN containing the
Vtap
resource. -
#vxlan_network_identifier ⇒ Integer
The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CreateVtapDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ CreateVtapDetails
Initializes the object
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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 203 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. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = 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. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = 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_id ⇒ String
[Required] The capture filter's Oracle ID (OCID).
79 80 81 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 79 def capture_filter_id @capture_filter_id end |
#compartment_id ⇒ String
[Required] The OCID of the compartment containing the Vtap
resource.
37 38 39 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 37 def compartment_id @compartment_id end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
47 48 49 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 47 def @defined_tags end |
#display_name ⇒ String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
53 54 55 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 53 def display_name @display_name end |
#encapsulation_protocol ⇒ String
Defines an encapsulation header type for the VTAP's mirrored traffic.
84 85 86 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 84 def encapsulation_protocol @encapsulation_protocol end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}
59 60 61 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 59 def @freeform_tags end |
#is_vtap_enabled ⇒ BOOLEAN
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.
97 98 99 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 97 def is_vtap_enabled @is_vtap_enabled end |
#max_packet_size ⇒ Integer
The maximum size of the packets to be included in the filter.
110 111 112 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 110 def max_packet_size @max_packet_size end |
#source_id ⇒ String
[Required] The OCID of the source point where packets are captured.
64 65 66 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 64 def source_id @source_id end |
#source_private_endpoint_ip ⇒ String
The IP Address of the source private endpoint.
120 121 122 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 120 def source_private_endpoint_ip @source_private_endpoint_ip end |
#source_private_endpoint_subnet_id ⇒ String
The OCID of the subnet that source private endpoint belongs to.
125 126 127 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 125 def source_private_endpoint_subnet_id @source_private_endpoint_subnet_id end |
#source_type ⇒ String
The source type for the VTAP.
102 103 104 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 102 def source_type @source_type end |
#target_id ⇒ String
The OCID of the destination resource where mirrored packets are sent.
69 70 71 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 69 def target_id @target_id end |
#target_ip ⇒ String
The IP address of the destination resource where mirrored packets are sent.
74 75 76 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 74 def target_ip @target_ip end |
#target_type ⇒ String
The target type for the VTAP.
115 116 117 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 115 def target_type @target_type end |
#traffic_mode ⇒ String
Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
106 107 108 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 106 def traffic_mode @traffic_mode end |
#vcn_id ⇒ String
[Required] The OCID of the VCN containing the Vtap
resource.
41 42 43 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 41 def vcn_id @vcn_id end |
#vxlan_network_identifier ⇒ Integer
The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
89 90 91 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 89 def vxlan_network_identifier @vxlan_network_identifier end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 128 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_types ⇒ Object
Attribute type mapping.
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 154 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.
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 361 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && vcn_id == other.vcn_id && == other. && display_name == other.display_name && == other. && 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
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 408 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
388 389 390 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 388 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
397 398 399 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 397 def hash [compartment_id, vcn_id, , display_name, , 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_hash ⇒ Hash
Returns the object in the form of hash
441 442 443 444 445 446 447 448 449 450 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 441 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_s ⇒ String
Returns the string representation of the object
435 436 437 |
# File 'lib/oci/vn_monitoring/models/create_vtap_details.rb', line 435 def to_s to_hash.to_s end |