google-apis-gkehub_v1 0.10.0 → 0.11.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: 8b2a43e31b225406d7d35241c3871a9959f81c8c099b86138dd7f1cb02ea84b0
4
- data.tar.gz: 1c6d6153588374607ca80c49d1c2691136efea579e98027b458be882bb7dcae9
3
+ metadata.gz: d3bc363f5aa703d31a1d61ea1961e0402bca121e270e7962124b534b87a1a20d
4
+ data.tar.gz: d65487533140d0045ee673e5a70ec5c2f42e1aa63db78831e6537d21d867480d
5
5
  SHA512:
6
- metadata.gz: 254e6aa19362d8fe8a517da5b9a1182fa7a5873235bf3c1a0f6efc7723868724b4efc9126d2580c8d19226d680021b249392349330344364138d23dce9ea3e98
7
- data.tar.gz: 9cc5cf4e5cc2b612349168bb9df2cdb48a65521f326dd8d5cc406055534256025b99d91c98d0794025a9e562bb327f4bff63b11e3cd89451cc3fbfa88c0ad8a6
6
+ metadata.gz: ab2431257e4fa3f5fd19d2812a03fa53986830859f2fa17d67ab6ff1639de8dafa8b3fc0af313062eee719ddc846c62a6569376539d6594b514b490b83875526
7
+ data.tar.gz: a09da86bea27bf5b1120ffa4a844f813ce9a499f55e7cd5573d464f54be90671e451cc533dc6184ca7f945a3d81cb07d2f23e4c104132db82467a8054328596d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.11.0 (2021-08-28)
4
+
5
+ * Regenerated from discovery document revision 20210820
6
+
3
7
  ### v0.10.0 (2021-08-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20210813
@@ -1688,6 +1688,16 @@ module Google
1688
1688
  # @return [Google::Apis::GkehubV1::KubernetesMetadata]
1689
1689
  attr_accessor :kubernetes_metadata
1690
1690
 
1691
+ # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
1692
+ # Corresponds to the JSON property `multiCloudCluster`
1693
+ # @return [Google::Apis::GkehubV1::MultiCloudCluster]
1694
+ attr_accessor :multi_cloud_cluster
1695
+
1696
+ # OnPremCluster contains information specific to GKE On-Prem clusters.
1697
+ # Corresponds to the JSON property `onPremCluster`
1698
+ # @return [Google::Apis::GkehubV1::OnPremCluster]
1699
+ attr_accessor :on_prem_cluster
1700
+
1691
1701
  def initialize(**args)
1692
1702
  update!(**args)
1693
1703
  end
@@ -1696,6 +1706,8 @@ module Google
1696
1706
  def update!(**args)
1697
1707
  @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
1698
1708
  @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
1709
+ @multi_cloud_cluster = args[:multi_cloud_cluster] if args.key?(:multi_cloud_cluster)
1710
+ @on_prem_cluster = args[:on_prem_cluster] if args.key?(:on_prem_cluster)
1699
1711
  end
1700
1712
  end
1701
1713
 
@@ -1767,6 +1779,36 @@ module Google
1767
1779
  end
1768
1780
  end
1769
1781
 
1782
+ # MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
1783
+ class MultiCloudCluster
1784
+ include Google::Apis::Core::Hashable
1785
+
1786
+ # Output only. If cluster_missing is set then it denotes that API(gkemulticloud.
1787
+ # googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists.
1788
+ # Corresponds to the JSON property `clusterMissing`
1789
+ # @return [Boolean]
1790
+ attr_accessor :cluster_missing
1791
+ alias_method :cluster_missing?, :cluster_missing
1792
+
1793
+ # Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For
1794
+ # example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-
1795
+ # a/awsClusters/my-cluster //gkemulticloud.googleapis.com/projects/my-project/
1796
+ # locations/us-west1-a/azureClusters/my-cluster
1797
+ # Corresponds to the JSON property `resourceLink`
1798
+ # @return [String]
1799
+ attr_accessor :resource_link
1800
+
1801
+ def initialize(**args)
1802
+ update!(**args)
1803
+ end
1804
+
1805
+ # Update properties of this object
1806
+ def update!(**args)
1807
+ @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
1808
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
1809
+ end
1810
+ end
1811
+
1770
1812
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
1771
1813
  # feature.
1772
1814
  class MultiClusterIngressFeatureSpec
@@ -1788,6 +1830,43 @@ module Google
1788
1830
  end
1789
1831
  end
1790
1832
 
1833
+ # OnPremCluster contains information specific to GKE On-Prem clusters.
1834
+ class OnPremCluster
1835
+ include Google::Apis::Core::Hashable
1836
+
1837
+ # Immutable. Whether the cluster is an admin cluster.
1838
+ # Corresponds to the JSON property `adminCluster`
1839
+ # @return [Boolean]
1840
+ attr_accessor :admin_cluster
1841
+ alias_method :admin_cluster?, :admin_cluster
1842
+
1843
+ # Output only. If cluster_missing is set then it denotes that API(gkeonprem.
1844
+ # googleapis.com) resource for this GKE On-Prem cluster no longer exists.
1845
+ # Corresponds to the JSON property `clusterMissing`
1846
+ # @return [Boolean]
1847
+ attr_accessor :cluster_missing
1848
+ alias_method :cluster_missing?, :cluster_missing
1849
+
1850
+ # Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
1851
+ # example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
1852
+ # vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
1853
+ # locations/us-west1-a/bareMetalClusters/my-cluster
1854
+ # Corresponds to the JSON property `resourceLink`
1855
+ # @return [String]
1856
+ attr_accessor :resource_link
1857
+
1858
+ def initialize(**args)
1859
+ update!(**args)
1860
+ end
1861
+
1862
+ # Update properties of this object
1863
+ def update!(**args)
1864
+ @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
1865
+ @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
1866
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
1867
+ end
1868
+ end
1869
+
1791
1870
  # This resource represents a long-running operation that is the result of a
1792
1871
  # network API call.
1793
1872
  class Operation
@@ -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.10.0"
19
+ GEM_VERSION = "0.11.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 = "20210813"
25
+ REVISION = "20210820"
26
26
  end
27
27
  end
28
28
  end
@@ -310,12 +310,24 @@ module Google
310
310
  include Google::Apis::Core::JsonObjectSupport
311
311
  end
312
312
 
313
+ class MultiCloudCluster
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
313
319
  class MultiClusterIngressFeatureSpec
314
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
321
 
316
322
  include Google::Apis::Core::JsonObjectSupport
317
323
  end
318
324
 
325
+ class OnPremCluster
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
319
331
  class Operation
320
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
333
 
@@ -814,6 +826,10 @@ module Google
814
826
 
815
827
  property :kubernetes_metadata, as: 'kubernetesMetadata', class: Google::Apis::GkehubV1::KubernetesMetadata, decorator: Google::Apis::GkehubV1::KubernetesMetadata::Representation
816
828
 
829
+ property :multi_cloud_cluster, as: 'multiCloudCluster', class: Google::Apis::GkehubV1::MultiCloudCluster, decorator: Google::Apis::GkehubV1::MultiCloudCluster::Representation
830
+
831
+ property :on_prem_cluster, as: 'onPremCluster', class: Google::Apis::GkehubV1::OnPremCluster, decorator: Google::Apis::GkehubV1::OnPremCluster::Representation
832
+
817
833
  end
818
834
  end
819
835
 
@@ -842,6 +858,14 @@ module Google
842
858
  end
843
859
  end
844
860
 
861
+ class MultiCloudCluster
862
+ # @private
863
+ class Representation < Google::Apis::Core::JsonRepresentation
864
+ property :cluster_missing, as: 'clusterMissing'
865
+ property :resource_link, as: 'resourceLink'
866
+ end
867
+ end
868
+
845
869
  class MultiClusterIngressFeatureSpec
846
870
  # @private
847
871
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -849,6 +873,15 @@ module Google
849
873
  end
850
874
  end
851
875
 
876
+ class OnPremCluster
877
+ # @private
878
+ class Representation < Google::Apis::Core::JsonRepresentation
879
+ property :admin_cluster, as: 'adminCluster'
880
+ property :cluster_missing, as: 'clusterMissing'
881
+ property :resource_link, as: 'resourceLink'
882
+ end
883
+ end
884
+
852
885
  class Operation
853
886
  # @private
854
887
  class Representation < Google::Apis::Core::JsonRepresentation
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.10.0
4
+ version: 0.11.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-08-23 00:00:00.000000000 Z
11
+ date: 2021-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.11.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: []