Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 53 additions & 54 deletions management/azure_mgmt_network/lib/generated/azure_mgmt_network.rb

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class FlowLogStatusParameters

include MsRestAzure

# @return [String] The target resource to capture flow log.
# @return [String] The target resource where getting the flow logging
# status.
attr_accessor :target_resource_id


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class PacketCaptureQueryStatusResult
# stopped.
attr_accessor :stop_reason

# @return [Array<CaptureError>] List of errors of packet capture session.
# @return [Array<PcError>] List of errors of packet capture session.
attr_accessor :packet_capture_error


Expand Down Expand Up @@ -87,10 +87,9 @@ def self.mapper()
name: 'Sequence',
element: {
required: false,
serialized_name: 'CaptureErrorElementType',
serialized_name: 'PcErrorElementType',
type: {
name: 'Composite',
class_name: 'CaptureError'
name: 'String'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ class PacketCaptureStorageLocation
attr_accessor :storage_path

# @return [String] A valid local path on the targeting VM. Must include
# the name of the capture file (*.cap). Required if no storage ID is
# provided, otherwise optional.
# the name of the capture file (*.cap). For linux virtual machine it must
# start with /var/captures. Required if no storage ID is provided,
# otherwise optional.
attr_accessor :file_path


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class TopologyParameters

include MsRestAzure

# @return [String] The name of the target resource group.
# @return [String] The name of the target resource group to perform
# topology on.
attr_accessor :target_resource_group_name


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ class VerificationIPFlowParameters

include MsRestAzure

# @return [String] The resource identifier of the target resource against
# which the action is to be performed.
# @return [String] The ID of the target resource to perform next-hop on.
attr_accessor :target_resource_id

# @return [Direction] The direction of the packet represented as a
Expand All @@ -24,12 +23,14 @@ class VerificationIPFlowParameters
# 'TCP', 'UDP'
attr_accessor :protocol

# @return [String] The local port. Acceptable values are single integer
# (0-65535) or range.
# @return [String] The local port. Acceptable values are a single integer
# in the range (0-65535). Support for * for the source port, which
# depends on the direction.
attr_accessor :local_port

# @return [String] The remote port. Acceptable values are single integer
# (0-65535) or range.
# @return [String] The remote port. Acceptable values are a single
# integer in the range (0-65535). Support for * for the source port,
# which depends on the direction.
attr_accessor :remote_port

# @return [String] The local IP address. Acceptable values are valid IPv4
Expand Down