google-apis-gkehub_v1alpha 0.27.0 → 0.30.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: 2538fd5e318ab3af693a78e4b4194ec95e4867510b5b7f2f43121f6c531e53c1
4
- data.tar.gz: 58a9973c698f0b70ed09a4d6ef329d6c7d853dd324d2c9b117cbb38ce68e4c60
3
+ metadata.gz: d2ef9a855ad38e9b51d9d96076b6f2f8be2cbbcdc8315b20b30ea5ef0db33b5e
4
+ data.tar.gz: 3d88e14ec569254aa6e154fb890b2353e2bbbb7658699ded05707770712b0214
5
5
  SHA512:
6
- metadata.gz: '078f267cc9ceaac3cfb1e8b8d2a9c374ab00de892a1f6f0f59876040a22e67182ba9f147636b06b1f42a3a8fcdd8a07d408258efff734d7e3f4c2a3abe295a81'
7
- data.tar.gz: a33f74a824f4cf636ee7af3f1ebd2f1ec15034ae20eec656789e418465d65f09351a95368f12aaf0634274d2bf7e45ce5f2bc8ea4401656b0db2384c7b223861
6
+ metadata.gz: b3885f5e7c549f82e67f63673a43edeb8ae5936d0fca0db51ce34f70545af9e4fced59c45e7a14e057bbead5d0ba3d623e0ea00eaeaa6dc6ada8251163ce007d
7
+ data.tar.gz: 0ae81346f82201103017dde249a4e45122f9776af0d4f529379fde7438d9dd6259e9a91213fb48d169ee3a6a1c083f054ad30f6deb23c728c55940f9575f514a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.30.0 (2022-06-12)
4
+
5
+ * Regenerated from discovery document revision 20220603
6
+ * Regenerated using generator version 0.5.0
7
+
8
+ ### v0.29.0 (2022-05-16)
9
+
10
+ * Regenerated from discovery document revision 20220505
11
+
12
+ ### v0.28.0 (2022-05-08)
13
+
14
+ * Regenerated from discovery document revision 20220429
15
+
3
16
  ### v0.27.0 (2022-04-30)
4
17
 
5
18
  * Regenerated from discovery document revision 20220422
@@ -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
@@ -109,6 +232,27 @@ module Google
109
232
  end
110
233
  end
111
234
 
235
+ # ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
236
+ class ApplianceCluster
237
+ include Google::Apis::Core::Hashable
238
+
239
+ # Immutable. Self-link of the GCP resource for the Appliance Cluster. For
240
+ # example: //transferappliance.googleapis.com/projects/my-project/locations/us-
241
+ # west1-a/appliances/my-appliance
242
+ # Corresponds to the JSON property `resourceLink`
243
+ # @return [String]
244
+ attr_accessor :resource_link
245
+
246
+ def initialize(**args)
247
+ update!(**args)
248
+ end
249
+
250
+ # Update properties of this object
251
+ def update!(**args)
252
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
253
+ end
254
+ end
255
+
112
256
  # Specifies the audit configuration for a service. The configuration determines
113
257
  # which permission types are logged, and what identities, if any, are exempted
114
258
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -122,8 +266,8 @@ module Google
122
266
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
123
267
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
124
268
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
125
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
126
- # DATA_WRITE logging.
269
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
270
+ # from DATA_WRITE logging.
127
271
  class AuditConfig
128
272
  include Google::Apis::Core::Hashable
129
273
 
@@ -528,6 +672,11 @@ module Google
528
672
  # @return [Google::Apis::GkehubV1alpha::ConfigManagementGitConfig]
529
673
  attr_accessor :git
530
674
 
675
+ # OCI repo configuration for a single cluster
676
+ # Corresponds to the JSON property `oci`
677
+ # @return [Google::Apis::GkehubV1alpha::ConfigManagementOciConfig]
678
+ attr_accessor :oci
679
+
531
680
  # Set to true to enable the Config Sync admission webhook to prevent drifts. If
532
681
  # set to `false`, disables the Config Sync admission webhook and does not
533
682
  # prevent drifts.
@@ -550,6 +699,7 @@ module Google
550
699
  def update!(**args)
551
700
  @enabled = args[:enabled] if args.key?(:enabled)
552
701
  @git = args[:git] if args.key?(:git)
702
+ @oci = args[:oci] if args.key?(:oci)
553
703
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
554
704
  @source_format = args[:source_format] if args.key?(:source_format)
555
705
  end
@@ -1091,6 +1241,52 @@ module Google
1091
1241
  end
1092
1242
  end
1093
1243
 
1244
+ # OCI repo configuration for a single cluster
1245
+ class ConfigManagementOciConfig
1246
+ include Google::Apis::Core::Hashable
1247
+
1248
+ # The GCP Service Account Email used for auth when secret_type is
1249
+ # gcpServiceAccount.
1250
+ # Corresponds to the JSON property `gcpServiceAccountEmail`
1251
+ # @return [String]
1252
+ attr_accessor :gcp_service_account_email
1253
+
1254
+ # The absolute path of the directory that contains the local resources. Default:
1255
+ # the root directory of the image.
1256
+ # Corresponds to the JSON property `policyDir`
1257
+ # @return [String]
1258
+ attr_accessor :policy_dir
1259
+
1260
+ # Type of secret configured for access to the Git repo.
1261
+ # Corresponds to the JSON property `secretType`
1262
+ # @return [String]
1263
+ attr_accessor :secret_type
1264
+
1265
+ # The OCI image repository URL for the package to sync from. e.g. `LOCATION-
1266
+ # docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
1267
+ # Corresponds to the JSON property `syncRepo`
1268
+ # @return [String]
1269
+ attr_accessor :sync_repo
1270
+
1271
+ # Period in seconds between consecutive syncs. Default: 15.
1272
+ # Corresponds to the JSON property `syncWaitSecs`
1273
+ # @return [Fixnum]
1274
+ attr_accessor :sync_wait_secs
1275
+
1276
+ def initialize(**args)
1277
+ update!(**args)
1278
+ end
1279
+
1280
+ # Update properties of this object
1281
+ def update!(**args)
1282
+ @gcp_service_account_email = args[:gcp_service_account_email] if args.key?(:gcp_service_account_email)
1283
+ @policy_dir = args[:policy_dir] if args.key?(:policy_dir)
1284
+ @secret_type = args[:secret_type] if args.key?(:secret_type)
1285
+ @sync_repo = args[:sync_repo] if args.key?(:sync_repo)
1286
+ @sync_wait_secs = args[:sync_wait_secs] if args.key?(:sync_wait_secs)
1287
+ end
1288
+ end
1289
+
1094
1290
  # State information for an ACM's Operator
1095
1291
  class ConfigManagementOperatorState
1096
1292
  include Google::Apis::Core::Hashable
@@ -1151,6 +1347,13 @@ module Google
1151
1347
  attr_accessor :log_denies_enabled
1152
1348
  alias_method :log_denies_enabled?, :log_denies_enabled
1153
1349
 
1350
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1351
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1352
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1353
+ # Corresponds to the JSON property `monitoring`
1354
+ # @return [Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring]
1355
+ attr_accessor :monitoring
1356
+
1154
1357
  # Enable users to try out mutation for PolicyController.
1155
1358
  # Corresponds to the JSON property `mutationEnabled`
1156
1359
  # @return [Boolean]
@@ -1180,12 +1383,35 @@ module Google
1180
1383
  @enabled = args[:enabled] if args.key?(:enabled)
1181
1384
  @exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
1182
1385
  @log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
1386
+ @monitoring = args[:monitoring] if args.key?(:monitoring)
1183
1387
  @mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
1184
1388
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
1185
1389
  @template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
1186
1390
  end
1187
1391
  end
1188
1392
 
1393
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1394
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1395
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1396
+ class ConfigManagementPolicyControllerMonitoring
1397
+ include Google::Apis::Core::Hashable
1398
+
1399
+ # Specifies the list of backends Policy Controller will export to. An empty list
1400
+ # would effectively disable metrics export.
1401
+ # Corresponds to the JSON property `backends`
1402
+ # @return [Array<String>]
1403
+ attr_accessor :backends
1404
+
1405
+ def initialize(**args)
1406
+ update!(**args)
1407
+ end
1408
+
1409
+ # Update properties of this object
1410
+ def update!(**args)
1411
+ @backends = args[:backends] if args.key?(:backends)
1412
+ end
1413
+ end
1414
+
1189
1415
  # State for PolicyControllerState.
1190
1416
  class ConfigManagementPolicyControllerState
1191
1417
  include Google::Apis::Core::Hashable
@@ -1881,6 +2107,12 @@ module Google
1881
2107
  attr_accessor :deploy_cloud_console_proxy
1882
2108
  alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
1883
2109
 
2110
+ # Enable access token.
2111
+ # Corresponds to the JSON property `enableAccessToken`
2112
+ # @return [Boolean]
2113
+ attr_accessor :enable_access_token
2114
+ alias_method :enable_access_token?, :enable_access_token
2115
+
1884
2116
  # Output only. Encrypted OIDC Client secret
1885
2117
  # Corresponds to the JSON property `encryptedClientSecret`
1886
2118
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
@@ -1939,6 +2171,7 @@ module Google
1939
2171
  @client_id = args[:client_id] if args.key?(:client_id)
1940
2172
  @client_secret = args[:client_secret] if args.key?(:client_secret)
1941
2173
  @deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
2174
+ @enable_access_token = args[:enable_access_token] if args.key?(:enable_access_token)
1942
2175
  @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
1943
2176
  @extra_params = args[:extra_params] if args.key?(:extra_params)
1944
2177
  @group_prefix = args[:group_prefix] if args.key?(:group_prefix)
@@ -2231,6 +2464,34 @@ module Google
2231
2464
  end
2232
2465
  end
2233
2466
 
2467
+ # LocalControllerState contains the state of the local controller deployed in
2468
+ # the cluster.
2469
+ class LocalControllerState
2470
+ include Google::Apis::Core::Hashable
2471
+
2472
+ # Description represents the human readable description of the current state of
2473
+ # the local PE controller
2474
+ # Corresponds to the JSON property `description`
2475
+ # @return [String]
2476
+ attr_accessor :description
2477
+
2478
+ # InstallationState represents the state of deployment of the local PE
2479
+ # controller in the cluster.
2480
+ # Corresponds to the JSON property `installationState`
2481
+ # @return [String]
2482
+ attr_accessor :installation_state
2483
+
2484
+ def initialize(**args)
2485
+ update!(**args)
2486
+ end
2487
+
2488
+ # Update properties of this object
2489
+ def update!(**args)
2490
+ @description = args[:description] if args.key?(:description)
2491
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
2492
+ end
2493
+ end
2494
+
2234
2495
  # A resource that represents Google Cloud Platform location.
2235
2496
  class Location
2236
2497
  include Google::Apis::Core::Hashable
@@ -2386,6 +2647,11 @@ module Google
2386
2647
  class MembershipEndpoint
2387
2648
  include Google::Apis::Core::Hashable
2388
2649
 
2650
+ # ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
2651
+ # Corresponds to the JSON property `applianceCluster`
2652
+ # @return [Google::Apis::GkehubV1alpha::ApplianceCluster]
2653
+ attr_accessor :appliance_cluster
2654
+
2389
2655
  # EdgeCluster contains information specific to Google Edge Clusters.
2390
2656
  # Corresponds to the JSON property `edgeCluster`
2391
2657
  # @return [Google::Apis::GkehubV1alpha::EdgeCluster]
@@ -2425,6 +2691,7 @@ module Google
2425
2691
 
2426
2692
  # Update properties of this object
2427
2693
  def update!(**args)
2694
+ @appliance_cluster = args[:appliance_cluster] if args.key?(:appliance_cluster)
2428
2695
  @edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster)
2429
2696
  @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
2430
2697
  @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
@@ -2444,6 +2711,12 @@ module Google
2444
2711
  # @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
2445
2712
  attr_accessor :anthosobservability
2446
2713
 
2714
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
2715
+ # membership/cluster.
2716
+ # Corresponds to the JSON property `anthosvm`
2717
+ # @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec]
2718
+ attr_accessor :anthosvm
2719
+
2447
2720
  # **Cloud Build**: Configurations for each Cloud Build enabled cluster.
2448
2721
  # Corresponds to the JSON property `cloudbuild`
2449
2722
  # @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
@@ -2484,6 +2757,7 @@ module Google
2484
2757
  # Update properties of this object
2485
2758
  def update!(**args)
2486
2759
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
2760
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2487
2761
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
2488
2762
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2489
2763
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2498,6 +2772,13 @@ module Google
2498
2772
  class MembershipFeatureState
2499
2773
  include Google::Apis::Core::Hashable
2500
2774
 
2775
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
2776
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
2777
+ # the desired state.
2778
+ # Corresponds to the JSON property `anthosvm`
2779
+ # @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipState]
2780
+ attr_accessor :anthosvm
2781
+
2501
2782
  # State for App Dev Exp Feature.
2502
2783
  # Corresponds to the JSON property `appdevexperience`
2503
2784
  # @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
@@ -2542,6 +2823,7 @@ module Google
2542
2823
 
2543
2824
  # Update properties of this object
2544
2825
  def update!(**args)
2826
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2545
2827
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
2546
2828
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2547
2829
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2618,6 +2900,32 @@ module Google
2618
2900
  end
2619
2901
  end
2620
2902
 
2903
+ # MigrateSpec contains the migrate subfeature configuration.
2904
+ class MigrateSpec
2905
+ include Google::Apis::Core::Hashable
2906
+
2907
+ def initialize(**args)
2908
+ update!(**args)
2909
+ end
2910
+
2911
+ # Update properties of this object
2912
+ def update!(**args)
2913
+ end
2914
+ end
2915
+
2916
+ # MigrateState contains the state of Migrate subfeature
2917
+ class MigrateState
2918
+ include Google::Apis::Core::Hashable
2919
+
2920
+ def initialize(**args)
2921
+ update!(**args)
2922
+ end
2923
+
2924
+ # Update properties of this object
2925
+ def update!(**args)
2926
+ end
2927
+ end
2928
+
2621
2929
  # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
2622
2930
  class MultiCloudCluster
2623
2931
  include Google::Apis::Core::Hashable
@@ -3301,6 +3609,31 @@ module Google
3301
3609
  end
3302
3610
  end
3303
3611
 
3612
+ # Status of data plane management. Only reported per-member.
3613
+ class ServiceMeshDataPlaneManagement
3614
+ include Google::Apis::Core::Hashable
3615
+
3616
+ # Explanation of the status.
3617
+ # Corresponds to the JSON property `details`
3618
+ # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails>]
3619
+ attr_accessor :details
3620
+
3621
+ # Lifecycle status of data plane management.
3622
+ # Corresponds to the JSON property `state`
3623
+ # @return [String]
3624
+ attr_accessor :state
3625
+
3626
+ def initialize(**args)
3627
+ update!(**args)
3628
+ end
3629
+
3630
+ # Update properties of this object
3631
+ def update!(**args)
3632
+ @details = args[:details] if args.key?(:details)
3633
+ @state = args[:state] if args.key?(:state)
3634
+ end
3635
+ end
3636
+
3304
3637
  # **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
3305
3638
  # Controller.
3306
3639
  class ServiceMeshFeatureState
@@ -3368,6 +3701,11 @@ module Google
3368
3701
  # @return [Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement]
3369
3702
  attr_accessor :control_plane_management
3370
3703
 
3704
+ # Status of data plane management. Only reported per-member.
3705
+ # Corresponds to the JSON property `dataPlaneManagement`
3706
+ # @return [Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement]
3707
+ attr_accessor :data_plane_management
3708
+
3371
3709
  def initialize(**args)
3372
3710
  update!(**args)
3373
3711
  end
@@ -3377,6 +3715,33 @@ module Google
3377
3715
  @analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
3378
3716
  @config_api_version = args[:config_api_version] if args.key?(:config_api_version)
3379
3717
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
3718
+ @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
3719
+ end
3720
+ end
3721
+
3722
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
3723
+ class ServiceMeshSpec
3724
+ include Google::Apis::Core::Hashable
3725
+
3726
+ def initialize(**args)
3727
+ update!(**args)
3728
+ end
3729
+
3730
+ # Update properties of this object
3731
+ def update!(**args)
3732
+ end
3733
+ end
3734
+
3735
+ # ServiceMeshState contains the state of Service Mesh subfeature
3736
+ class ServiceMeshState
3737
+ include Google::Apis::Core::Hashable
3738
+
3739
+ def initialize(**args)
3740
+ update!(**args)
3741
+ end
3742
+
3743
+ # Update properties of this object
3744
+ def update!(**args)
3380
3745
  end
3381
3746
  end
3382
3747
 
@@ -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.27.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220422"
25
+ REVISION = "20220603"
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
 
@@ -46,6 +70,12 @@ module Google
46
70
  include Google::Apis::Core::JsonObjectSupport
47
71
  end
48
72
 
73
+ class ApplianceCluster
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
49
79
  class AuditConfig
50
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
81
 
@@ -208,6 +238,12 @@ module Google
208
238
  include Google::Apis::Core::JsonObjectSupport
209
239
  end
210
240
 
241
+ class ConfigManagementOciConfig
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
211
247
  class ConfigManagementOperatorState
212
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
249
 
@@ -220,6 +256,12 @@ module Google
220
256
  include Google::Apis::Core::JsonObjectSupport
221
257
  end
222
258
 
259
+ class ConfigManagementPolicyControllerMonitoring
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
223
265
  class ConfigManagementPolicyControllerState
224
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
267
 
@@ -388,6 +430,12 @@ module Google
388
430
  include Google::Apis::Core::JsonObjectSupport
389
431
  end
390
432
 
433
+ class LocalControllerState
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
391
439
  class Location
392
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
441
 
@@ -436,6 +484,18 @@ module Google
436
484
  include Google::Apis::Core::JsonObjectSupport
437
485
  end
438
486
 
487
+ class MigrateSpec
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
493
+ class MigrateState
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
439
499
  class MultiCloudCluster
440
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
441
501
 
@@ -538,6 +598,12 @@ module Google
538
598
  include Google::Apis::Core::JsonObjectSupport
539
599
  end
540
600
 
601
+ class ServiceMeshDataPlaneManagement
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
541
607
  class ServiceMeshFeatureState
542
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
609
 
@@ -556,6 +622,18 @@ module Google
556
622
  include Google::Apis::Core::JsonObjectSupport
557
623
  end
558
624
 
625
+ class ServiceMeshSpec
626
+ class Representation < Google::Apis::Core::JsonRepresentation; end
627
+
628
+ include Google::Apis::Core::JsonObjectSupport
629
+ end
630
+
631
+ class ServiceMeshState
632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
633
+
634
+ include Google::Apis::Core::JsonObjectSupport
635
+ end
636
+
559
637
  class ServiceMeshStatusDetails
560
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
639
 
@@ -615,6 +693,47 @@ module Google
615
693
  end
616
694
  end
617
695
 
696
+ class AnthosVmMembershipSpec
697
+ # @private
698
+ class Representation < Google::Apis::Core::JsonRepresentation
699
+ collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec::Representation
700
+
701
+ end
702
+ end
703
+
704
+ class AnthosVmMembershipState
705
+ # @private
706
+ class Representation < Google::Apis::Core::JsonRepresentation
707
+ property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1alpha::LocalControllerState, decorator: Google::Apis::GkehubV1alpha::LocalControllerState::Representation
708
+
709
+ collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState::Representation
710
+
711
+ end
712
+ end
713
+
714
+ class AnthosVmSubFeatureSpec
715
+ # @private
716
+ class Representation < Google::Apis::Core::JsonRepresentation
717
+ property :enabled, as: 'enabled'
718
+ property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1alpha::MigrateSpec, decorator: Google::Apis::GkehubV1alpha::MigrateSpec::Representation
719
+
720
+ property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1alpha::ServiceMeshSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshSpec::Representation
721
+
722
+ end
723
+ end
724
+
725
+ class AnthosVmSubFeatureState
726
+ # @private
727
+ class Representation < Google::Apis::Core::JsonRepresentation
728
+ property :description, as: 'description'
729
+ property :installation_state, as: 'installationState'
730
+ property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1alpha::MigrateState, decorator: Google::Apis::GkehubV1alpha::MigrateState::Representation
731
+
732
+ property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1alpha::ServiceMeshState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshState::Representation
733
+
734
+ end
735
+ end
736
+
618
737
  class AppDevExperienceFeatureSpec
619
738
  # @private
620
739
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -629,6 +748,13 @@ module Google
629
748
  end
630
749
  end
631
750
 
751
+ class ApplianceCluster
752
+ # @private
753
+ class Representation < Google::Apis::Core::JsonRepresentation
754
+ property :resource_link, as: 'resourceLink'
755
+ end
756
+ end
757
+
632
758
  class AuditConfig
633
759
  # @private
634
760
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -744,6 +870,8 @@ module Google
744
870
  property :enabled, as: 'enabled'
745
871
  property :git, as: 'git', class: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig::Representation
746
872
 
873
+ property :oci, as: 'oci', class: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig::Representation
874
+
747
875
  property :prevent_drift, as: 'preventDrift'
748
876
  property :source_format, as: 'sourceFormat'
749
877
  end
@@ -906,6 +1034,17 @@ module Google
906
1034
  end
907
1035
  end
908
1036
 
1037
+ class ConfigManagementOciConfig
1038
+ # @private
1039
+ class Representation < Google::Apis::Core::JsonRepresentation
1040
+ property :gcp_service_account_email, as: 'gcpServiceAccountEmail'
1041
+ property :policy_dir, as: 'policyDir'
1042
+ property :secret_type, as: 'secretType'
1043
+ property :sync_repo, as: 'syncRepo'
1044
+ property :sync_wait_secs, :numeric_string => true, as: 'syncWaitSecs'
1045
+ end
1046
+ end
1047
+
909
1048
  class ConfigManagementOperatorState
910
1049
  # @private
911
1050
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -923,12 +1062,21 @@ module Google
923
1062
  property :enabled, as: 'enabled'
924
1063
  collection :exemptable_namespaces, as: 'exemptableNamespaces'
925
1064
  property :log_denies_enabled, as: 'logDeniesEnabled'
1065
+ property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring, decorator: Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring::Representation
1066
+
926
1067
  property :mutation_enabled, as: 'mutationEnabled'
927
1068
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
928
1069
  property :template_library_installed, as: 'templateLibraryInstalled'
929
1070
  end
930
1071
  end
931
1072
 
1073
+ class ConfigManagementPolicyControllerMonitoring
1074
+ # @private
1075
+ class Representation < Google::Apis::Core::JsonRepresentation
1076
+ collection :backends, as: 'backends'
1077
+ end
1078
+ end
1079
+
932
1080
  class ConfigManagementPolicyControllerState
933
1081
  # @private
934
1082
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1122,6 +1270,7 @@ module Google
1122
1270
  property :client_id, as: 'clientId'
1123
1271
  property :client_secret, as: 'clientSecret'
1124
1272
  property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
1273
+ property :enable_access_token, as: 'enableAccessToken'
1125
1274
  property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
1126
1275
  property :extra_params, as: 'extraParams'
1127
1276
  property :group_prefix, as: 'groupPrefix'
@@ -1215,6 +1364,14 @@ module Google
1215
1364
  end
1216
1365
  end
1217
1366
 
1367
+ class LocalControllerState
1368
+ # @private
1369
+ class Representation < Google::Apis::Core::JsonRepresentation
1370
+ property :description, as: 'description'
1371
+ property :installation_state, as: 'installationState'
1372
+ end
1373
+ end
1374
+
1218
1375
  class Location
1219
1376
  # @private
1220
1377
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1250,6 +1407,8 @@ module Google
1250
1407
  class MembershipEndpoint
1251
1408
  # @private
1252
1409
  class Representation < Google::Apis::Core::JsonRepresentation
1410
+ property :appliance_cluster, as: 'applianceCluster', class: Google::Apis::GkehubV1alpha::ApplianceCluster, decorator: Google::Apis::GkehubV1alpha::ApplianceCluster::Representation
1411
+
1253
1412
  property :edge_cluster, as: 'edgeCluster', class: Google::Apis::GkehubV1alpha::EdgeCluster, decorator: Google::Apis::GkehubV1alpha::EdgeCluster::Representation
1254
1413
 
1255
1414
  property :gke_cluster, as: 'gkeCluster', class: Google::Apis::GkehubV1alpha::GkeCluster, decorator: Google::Apis::GkehubV1alpha::GkeCluster::Representation
@@ -1270,6 +1429,8 @@ module Google
1270
1429
  class Representation < Google::Apis::Core::JsonRepresentation
1271
1430
  property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
1272
1431
 
1432
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec::Representation
1433
+
1273
1434
  property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
1274
1435
 
1275
1436
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
@@ -1288,6 +1449,8 @@ module Google
1288
1449
  class MembershipFeatureState
1289
1450
  # @private
1290
1451
  class Representation < Google::Apis::Core::JsonRepresentation
1452
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipState::Representation
1453
+
1291
1454
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
1292
1455
 
1293
1456
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
@@ -1327,6 +1490,18 @@ module Google
1327
1490
  end
1328
1491
  end
1329
1492
 
1493
+ class MigrateSpec
1494
+ # @private
1495
+ class Representation < Google::Apis::Core::JsonRepresentation
1496
+ end
1497
+ end
1498
+
1499
+ class MigrateState
1500
+ # @private
1501
+ class Representation < Google::Apis::Core::JsonRepresentation
1502
+ end
1503
+ end
1504
+
1330
1505
  class MultiCloudCluster
1331
1506
  # @private
1332
1507
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1494,6 +1669,15 @@ module Google
1494
1669
  end
1495
1670
  end
1496
1671
 
1672
+ class ServiceMeshDataPlaneManagement
1673
+ # @private
1674
+ class Representation < Google::Apis::Core::JsonRepresentation
1675
+ collection :details, as: 'details', class: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails::Representation
1676
+
1677
+ property :state, as: 'state'
1678
+ end
1679
+ end
1680
+
1497
1681
  class ServiceMeshFeatureState
1498
1682
  # @private
1499
1683
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1518,6 +1702,20 @@ module Google
1518
1702
  property :config_api_version, as: 'configApiVersion'
1519
1703
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement::Representation
1520
1704
 
1705
+ property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement::Representation
1706
+
1707
+ end
1708
+ end
1709
+
1710
+ class ServiceMeshSpec
1711
+ # @private
1712
+ class Representation < Google::Apis::Core::JsonRepresentation
1713
+ end
1714
+ end
1715
+
1716
+ class ServiceMeshState
1717
+ # @private
1718
+ class Representation < Google::Apis::Core::JsonRepresentation
1521
1719
  end
1522
1720
  end
1523
1721
 
@@ -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.27.0
4
+ version: 0.30.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-02 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.30.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1alpha