google-apis-networkmanagement_v1beta1 0.68.0 → 0.70.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 +8 -0
- data/lib/google/apis/networkmanagement_v1beta1/classes.rb +9 -2
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +1 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +14 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 927d19ae8b5cd86baf97dc22aef63e93c02c43f268d424ffbd67027e1d17ed4c
|
|
4
|
+
data.tar.gz: 112ff12a1f34987153ca3616c5018df502b08b6bffa92d2fba261f379caffdbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44d86d6b55f62bef25c31b1c49b5c982ee2e51facbc7f91fc4e7b9556bbe7bd54ad5424152b3867154ce447e0b45238a6bfd8515443b4d21c6826b7ed1b649e8
|
|
7
|
+
data.tar.gz: c5fa5ec6790b0f394f8a6da0186159a02297edcdb2ab2ae5058d75a93fef401094a7430437894cce14ed97d415276b54aa0f2b31f3571ff92d64f2e9a948f3bf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.70.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251203
|
|
6
|
+
|
|
7
|
+
### v0.69.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251105
|
|
10
|
+
|
|
3
11
|
### v0.68.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251022
|
|
@@ -1714,8 +1714,9 @@ module Google
|
|
|
1714
1714
|
attr_accessor :operations
|
|
1715
1715
|
|
|
1716
1716
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1717
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1718
|
-
# when attempting to list all resources across all supported
|
|
1717
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1718
|
+
# For example, when attempting to list all resources across all supported
|
|
1719
|
+
# locations.
|
|
1719
1720
|
# Corresponds to the JSON property `unreachable`
|
|
1720
1721
|
# @return [Array<String>]
|
|
1721
1722
|
attr_accessor :unreachable
|
|
@@ -1983,6 +1984,11 @@ module Google
|
|
|
1983
1984
|
class NatInfo
|
|
1984
1985
|
include Google::Apis::Core::Hashable
|
|
1985
1986
|
|
|
1987
|
+
# Type of Cloud NAT gateway. Only valid when `type` is CLOUD_NAT.
|
|
1988
|
+
# Corresponds to the JSON property `cloudNatGatewayType`
|
|
1989
|
+
# @return [String]
|
|
1990
|
+
attr_accessor :cloud_nat_gateway_type
|
|
1991
|
+
|
|
1986
1992
|
# The name of Cloud NAT Gateway. Only valid when type is CLOUD_NAT.
|
|
1987
1993
|
# Corresponds to the JSON property `natGatewayName`
|
|
1988
1994
|
# @return [String]
|
|
@@ -2055,6 +2061,7 @@ module Google
|
|
|
2055
2061
|
|
|
2056
2062
|
# Update properties of this object
|
|
2057
2063
|
def update!(**args)
|
|
2064
|
+
@cloud_nat_gateway_type = args[:cloud_nat_gateway_type] if args.key?(:cloud_nat_gateway_type)
|
|
2058
2065
|
@nat_gateway_name = args[:nat_gateway_name] if args.key?(:nat_gateway_name)
|
|
2059
2066
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
2060
2067
|
@new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
|
|
@@ -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.70.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251203"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -895,6 +895,7 @@ module Google
|
|
|
895
895
|
class NatInfo
|
|
896
896
|
# @private
|
|
897
897
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
898
|
+
property :cloud_nat_gateway_type, as: 'cloudNatGatewayType'
|
|
898
899
|
property :nat_gateway_name, as: 'natGatewayName'
|
|
899
900
|
property :network_uri, as: 'networkUri'
|
|
900
901
|
property :new_destination_ip, as: 'newDestinationIp'
|
|
@@ -245,11 +245,12 @@ module Google
|
|
|
245
245
|
# The standard list page token.
|
|
246
246
|
# @param [Boolean] return_partial_success
|
|
247
247
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
248
|
-
# those that are unreachable are returned in the
|
|
249
|
-
# unreachable
|
|
250
|
-
#
|
|
251
|
-
# by default
|
|
252
|
-
# explicitly documented otherwise in service or product specific
|
|
248
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
249
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
250
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
251
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
252
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
253
|
+
# documentation.
|
|
253
254
|
# @param [String] fields
|
|
254
255
|
# Selector specifying which fields to include in a partial response.
|
|
255
256
|
# @param [String] quota_user
|
|
@@ -397,7 +398,7 @@ module Google
|
|
|
397
398
|
# Lists all `VpcFlowLogsConfigs` in a given organization.
|
|
398
399
|
# @param [String] parent
|
|
399
400
|
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
|
400
|
-
# following formats: - For project-level
|
|
401
|
+
# following formats: - For project-level resources: `projects/`project_id`/
|
|
401
402
|
# locations/global` - For organization-level resources: `organizations/`
|
|
402
403
|
# organization_id`/locations/global`
|
|
403
404
|
# @param [String] filter
|
|
@@ -1054,11 +1055,12 @@ module Google
|
|
|
1054
1055
|
# The standard list page token.
|
|
1055
1056
|
# @param [Boolean] return_partial_success
|
|
1056
1057
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1057
|
-
# those that are unreachable are returned in the
|
|
1058
|
-
# unreachable
|
|
1059
|
-
#
|
|
1060
|
-
# by default
|
|
1061
|
-
# explicitly documented otherwise in service or product specific
|
|
1058
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1059
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1060
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1061
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1062
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1063
|
+
# documentation.
|
|
1062
1064
|
# @param [String] fields
|
|
1063
1065
|
# Selector specifying which fields to include in a partial response.
|
|
1064
1066
|
# @param [String] quota_user
|
|
@@ -1206,7 +1208,7 @@ module Google
|
|
|
1206
1208
|
# Lists all `VpcFlowLogsConfigs` in a given project.
|
|
1207
1209
|
# @param [String] parent
|
|
1208
1210
|
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
|
1209
|
-
# following formats: - For project-level
|
|
1211
|
+
# following formats: - For project-level resources: `projects/`project_id`/
|
|
1210
1212
|
# locations/global` - For organization-level resources: `organizations/`
|
|
1211
1213
|
# organization_id`/locations/global`
|
|
1212
1214
|
# @param [String] filter
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.70.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.70.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|