google-apis-gkehub_v1alpha 0.49.0 → 0.51.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cb423d3353a0518533ae850b470440d59ce5ddab4c746aa04bef2f25426f0dd
|
4
|
+
data.tar.gz: b6a1e7b572c3a502affdac0e75421b38bab1921cdca982371c8e49f4af42bdc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f77509714666bb89eab8139ec09bd86c2db8f408c44cc2f6fa5e320a751a14c80afa0d0681d2b12f4189bb7c3f3c7cdb79c1af29543541f76fecd50649138112
|
7
|
+
data.tar.gz: 29552d35ec3cd509bd2a054d5ed47562b47295cc9d9f5f07782e0300e110001ec894e0f7ffee18fbfc0aab0f021956fb8591aaf619aa565a790e884f0dc82cdf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha
|
2
2
|
|
3
|
+
### v0.51.0 (2023-04-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230407
|
6
|
+
|
7
|
+
### v0.50.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230316
|
10
|
+
|
3
11
|
### v0.49.0 (2023-03-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230310
|
@@ -593,6 +593,11 @@ module Google
|
|
593
593
|
# @return [Google::Apis::GkehubV1alpha::ConfigManagementGitConfig]
|
594
594
|
attr_accessor :git
|
595
595
|
|
596
|
+
# Configuration for Managed Config Sync.
|
597
|
+
# Corresponds to the JSON property `managed`
|
598
|
+
# @return [Google::Apis::GkehubV1alpha::ConfigManagementManaged]
|
599
|
+
attr_accessor :managed
|
600
|
+
|
596
601
|
# OCI repo configuration for a single cluster
|
597
602
|
# Corresponds to the JSON property `oci`
|
598
603
|
# @return [Google::Apis::GkehubV1alpha::ConfigManagementOciConfig]
|
@@ -621,6 +626,7 @@ module Google
|
|
621
626
|
@allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
|
622
627
|
@enabled = args[:enabled] if args.key?(:enabled)
|
623
628
|
@git = args[:git] if args.key?(:git)
|
629
|
+
@managed = args[:managed] if args.key?(:managed)
|
624
630
|
@oci = args[:oci] if args.key?(:oci)
|
625
631
|
@prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
|
626
632
|
@source_format = args[:source_format] if args.key?(:source_format)
|
@@ -1060,6 +1066,27 @@ module Google
|
|
1060
1066
|
end
|
1061
1067
|
end
|
1062
1068
|
|
1069
|
+
# Configuration for Managed Config Sync.
|
1070
|
+
class ConfigManagementManaged
|
1071
|
+
include Google::Apis::Core::Hashable
|
1072
|
+
|
1073
|
+
# Set to true to enable Managed Config Sync. Defaults to false which disables
|
1074
|
+
# Managed Config Sync.
|
1075
|
+
# Corresponds to the JSON property `enabled`
|
1076
|
+
# @return [Boolean]
|
1077
|
+
attr_accessor :enabled
|
1078
|
+
alias_method :enabled?, :enabled
|
1079
|
+
|
1080
|
+
def initialize(**args)
|
1081
|
+
update!(**args)
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
# Update properties of this object
|
1085
|
+
def update!(**args)
|
1086
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1087
|
+
end
|
1088
|
+
end
|
1089
|
+
|
1063
1090
|
# **Anthos Config Management**: Configuration for a single cluster. Intended to
|
1064
1091
|
# parallel the ConfigManagement CR.
|
1065
1092
|
class ConfigManagementMembershipSpec
|
@@ -2800,6 +2827,12 @@ module Google
|
|
2800
2827
|
# @return [String]
|
2801
2828
|
attr_accessor :last_connection_time
|
2802
2829
|
|
2830
|
+
# This field informs Fleet-based applications/services/UIs with the necessary
|
2831
|
+
# information for where each underlying Cluster reports its metrics.
|
2832
|
+
# Corresponds to the JSON property `monitoringConfig`
|
2833
|
+
# @return [Google::Apis::GkehubV1alpha::MonitoringConfig]
|
2834
|
+
attr_accessor :monitoring_config
|
2835
|
+
|
2803
2836
|
# Output only. The full, unique name of this Membership resource in the format `
|
2804
2837
|
# projects/*/locations/*/memberships/`membership_id``, set during creation. `
|
2805
2838
|
# membership_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63
|
@@ -2842,6 +2875,7 @@ module Google
|
|
2842
2875
|
@external_id = args[:external_id] if args.key?(:external_id)
|
2843
2876
|
@labels = args[:labels] if args.key?(:labels)
|
2844
2877
|
@last_connection_time = args[:last_connection_time] if args.key?(:last_connection_time)
|
2878
|
+
@monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
|
2845
2879
|
@name = args[:name] if args.key?(:name)
|
2846
2880
|
@state = args[:state] if args.key?(:state)
|
2847
2881
|
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
@@ -3207,6 +3241,58 @@ module Google
|
|
3207
3241
|
end
|
3208
3242
|
end
|
3209
3243
|
|
3244
|
+
# This field informs Fleet-based applications/services/UIs with the necessary
|
3245
|
+
# information for where each underlying Cluster reports its metrics.
|
3246
|
+
class MonitoringConfig
|
3247
|
+
include Google::Apis::Core::Hashable
|
3248
|
+
|
3249
|
+
# Immutable. Cluster name used to report metrics. For Anthos on VMWare/Baremetal,
|
3250
|
+
# it would be in format `memberClusters/cluster_name`; And for Anthos on
|
3251
|
+
# MultiCloud, it would be in format ``azureClusters, awsClusters`/cluster_name`.
|
3252
|
+
# Corresponds to the JSON property `cluster`
|
3253
|
+
# @return [String]
|
3254
|
+
attr_accessor :cluster
|
3255
|
+
|
3256
|
+
# Immutable. Cluster hash, this is a unique string generated by google code,
|
3257
|
+
# which does not contain any PII, which we can use to reference the cluster.
|
3258
|
+
# This is expected to be created by the monitoring stack and persisted into the
|
3259
|
+
# Cluster object as well as to GKE-Hub.
|
3260
|
+
# Corresponds to the JSON property `clusterHash`
|
3261
|
+
# @return [String]
|
3262
|
+
attr_accessor :cluster_hash
|
3263
|
+
|
3264
|
+
# Kubernetes system metrics, if available, are written to this prefix. This
|
3265
|
+
# defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos
|
3266
|
+
# eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today but
|
3267
|
+
# will migration to be under kubernetes.io/anthos
|
3268
|
+
# Corresponds to the JSON property `kubernetesMetricsPrefix`
|
3269
|
+
# @return [String]
|
3270
|
+
attr_accessor :kubernetes_metrics_prefix
|
3271
|
+
|
3272
|
+
# Immutable. Location used to report Metrics
|
3273
|
+
# Corresponds to the JSON property `location`
|
3274
|
+
# @return [String]
|
3275
|
+
attr_accessor :location
|
3276
|
+
|
3277
|
+
# Immutable. Project used to report Metrics
|
3278
|
+
# Corresponds to the JSON property `projectId`
|
3279
|
+
# @return [String]
|
3280
|
+
attr_accessor :project_id
|
3281
|
+
|
3282
|
+
def initialize(**args)
|
3283
|
+
update!(**args)
|
3284
|
+
end
|
3285
|
+
|
3286
|
+
# Update properties of this object
|
3287
|
+
def update!(**args)
|
3288
|
+
@cluster = args[:cluster] if args.key?(:cluster)
|
3289
|
+
@cluster_hash = args[:cluster_hash] if args.key?(:cluster_hash)
|
3290
|
+
@kubernetes_metrics_prefix = args[:kubernetes_metrics_prefix] if args.key?(:kubernetes_metrics_prefix)
|
3291
|
+
@location = args[:location] if args.key?(:location)
|
3292
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
3293
|
+
end
|
3294
|
+
end
|
3295
|
+
|
3210
3296
|
# MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
|
3211
3297
|
class MultiCloudCluster
|
3212
3298
|
include Google::Apis::Core::Hashable
|
@@ -3607,12 +3693,14 @@ module Google
|
|
3607
3693
|
class PolicyControllerBundleInstallSpec
|
3608
3694
|
include Google::Apis::Core::Hashable
|
3609
3695
|
|
3610
|
-
# the set of namespaces to be exempted from the bundle
|
3696
|
+
# the set of namespaces to be exempted from the bundle TODO (b/271878194):
|
3697
|
+
# Decrement this
|
3611
3698
|
# Corresponds to the JSON property `exemptedNamespaces`
|
3612
3699
|
# @return [Array<String>]
|
3613
3700
|
attr_accessor :exempted_namespaces
|
3614
3701
|
|
3615
|
-
# Management specifies how the bundle will be managed by the controller.
|
3702
|
+
# Management specifies how the bundle will be managed by the controller. TODO (b/
|
3703
|
+
# 271878194): Remove this
|
3616
3704
|
# Corresponds to the JSON property `management`
|
3617
3705
|
# @return [String]
|
3618
3706
|
attr_accessor :management
|
@@ -3757,11 +3845,16 @@ module Google
|
|
3757
3845
|
attr_accessor :component_states
|
3758
3846
|
|
3759
3847
|
# The state of the template library and any bundles included in the chosen
|
3760
|
-
# version of the manifest
|
3848
|
+
# version of the manifest TODO (b/271878194): Remove this
|
3761
3849
|
# Corresponds to the JSON property `contentStates`
|
3762
3850
|
# @return [Hash<String,Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState>]
|
3763
3851
|
attr_accessor :content_states
|
3764
3852
|
|
3853
|
+
# The state of the policy controller policy content
|
3854
|
+
# Corresponds to the JSON property `policyContentState`
|
3855
|
+
# @return [Google::Apis::GkehubV1alpha::PolicyControllerPolicyContentState]
|
3856
|
+
attr_accessor :policy_content_state
|
3857
|
+
|
3765
3858
|
# The overall Policy Controller lifecycle state observed by the Hub Feature
|
3766
3859
|
# controller.
|
3767
3860
|
# Corresponds to the JSON property `state`
|
@@ -3776,6 +3869,7 @@ module Google
|
|
3776
3869
|
def update!(**args)
|
3777
3870
|
@component_states = args[:component_states] if args.key?(:component_states)
|
3778
3871
|
@content_states = args[:content_states] if args.key?(:content_states)
|
3872
|
+
@policy_content_state = args[:policy_content_state] if args.key?(:policy_content_state)
|
3779
3873
|
@state = args[:state] if args.key?(:state)
|
3780
3874
|
end
|
3781
3875
|
end
|
@@ -3839,6 +3933,11 @@ module Google
|
|
3839
3933
|
# @return [Hash<String,Google::Apis::GkehubV1alpha::PolicyControllerBundleInstallSpec>]
|
3840
3934
|
attr_accessor :bundles
|
3841
3935
|
|
3936
|
+
# The config specifying which default library templates to install.
|
3937
|
+
# Corresponds to the JSON property `templateLibrary`
|
3938
|
+
# @return [Google::Apis::GkehubV1alpha::PolicyControllerTemplateLibraryConfig]
|
3939
|
+
attr_accessor :template_library
|
3940
|
+
|
3842
3941
|
def initialize(**args)
|
3843
3942
|
update!(**args)
|
3844
3943
|
end
|
@@ -3846,6 +3945,32 @@ module Google
|
|
3846
3945
|
# Update properties of this object
|
3847
3946
|
def update!(**args)
|
3848
3947
|
@bundles = args[:bundles] if args.key?(:bundles)
|
3948
|
+
@template_library = args[:template_library] if args.key?(:template_library)
|
3949
|
+
end
|
3950
|
+
end
|
3951
|
+
|
3952
|
+
# The state of the policy controller policy content
|
3953
|
+
class PolicyControllerPolicyContentState
|
3954
|
+
include Google::Apis::Core::Hashable
|
3955
|
+
|
3956
|
+
# The state of the any bundles included in the chosen version of the manifest
|
3957
|
+
# Corresponds to the JSON property `bundleStates`
|
3958
|
+
# @return [Hash<String,Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState>]
|
3959
|
+
attr_accessor :bundle_states
|
3960
|
+
|
3961
|
+
# OnClusterState represents the state of a sub-component of Policy Controller.
|
3962
|
+
# Corresponds to the JSON property `templateLibraryState`
|
3963
|
+
# @return [Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState]
|
3964
|
+
attr_accessor :template_library_state
|
3965
|
+
|
3966
|
+
def initialize(**args)
|
3967
|
+
update!(**args)
|
3968
|
+
end
|
3969
|
+
|
3970
|
+
# Update properties of this object
|
3971
|
+
def update!(**args)
|
3972
|
+
@bundle_states = args[:bundle_states] if args.key?(:bundle_states)
|
3973
|
+
@template_library_state = args[:template_library_state] if args.key?(:template_library_state)
|
3849
3974
|
end
|
3850
3975
|
end
|
3851
3976
|
|
@@ -3941,12 +4066,19 @@ module Google
|
|
3941
4066
|
class PolicyControllerTemplateLibraryConfig
|
3942
4067
|
include Google::Apis::Core::Hashable
|
3943
4068
|
|
3944
|
-
# Whether the standard template library should be installed or not.
|
4069
|
+
# Whether the standard template library should be installed or not. TODO (b/
|
4070
|
+
# 271878194): Remove this
|
3945
4071
|
# Corresponds to the JSON property `included`
|
3946
4072
|
# @return [Boolean]
|
3947
4073
|
attr_accessor :included
|
3948
4074
|
alias_method :included?, :included
|
3949
4075
|
|
4076
|
+
# Configures the manner in which the template library is installed on the
|
4077
|
+
# cluster. TODO (b/271878194): Decrement this
|
4078
|
+
# Corresponds to the JSON property `installation`
|
4079
|
+
# @return [String]
|
4080
|
+
attr_accessor :installation
|
4081
|
+
|
3950
4082
|
def initialize(**args)
|
3951
4083
|
update!(**args)
|
3952
4084
|
end
|
@@ -3954,6 +4086,7 @@ module Google
|
|
3954
4086
|
# Update properties of this object
|
3955
4087
|
def update!(**args)
|
3956
4088
|
@included = args[:included] if args.key?(:included)
|
4089
|
+
@installation = args[:installation] if args.key?(:installation)
|
3957
4090
|
end
|
3958
4091
|
end
|
3959
4092
|
|
@@ -4435,7 +4568,8 @@ module Google
|
|
4435
4568
|
class ServiceMeshMembershipSpec
|
4436
4569
|
include Google::Apis::Core::Hashable
|
4437
4570
|
|
4438
|
-
# Enables automatic control plane
|
4571
|
+
# Deprecated: use `management` instead Enables automatic control plane
|
4572
|
+
# management.
|
4439
4573
|
# Corresponds to the JSON property `controlPlane`
|
4440
4574
|
# @return [String]
|
4441
4575
|
attr_accessor :control_plane
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.51.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 = "
|
25
|
+
REVISION = "20230407"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -208,6 +208,12 @@ module Google
|
|
208
208
|
include Google::Apis::Core::JsonObjectSupport
|
209
209
|
end
|
210
210
|
|
211
|
+
class ConfigManagementManaged
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
211
217
|
class ConfigManagementMembershipSpec
|
212
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
219
|
|
@@ -544,6 +550,12 @@ module Google
|
|
544
550
|
include Google::Apis::Core::JsonObjectSupport
|
545
551
|
end
|
546
552
|
|
553
|
+
class MonitoringConfig
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
547
559
|
class MultiCloudCluster
|
548
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
561
|
|
@@ -634,6 +646,12 @@ module Google
|
|
634
646
|
include Google::Apis::Core::JsonObjectSupport
|
635
647
|
end
|
636
648
|
|
649
|
+
class PolicyControllerPolicyContentState
|
650
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
|
+
|
652
|
+
include Google::Apis::Core::JsonObjectSupport
|
653
|
+
end
|
654
|
+
|
637
655
|
class PolicyControllerPolicyControllerDeploymentConfig
|
638
656
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
639
657
|
|
@@ -986,6 +1004,8 @@ module Google
|
|
986
1004
|
property :enabled, as: 'enabled'
|
987
1005
|
property :git, as: 'git', class: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig::Representation
|
988
1006
|
|
1007
|
+
property :managed, as: 'managed', class: Google::Apis::GkehubV1alpha::ConfigManagementManaged, decorator: Google::Apis::GkehubV1alpha::ConfigManagementManaged::Representation
|
1008
|
+
|
989
1009
|
property :oci, as: 'oci', class: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig::Representation
|
990
1010
|
|
991
1011
|
property :prevent_drift, as: 'preventDrift'
|
@@ -1116,6 +1136,13 @@ module Google
|
|
1116
1136
|
end
|
1117
1137
|
end
|
1118
1138
|
|
1139
|
+
class ConfigManagementManaged
|
1140
|
+
# @private
|
1141
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1142
|
+
property :enabled, as: 'enabled'
|
1143
|
+
end
|
1144
|
+
end
|
1145
|
+
|
1119
1146
|
class ConfigManagementMembershipSpec
|
1120
1147
|
# @private
|
1121
1148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1609,6 +1636,8 @@ module Google
|
|
1609
1636
|
property :external_id, as: 'externalId'
|
1610
1637
|
hash :labels, as: 'labels'
|
1611
1638
|
property :last_connection_time, as: 'lastConnectionTime'
|
1639
|
+
property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::GkehubV1alpha::MonitoringConfig, decorator: Google::Apis::GkehubV1alpha::MonitoringConfig::Representation
|
1640
|
+
|
1612
1641
|
property :name, as: 'name'
|
1613
1642
|
property :state, as: 'state', class: Google::Apis::GkehubV1alpha::MembershipState, decorator: Google::Apis::GkehubV1alpha::MembershipState::Representation
|
1614
1643
|
|
@@ -1727,6 +1756,17 @@ module Google
|
|
1727
1756
|
end
|
1728
1757
|
end
|
1729
1758
|
|
1759
|
+
class MonitoringConfig
|
1760
|
+
# @private
|
1761
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1762
|
+
property :cluster, as: 'cluster'
|
1763
|
+
property :cluster_hash, as: 'clusterHash'
|
1764
|
+
property :kubernetes_metrics_prefix, as: 'kubernetesMetricsPrefix'
|
1765
|
+
property :location, as: 'location'
|
1766
|
+
property :project_id, as: 'projectId'
|
1767
|
+
end
|
1768
|
+
end
|
1769
|
+
|
1730
1770
|
class MultiCloudCluster
|
1731
1771
|
# @private
|
1732
1772
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1856,6 +1896,8 @@ module Google
|
|
1856
1896
|
|
1857
1897
|
hash :content_states, as: 'contentStates', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
|
1858
1898
|
|
1899
|
+
property :policy_content_state, as: 'policyContentState', class: Google::Apis::GkehubV1alpha::PolicyControllerPolicyContentState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerPolicyContentState::Representation
|
1900
|
+
|
1859
1901
|
property :state, as: 'state'
|
1860
1902
|
end
|
1861
1903
|
end
|
@@ -1880,6 +1922,18 @@ module Google
|
|
1880
1922
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1881
1923
|
hash :bundles, as: 'bundles', class: Google::Apis::GkehubV1alpha::PolicyControllerBundleInstallSpec, decorator: Google::Apis::GkehubV1alpha::PolicyControllerBundleInstallSpec::Representation
|
1882
1924
|
|
1925
|
+
property :template_library, as: 'templateLibrary', class: Google::Apis::GkehubV1alpha::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1alpha::PolicyControllerTemplateLibraryConfig::Representation
|
1926
|
+
|
1927
|
+
end
|
1928
|
+
end
|
1929
|
+
|
1930
|
+
class PolicyControllerPolicyContentState
|
1931
|
+
# @private
|
1932
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1933
|
+
hash :bundle_states, as: 'bundleStates', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
|
1934
|
+
|
1935
|
+
property :template_library_state, as: 'templateLibraryState', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
|
1936
|
+
|
1883
1937
|
end
|
1884
1938
|
end
|
1885
1939
|
|
@@ -1917,6 +1971,7 @@ module Google
|
|
1917
1971
|
# @private
|
1918
1972
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1919
1973
|
property :included, as: 'included'
|
1974
|
+
property :installation, as: 'installation'
|
1920
1975
|
end
|
1921
1976
|
end
|
1922
1977
|
|
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.
|
4
|
+
version: 0.51.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-
|
11
|
+
date: 2023-04-16 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.51.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: []
|