google-apis-gkehub_v1alpha 0.28.0 → 0.29.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: cd152a99ba6594975332fecaf39972379dcff0ca3027d8cd168fbfdfb7ab94f4
4
- data.tar.gz: d76b5e2d28b8f2a48caa9283bdf24a0bb7ecfbf41bfdc4edada9054e99937580
3
+ metadata.gz: 232c9f76149741fb56a933c296b31f08365e8cba5cf099425c574565be0ef2c7
4
+ data.tar.gz: f3f341277a7ab0a1acbb70d7e00bf4e1f7f3252a8947febb784e9cc8af1a682a
5
5
  SHA512:
6
- metadata.gz: 430181cfa8fe1010e4bbf66c070953bf35f4984fa87c3035851e816a70f99ff01279754dbcc27d3b51468f2b82701ceae405b25767bc61169a6264fa7822d4db
7
- data.tar.gz: 39d2fbc966a36eef55a30238964e6aaf5c7ade43a009645f69551d68b1aa5011d4c7db7be5e45cf795d1235d63b8753094649646ff4234712a3e95f5309b8c3b
6
+ metadata.gz: cb07ca2bc0d1ffa96cd91d4961ed570b6ca174f132bc1bf7aee5ccbfb4ab3263828d91e4fd74ef181eb0c2dc4b4e11db5d0e4067015db53381ff5402543ecd59
7
+ data.tar.gz: de346d24ea5f6f10296f19bda564b95709df153576925583a0ae67983d070e718e4961591ff815689cfd22f531e6928e7b3b41d1e1674910a9be57c774f991b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.29.0 (2022-05-16)
4
+
5
+ * Regenerated from discovery document revision 20220505
6
+
3
7
  ### v0.28.0 (2022-05-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20220429
@@ -77,6 +77,129 @@ module Google
77
77
  end
78
78
  end
79
79
 
80
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
81
+ # membership/cluster.
82
+ class AnthosVmMembershipSpec
83
+ include Google::Apis::Core::Hashable
84
+
85
+ # List of configurations of the Anthos For VM subfeatures that are to be enabled
86
+ # Corresponds to the JSON property `subfeaturesSpec`
87
+ # @return [Array<Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec>]
88
+ attr_accessor :subfeatures_spec
89
+
90
+ def initialize(**args)
91
+ update!(**args)
92
+ end
93
+
94
+ # Update properties of this object
95
+ def update!(**args)
96
+ @subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
97
+ end
98
+ end
99
+
100
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
101
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
102
+ # the desired state.
103
+ class AnthosVmMembershipState
104
+ include Google::Apis::Core::Hashable
105
+
106
+ # LocalControllerState contains the state of the local controller deployed in
107
+ # the cluster.
108
+ # Corresponds to the JSON property `localControllerState`
109
+ # @return [Google::Apis::GkehubV1alpha::LocalControllerState]
110
+ attr_accessor :local_controller_state
111
+
112
+ # List of AnthosVM subfeature states
113
+ # Corresponds to the JSON property `subfeatureState`
114
+ # @return [Array<Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState>]
115
+ attr_accessor :subfeature_state
116
+
117
+ def initialize(**args)
118
+ update!(**args)
119
+ end
120
+
121
+ # Update properties of this object
122
+ def update!(**args)
123
+ @local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
124
+ @subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
125
+ end
126
+ end
127
+
128
+ # AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
129
+ # cluster.
130
+ class AnthosVmSubFeatureSpec
131
+ include Google::Apis::Core::Hashable
132
+
133
+ # Indicates whether the subfeature should be enabled on the cluster or not. If
134
+ # set to true, the subfeature's control plane and resources will be installed in
135
+ # the cluster. If set to false, the oneof spec if present will be ignored and
136
+ # nothing will be installed in the cluster.
137
+ # Corresponds to the JSON property `enabled`
138
+ # @return [Boolean]
139
+ attr_accessor :enabled
140
+ alias_method :enabled?, :enabled
141
+
142
+ # MigrateSpec contains the migrate subfeature configuration.
143
+ # Corresponds to the JSON property `migrateSpec`
144
+ # @return [Google::Apis::GkehubV1alpha::MigrateSpec]
145
+ attr_accessor :migrate_spec
146
+
147
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
148
+ # Corresponds to the JSON property `serviceMeshSpec`
149
+ # @return [Google::Apis::GkehubV1alpha::ServiceMeshSpec]
150
+ attr_accessor :service_mesh_spec
151
+
152
+ def initialize(**args)
153
+ update!(**args)
154
+ end
155
+
156
+ # Update properties of this object
157
+ def update!(**args)
158
+ @enabled = args[:enabled] if args.key?(:enabled)
159
+ @migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
160
+ @service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
161
+ end
162
+ end
163
+
164
+ # AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
165
+ class AnthosVmSubFeatureState
166
+ include Google::Apis::Core::Hashable
167
+
168
+ # Description represents human readable description of the subfeature state. If
169
+ # the deployment failed, this should also contain the reason for the failure.
170
+ # Corresponds to the JSON property `description`
171
+ # @return [String]
172
+ attr_accessor :description
173
+
174
+ # InstallationState represents the state of installation of the subfeature in
175
+ # the cluster.
176
+ # Corresponds to the JSON property `installationState`
177
+ # @return [String]
178
+ attr_accessor :installation_state
179
+
180
+ # MigrateState contains the state of Migrate subfeature
181
+ # Corresponds to the JSON property `migrateState`
182
+ # @return [Google::Apis::GkehubV1alpha::MigrateState]
183
+ attr_accessor :migrate_state
184
+
185
+ # ServiceMeshState contains the state of Service Mesh subfeature
186
+ # Corresponds to the JSON property `serviceMeshState`
187
+ # @return [Google::Apis::GkehubV1alpha::ServiceMeshState]
188
+ attr_accessor :service_mesh_state
189
+
190
+ def initialize(**args)
191
+ update!(**args)
192
+ end
193
+
194
+ # Update properties of this object
195
+ def update!(**args)
196
+ @description = args[:description] if args.key?(:description)
197
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
198
+ @migrate_state = args[:migrate_state] if args.key?(:migrate_state)
199
+ @service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
200
+ end
201
+ end
202
+
80
203
  # Spec for App Dev Experience Feature.
81
204
  class AppDevExperienceFeatureSpec
82
205
  include Google::Apis::Core::Hashable
@@ -2238,6 +2361,34 @@ module Google
2238
2361
  end
2239
2362
  end
2240
2363
 
2364
+ # LocalControllerState contains the state of the local controller deployed in
2365
+ # the cluster.
2366
+ class LocalControllerState
2367
+ include Google::Apis::Core::Hashable
2368
+
2369
+ # Description represents the human readable description of the current state of
2370
+ # the local PE controller
2371
+ # Corresponds to the JSON property `description`
2372
+ # @return [String]
2373
+ attr_accessor :description
2374
+
2375
+ # InstallationState represents the state of deployment of the local PE
2376
+ # controller in the cluster.
2377
+ # Corresponds to the JSON property `installationState`
2378
+ # @return [String]
2379
+ attr_accessor :installation_state
2380
+
2381
+ def initialize(**args)
2382
+ update!(**args)
2383
+ end
2384
+
2385
+ # Update properties of this object
2386
+ def update!(**args)
2387
+ @description = args[:description] if args.key?(:description)
2388
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
2389
+ end
2390
+ end
2391
+
2241
2392
  # A resource that represents Google Cloud Platform location.
2242
2393
  class Location
2243
2394
  include Google::Apis::Core::Hashable
@@ -2451,6 +2602,12 @@ module Google
2451
2602
  # @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
2452
2603
  attr_accessor :anthosobservability
2453
2604
 
2605
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
2606
+ # membership/cluster.
2607
+ # Corresponds to the JSON property `anthosvm`
2608
+ # @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec]
2609
+ attr_accessor :anthosvm
2610
+
2454
2611
  # **Cloud Build**: Configurations for each Cloud Build enabled cluster.
2455
2612
  # Corresponds to the JSON property `cloudbuild`
2456
2613
  # @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
@@ -2491,6 +2648,7 @@ module Google
2491
2648
  # Update properties of this object
2492
2649
  def update!(**args)
2493
2650
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
2651
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2494
2652
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
2495
2653
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2496
2654
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2505,6 +2663,13 @@ module Google
2505
2663
  class MembershipFeatureState
2506
2664
  include Google::Apis::Core::Hashable
2507
2665
 
2666
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
2667
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
2668
+ # the desired state.
2669
+ # Corresponds to the JSON property `anthosvm`
2670
+ # @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipState]
2671
+ attr_accessor :anthosvm
2672
+
2508
2673
  # State for App Dev Exp Feature.
2509
2674
  # Corresponds to the JSON property `appdevexperience`
2510
2675
  # @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
@@ -2549,6 +2714,7 @@ module Google
2549
2714
 
2550
2715
  # Update properties of this object
2551
2716
  def update!(**args)
2717
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2552
2718
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
2553
2719
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2554
2720
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2625,6 +2791,32 @@ module Google
2625
2791
  end
2626
2792
  end
2627
2793
 
2794
+ # MigrateSpec contains the migrate subfeature configuration.
2795
+ class MigrateSpec
2796
+ include Google::Apis::Core::Hashable
2797
+
2798
+ def initialize(**args)
2799
+ update!(**args)
2800
+ end
2801
+
2802
+ # Update properties of this object
2803
+ def update!(**args)
2804
+ end
2805
+ end
2806
+
2807
+ # MigrateState contains the state of Migrate subfeature
2808
+ class MigrateState
2809
+ include Google::Apis::Core::Hashable
2810
+
2811
+ def initialize(**args)
2812
+ update!(**args)
2813
+ end
2814
+
2815
+ # Update properties of this object
2816
+ def update!(**args)
2817
+ end
2818
+ end
2819
+
2628
2820
  # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
2629
2821
  class MultiCloudCluster
2630
2822
  include Google::Apis::Core::Hashable
@@ -3387,6 +3579,32 @@ module Google
3387
3579
  end
3388
3580
  end
3389
3581
 
3582
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
3583
+ class ServiceMeshSpec
3584
+ include Google::Apis::Core::Hashable
3585
+
3586
+ def initialize(**args)
3587
+ update!(**args)
3588
+ end
3589
+
3590
+ # Update properties of this object
3591
+ def update!(**args)
3592
+ end
3593
+ end
3594
+
3595
+ # ServiceMeshState contains the state of Service Mesh subfeature
3596
+ class ServiceMeshState
3597
+ include Google::Apis::Core::Hashable
3598
+
3599
+ def initialize(**args)
3600
+ update!(**args)
3601
+ end
3602
+
3603
+ # Update properties of this object
3604
+ def update!(**args)
3605
+ end
3606
+ end
3607
+
3390
3608
  # Structured and human-readable details for a status.
3391
3609
  class ServiceMeshStatusDetails
3392
3610
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.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
@@ -34,6 +34,30 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class AnthosVmMembershipSpec
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class AnthosVmMembershipState
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class AnthosVmSubFeatureSpec
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class AnthosVmSubFeatureState
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
37
61
  class AppDevExperienceFeatureSpec
38
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
63
 
@@ -388,6 +412,12 @@ module Google
388
412
  include Google::Apis::Core::JsonObjectSupport
389
413
  end
390
414
 
415
+ class LocalControllerState
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
391
421
  class Location
392
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
423
 
@@ -436,6 +466,18 @@ module Google
436
466
  include Google::Apis::Core::JsonObjectSupport
437
467
  end
438
468
 
469
+ class MigrateSpec
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class MigrateState
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
439
481
  class MultiCloudCluster
440
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
441
483
 
@@ -556,6 +598,18 @@ module Google
556
598
  include Google::Apis::Core::JsonObjectSupport
557
599
  end
558
600
 
601
+ class ServiceMeshSpec
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
607
+ class ServiceMeshState
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
559
613
  class ServiceMeshStatusDetails
560
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
615
 
@@ -615,6 +669,47 @@ module Google
615
669
  end
616
670
  end
617
671
 
672
+ class AnthosVmMembershipSpec
673
+ # @private
674
+ class Representation < Google::Apis::Core::JsonRepresentation
675
+ collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec::Representation
676
+
677
+ end
678
+ end
679
+
680
+ class AnthosVmMembershipState
681
+ # @private
682
+ class Representation < Google::Apis::Core::JsonRepresentation
683
+ property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1alpha::LocalControllerState, decorator: Google::Apis::GkehubV1alpha::LocalControllerState::Representation
684
+
685
+ collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState::Representation
686
+
687
+ end
688
+ end
689
+
690
+ class AnthosVmSubFeatureSpec
691
+ # @private
692
+ class Representation < Google::Apis::Core::JsonRepresentation
693
+ property :enabled, as: 'enabled'
694
+ property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1alpha::MigrateSpec, decorator: Google::Apis::GkehubV1alpha::MigrateSpec::Representation
695
+
696
+ property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1alpha::ServiceMeshSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshSpec::Representation
697
+
698
+ end
699
+ end
700
+
701
+ class AnthosVmSubFeatureState
702
+ # @private
703
+ class Representation < Google::Apis::Core::JsonRepresentation
704
+ property :description, as: 'description'
705
+ property :installation_state, as: 'installationState'
706
+ property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1alpha::MigrateState, decorator: Google::Apis::GkehubV1alpha::MigrateState::Representation
707
+
708
+ property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1alpha::ServiceMeshState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshState::Representation
709
+
710
+ end
711
+ end
712
+
618
713
  class AppDevExperienceFeatureSpec
619
714
  # @private
620
715
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1216,6 +1311,14 @@ module Google
1216
1311
  end
1217
1312
  end
1218
1313
 
1314
+ class LocalControllerState
1315
+ # @private
1316
+ class Representation < Google::Apis::Core::JsonRepresentation
1317
+ property :description, as: 'description'
1318
+ property :installation_state, as: 'installationState'
1319
+ end
1320
+ end
1321
+
1219
1322
  class Location
1220
1323
  # @private
1221
1324
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1271,6 +1374,8 @@ module Google
1271
1374
  class Representation < Google::Apis::Core::JsonRepresentation
1272
1375
  property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
1273
1376
 
1377
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec::Representation
1378
+
1274
1379
  property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
1275
1380
 
1276
1381
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
@@ -1289,6 +1394,8 @@ module Google
1289
1394
  class MembershipFeatureState
1290
1395
  # @private
1291
1396
  class Representation < Google::Apis::Core::JsonRepresentation
1397
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipState::Representation
1398
+
1292
1399
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
1293
1400
 
1294
1401
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
@@ -1328,6 +1435,18 @@ module Google
1328
1435
  end
1329
1436
  end
1330
1437
 
1438
+ class MigrateSpec
1439
+ # @private
1440
+ class Representation < Google::Apis::Core::JsonRepresentation
1441
+ end
1442
+ end
1443
+
1444
+ class MigrateState
1445
+ # @private
1446
+ class Representation < Google::Apis::Core::JsonRepresentation
1447
+ end
1448
+ end
1449
+
1331
1450
  class MultiCloudCluster
1332
1451
  # @private
1333
1452
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1522,6 +1641,18 @@ module Google
1522
1641
  end
1523
1642
  end
1524
1643
 
1644
+ class ServiceMeshSpec
1645
+ # @private
1646
+ class Representation < Google::Apis::Core::JsonRepresentation
1647
+ end
1648
+ end
1649
+
1650
+ class ServiceMeshState
1651
+ # @private
1652
+ class Representation < Google::Apis::Core::JsonRepresentation
1653
+ end
1654
+ end
1655
+
1525
1656
  class ServiceMeshStatusDetails
1526
1657
  # @private
1527
1658
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -295,8 +295,9 @@ module Google
295
295
  # Gets the access control policy for a resource. Returns an empty policy if the
296
296
  # resource exists and does not have a policy set.
297
297
  # @param [String] resource
298
- # REQUIRED: The resource for which the policy is being requested. See the
299
- # operation documentation for the appropriate value for this field.
298
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
299
+ # names](https://cloud.google.com/apis/design/resource_names) for the
300
+ # appropriate value for this field.
300
301
  # @param [Fixnum] options_requested_policy_version
301
302
  # Optional. The maximum policy version that will be used to format the policy.
302
303
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -440,8 +441,9 @@ module Google
440
441
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
441
442
  # PERMISSION_DENIED` errors.
442
443
  # @param [String] resource
443
- # REQUIRED: The resource for which the policy is being specified. See the
444
- # operation documentation for the appropriate value for this field.
444
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
445
+ # names](https://cloud.google.com/apis/design/resource_names) for the
446
+ # appropriate value for this field.
445
447
  # @param [Google::Apis::GkehubV1alpha::SetIamPolicyRequest] set_iam_policy_request_object
446
448
  # @param [String] fields
447
449
  # Selector specifying which fields to include in a partial response.
@@ -478,8 +480,9 @@ module Google
478
480
  # permission-aware UIs and command-line tools, not for authorization checking.
479
481
  # This operation may "fail open" without warning.
480
482
  # @param [String] resource
481
- # REQUIRED: The resource for which the policy detail is being requested. See the
482
- # operation documentation for the appropriate value for this field.
483
+ # REQUIRED: The resource for which the policy detail is being requested. See [
484
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
485
+ # appropriate value for this field.
483
486
  # @param [Google::Apis::GkehubV1alpha::TestIamPermissionsRequest] test_iam_permissions_request_object
484
487
  # @param [String] fields
485
488
  # Selector specifying which fields to include in a partial response.
@@ -883,8 +886,9 @@ module Google
883
886
  # Gets the access control policy for a resource. Returns an empty policy if the
884
887
  # resource exists and does not have a policy set.
885
888
  # @param [String] resource
886
- # REQUIRED: The resource for which the policy is being requested. See the
887
- # operation documentation for the appropriate value for this field.
889
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
890
+ # names](https://cloud.google.com/apis/design/resource_names) for the
891
+ # appropriate value for this field.
888
892
  # @param [Fixnum] options_requested_policy_version
889
893
  # Optional. The maximum policy version that will be used to format the policy.
890
894
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -1078,8 +1082,9 @@ module Google
1078
1082
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
1079
1083
  # PERMISSION_DENIED` errors.
1080
1084
  # @param [String] resource
1081
- # REQUIRED: The resource for which the policy is being specified. See the
1082
- # operation documentation for the appropriate value for this field.
1085
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1086
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1087
+ # appropriate value for this field.
1083
1088
  # @param [Google::Apis::GkehubV1alpha::SetIamPolicyRequest] set_iam_policy_request_object
1084
1089
  # @param [String] fields
1085
1090
  # Selector specifying which fields to include in a partial response.
@@ -1116,8 +1121,9 @@ module Google
1116
1121
  # permission-aware UIs and command-line tools, not for authorization checking.
1117
1122
  # This operation may "fail open" without warning.
1118
1123
  # @param [String] resource
1119
- # REQUIRED: The resource for which the policy detail is being requested. See the
1120
- # operation documentation for the appropriate value for this field.
1124
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1125
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1126
+ # appropriate value for this field.
1121
1127
  # @param [Google::Apis::GkehubV1alpha::TestIamPermissionsRequest] test_iam_permissions_request_object
1122
1128
  # @param [String] fields
1123
1129
  # 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_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []