google-apis-gkehub_v1 0.8.0 → 0.12.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: d043d824cb281cdf06e0830d1f8de9a1c2808afa7429a28ebfb398c3e93c2f21
4
- data.tar.gz: 12190ddbf956a863ed6aa0d4a9cbca7063415a6c5b73af56eab28afa49f30982
3
+ metadata.gz: e4c9cd2a7cf55b4d40cce09d86720bce60100f852d6ba25215c6d66997b5aed5
4
+ data.tar.gz: ce32da609da617ba242df17a621785c6298911185d104281924797a9960f5992
5
5
  SHA512:
6
- metadata.gz: 425fd6a751106811acfd3c7e915c0d7a4e3efe33360d83132565bb21cf675b8026e5c81dbf1838a5d04081598f945f6ac45f567aa050fb20efe9c69be7f01e2b
7
- data.tar.gz: 4e67eca913294d1921b1cfdfd5062637ba1ccab3a3ddb2b3ec6c1163cfd44cf9740e824b8657839403fdd0322bd53152e5ff8b03c206aa2a6913bdc9e8cac638
6
+ metadata.gz: 107df958ae027b03bbe3e7eef32f6032bb1cadb126c0826c3d7a1f2b2777f16ab4498713f0b895b7746236713e6b1cf6c6c65bde17ec4b3acb80779bae898262
7
+ data.tar.gz: b8dcd8ffc55f7b224a9a46c499d47341e64eae7da93d44acd1773881d32d9c82ebcbc915497652939dec41a6012d313eb5ffb9587f1855b6f0f9da7feacd07a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.12.0 (2021-09-26)
4
+
5
+ * Regenerated from discovery document revision 20210920
6
+
7
+ ### v0.11.0 (2021-08-28)
8
+
9
+ * Regenerated from discovery document revision 20210820
10
+
11
+ ### v0.10.0 (2021-08-21)
12
+
13
+ * Regenerated from discovery document revision 20210813
14
+
15
+ ### v0.9.0 (2021-08-04)
16
+
17
+ * Regenerated from discovery document revision 20210729
18
+
3
19
  ### v0.8.0 (2021-07-14)
4
20
 
5
21
  * Regenerated from discovery document revision 20210709
data/OVERVIEW.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple REST client for version V1 of the GKE Hub
1
+ # Simple REST client for version V1 of the GKE Hub API
2
2
 
3
- This is a simple client library for version V1 of the GKE Hub. It provides:
3
+ This is a simple client library for version V1 of the GKE Hub API. It provides:
4
4
 
5
5
  * A client object that connects to the HTTP/JSON REST endpoint for the service.
6
6
  * Ruby objects for data structures related to the service.
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Gkehub service in particular.)
67
67
 
68
- For reference information on specific calls in the GKE Hub, see the {Google::Apis::GkehubV1::GKEHubService class reference docs}.
68
+ For reference information on specific calls in the GKE Hub API, see the {Google::Apis::GkehubV1::GKEHubService class reference docs}.
69
69
 
70
70
  ## Which client should I use?
71
71
 
@@ -281,6 +281,11 @@ module Google
281
281
  # @return [Google::Apis::GkehubV1::ConfigManagementGitConfig]
282
282
  attr_accessor :git
283
283
 
284
+ # Specifies CPU and memory limits for containers, keyed by container name
285
+ # Corresponds to the JSON property `resourceRequirements`
286
+ # @return [Hash<String,Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements>]
287
+ attr_accessor :resource_requirements
288
+
284
289
  # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured”
285
290
  # mode.
286
291
  # Corresponds to the JSON property `sourceFormat`
@@ -294,6 +299,7 @@ module Google
294
299
  # Update properties of this object
295
300
  def update!(**args)
296
301
  @git = args[:git] if args.key?(:git)
302
+ @resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements)
297
303
  @source_format = args[:source_format] if args.key?(:source_format)
298
304
  end
299
305
  end
@@ -302,6 +308,11 @@ module Google
302
308
  class ConfigManagementConfigSyncDeploymentState
303
309
  include Google::Apis::Core::Hashable
304
310
 
311
+ # Deployment state of admission-webhook
312
+ # Corresponds to the JSON property `admissionWebhook`
313
+ # @return [String]
314
+ attr_accessor :admission_webhook
315
+
305
316
  # Deployment state of the git-sync pod
306
317
  # Corresponds to the JSON property `gitSync`
307
318
  # @return [String]
@@ -338,6 +349,7 @@ module Google
338
349
 
339
350
  # Update properties of this object
340
351
  def update!(**args)
352
+ @admission_webhook = args[:admission_webhook] if args.key?(:admission_webhook)
341
353
  @git_sync = args[:git_sync] if args.key?(:git_sync)
342
354
  @importer = args[:importer] if args.key?(:importer)
343
355
  @monitor = args[:monitor] if args.key?(:monitor)
@@ -382,6 +394,11 @@ module Google
382
394
  class ConfigManagementConfigSyncVersion
383
395
  include Google::Apis::Core::Hashable
384
396
 
397
+ # Version of the deployed admission_webhook pod
398
+ # Corresponds to the JSON property `admissionWebhook`
399
+ # @return [String]
400
+ attr_accessor :admission_webhook
401
+
385
402
  # Version of the deployed git-sync pod
386
403
  # Corresponds to the JSON property `gitSync`
387
404
  # @return [String]
@@ -418,6 +435,7 @@ module Google
418
435
 
419
436
  # Update properties of this object
420
437
  def update!(**args)
438
+ @admission_webhook = args[:admission_webhook] if args.key?(:admission_webhook)
421
439
  @git_sync = args[:git_sync] if args.key?(:git_sync)
422
440
  @importer = args[:importer] if args.key?(:importer)
423
441
  @monitor = args[:monitor] if args.key?(:monitor)
@@ -427,6 +445,42 @@ module Google
427
445
  end
428
446
  end
429
447
 
448
+ # ResourceRequirements allows to override the CPU and memory resource
449
+ # requirements of a container.
450
+ class ConfigManagementContainerResourceRequirements
451
+ include Google::Apis::Core::Hashable
452
+
453
+ # Name of the container
454
+ # Corresponds to the JSON property `containerName`
455
+ # @return [String]
456
+ attr_accessor :container_name
457
+
458
+ # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
459
+ # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
460
+ # pkg/api/resource/generated.proto
461
+ # Corresponds to the JSON property `cpuLimit`
462
+ # @return [Google::Apis::GkehubV1::ConfigManagementQuantity]
463
+ attr_accessor :cpu_limit
464
+
465
+ # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
466
+ # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
467
+ # pkg/api/resource/generated.proto
468
+ # Corresponds to the JSON property `memoryLimit`
469
+ # @return [Google::Apis::GkehubV1::ConfigManagementQuantity]
470
+ attr_accessor :memory_limit
471
+
472
+ def initialize(**args)
473
+ update!(**args)
474
+ end
475
+
476
+ # Update properties of this object
477
+ def update!(**args)
478
+ @container_name = args[:container_name] if args.key?(:container_name)
479
+ @cpu_limit = args[:cpu_limit] if args.key?(:cpu_limit)
480
+ @memory_limit = args[:memory_limit] if args.key?(:memory_limit)
481
+ end
482
+ end
483
+
430
484
  # Model for a config file in the git repo with an associated Sync error
431
485
  class ConfigManagementErrorResource
432
486
  include Google::Apis::Core::Hashable
@@ -504,6 +558,12 @@ module Google
504
558
  # @return [String]
505
559
  attr_accessor :https_proxy
506
560
 
561
+ # Enable or disable the SSL certificate verification Default: false.
562
+ # Corresponds to the JSON property `noSslVerify`
563
+ # @return [Boolean]
564
+ attr_accessor :no_ssl_verify
565
+ alias_method :no_ssl_verify?, :no_ssl_verify
566
+
507
567
  # The path within the Git repository that represents the top level of the repo
508
568
  # to sync. Default: the root directory of the repository.
509
569
  # Corresponds to the JSON property `policyDir`
@@ -520,6 +580,11 @@ module Google
520
580
  # @return [String]
521
581
  attr_accessor :sync_branch
522
582
 
583
+ # The depth of git commits synced by the git-sync container.
584
+ # Corresponds to the JSON property `syncDepth`
585
+ # @return [Fixnum]
586
+ attr_accessor :sync_depth
587
+
523
588
  # The URL of the Git repository to use as the source of truth.
524
589
  # Corresponds to the JSON property `syncRepo`
525
590
  # @return [String]
@@ -543,9 +608,11 @@ module Google
543
608
  def update!(**args)
544
609
  @gcp_service_account_email = args[:gcp_service_account_email] if args.key?(:gcp_service_account_email)
545
610
  @https_proxy = args[:https_proxy] if args.key?(:https_proxy)
611
+ @no_ssl_verify = args[:no_ssl_verify] if args.key?(:no_ssl_verify)
546
612
  @policy_dir = args[:policy_dir] if args.key?(:policy_dir)
547
613
  @secret_type = args[:secret_type] if args.key?(:secret_type)
548
614
  @sync_branch = args[:sync_branch] if args.key?(:sync_branch)
615
+ @sync_depth = args[:sync_depth] if args.key?(:sync_depth)
549
616
  @sync_repo = args[:sync_repo] if args.key?(:sync_repo)
550
617
  @sync_rev = args[:sync_rev] if args.key?(:sync_rev)
551
618
  @sync_wait_secs = args[:sync_wait_secs] if args.key?(:sync_wait_secs)
@@ -935,6 +1002,27 @@ module Google
935
1002
  end
936
1003
  end
937
1004
 
1005
+ # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
1006
+ # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
1007
+ # pkg/api/resource/generated.proto
1008
+ class ConfigManagementQuantity
1009
+ include Google::Apis::Core::Hashable
1010
+
1011
+ # Stringified version of the quantity, e.g., "800 MiB".
1012
+ # Corresponds to the JSON property `string`
1013
+ # @return [String]
1014
+ attr_accessor :string
1015
+
1016
+ def initialize(**args)
1017
+ update!(**args)
1018
+ end
1019
+
1020
+ # Update properties of this object
1021
+ def update!(**args)
1022
+ @string = args[:string] if args.key?(:string)
1023
+ end
1024
+ end
1025
+
938
1026
  # An ACM created error representing a problem syncing configurations
939
1027
  class ConfigManagementSyncError
940
1028
  include Google::Apis::Core::Hashable
@@ -1688,6 +1776,16 @@ module Google
1688
1776
  # @return [Google::Apis::GkehubV1::KubernetesMetadata]
1689
1777
  attr_accessor :kubernetes_metadata
1690
1778
 
1779
+ # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
1780
+ # Corresponds to the JSON property `multiCloudCluster`
1781
+ # @return [Google::Apis::GkehubV1::MultiCloudCluster]
1782
+ attr_accessor :multi_cloud_cluster
1783
+
1784
+ # OnPremCluster contains information specific to GKE On-Prem clusters.
1785
+ # Corresponds to the JSON property `onPremCluster`
1786
+ # @return [Google::Apis::GkehubV1::OnPremCluster]
1787
+ attr_accessor :on_prem_cluster
1788
+
1691
1789
  def initialize(**args)
1692
1790
  update!(**args)
1693
1791
  end
@@ -1696,6 +1794,8 @@ module Google
1696
1794
  def update!(**args)
1697
1795
  @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
1698
1796
  @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
1797
+ @multi_cloud_cluster = args[:multi_cloud_cluster] if args.key?(:multi_cloud_cluster)
1798
+ @on_prem_cluster = args[:on_prem_cluster] if args.key?(:on_prem_cluster)
1699
1799
  end
1700
1800
  end
1701
1801
 
@@ -1767,6 +1867,36 @@ module Google
1767
1867
  end
1768
1868
  end
1769
1869
 
1870
+ # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
1871
+ class MultiCloudCluster
1872
+ include Google::Apis::Core::Hashable
1873
+
1874
+ # Output only. If cluster_missing is set then it denotes that API(gkemulticloud.
1875
+ # googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
1876
+ # Corresponds to the JSON property `clusterMissing`
1877
+ # @return [Boolean]
1878
+ attr_accessor :cluster_missing
1879
+ alias_method :cluster_missing?, :cluster_missing
1880
+
1881
+ # Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For
1882
+ # example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-
1883
+ # a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/
1884
+ # locations/us-west1-a/azureClusters/my-cluster
1885
+ # Corresponds to the JSON property `resourceLink`
1886
+ # @return [String]
1887
+ attr_accessor :resource_link
1888
+
1889
+ def initialize(**args)
1890
+ update!(**args)
1891
+ end
1892
+
1893
+ # Update properties of this object
1894
+ def update!(**args)
1895
+ @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
1896
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
1897
+ end
1898
+ end
1899
+
1770
1900
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
1771
1901
  # feature.
1772
1902
  class MultiClusterIngressFeatureSpec
@@ -1788,6 +1918,43 @@ module Google
1788
1918
  end
1789
1919
  end
1790
1920
 
1921
+ # OnPremCluster contains information specific to GKE On-Prem clusters.
1922
+ class OnPremCluster
1923
+ include Google::Apis::Core::Hashable
1924
+
1925
+ # Immutable. Whether the cluster is an admin cluster.
1926
+ # Corresponds to the JSON property `adminCluster`
1927
+ # @return [Boolean]
1928
+ attr_accessor :admin_cluster
1929
+ alias_method :admin_cluster?, :admin_cluster
1930
+
1931
+ # Output only. If cluster_missing is set then it denotes that API(gkeonprem.
1932
+ # googleapis.com) resource for this GKE On-Prem cluster no longer exists.
1933
+ # Corresponds to the JSON property `clusterMissing`
1934
+ # @return [Boolean]
1935
+ attr_accessor :cluster_missing
1936
+ alias_method :cluster_missing?, :cluster_missing
1937
+
1938
+ # Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
1939
+ # example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
1940
+ # vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
1941
+ # locations/us-west1-a/bareMetalClusters/my-cluster
1942
+ # Corresponds to the JSON property `resourceLink`
1943
+ # @return [String]
1944
+ attr_accessor :resource_link
1945
+
1946
+ def initialize(**args)
1947
+ update!(**args)
1948
+ end
1949
+
1950
+ # Update properties of this object
1951
+ def update!(**args)
1952
+ @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
1953
+ @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
1954
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
1955
+ end
1956
+ end
1957
+
1791
1958
  # This resource represents a long-running operation that is the result of a
1792
1959
  # network API call.
1793
1960
  class Operation
@@ -1933,7 +2100,7 @@ module Google
1933
2100
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1934
2101
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1935
2102
  # description: Does not grant access after Sep 2020 expression: request.time <
1936
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
2103
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1937
2104
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1938
2105
  # google.com/iam/docs/).
1939
2106
  class Policy
@@ -2027,7 +2194,7 @@ module Google
2027
2194
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
2028
2195
  # roles/resourcemanager.organizationViewer condition: title: expirable access
2029
2196
  # description: Does not grant access after Sep 2020 expression: request.time <
2030
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
2197
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
2031
2198
  # description of IAM and its features, see the [IAM documentation](https://cloud.
2032
2199
  # google.com/iam/docs/).
2033
2200
  # Corresponds to the JSON property `policy`
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210709"
25
+ REVISION = "20210920"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class ConfigManagementContainerResourceRequirements
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class ConfigManagementErrorResource
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -178,6 +184,12 @@ module Google
178
184
  include Google::Apis::Core::JsonObjectSupport
179
185
  end
180
186
 
187
+ class ConfigManagementQuantity
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class ConfigManagementSyncError
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -310,12 +322,24 @@ module Google
310
322
  include Google::Apis::Core::JsonObjectSupport
311
323
  end
312
324
 
325
+ class MultiCloudCluster
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
313
331
  class MultiClusterIngressFeatureSpec
314
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
333
 
316
334
  include Google::Apis::Core::JsonObjectSupport
317
335
  end
318
336
 
337
+ class OnPremCluster
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
319
343
  class Operation
320
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
345
 
@@ -422,6 +446,8 @@ module Google
422
446
  class Representation < Google::Apis::Core::JsonRepresentation
423
447
  property :git, as: 'git', class: Google::Apis::GkehubV1::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1::ConfigManagementGitConfig::Representation
424
448
 
449
+ hash :resource_requirements, as: 'resourceRequirements', class: Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements, decorator: Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements::Representation
450
+
425
451
  property :source_format, as: 'sourceFormat'
426
452
  end
427
453
  end
@@ -429,6 +455,7 @@ module Google
429
455
  class ConfigManagementConfigSyncDeploymentState
430
456
  # @private
431
457
  class Representation < Google::Apis::Core::JsonRepresentation
458
+ property :admission_webhook, as: 'admissionWebhook'
432
459
  property :git_sync, as: 'gitSync'
433
460
  property :importer, as: 'importer'
434
461
  property :monitor, as: 'monitor'
@@ -453,6 +480,7 @@ module Google
453
480
  class ConfigManagementConfigSyncVersion
454
481
  # @private
455
482
  class Representation < Google::Apis::Core::JsonRepresentation
483
+ property :admission_webhook, as: 'admissionWebhook'
456
484
  property :git_sync, as: 'gitSync'
457
485
  property :importer, as: 'importer'
458
486
  property :monitor, as: 'monitor'
@@ -462,6 +490,17 @@ module Google
462
490
  end
463
491
  end
464
492
 
493
+ class ConfigManagementContainerResourceRequirements
494
+ # @private
495
+ class Representation < Google::Apis::Core::JsonRepresentation
496
+ property :container_name, as: 'containerName'
497
+ property :cpu_limit, as: 'cpuLimit', class: Google::Apis::GkehubV1::ConfigManagementQuantity, decorator: Google::Apis::GkehubV1::ConfigManagementQuantity::Representation
498
+
499
+ property :memory_limit, as: 'memoryLimit', class: Google::Apis::GkehubV1::ConfigManagementQuantity, decorator: Google::Apis::GkehubV1::ConfigManagementQuantity::Representation
500
+
501
+ end
502
+ end
503
+
465
504
  class ConfigManagementErrorResource
466
505
  # @private
467
506
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -486,9 +525,11 @@ module Google
486
525
  class Representation < Google::Apis::Core::JsonRepresentation
487
526
  property :gcp_service_account_email, as: 'gcpServiceAccountEmail'
488
527
  property :https_proxy, as: 'httpsProxy'
528
+ property :no_ssl_verify, as: 'noSslVerify'
489
529
  property :policy_dir, as: 'policyDir'
490
530
  property :secret_type, as: 'secretType'
491
531
  property :sync_branch, as: 'syncBranch'
532
+ property :sync_depth, :numeric_string => true, as: 'syncDepth'
492
533
  property :sync_repo, as: 'syncRepo'
493
534
  property :sync_rev, as: 'syncRev'
494
535
  property :sync_wait_secs, :numeric_string => true, as: 'syncWaitSecs'
@@ -615,6 +656,13 @@ module Google
615
656
  end
616
657
  end
617
658
 
659
+ class ConfigManagementQuantity
660
+ # @private
661
+ class Representation < Google::Apis::Core::JsonRepresentation
662
+ property :string, as: 'string'
663
+ end
664
+ end
665
+
618
666
  class ConfigManagementSyncError
619
667
  # @private
620
668
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -814,6 +862,10 @@ module Google
814
862
 
815
863
  property :kubernetes_metadata, as: 'kubernetesMetadata', class: Google::Apis::GkehubV1::KubernetesMetadata, decorator: Google::Apis::GkehubV1::KubernetesMetadata::Representation
816
864
 
865
+ property :multi_cloud_cluster, as: 'multiCloudCluster', class: Google::Apis::GkehubV1::MultiCloudCluster, decorator: Google::Apis::GkehubV1::MultiCloudCluster::Representation
866
+
867
+ property :on_prem_cluster, as: 'onPremCluster', class: Google::Apis::GkehubV1::OnPremCluster, decorator: Google::Apis::GkehubV1::OnPremCluster::Representation
868
+
817
869
  end
818
870
  end
819
871
 
@@ -842,6 +894,14 @@ module Google
842
894
  end
843
895
  end
844
896
 
897
+ class MultiCloudCluster
898
+ # @private
899
+ class Representation < Google::Apis::Core::JsonRepresentation
900
+ property :cluster_missing, as: 'clusterMissing'
901
+ property :resource_link, as: 'resourceLink'
902
+ end
903
+ end
904
+
845
905
  class MultiClusterIngressFeatureSpec
846
906
  # @private
847
907
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -849,6 +909,15 @@ module Google
849
909
  end
850
910
  end
851
911
 
912
+ class OnPremCluster
913
+ # @private
914
+ class Representation < Google::Apis::Core::JsonRepresentation
915
+ property :admin_cluster, as: 'adminCluster'
916
+ property :cluster_missing, as: 'clusterMissing'
917
+ property :resource_link, as: 'resourceLink'
918
+ end
919
+ end
920
+
852
921
  class Operation
853
922
  # @private
854
923
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20,7 +20,7 @@ require 'google/apis/errors'
20
20
  module Google
21
21
  module Apis
22
22
  module GkehubV1
23
- # GKE Hub
23
+ # GKE Hub API
24
24
  #
25
25
  #
26
26
  #
@@ -19,17 +19,17 @@ require 'google/apis/gkehub_v1/gem_version.rb'
19
19
 
20
20
  module Google
21
21
  module Apis
22
- # GKE Hub
22
+ # GKE Hub API
23
23
  #
24
24
  #
25
25
  #
26
26
  # @see https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster
27
27
  module GkehubV1
28
- # Version of the GKE Hub this client connects to.
28
+ # Version of the GKE Hub API this client connects to.
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.12.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: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2021-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -30,12 +30,12 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
33
- description: This is the simple REST client for GKE Hub V1. Simple REST clients are
34
- Ruby client libraries that provide access to Google services via their HTTP REST
35
- API endpoints. These libraries are generated and updated automatically based on
36
- the discovery documents published by the service, and they handle most concerns
33
+ description: This is the simple REST client for GKE Hub API V1. Simple REST clients
34
+ are Ruby client libraries that provide access to Google services via their HTTP
35
+ REST API endpoints. These libraries are generated and updated automatically based
36
+ on the discovery documents published by the service, and they handle most concerns
37
37
  such as authentication, pagination, retry, timeouts, and logging. You can use this
38
- client to access the GKE Hub, but note that some services may provide a separate
38
+ client to access the GKE Hub API, but note that some services may provide a separate
39
39
  modern client that is easier to use.
40
40
  email: googleapis-packages@google.com
41
41
  executables: []
@@ -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/master/generated/google-apis-gkehub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -78,5 +78,5 @@ requirements: []
78
78
  rubygems_version: 3.2.17
79
79
  signing_key:
80
80
  specification_version: 4
81
- summary: Simple REST client for GKE Hub V1
81
+ summary: Simple REST client for GKE Hub API V1
82
82
  test_files: []