google-apis-gkehub_v1beta 0.59.0 → 0.60.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: cba8244e91a46fbf01cbe555945ae404338c74987017cb480dcab04461064db4
4
- data.tar.gz: 02eaf7dedba1acfce9d336e79a4846a52a1f34b7f4bde9066f092dfa7f72c1e3
3
+ metadata.gz: 777c8fdcc61a84f08975aade0e04e252d9a3055ef3d159d95d33a6746101e067
4
+ data.tar.gz: 7f622041ddf727e7086bf2e9e7ba1ece4bd442b9ecd5e13470486f896f1c4603
5
5
  SHA512:
6
- metadata.gz: 2dd33d1e5646fc08feb8b00acedcdcf4c5ebee87ef4c7ea81ecabd4c40309886d5d5e5f9174512bec08951862e29d92c2a231ca1dbaeaa1a72d1b55a0871dbf6
7
- data.tar.gz: 49c723755b3ee424dfc65c4bdea068a6e43d6ac7c776f1bc8df854fab5c88444bde5513cd3993d54337fc2fd96ff46e3cb5224a33238213d66d25ea86a687a1b
6
+ metadata.gz: c41bb7b3084f0e88d14f8095d16a34ccd73c27ed4a9b0d25f783c370609160543a958f03ed2af10451d836c2ed7ae388edfbe2d290b1276127ceb0b2ad5f3de3
7
+ data.tar.gz: 525df4ac6c78efc5084f1f5d357783f1645a90f6dd16a53799e4523b19c00711aa43534c87a816da2497ee4139b58c0c00ca212966305d83f9be0d28414d1c2c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.60.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231006
6
+
3
7
  ### v0.59.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20230929
@@ -3011,8 +3011,10 @@ module Google
3011
3011
  # @return [String]
3012
3012
  attr_accessor :last_connection_time
3013
3013
 
3014
- # This field informs Fleet-based applications/services/UIs with the necessary
3015
- # information for where each underlying Cluster reports its metrics.
3014
+ # MonitoringConfig informs Fleet-based applications/services/UIs how the metrics
3015
+ # for the underlying cluster is reported to cloud monitoring services. It can be
3016
+ # set from empty to non-empty, but can't be mutated directly to prevent
3017
+ # accidentally breaking the constinousty of metrics.
3016
3018
  # Corresponds to the JSON property `monitoringConfig`
3017
3019
  # @return [Google::Apis::GkehubV1beta::MonitoringConfig]
3018
3020
  attr_accessor :monitoring_config
@@ -3420,40 +3422,40 @@ module Google
3420
3422
  end
3421
3423
  end
3422
3424
 
3423
- # This field informs Fleet-based applications/services/UIs with the necessary
3424
- # information for where each underlying Cluster reports its metrics.
3425
+ # MonitoringConfig informs Fleet-based applications/services/UIs how the metrics
3426
+ # for the underlying cluster is reported to cloud monitoring services. It can be
3427
+ # set from empty to non-empty, but can't be mutated directly to prevent
3428
+ # accidentally breaking the constinousty of metrics.
3425
3429
  class MonitoringConfig
3426
3430
  include Google::Apis::Core::Hashable
3427
3431
 
3428
- # Immutable. Cluster name used to report metrics. For Anthos on VMWare/Baremetal,
3429
- # it would be in format `memberClusters/cluster_name`; And for Anthos on
3430
- # MultiCloud, it would be in format ``azureClusters, awsClusters`/cluster_name`.
3432
+ # Optional. Cluster name used to report metrics. For Anthos on VMWare/Baremetal/
3433
+ # MultiCloud clusters, it would be in format `cluster_type`/`cluster_name`, e.g.,
3434
+ # "awsClusters/cluster_1".
3431
3435
  # Corresponds to the JSON property `cluster`
3432
3436
  # @return [String]
3433
3437
  attr_accessor :cluster
3434
3438
 
3435
- # Immutable. Cluster hash, this is a unique string generated by google code,
3436
- # which does not contain any PII, which we can use to reference the cluster.
3437
- # This is expected to be created by the monitoring stack and persisted into the
3438
- # Cluster object as well as to GKE-Hub.
3439
+ # Optional. For GKE and Multicloud clusters, this is the UUID of the cluster
3440
+ # resource. For VMWare and Baremetal clusters, this is the kube-system UID.
3439
3441
  # Corresponds to the JSON property `clusterHash`
3440
3442
  # @return [String]
3441
3443
  attr_accessor :cluster_hash
3442
3444
 
3443
- # Kubernetes system metrics, if available, are written to this prefix. This
3444
- # defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos
3445
+ # Optional. Kubernetes system metrics, if available, are written to this prefix.
3446
+ # This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos
3445
3447
  # eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but
3446
- # will migration to be under kubernetes.io/anthos
3448
+ # will migration to be under kubernetes.io/anthos.
3447
3449
  # Corresponds to the JSON property `kubernetesMetricsPrefix`
3448
3450
  # @return [String]
3449
3451
  attr_accessor :kubernetes_metrics_prefix
3450
3452
 
3451
- # Immutable. Location used to report Metrics
3453
+ # Optional. Location used to report Metrics
3452
3454
  # Corresponds to the JSON property `location`
3453
3455
  # @return [String]
3454
3456
  attr_accessor :location
3455
3457
 
3456
- # Immutable. Project used to report Metrics
3458
+ # Optional. Project used to report Metrics
3457
3459
  # Corresponds to the JSON property `projectId`
3458
3460
  # @return [String]
3459
3461
  attr_accessor :project_id
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1beta
18
18
  # Version of the google-apis-gkehub_v1beta gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230929"
25
+ REVISION = "20231006"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.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: 2023-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.59.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.60.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []