google-apis-gkehub_v1beta 0.75.0 → 0.76.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: e2034937028f9eb76a9c339bd60900d7f8ee69ed761ab89dbf206efbc37dcfb4
|
|
4
|
+
data.tar.gz: 99a786074b1fdc8f3be40580e92764a51df88455c82b947f301e42c2fb5a937e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c19cbc56232c0fe79e7b061bdc9fbf4ec91c33b27b61db5b0bfa4ecaff59d5bc4ef7f8baab6ba14e838cd6ebbd5746df3dc72cd7e3d7924035375458310ece33
|
|
7
|
+
data.tar.gz: a4c7848ba7034fc10bd4f0baf6042868c44ed2883afce8381dd73db22911047929c06667f72c435adf81be804a450428802181df10cff8c1838098441ed76079
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.76.0 (2024-05-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240511
|
|
6
|
+
* Regenerated using generator version 0.15.0
|
|
7
|
+
|
|
3
8
|
### v0.75.0 (2024-05-05)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240428
|
|
@@ -3550,6 +3550,11 @@ module Google
|
|
|
3550
3550
|
# @return [String]
|
|
3551
3551
|
attr_accessor :next_page_token
|
|
3552
3552
|
|
|
3553
|
+
# List of locations that could not be reached while fetching this list.
|
|
3554
|
+
# Corresponds to the JSON property `unreachable`
|
|
3555
|
+
# @return [Array<String>]
|
|
3556
|
+
attr_accessor :unreachable
|
|
3557
|
+
|
|
3553
3558
|
def initialize(**args)
|
|
3554
3559
|
update!(**args)
|
|
3555
3560
|
end
|
|
@@ -3558,6 +3563,7 @@ module Google
|
|
|
3558
3563
|
def update!(**args)
|
|
3559
3564
|
@membership_bindings = args[:membership_bindings] if args.key?(:membership_bindings)
|
|
3560
3565
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3566
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3561
3567
|
end
|
|
3562
3568
|
end
|
|
3563
3569
|
|
|
@@ -3577,6 +3583,11 @@ module Google
|
|
|
3577
3583
|
# @return [Array<Google::Apis::GkehubV1beta::RbacRoleBinding>]
|
|
3578
3584
|
attr_accessor :rbacrolebindings
|
|
3579
3585
|
|
|
3586
|
+
# List of locations that could not be reached while fetching this list.
|
|
3587
|
+
# Corresponds to the JSON property `unreachable`
|
|
3588
|
+
# @return [Array<String>]
|
|
3589
|
+
attr_accessor :unreachable
|
|
3590
|
+
|
|
3580
3591
|
def initialize(**args)
|
|
3581
3592
|
update!(**args)
|
|
3582
3593
|
end
|
|
@@ -3585,6 +3596,7 @@ module Google
|
|
|
3585
3596
|
def update!(**args)
|
|
3586
3597
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3587
3598
|
@rbacrolebindings = args[:rbacrolebindings] if args.key?(:rbacrolebindings)
|
|
3599
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3588
3600
|
end
|
|
3589
3601
|
end
|
|
3590
3602
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module GkehubV1beta
|
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.76.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240511"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2006,6 +2006,7 @@ module Google
|
|
|
2006
2006
|
collection :membership_bindings, as: 'membershipBindings', class: Google::Apis::GkehubV1beta::MembershipBinding, decorator: Google::Apis::GkehubV1beta::MembershipBinding::Representation
|
|
2007
2007
|
|
|
2008
2008
|
property :next_page_token, as: 'nextPageToken'
|
|
2009
|
+
collection :unreachable, as: 'unreachable'
|
|
2009
2010
|
end
|
|
2010
2011
|
end
|
|
2011
2012
|
|
|
@@ -2015,6 +2016,7 @@ module Google
|
|
|
2015
2016
|
property :next_page_token, as: 'nextPageToken'
|
|
2016
2017
|
collection :rbacrolebindings, as: 'rbacrolebindings', class: Google::Apis::GkehubV1beta::RbacRoleBinding, decorator: Google::Apis::GkehubV1beta::RbacRoleBinding::Representation
|
|
2017
2018
|
|
|
2019
|
+
collection :unreachable, as: 'unreachable'
|
|
2018
2020
|
end
|
|
2019
2021
|
end
|
|
2020
2022
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-gkehub_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.76.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-05-
|
|
11
|
+
date: 2024-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.15.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.15.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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-gkehub_v1beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.76.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|