google-apis-gkehub_v1alpha 0.28.0 → 0.31.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: '096e3aae0db5163accd551f60bf18dc5608e2ce4c953d3d32a51d01a087c7842'
4
+ data.tar.gz: 0da7599d4c6e2922c432179bb5f823010f650dc6737c532ddaf1cecc839383ef
5
5
  SHA512:
6
- metadata.gz: 430181cfa8fe1010e4bbf66c070953bf35f4984fa87c3035851e816a70f99ff01279754dbcc27d3b51468f2b82701ceae405b25767bc61169a6264fa7822d4db
7
- data.tar.gz: 39d2fbc966a36eef55a30238964e6aaf5c7ade43a009645f69551d68b1aa5011d4c7db7be5e45cf795d1235d63b8753094649646ff4234712a3e95f5309b8c3b
6
+ metadata.gz: b9d8dc84d90b75e2d33f783b5255ea3150d0c5422e64affd5a01aad1d5a585cd4274edaec256b1eb5eea98f907d9176804d2461d644889d72316c2c3fc101517
7
+ data.tar.gz: 18cb2e79ecab0edad1d37f671078381e0f46a6caeecaffae1207c6826f93b232c2c73bf260f05d43426f9d505409aee5dcb1fb9c6c55fa8b287ea6f4ace6d316
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.31.0 (2022-06-19)
4
+
5
+ * Regenerated from discovery document revision 20220613
6
+ * Regenerated using generator version 0.7.0
7
+
8
+ ### v0.30.0 (2022-06-12)
9
+
10
+ * Regenerated from discovery document revision 20220603
11
+ * Regenerated using generator version 0.5.0
12
+
13
+ ### v0.29.0 (2022-05-16)
14
+
15
+ * Regenerated from discovery document revision 20220505
16
+
3
17
  ### v0.28.0 (2022-05-08)
4
18
 
5
19
  * 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
@@ -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
@@ -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
@@ -2238,6 +2464,34 @@ module Google
2238
2464
  end
2239
2465
  end
2240
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
+
2241
2495
  # A resource that represents Google Cloud Platform location.
2242
2496
  class Location
2243
2497
  include Google::Apis::Core::Hashable
@@ -2393,6 +2647,11 @@ module Google
2393
2647
  class MembershipEndpoint
2394
2648
  include Google::Apis::Core::Hashable
2395
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
+
2396
2655
  # EdgeCluster contains information specific to Google Edge Clusters.
2397
2656
  # Corresponds to the JSON property `edgeCluster`
2398
2657
  # @return [Google::Apis::GkehubV1alpha::EdgeCluster]
@@ -2432,6 +2691,7 @@ module Google
2432
2691
 
2433
2692
  # Update properties of this object
2434
2693
  def update!(**args)
2694
+ @appliance_cluster = args[:appliance_cluster] if args.key?(:appliance_cluster)
2435
2695
  @edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster)
2436
2696
  @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
2437
2697
  @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
@@ -2451,6 +2711,12 @@ module Google
2451
2711
  # @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
2452
2712
  attr_accessor :anthosobservability
2453
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
+
2454
2720
  # **Cloud Build**: Configurations for each Cloud Build enabled cluster.
2455
2721
  # Corresponds to the JSON property `cloudbuild`
2456
2722
  # @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
@@ -2491,6 +2757,7 @@ module Google
2491
2757
  # Update properties of this object
2492
2758
  def update!(**args)
2493
2759
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
2760
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2494
2761
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
2495
2762
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2496
2763
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2505,6 +2772,13 @@ module Google
2505
2772
  class MembershipFeatureState
2506
2773
  include Google::Apis::Core::Hashable
2507
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
+
2508
2782
  # State for App Dev Exp Feature.
2509
2783
  # Corresponds to the JSON property `appdevexperience`
2510
2784
  # @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
@@ -2549,6 +2823,7 @@ module Google
2549
2823
 
2550
2824
  # Update properties of this object
2551
2825
  def update!(**args)
2826
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2552
2827
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
2553
2828
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2554
2829
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -2625,6 +2900,32 @@ module Google
2625
2900
  end
2626
2901
  end
2627
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
+
2628
2929
  # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
2629
2930
  class MultiCloudCluster
2630
2931
  include Google::Apis::Core::Hashable
@@ -2700,6 +3001,11 @@ module Google
2700
3001
  attr_accessor :cluster_missing
2701
3002
  alias_method :cluster_missing?, :cluster_missing
2702
3003
 
3004
+ # Immutable. The on prem cluster's type.
3005
+ # Corresponds to the JSON property `clusterType`
3006
+ # @return [String]
3007
+ attr_accessor :cluster_type
3008
+
2703
3009
  # Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
2704
3010
  # example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
2705
3011
  # vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
@@ -2716,6 +3022,7 @@ module Google
2716
3022
  def update!(**args)
2717
3023
  @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
2718
3024
  @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
3025
+ @cluster_type = args[:cluster_type] if args.key?(:cluster_type)
2719
3026
  @resource_link = args[:resource_link] if args.key?(:resource_link)
2720
3027
  end
2721
3028
  end
@@ -3308,6 +3615,31 @@ module Google
3308
3615
  end
3309
3616
  end
3310
3617
 
3618
+ # Status of data plane management. Only reported per-member.
3619
+ class ServiceMeshDataPlaneManagement
3620
+ include Google::Apis::Core::Hashable
3621
+
3622
+ # Explanation of the status.
3623
+ # Corresponds to the JSON property `details`
3624
+ # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails>]
3625
+ attr_accessor :details
3626
+
3627
+ # Lifecycle status of data plane management.
3628
+ # Corresponds to the JSON property `state`
3629
+ # @return [String]
3630
+ attr_accessor :state
3631
+
3632
+ def initialize(**args)
3633
+ update!(**args)
3634
+ end
3635
+
3636
+ # Update properties of this object
3637
+ def update!(**args)
3638
+ @details = args[:details] if args.key?(:details)
3639
+ @state = args[:state] if args.key?(:state)
3640
+ end
3641
+ end
3642
+
3311
3643
  # **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
3312
3644
  # Controller.
3313
3645
  class ServiceMeshFeatureState
@@ -3375,6 +3707,11 @@ module Google
3375
3707
  # @return [Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement]
3376
3708
  attr_accessor :control_plane_management
3377
3709
 
3710
+ # Status of data plane management. Only reported per-member.
3711
+ # Corresponds to the JSON property `dataPlaneManagement`
3712
+ # @return [Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement]
3713
+ attr_accessor :data_plane_management
3714
+
3378
3715
  def initialize(**args)
3379
3716
  update!(**args)
3380
3717
  end
@@ -3384,6 +3721,33 @@ module Google
3384
3721
  @analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
3385
3722
  @config_api_version = args[:config_api_version] if args.key?(:config_api_version)
3386
3723
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
3724
+ @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
3725
+ end
3726
+ end
3727
+
3728
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
3729
+ class ServiceMeshSpec
3730
+ include Google::Apis::Core::Hashable
3731
+
3732
+ def initialize(**args)
3733
+ update!(**args)
3734
+ end
3735
+
3736
+ # Update properties of this object
3737
+ def update!(**args)
3738
+ end
3739
+ end
3740
+
3741
+ # ServiceMeshState contains the state of Service Mesh subfeature
3742
+ class ServiceMeshState
3743
+ include Google::Apis::Core::Hashable
3744
+
3745
+ def initialize(**args)
3746
+ update!(**args)
3747
+ end
3748
+
3749
+ # Update properties of this object
3750
+ def update!(**args)
3387
3751
  end
3388
3752
  end
3389
3753
 
@@ -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.31.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.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220429"
25
+ REVISION = "20220613"
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
@@ -1216,6 +1364,14 @@ module Google
1216
1364
  end
1217
1365
  end
1218
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
+
1219
1375
  class Location
1220
1376
  # @private
1221
1377
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1251,6 +1407,8 @@ module Google
1251
1407
  class MembershipEndpoint
1252
1408
  # @private
1253
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
+
1254
1412
  property :edge_cluster, as: 'edgeCluster', class: Google::Apis::GkehubV1alpha::EdgeCluster, decorator: Google::Apis::GkehubV1alpha::EdgeCluster::Representation
1255
1413
 
1256
1414
  property :gke_cluster, as: 'gkeCluster', class: Google::Apis::GkehubV1alpha::GkeCluster, decorator: Google::Apis::GkehubV1alpha::GkeCluster::Representation
@@ -1271,6 +1429,8 @@ module Google
1271
1429
  class Representation < Google::Apis::Core::JsonRepresentation
1272
1430
  property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
1273
1431
 
1432
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec::Representation
1433
+
1274
1434
  property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
1275
1435
 
1276
1436
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
@@ -1289,6 +1449,8 @@ module Google
1289
1449
  class MembershipFeatureState
1290
1450
  # @private
1291
1451
  class Representation < Google::Apis::Core::JsonRepresentation
1452
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipState::Representation
1453
+
1292
1454
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
1293
1455
 
1294
1456
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
@@ -1328,6 +1490,18 @@ module Google
1328
1490
  end
1329
1491
  end
1330
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
+
1331
1505
  class MultiCloudCluster
1332
1506
  # @private
1333
1507
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1349,6 +1523,7 @@ module Google
1349
1523
  class Representation < Google::Apis::Core::JsonRepresentation
1350
1524
  property :admin_cluster, as: 'adminCluster'
1351
1525
  property :cluster_missing, as: 'clusterMissing'
1526
+ property :cluster_type, as: 'clusterType'
1352
1527
  property :resource_link, as: 'resourceLink'
1353
1528
  end
1354
1529
  end
@@ -1495,6 +1670,15 @@ module Google
1495
1670
  end
1496
1671
  end
1497
1672
 
1673
+ class ServiceMeshDataPlaneManagement
1674
+ # @private
1675
+ class Representation < Google::Apis::Core::JsonRepresentation
1676
+ collection :details, as: 'details', class: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails::Representation
1677
+
1678
+ property :state, as: 'state'
1679
+ end
1680
+ end
1681
+
1498
1682
  class ServiceMeshFeatureState
1499
1683
  # @private
1500
1684
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1519,6 +1703,20 @@ module Google
1519
1703
  property :config_api_version, as: 'configApiVersion'
1520
1704
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement::Representation
1521
1705
 
1706
+ property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement::Representation
1707
+
1708
+ end
1709
+ end
1710
+
1711
+ class ServiceMeshSpec
1712
+ # @private
1713
+ class Representation < Google::Apis::Core::JsonRepresentation
1714
+ end
1715
+ end
1716
+
1717
+ class ServiceMeshState
1718
+ # @private
1719
+ class Representation < Google::Apis::Core::JsonRepresentation
1522
1720
  end
1523
1721
  end
1524
1722
 
@@ -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.31.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-06-20 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.6'
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.6'
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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.31.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