google-apis-networkmanagement_v1 0.37.0 → 0.38.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: c5df698852353e0ad98d5322af855dcd89cce3e6cf4dfc116bf8c48ad241e06d
|
|
4
|
+
data.tar.gz: 304ce85d4fa0c1818dceca1e70bd65a2693b84cb023acbc2f3c9aa3c9e465b95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78403bb78f55208f988687f4fee5551a14508788edd2d605b472315c6f599f6cbd462840247c9cf7e36dacbe66fdc43ab6e615db5291847feff2b4fa30cc8444
|
|
7
|
+
data.tar.gz: be463778f40369593fe3c9ddea2f5ebb261201d2c3c58bc0a4dfa92257b6d63beae311d1a583af117545bd75332ec1d44518c5aa7029af58de173fbef0272fe4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.38.0 (2024-01-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240117
|
|
6
|
+
* Regenerated using generator version 0.13.1
|
|
7
|
+
|
|
3
8
|
### v0.37.0 (2024-01-23)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240103
|
|
@@ -2383,6 +2383,11 @@ module Google
|
|
|
2383
2383
|
# @return [String]
|
|
2384
2384
|
attr_accessor :state
|
|
2385
2385
|
|
|
2386
|
+
# For display only. Metadata associated with Storage Bucket.
|
|
2387
|
+
# Corresponds to the JSON property `storageBucket`
|
|
2388
|
+
# @return [Google::Apis::NetworkmanagementV1::StorageBucketInfo]
|
|
2389
|
+
attr_accessor :storage_bucket
|
|
2390
|
+
|
|
2386
2391
|
# For display only. Metadata associated with a VPC connector.
|
|
2387
2392
|
# Corresponds to the JSON property `vpcConnector`
|
|
2388
2393
|
# @return [Google::Apis::NetworkmanagementV1::VpcConnectorInfo]
|
|
@@ -2428,12 +2433,32 @@ module Google
|
|
|
2428
2433
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
|
2429
2434
|
@route = args[:route] if args.key?(:route)
|
|
2430
2435
|
@state = args[:state] if args.key?(:state)
|
|
2436
|
+
@storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
|
|
2431
2437
|
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
|
2432
2438
|
@vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
|
|
2433
2439
|
@vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
|
|
2434
2440
|
end
|
|
2435
2441
|
end
|
|
2436
2442
|
|
|
2443
|
+
# For display only. Metadata associated with Storage Bucket.
|
|
2444
|
+
class StorageBucketInfo
|
|
2445
|
+
include Google::Apis::Core::Hashable
|
|
2446
|
+
|
|
2447
|
+
# Cloud Storage Bucket name.
|
|
2448
|
+
# Corresponds to the JSON property `bucket`
|
|
2449
|
+
# @return [String]
|
|
2450
|
+
attr_accessor :bucket
|
|
2451
|
+
|
|
2452
|
+
def initialize(**args)
|
|
2453
|
+
update!(**args)
|
|
2454
|
+
end
|
|
2455
|
+
|
|
2456
|
+
# Update properties of this object
|
|
2457
|
+
def update!(**args)
|
|
2458
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
|
2459
|
+
end
|
|
2460
|
+
end
|
|
2461
|
+
|
|
2437
2462
|
# Request message for `TestIamPermissions` method.
|
|
2438
2463
|
class TestIamPermissionsRequest
|
|
2439
2464
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.38.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.13.
|
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240117"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -310,6 +310,12 @@ module Google
|
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
311
311
|
end
|
|
312
312
|
|
|
313
|
+
class StorageBucketInfo
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
313
319
|
class TestIamPermissionsRequest
|
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
321
|
|
|
@@ -919,6 +925,8 @@ module Google
|
|
|
919
925
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
|
|
920
926
|
|
|
921
927
|
property :state, as: 'state'
|
|
928
|
+
property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1::StorageBucketInfo::Representation
|
|
929
|
+
|
|
922
930
|
property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1::VpcConnectorInfo::Representation
|
|
923
931
|
|
|
924
932
|
property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1::VpnGatewayInfo::Representation
|
|
@@ -928,6 +936,13 @@ module Google
|
|
|
928
936
|
end
|
|
929
937
|
end
|
|
930
938
|
|
|
939
|
+
class StorageBucketInfo
|
|
940
|
+
# @private
|
|
941
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
942
|
+
property :bucket, as: 'bucket'
|
|
943
|
+
end
|
|
944
|
+
end
|
|
945
|
+
|
|
931
946
|
class TestIamPermissionsRequest
|
|
932
947
|
# @private
|
|
933
948
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.38.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-01-
|
|
11
|
+
date: 2024-01-28 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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.38.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|