google-apis-gkehub_v1beta 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: 711e1bcf32d9719f3d7586500ef11655a9c339127d07471deaff29b17f384cb8
|
4
|
+
data.tar.gz: 4703ff3b4158f96deef311c4a937e308cbbcf27e097cf93e0a24f260b19aaf25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0140d11794323e115ca1cb8870cb0316e3e5777e81f8feeb0c732959e07a0f5a8de7c90c3ad6d5cfd8e6012f79c3544debf0b9ee859b5eccda7d12db258749c9
|
7
|
+
data.tar.gz: f19da1f37cb121e51434fac1003288bccf963803457d0048367f45352569f0b39e8c35c2ec89dbdfa095323e6687958916ec2843c5fbaef8d2ddb17bd64b7b70
|
data/CHANGELOG.md
CHANGED
@@ -340,6 +340,26 @@ module Google
|
|
340
340
|
end
|
341
341
|
end
|
342
342
|
|
343
|
+
# CommonFleetDefaultMemberConfigSpec contains default configuration information
|
344
|
+
# for memberships of a fleet
|
345
|
+
class CommonFleetDefaultMemberConfigSpec
|
346
|
+
include Google::Apis::Core::Hashable
|
347
|
+
|
348
|
+
# **Anthos Identity Service**: Configuration for a single Membership.
|
349
|
+
# Corresponds to the JSON property `identityservice`
|
350
|
+
# @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
|
351
|
+
attr_accessor :identityservice
|
352
|
+
|
353
|
+
def initialize(**args)
|
354
|
+
update!(**args)
|
355
|
+
end
|
356
|
+
|
357
|
+
# Update properties of this object
|
358
|
+
def update!(**args)
|
359
|
+
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
343
363
|
# Configuration for Binauthz
|
344
364
|
class ConfigManagementBinauthzConfig
|
345
365
|
include Google::Apis::Core::Hashable
|
@@ -1391,6 +1411,12 @@ module Google
|
|
1391
1411
|
# @return [String]
|
1392
1412
|
attr_accessor :delete_time
|
1393
1413
|
|
1414
|
+
# CommonFleetDefaultMemberConfigSpec contains default configuration information
|
1415
|
+
# for memberships of a fleet
|
1416
|
+
# Corresponds to the JSON property `fleetDefaultMemberConfig`
|
1417
|
+
# @return [Google::Apis::GkehubV1beta::CommonFleetDefaultMemberConfigSpec]
|
1418
|
+
attr_accessor :fleet_default_member_config
|
1419
|
+
|
1394
1420
|
# GCP labels for this Feature.
|
1395
1421
|
# Corresponds to the JSON property `labels`
|
1396
1422
|
# @return [Hash<String,String>]
|
@@ -1480,6 +1506,7 @@ module Google
|
|
1480
1506
|
def update!(**args)
|
1481
1507
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1482
1508
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1509
|
+
@fleet_default_member_config = args[:fleet_default_member_config] if args.key?(:fleet_default_member_config)
|
1483
1510
|
@labels = args[:labels] if args.key?(:labels)
|
1484
1511
|
@membership_specs = args[:membership_specs] if args.key?(:membership_specs)
|
1485
1512
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
@@ -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.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230119"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,12 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class CommonFleetDefaultMemberConfigSpec
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
85
91
|
class ConfigManagementBinauthzConfig
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
93
|
|
@@ -610,6 +616,14 @@ module Google
|
|
610
616
|
end
|
611
617
|
end
|
612
618
|
|
619
|
+
class CommonFleetDefaultMemberConfigSpec
|
620
|
+
# @private
|
621
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
622
|
+
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
|
623
|
+
|
624
|
+
end
|
625
|
+
end
|
626
|
+
|
613
627
|
class ConfigManagementBinauthzConfig
|
614
628
|
# @private
|
615
629
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -909,6 +923,8 @@ module Google
|
|
909
923
|
class Representation < Google::Apis::Core::JsonRepresentation
|
910
924
|
property :create_time, as: 'createTime'
|
911
925
|
property :delete_time, as: 'deleteTime'
|
926
|
+
property :fleet_default_member_config, as: 'fleetDefaultMemberConfig', class: Google::Apis::GkehubV1beta::CommonFleetDefaultMemberConfigSpec, decorator: Google::Apis::GkehubV1beta::CommonFleetDefaultMemberConfigSpec::Representation
|
927
|
+
|
912
928
|
hash :labels, as: 'labels'
|
913
929
|
hash :membership_specs, as: 'membershipSpecs', class: Google::Apis::GkehubV1beta::MembershipFeatureSpec, decorator: Google::Apis::GkehubV1beta::MembershipFeatureSpec::Representation
|
914
930
|
|
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.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: 2023-01-
|
11
|
+
date: 2023-01-29 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-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.38.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: []
|