google-apis-networkmanagement_v1beta1 0.40.0 → 0.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbc999213a2adf00f84c5f457c525da48d8334ce3ebac70f4d70ed2bd97536c0
|
|
4
|
+
data.tar.gz: 1d4fc83fc4dd795e6cdd513d972f6da3c8ed2cb251486385c51256d422db79a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66a07347e8fa3148ad76c5e34b4efe85abbf1d0352a29b30309cd767779b110886c6b52b09f65df969ae10547cf6897175e891defcb1dab7abe549f4e522091e
|
|
7
|
+
data.tar.gz: 02e1c31f88dc2db0b5f1bc6cb7abc9e3f7d8e7be27c6904267e609b3a5b00b3610df73795f2eb6928878237e8a2c5bcd6987a2ae05b4f4c9bf882a50b30ee4db
|
data/CHANGELOG.md
CHANGED
|
@@ -2542,6 +2542,13 @@ module Google
|
|
|
2542
2542
|
# @return [Google::Apis::NetworkmanagementV1beta1::EndpointInfo]
|
|
2543
2543
|
attr_accessor :endpoint_info
|
|
2544
2544
|
|
|
2545
|
+
# ID of trace. For forward traces, this ID is unique for each trace. For return
|
|
2546
|
+
# traces, it matches ID of associated forward trace. A single forward trace can
|
|
2547
|
+
# be associated with none, one or more than one return trace.
|
|
2548
|
+
# Corresponds to the JSON property `forwardTraceId`
|
|
2549
|
+
# @return [Fixnum]
|
|
2550
|
+
attr_accessor :forward_trace_id
|
|
2551
|
+
|
|
2545
2552
|
# A trace of a test contains multiple steps from the initial state to the final
|
|
2546
2553
|
# state (delivered, dropped, forwarded, or aborted). The steps are ordered by
|
|
2547
2554
|
# the processing sequence within the simulated network state machine. It is
|
|
@@ -2558,6 +2565,7 @@ module Google
|
|
|
2558
2565
|
# Update properties of this object
|
|
2559
2566
|
def update!(**args)
|
|
2560
2567
|
@endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
|
|
2568
|
+
@forward_trace_id = args[:forward_trace_id] if args.key?(:forward_trace_id)
|
|
2561
2569
|
@steps = args[:steps] if args.key?(:steps)
|
|
2562
2570
|
end
|
|
2563
2571
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1beta1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.41.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240131"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -966,6 +966,7 @@ module Google
|
|
|
966
966
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
967
967
|
property :endpoint_info, as: 'endpointInfo', class: Google::Apis::NetworkmanagementV1beta1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1beta1::EndpointInfo::Representation
|
|
968
968
|
|
|
969
|
+
property :forward_trace_id, as: 'forwardTraceId'
|
|
969
970
|
collection :steps, as: 'steps', class: Google::Apis::NetworkmanagementV1beta1::Step, decorator: Google::Apis::NetworkmanagementV1beta1::Step::Representation
|
|
970
971
|
|
|
971
972
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.41.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-02-
|
|
11
|
+
date: 2024-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.41.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|