google-apis-networkmanagement_v1beta1 0.50.0 → 0.51.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkmanagement_v1beta1/classes.rb +14 -0
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +3 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df2918328f2a49c119a533232c64714191b9849f56f52d34e3a5f8f4a95a5e65
|
4
|
+
data.tar.gz: 577b333663a6a5cf37bbe45e0dc8b0a2d1bb787f09f6914978d7ad84d0398ba9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6ae389cff70cc19d3088ff187a43c2850fd4c7480345d112131be382835283b45f3c5b6347d877a15b169cefecd4a3d6e5060f3aff10a8bdea3dc5f2b4f7c03
|
7
|
+
data.tar.gz: 0d7f6d78b1036fdd5c90a671be25e80fa97025fb690844cfe949d787dfe98496727bce1bb547251ef6c3d31935fea311aa18f8cf36f5bd6114737b59ece39a31
|
data/CHANGELOG.md
CHANGED
@@ -531,6 +531,18 @@ module Google
|
|
531
531
|
# @return [Array<String>]
|
532
532
|
attr_accessor :related_projects
|
533
533
|
|
534
|
+
# Results of the configuration analysis from the last run of the test.
|
535
|
+
# Corresponds to the JSON property `returnReachabilityDetails`
|
536
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::ReachabilityDetails]
|
537
|
+
attr_accessor :return_reachability_details
|
538
|
+
|
539
|
+
# Whether run analysis for the return path from destination to source. Default
|
540
|
+
# value is false.
|
541
|
+
# Corresponds to the JSON property `roundTrip`
|
542
|
+
# @return [Boolean]
|
543
|
+
attr_accessor :round_trip
|
544
|
+
alias_method :round_trip?, :round_trip
|
545
|
+
|
534
546
|
# Source or destination of the Connectivity Test.
|
535
547
|
# Corresponds to the JSON property `source`
|
536
548
|
# @return [Google::Apis::NetworkmanagementV1beta1::Endpoint]
|
@@ -558,6 +570,8 @@ module Google
|
|
558
570
|
@protocol = args[:protocol] if args.key?(:protocol)
|
559
571
|
@reachability_details = args[:reachability_details] if args.key?(:reachability_details)
|
560
572
|
@related_projects = args[:related_projects] if args.key?(:related_projects)
|
573
|
+
@return_reachability_details = args[:return_reachability_details] if args.key?(:return_reachability_details)
|
574
|
+
@round_trip = args[:round_trip] if args.key?(:round_trip)
|
561
575
|
@source = args[:source] if args.key?(:source)
|
562
576
|
@update_time = args[:update_time] if args.key?(:update_time)
|
563
577
|
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.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241202"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -505,6 +505,9 @@ module Google
|
|
505
505
|
property :reachability_details, as: 'reachabilityDetails', class: Google::Apis::NetworkmanagementV1beta1::ReachabilityDetails, decorator: Google::Apis::NetworkmanagementV1beta1::ReachabilityDetails::Representation
|
506
506
|
|
507
507
|
collection :related_projects, as: 'relatedProjects'
|
508
|
+
property :return_reachability_details, as: 'returnReachabilityDetails', class: Google::Apis::NetworkmanagementV1beta1::ReachabilityDetails, decorator: Google::Apis::NetworkmanagementV1beta1::ReachabilityDetails::Representation
|
509
|
+
|
510
|
+
property :round_trip, as: 'roundTrip'
|
508
511
|
property :source, as: 'source', class: Google::Apis::NetworkmanagementV1beta1::Endpoint, decorator: Google::Apis::NetworkmanagementV1beta1::Endpoint::Representation
|
509
512
|
|
510
513
|
property :update_time, as: 'updateTime'
|
@@ -501,8 +501,8 @@ module Google
|
|
501
501
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
502
502
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
503
503
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
504
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
505
|
-
# corresponding to `Code.CANCELLED`.
|
504
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
505
|
+
# , corresponding to `Code.CANCELLED`.
|
506
506
|
# @param [String] name
|
507
507
|
# The name of the operation resource to be cancelled.
|
508
508
|
# @param [Google::Apis::NetworkmanagementV1beta1::CancelOperationRequest] cancel_operation_request_object
|
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.51.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-12-
|
11
|
+
date: 2024-12-08 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.51.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Management API V1beta1
|