google-apis-networkmanagement_v1beta1 0.39.0 → 0.40.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: 396ce155ecf0d01c1f543dd250f8279a8b45bcb0f534361cf8828faa03803904
|
|
4
|
+
data.tar.gz: 053a3359ab73285b2a9890509bb9bf4f26838790096efecd999684c32f8711ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c0bce9e7da7bf0ebb340d888dd26dfc70272f994373b9984ee263a4ef3dbef4efe94a41dcc1fd67129167f613533f950179e8cdf83c538da2149f4fcdd391eb
|
|
7
|
+
data.tar.gz: 5ac985b378068d097dc2e3f2102521190eb1d1912909a2694f2cb48d0b9974379ee66519e955bcc47ac6bbcf82f525f0b6d8ec9f1db422aeb0f88f7448824a3b
|
data/CHANGELOG.md
CHANGED
|
@@ -265,7 +265,10 @@ module Google
|
|
|
265
265
|
attr_accessor :members
|
|
266
266
|
|
|
267
267
|
# Role that is assigned to the list of `members`, or principals. For example, `
|
|
268
|
-
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
|
268
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
|
|
269
|
+
# roles and permissions, see the [IAM documentation](https://cloud.google.com/
|
|
270
|
+
# iam/docs/roles-overview). For a list of the available pre-defined roles, see [
|
|
271
|
+
# here](https://cloud.google.com/iam/docs/understanding-roles).
|
|
269
272
|
# Corresponds to the JSON property `role`
|
|
270
273
|
# @return [String]
|
|
271
274
|
attr_accessor :role
|
|
@@ -1352,6 +1355,11 @@ module Google
|
|
|
1352
1355
|
class LoadBalancerBackendInfo
|
|
1353
1356
|
include Google::Apis::Core::Hashable
|
|
1354
1357
|
|
|
1358
|
+
# URI of the backend bucket this backend targets (if applicable).
|
|
1359
|
+
# Corresponds to the JSON property `backendBucketUri`
|
|
1360
|
+
# @return [String]
|
|
1361
|
+
attr_accessor :backend_bucket_uri
|
|
1362
|
+
|
|
1355
1363
|
# URI of the backend service this backend belongs to (if applicable).
|
|
1356
1364
|
# Corresponds to the JSON property `backendServiceUri`
|
|
1357
1365
|
# @return [String]
|
|
@@ -1395,12 +1403,23 @@ module Google
|
|
|
1395
1403
|
# @return [String]
|
|
1396
1404
|
attr_accessor :network_endpoint_group_uri
|
|
1397
1405
|
|
|
1406
|
+
# PSC Google API target this PSC NEG backend targets (if applicable).
|
|
1407
|
+
# Corresponds to the JSON property `pscGoogleApiTarget`
|
|
1408
|
+
# @return [String]
|
|
1409
|
+
attr_accessor :psc_google_api_target
|
|
1410
|
+
|
|
1411
|
+
# URI of the PSC service attachment this PSC NEG backend targets (if applicable).
|
|
1412
|
+
# Corresponds to the JSON property `pscServiceAttachmentUri`
|
|
1413
|
+
# @return [String]
|
|
1414
|
+
attr_accessor :psc_service_attachment_uri
|
|
1415
|
+
|
|
1398
1416
|
def initialize(**args)
|
|
1399
1417
|
update!(**args)
|
|
1400
1418
|
end
|
|
1401
1419
|
|
|
1402
1420
|
# Update properties of this object
|
|
1403
1421
|
def update!(**args)
|
|
1422
|
+
@backend_bucket_uri = args[:backend_bucket_uri] if args.key?(:backend_bucket_uri)
|
|
1404
1423
|
@backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
|
|
1405
1424
|
@health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
|
|
1406
1425
|
@health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
|
|
@@ -1408,6 +1427,8 @@ module Google
|
|
|
1408
1427
|
@instance_uri = args[:instance_uri] if args.key?(:instance_uri)
|
|
1409
1428
|
@name = args[:name] if args.key?(:name)
|
|
1410
1429
|
@network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
|
|
1430
|
+
@psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
|
|
1431
|
+
@psc_service_attachment_uri = args[:psc_service_attachment_uri] if args.key?(:psc_service_attachment_uri)
|
|
1411
1432
|
end
|
|
1412
1433
|
end
|
|
1413
1434
|
|
|
@@ -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.40.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 = "20240124"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -687,6 +687,7 @@ module Google
|
|
|
687
687
|
class LoadBalancerBackendInfo
|
|
688
688
|
# @private
|
|
689
689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
690
|
+
property :backend_bucket_uri, as: 'backendBucketUri'
|
|
690
691
|
property :backend_service_uri, as: 'backendServiceUri'
|
|
691
692
|
property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
|
|
692
693
|
property :health_check_uri, as: 'healthCheckUri'
|
|
@@ -694,6 +695,8 @@ module Google
|
|
|
694
695
|
property :instance_uri, as: 'instanceUri'
|
|
695
696
|
property :name, as: 'name'
|
|
696
697
|
property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
|
|
698
|
+
property :psc_google_api_target, as: 'pscGoogleApiTarget'
|
|
699
|
+
property :psc_service_attachment_uri, as: 'pscServiceAttachmentUri'
|
|
697
700
|
end
|
|
698
701
|
end
|
|
699
702
|
|
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.40.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-
|
|
11
|
+
date: 2024-02-04 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.40.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: []
|