google-apis-gkehub_v1 0.26.0 → 0.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '090142f9361b6945043b40e8946e433dfae13302facce53273298810d818b642'
4
- data.tar.gz: 44c88d7dcc78edb237cda4fa332720342c511b7ba3fc99b0a65ba7ec0c005dd8
3
+ metadata.gz: 2fb57fb0553339bdcf7c6ed28a1681ed857e6e7634b9f79e07d6146bb9b13fd7
4
+ data.tar.gz: 349b860bb10a4e5915b6637355f58598d4c8f5f67b5b35b4e4ea590c84d70992
5
5
  SHA512:
6
- metadata.gz: f2abcff232107b53cd18406706dc2be1ba5d42c8db7b314f76a6e0be7f4cd635e7f8b2b2242d2cd0d62e5eb73cd5c37199dd130cbfd9d1bf471327b37c2b6eb2
7
- data.tar.gz: 07f0453e6035b97d9010ce328a67a8c9982091c0377304374707264d0aba1f4478a7fcc15102707f0a7121aee262ad2d869562703708835598767dccd663c9e6
6
+ metadata.gz: 5fdb0fd3fffb3704ff9f59bb1a1471a72b3e7497a131d761e8ba7659b0339eefc3dba5cc54a790458faf1fdd2165274aba9bb43e8e265c91bbe961fe60e57a79
7
+ data.tar.gz: ffaf417f92ac35a80a731381f415c4265be189596fbdc00799d3562dda521a135b75e5ac48757abfc46413defae6210f3c5c3275d769109469ddd357a7c34f24
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.27.0 (2022-05-16)
4
+
5
+ * Regenerated from discovery document revision 20220505
6
+
3
7
  ### v0.26.0 (2022-05-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20220429
@@ -22,6 +22,129 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1
24
24
 
25
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
26
+ # membership/cluster.
27
+ class AnthosVmMembershipSpec
28
+ include Google::Apis::Core::Hashable
29
+
30
+ # List of configurations of the Anthos For VM subfeatures that are to be enabled
31
+ # Corresponds to the JSON property `subfeaturesSpec`
32
+ # @return [Array<Google::Apis::GkehubV1::AnthosVmSubFeatureSpec>]
33
+ attr_accessor :subfeatures_spec
34
+
35
+ def initialize(**args)
36
+ update!(**args)
37
+ end
38
+
39
+ # Update properties of this object
40
+ def update!(**args)
41
+ @subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
42
+ end
43
+ end
44
+
45
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
46
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
47
+ # the desired state.
48
+ class AnthosVmMembershipState
49
+ include Google::Apis::Core::Hashable
50
+
51
+ # LocalControllerState contains the state of the local controller deployed in
52
+ # the cluster.
53
+ # Corresponds to the JSON property `localControllerState`
54
+ # @return [Google::Apis::GkehubV1::LocalControllerState]
55
+ attr_accessor :local_controller_state
56
+
57
+ # List of AnthosVM subfeature states
58
+ # Corresponds to the JSON property `subfeatureState`
59
+ # @return [Array<Google::Apis::GkehubV1::AnthosVmSubFeatureState>]
60
+ attr_accessor :subfeature_state
61
+
62
+ def initialize(**args)
63
+ update!(**args)
64
+ end
65
+
66
+ # Update properties of this object
67
+ def update!(**args)
68
+ @local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
69
+ @subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
70
+ end
71
+ end
72
+
73
+ # AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
74
+ # cluster.
75
+ class AnthosVmSubFeatureSpec
76
+ include Google::Apis::Core::Hashable
77
+
78
+ # Indicates whether the subfeature should be enabled on the cluster or not. If
79
+ # set to true, the subfeature's control plane and resources will be installed in
80
+ # the cluster. If set to false, the oneof spec if present will be ignored and
81
+ # nothing will be installed in the cluster.
82
+ # Corresponds to the JSON property `enabled`
83
+ # @return [Boolean]
84
+ attr_accessor :enabled
85
+ alias_method :enabled?, :enabled
86
+
87
+ # MigrateSpec contains the migrate subfeature configuration.
88
+ # Corresponds to the JSON property `migrateSpec`
89
+ # @return [Google::Apis::GkehubV1::MigrateSpec]
90
+ attr_accessor :migrate_spec
91
+
92
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
93
+ # Corresponds to the JSON property `serviceMeshSpec`
94
+ # @return [Google::Apis::GkehubV1::ServiceMeshSpec]
95
+ attr_accessor :service_mesh_spec
96
+
97
+ def initialize(**args)
98
+ update!(**args)
99
+ end
100
+
101
+ # Update properties of this object
102
+ def update!(**args)
103
+ @enabled = args[:enabled] if args.key?(:enabled)
104
+ @migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
105
+ @service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
106
+ end
107
+ end
108
+
109
+ # AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
110
+ class AnthosVmSubFeatureState
111
+ include Google::Apis::Core::Hashable
112
+
113
+ # Description represents human readable description of the subfeature state. If
114
+ # the deployment failed, this should also contain the reason for the failure.
115
+ # Corresponds to the JSON property `description`
116
+ # @return [String]
117
+ attr_accessor :description
118
+
119
+ # InstallationState represents the state of installation of the subfeature in
120
+ # the cluster.
121
+ # Corresponds to the JSON property `installationState`
122
+ # @return [String]
123
+ attr_accessor :installation_state
124
+
125
+ # MigrateState contains the state of Migrate subfeature
126
+ # Corresponds to the JSON property `migrateState`
127
+ # @return [Google::Apis::GkehubV1::MigrateState]
128
+ attr_accessor :migrate_state
129
+
130
+ # ServiceMeshState contains the state of Service Mesh subfeature
131
+ # Corresponds to the JSON property `serviceMeshState`
132
+ # @return [Google::Apis::GkehubV1::ServiceMeshState]
133
+ attr_accessor :service_mesh_state
134
+
135
+ def initialize(**args)
136
+ update!(**args)
137
+ end
138
+
139
+ # Update properties of this object
140
+ def update!(**args)
141
+ @description = args[:description] if args.key?(:description)
142
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
143
+ @migrate_state = args[:migrate_state] if args.key?(:migrate_state)
144
+ @service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
145
+ end
146
+ end
147
+
25
148
  # Spec for App Dev Experience Feature.
26
149
  class AppDevExperienceFeatureSpec
27
150
  include Google::Apis::Core::Hashable
@@ -1860,6 +1983,34 @@ module Google
1860
1983
  end
1861
1984
  end
1862
1985
 
1986
+ # LocalControllerState contains the state of the local controller deployed in
1987
+ # the cluster.
1988
+ class LocalControllerState
1989
+ include Google::Apis::Core::Hashable
1990
+
1991
+ # Description represents the human readable description of the current state of
1992
+ # the local PE controller
1993
+ # Corresponds to the JSON property `description`
1994
+ # @return [String]
1995
+ attr_accessor :description
1996
+
1997
+ # InstallationState represents the state of deployment of the local PE
1998
+ # controller in the cluster.
1999
+ # Corresponds to the JSON property `installationState`
2000
+ # @return [String]
2001
+ attr_accessor :installation_state
2002
+
2003
+ def initialize(**args)
2004
+ update!(**args)
2005
+ end
2006
+
2007
+ # Update properties of this object
2008
+ def update!(**args)
2009
+ @description = args[:description] if args.key?(:description)
2010
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
2011
+ end
2012
+ end
2013
+
1863
2014
  # A resource that represents Google Cloud Platform location.
1864
2015
  class Location
1865
2016
  include Google::Apis::Core::Hashable
@@ -2068,6 +2219,12 @@ module Google
2068
2219
  class MembershipFeatureSpec
2069
2220
  include Google::Apis::Core::Hashable
2070
2221
 
2222
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
2223
+ # membership/cluster.
2224
+ # Corresponds to the JSON property `anthosvm`
2225
+ # @return [Google::Apis::GkehubV1::AnthosVmMembershipSpec]
2226
+ attr_accessor :anthosvm
2227
+
2071
2228
  # **Anthos Config Management**: Configuration for a single cluster. Intended to
2072
2229
  # parallel the ConfigManagement CR.
2073
2230
  # Corresponds to the JSON property `configmanagement`
@@ -2090,6 +2247,7 @@ module Google
2090
2247
 
2091
2248
  # Update properties of this object
2092
2249
  def update!(**args)
2250
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2093
2251
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2094
2252
  @identityservice = args[:identityservice] if args.key?(:identityservice)
2095
2253
  @mesh = args[:mesh] if args.key?(:mesh)
@@ -2101,6 +2259,13 @@ module Google
2101
2259
  class MembershipFeatureState
2102
2260
  include Google::Apis::Core::Hashable
2103
2261
 
2262
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
2263
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
2264
+ # the desired state.
2265
+ # Corresponds to the JSON property `anthosvm`
2266
+ # @return [Google::Apis::GkehubV1::AnthosVmMembershipState]
2267
+ attr_accessor :anthosvm
2268
+
2104
2269
  # State for App Dev Exp Feature.
2105
2270
  # Corresponds to the JSON property `appdevexperience`
2106
2271
  # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
@@ -2135,6 +2300,7 @@ module Google
2135
2300
 
2136
2301
  # Update properties of this object
2137
2302
  def update!(**args)
2303
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2138
2304
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
2139
2305
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2140
2306
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2162,6 +2328,32 @@ module Google
2162
2328
  end
2163
2329
  end
2164
2330
 
2331
+ # MigrateSpec contains the migrate subfeature configuration.
2332
+ class MigrateSpec
2333
+ include Google::Apis::Core::Hashable
2334
+
2335
+ def initialize(**args)
2336
+ update!(**args)
2337
+ end
2338
+
2339
+ # Update properties of this object
2340
+ def update!(**args)
2341
+ end
2342
+ end
2343
+
2344
+ # MigrateState contains the state of Migrate subfeature
2345
+ class MigrateState
2346
+ include Google::Apis::Core::Hashable
2347
+
2348
+ def initialize(**args)
2349
+ update!(**args)
2350
+ end
2351
+
2352
+ # Update properties of this object
2353
+ def update!(**args)
2354
+ end
2355
+ end
2356
+
2165
2357
  # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
2166
2358
  class MultiCloudCluster
2167
2359
  include Google::Apis::Core::Hashable
@@ -2597,6 +2789,32 @@ module Google
2597
2789
  end
2598
2790
  end
2599
2791
 
2792
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
2793
+ class ServiceMeshSpec
2794
+ include Google::Apis::Core::Hashable
2795
+
2796
+ def initialize(**args)
2797
+ update!(**args)
2798
+ end
2799
+
2800
+ # Update properties of this object
2801
+ def update!(**args)
2802
+ end
2803
+ end
2804
+
2805
+ # ServiceMeshState contains the state of Service Mesh subfeature
2806
+ class ServiceMeshState
2807
+ include Google::Apis::Core::Hashable
2808
+
2809
+ def initialize(**args)
2810
+ update!(**args)
2811
+ end
2812
+
2813
+ # Update properties of this object
2814
+ def update!(**args)
2815
+ end
2816
+ end
2817
+
2600
2818
  # Structured and human-readable details for a status.
2601
2819
  class ServiceMeshStatusDetails
2602
2820
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220429"
25
+ REVISION = "20220505"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,30 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1
24
24
 
25
+ class AnthosVmMembershipSpec
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AnthosVmMembershipState
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class AnthosVmSubFeatureSpec
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class AnthosVmSubFeatureState
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
25
49
  class AppDevExperienceFeatureSpec
26
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
51
 
@@ -322,6 +346,12 @@ module Google
322
346
  include Google::Apis::Core::JsonObjectSupport
323
347
  end
324
348
 
349
+ class LocalControllerState
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
325
355
  class Location
326
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
357
 
@@ -358,6 +388,18 @@ module Google
358
388
  include Google::Apis::Core::JsonObjectSupport
359
389
  end
360
390
 
391
+ class MigrateSpec
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
397
+ class MigrateState
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
361
403
  class MultiCloudCluster
362
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
405
 
@@ -424,6 +466,18 @@ module Google
424
466
  include Google::Apis::Core::JsonObjectSupport
425
467
  end
426
468
 
469
+ class ServiceMeshSpec
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class ServiceMeshState
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
427
481
  class ServiceMeshStatusDetails
428
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
429
483
 
@@ -460,6 +514,47 @@ module Google
460
514
  include Google::Apis::Core::JsonObjectSupport
461
515
  end
462
516
 
517
+ class AnthosVmMembershipSpec
518
+ # @private
519
+ class Representation < Google::Apis::Core::JsonRepresentation
520
+ collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec::Representation
521
+
522
+ end
523
+ end
524
+
525
+ class AnthosVmMembershipState
526
+ # @private
527
+ class Representation < Google::Apis::Core::JsonRepresentation
528
+ property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1::LocalControllerState, decorator: Google::Apis::GkehubV1::LocalControllerState::Representation
529
+
530
+ collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureState::Representation
531
+
532
+ end
533
+ end
534
+
535
+ class AnthosVmSubFeatureSpec
536
+ # @private
537
+ class Representation < Google::Apis::Core::JsonRepresentation
538
+ property :enabled, as: 'enabled'
539
+ property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1::MigrateSpec, decorator: Google::Apis::GkehubV1::MigrateSpec::Representation
540
+
541
+ property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1::ServiceMeshSpec, decorator: Google::Apis::GkehubV1::ServiceMeshSpec::Representation
542
+
543
+ end
544
+ end
545
+
546
+ class AnthosVmSubFeatureState
547
+ # @private
548
+ class Representation < Google::Apis::Core::JsonRepresentation
549
+ property :description, as: 'description'
550
+ property :installation_state, as: 'installationState'
551
+ property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1::MigrateState, decorator: Google::Apis::GkehubV1::MigrateState::Representation
552
+
553
+ property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1::ServiceMeshState, decorator: Google::Apis::GkehubV1::ServiceMeshState::Representation
554
+
555
+ end
556
+ end
557
+
463
558
  class AppDevExperienceFeatureSpec
464
559
  # @private
465
560
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -967,6 +1062,14 @@ module Google
967
1062
  end
968
1063
  end
969
1064
 
1065
+ class LocalControllerState
1066
+ # @private
1067
+ class Representation < Google::Apis::Core::JsonRepresentation
1068
+ property :description, as: 'description'
1069
+ property :installation_state, as: 'installationState'
1070
+ end
1071
+ end
1072
+
970
1073
  class Location
971
1074
  # @private
972
1075
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1020,6 +1123,8 @@ module Google
1020
1123
  class MembershipFeatureSpec
1021
1124
  # @private
1022
1125
  class Representation < Google::Apis::Core::JsonRepresentation
1126
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1::AnthosVmMembershipSpec::Representation
1127
+
1023
1128
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
1024
1129
 
1025
1130
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
@@ -1032,6 +1137,8 @@ module Google
1032
1137
  class MembershipFeatureState
1033
1138
  # @private
1034
1139
  class Representation < Google::Apis::Core::JsonRepresentation
1140
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1::AnthosVmMembershipState::Representation
1141
+
1035
1142
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
1036
1143
 
1037
1144
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
@@ -1052,6 +1159,18 @@ module Google
1052
1159
  end
1053
1160
  end
1054
1161
 
1162
+ class MigrateSpec
1163
+ # @private
1164
+ class Representation < Google::Apis::Core::JsonRepresentation
1165
+ end
1166
+ end
1167
+
1168
+ class MigrateState
1169
+ # @private
1170
+ class Representation < Google::Apis::Core::JsonRepresentation
1171
+ end
1172
+ end
1173
+
1055
1174
  class MultiCloudCluster
1056
1175
  # @private
1057
1176
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1154,6 +1273,18 @@ module Google
1154
1273
  end
1155
1274
  end
1156
1275
 
1276
+ class ServiceMeshSpec
1277
+ # @private
1278
+ class Representation < Google::Apis::Core::JsonRepresentation
1279
+ end
1280
+ end
1281
+
1282
+ class ServiceMeshState
1283
+ # @private
1284
+ class Representation < Google::Apis::Core::JsonRepresentation
1285
+ end
1286
+ end
1287
+
1157
1288
  class ServiceMeshStatusDetails
1158
1289
  # @private
1159
1290
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -253,8 +253,9 @@ module Google
253
253
  # Gets the access control policy for a resource. Returns an empty policy if the
254
254
  # resource exists and does not have a policy set.
255
255
  # @param [String] resource
256
- # REQUIRED: The resource for which the policy is being requested. See the
257
- # operation documentation for the appropriate value for this field.
256
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
257
+ # names](https://cloud.google.com/apis/design/resource_names) for the
258
+ # appropriate value for this field.
258
259
  # @param [Fixnum] options_requested_policy_version
259
260
  # Optional. The maximum policy version that will be used to format the policy.
260
261
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -398,8 +399,9 @@ module Google
398
399
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
399
400
  # PERMISSION_DENIED` errors.
400
401
  # @param [String] resource
401
- # REQUIRED: The resource for which the policy is being specified. See the
402
- # operation documentation for the appropriate value for this field.
402
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
403
+ # names](https://cloud.google.com/apis/design/resource_names) for the
404
+ # appropriate value for this field.
403
405
  # @param [Google::Apis::GkehubV1::SetIamPolicyRequest] set_iam_policy_request_object
404
406
  # @param [String] fields
405
407
  # Selector specifying which fields to include in a partial response.
@@ -436,8 +438,9 @@ module Google
436
438
  # permission-aware UIs and command-line tools, not for authorization checking.
437
439
  # This operation may "fail open" without warning.
438
440
  # @param [String] resource
439
- # REQUIRED: The resource for which the policy detail is being requested. See the
440
- # operation documentation for the appropriate value for this field.
441
+ # REQUIRED: The resource for which the policy detail is being requested. See [
442
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
443
+ # appropriate value for this field.
441
444
  # @param [Google::Apis::GkehubV1::TestIamPermissionsRequest] test_iam_permissions_request_object
442
445
  # @param [String] fields
443
446
  # Selector specifying which fields to include in a partial response.
@@ -665,8 +668,9 @@ module Google
665
668
  # Gets the access control policy for a resource. Returns an empty policy if the
666
669
  # resource exists and does not have a policy set.
667
670
  # @param [String] resource
668
- # REQUIRED: The resource for which the policy is being requested. See the
669
- # operation documentation for the appropriate value for this field.
671
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
672
+ # names](https://cloud.google.com/apis/design/resource_names) for the
673
+ # appropriate value for this field.
670
674
  # @param [Fixnum] options_requested_policy_version
671
675
  # Optional. The maximum policy version that will be used to format the policy.
672
676
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -811,8 +815,9 @@ module Google
811
815
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
812
816
  # PERMISSION_DENIED` errors.
813
817
  # @param [String] resource
814
- # REQUIRED: The resource for which the policy is being specified. See the
815
- # operation documentation for the appropriate value for this field.
818
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
819
+ # names](https://cloud.google.com/apis/design/resource_names) for the
820
+ # appropriate value for this field.
816
821
  # @param [Google::Apis::GkehubV1::SetIamPolicyRequest] set_iam_policy_request_object
817
822
  # @param [String] fields
818
823
  # Selector specifying which fields to include in a partial response.
@@ -849,8 +854,9 @@ module Google
849
854
  # permission-aware UIs and command-line tools, not for authorization checking.
850
855
  # This operation may "fail open" without warning.
851
856
  # @param [String] resource
852
- # REQUIRED: The resource for which the policy detail is being requested. See the
853
- # operation documentation for the appropriate value for this field.
857
+ # REQUIRED: The resource for which the policy detail is being requested. See [
858
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
859
+ # appropriate value for this field.
854
860
  # @param [Google::Apis::GkehubV1::TestIamPermissionsRequest] test_iam_permissions_request_object
855
861
  # @param [String] fields
856
862
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2022-05-23 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []