google-apis-gkehub_v1alpha 0.86.0 → 0.87.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: a1388c6783d662d2fb377880b8acfc85e65f1f8df4c51a3a5953b73da9390078
|
4
|
+
data.tar.gz: 836cb23fe8dbf584308cd88e1b352b1659a3b7f877f50ffc602781888b1cbd37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7895e2f4b10e4497f76884bd68479306db315bd6dd8a4a8762e498057fd97f968326bebd937172a6d78ea863025c3086644ebe71b98295fa2e8ec163d6635153
|
7
|
+
data.tar.gz: ab0cd5fbcde8e65bb11f6a98e3f2413a7abd665ee3c4697b68d1a5dc140b04152b2e28560e73a407eb495a89bcc9236d83715616ed2f4094fd9ecd8f2f2b53ba
|
data/CHANGELOG.md
CHANGED
@@ -22,60 +22,6 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha
|
24
24
|
|
25
|
-
# **Anthos Observability**: Spec
|
26
|
-
class AnthosObservabilityFeatureSpec
|
27
|
-
include Google::Apis::Core::Hashable
|
28
|
-
|
29
|
-
# **Anthosobservability**: Per-Membership Feature spec.
|
30
|
-
# Corresponds to the JSON property `defaultMembershipSpec`
|
31
|
-
# @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
|
32
|
-
attr_accessor :default_membership_spec
|
33
|
-
|
34
|
-
def initialize(**args)
|
35
|
-
update!(**args)
|
36
|
-
end
|
37
|
-
|
38
|
-
# Update properties of this object
|
39
|
-
def update!(**args)
|
40
|
-
@default_membership_spec = args[:default_membership_spec] if args.key?(:default_membership_spec)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
# **Anthosobservability**: Per-Membership Feature spec.
|
45
|
-
class AnthosObservabilityMembershipSpec
|
46
|
-
include Google::Apis::Core::Hashable
|
47
|
-
|
48
|
-
# Use full of metrics rather than optimized metrics. See https://cloud.google.
|
49
|
-
# com/anthos/clusters/docs/on-prem/1.8/concepts/logging-and-monitoring#
|
50
|
-
# optimized_metrics_default_metrics
|
51
|
-
# Corresponds to the JSON property `doNotOptimizeMetrics`
|
52
|
-
# @return [Boolean]
|
53
|
-
attr_accessor :do_not_optimize_metrics
|
54
|
-
alias_method :do_not_optimize_metrics?, :do_not_optimize_metrics
|
55
|
-
|
56
|
-
# Enable collecting and reporting metrics and logs from user apps.
|
57
|
-
# Corresponds to the JSON property `enableStackdriverOnApplications`
|
58
|
-
# @return [Boolean]
|
59
|
-
attr_accessor :enable_stackdriver_on_applications
|
60
|
-
alias_method :enable_stackdriver_on_applications?, :enable_stackdriver_on_applications
|
61
|
-
|
62
|
-
# the version of stackdriver operator used by this feature
|
63
|
-
# Corresponds to the JSON property `version`
|
64
|
-
# @return [String]
|
65
|
-
attr_accessor :version
|
66
|
-
|
67
|
-
def initialize(**args)
|
68
|
-
update!(**args)
|
69
|
-
end
|
70
|
-
|
71
|
-
# Update properties of this object
|
72
|
-
def update!(**args)
|
73
|
-
@do_not_optimize_metrics = args[:do_not_optimize_metrics] if args.key?(:do_not_optimize_metrics)
|
74
|
-
@enable_stackdriver_on_applications = args[:enable_stackdriver_on_applications] if args.key?(:enable_stackdriver_on_applications)
|
75
|
-
@version = args[:version] if args.key?(:version)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
25
|
# Spec for App Dev Experience Feature.
|
80
26
|
class AppDevExperienceFeatureSpec
|
81
27
|
include Google::Apis::Core::Hashable
|
@@ -892,11 +838,6 @@ module Google
|
|
892
838
|
class CommonFeatureSpec
|
893
839
|
include Google::Apis::Core::Hashable
|
894
840
|
|
895
|
-
# **Anthos Observability**: Spec
|
896
|
-
# Corresponds to the JSON property `anthosobservability`
|
897
|
-
# @return [Google::Apis::GkehubV1alpha::AnthosObservabilityFeatureSpec]
|
898
|
-
attr_accessor :anthosobservability
|
899
|
-
|
900
841
|
# Spec for App Dev Experience Feature.
|
901
842
|
# Corresponds to the JSON property `appdevexperience`
|
902
843
|
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec]
|
@@ -947,7 +888,6 @@ module Google
|
|
947
888
|
|
948
889
|
# Update properties of this object
|
949
890
|
def update!(**args)
|
950
|
-
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
951
891
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
952
892
|
@cloudauditlogging = args[:cloudauditlogging] if args.key?(:cloudauditlogging)
|
953
893
|
@clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade)
|
@@ -1164,13 +1104,6 @@ module Google
|
|
1164
1104
|
class ConfigManagementConfigSync
|
1165
1105
|
include Google::Apis::Core::Hashable
|
1166
1106
|
|
1167
|
-
# Optional. Set to true to allow the vertical scaling. Defaults to false which
|
1168
|
-
# disallows vertical scaling. This field is deprecated.
|
1169
|
-
# Corresponds to the JSON property `allowVerticalScale`
|
1170
|
-
# @return [Boolean]
|
1171
|
-
attr_accessor :allow_vertical_scale
|
1172
|
-
alias_method :allow_vertical_scale?, :allow_vertical_scale
|
1173
|
-
|
1174
1107
|
# Optional. Enables the installation of ConfigSync. If set to true, ConfigSync
|
1175
1108
|
# resources will be created and the other ConfigSync fields will be applied if
|
1176
1109
|
# exist. If set to false, all other ConfigSync fields will be ignored,
|
@@ -1231,7 +1164,6 @@ module Google
|
|
1231
1164
|
|
1232
1165
|
# Update properties of this object
|
1233
1166
|
def update!(**args)
|
1234
|
-
@allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
|
1235
1167
|
@enabled = args[:enabled] if args.key?(:enabled)
|
1236
1168
|
@git = args[:git] if args.key?(:git)
|
1237
1169
|
@metrics_gcp_service_account_email = args[:metrics_gcp_service_account_email] if args.key?(:metrics_gcp_service_account_email)
|
@@ -1555,8 +1487,8 @@ module Google
|
|
1555
1487
|
attr_accessor :policy_dir
|
1556
1488
|
|
1557
1489
|
# Required. Type of secret configured for access to the Git repo. Must be one of
|
1558
|
-
# ssh, cookiefile, gcenode, token, gcpserviceaccount or none. The
|
1559
|
-
# this is case-sensitive.
|
1490
|
+
# ssh, cookiefile, gcenode, token, gcpserviceaccount, githubapp or none. The
|
1491
|
+
# validation of this is case-sensitive.
|
1560
1492
|
# Corresponds to the JSON property `secretType`
|
1561
1493
|
# @return [String]
|
1562
1494
|
attr_accessor :secret_type
|
@@ -1566,7 +1498,7 @@ module Google
|
|
1566
1498
|
# @return [String]
|
1567
1499
|
attr_accessor :sync_branch
|
1568
1500
|
|
1569
|
-
#
|
1501
|
+
# Required. The URL of the Git repository to use as the source of truth.
|
1570
1502
|
# Corresponds to the JSON property `syncRepo`
|
1571
1503
|
# @return [String]
|
1572
1504
|
attr_accessor :sync_repo
|
@@ -1892,12 +1824,14 @@ module Google
|
|
1892
1824
|
# @return [String]
|
1893
1825
|
attr_accessor :policy_dir
|
1894
1826
|
|
1895
|
-
#
|
1827
|
+
# Required. Type of secret configured for access to the OCI repo. Must be one of
|
1828
|
+
# gcenode, gcpserviceaccount, k8sserviceaccount or none. The validation of this
|
1829
|
+
# is case-sensitive.
|
1896
1830
|
# Corresponds to the JSON property `secretType`
|
1897
1831
|
# @return [String]
|
1898
1832
|
attr_accessor :secret_type
|
1899
1833
|
|
1900
|
-
#
|
1834
|
+
# Required. The OCI image repository URL for the package to sync from. e.g. `
|
1901
1835
|
# LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
|
1902
1836
|
# Corresponds to the JSON property `syncRepo`
|
1903
1837
|
# @return [String]
|
@@ -4492,11 +4426,6 @@ module Google
|
|
4492
4426
|
class MembershipFeatureSpec
|
4493
4427
|
include Google::Apis::Core::Hashable
|
4494
4428
|
|
4495
|
-
# **Anthosobservability**: Per-Membership Feature spec.
|
4496
|
-
# Corresponds to the JSON property `anthosobservability`
|
4497
|
-
# @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
|
4498
|
-
attr_accessor :anthosobservability
|
4499
|
-
|
4500
4429
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
4501
4430
|
# Corresponds to the JSON property `cloudbuild`
|
4502
4431
|
# @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
|
@@ -4553,7 +4482,6 @@ module Google
|
|
4553
4482
|
|
4554
4483
|
# Update properties of this object
|
4555
4484
|
def update!(**args)
|
4556
|
-
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
4557
4485
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
4558
4486
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
4559
4487
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
@@ -6126,7 +6054,8 @@ module Google
|
|
6126
6054
|
end
|
6127
6055
|
end
|
6128
6056
|
|
6129
|
-
# Condition being reported.
|
6057
|
+
# Condition being reported. TODO b/395151419: Remove this message once the
|
6058
|
+
# membership-level conditions field uses the common Condition message.
|
6130
6059
|
class ServiceMeshCondition
|
6131
6060
|
include Google::Apis::Core::Hashable
|
6132
6061
|
|
@@ -6220,6 +6149,45 @@ module Google
|
|
6220
6149
|
end
|
6221
6150
|
end
|
6222
6151
|
|
6152
|
+
# Condition being reported. TODO b/395151419: This message should be used to
|
6153
|
+
# replace the membership-level Condition message.
|
6154
|
+
class ServiceMeshFeatureCondition
|
6155
|
+
include Google::Apis::Core::Hashable
|
6156
|
+
|
6157
|
+
# Unique identifier of the condition which describes the condition recognizable
|
6158
|
+
# to the user.
|
6159
|
+
# Corresponds to the JSON property `code`
|
6160
|
+
# @return [String]
|
6161
|
+
attr_accessor :code
|
6162
|
+
|
6163
|
+
# A short summary about the issue.
|
6164
|
+
# Corresponds to the JSON property `details`
|
6165
|
+
# @return [String]
|
6166
|
+
attr_accessor :details
|
6167
|
+
|
6168
|
+
# Links contains actionable information.
|
6169
|
+
# Corresponds to the JSON property `documentationLink`
|
6170
|
+
# @return [String]
|
6171
|
+
attr_accessor :documentation_link
|
6172
|
+
|
6173
|
+
# Severity level of the condition.
|
6174
|
+
# Corresponds to the JSON property `severity`
|
6175
|
+
# @return [String]
|
6176
|
+
attr_accessor :severity
|
6177
|
+
|
6178
|
+
def initialize(**args)
|
6179
|
+
update!(**args)
|
6180
|
+
end
|
6181
|
+
|
6182
|
+
# Update properties of this object
|
6183
|
+
def update!(**args)
|
6184
|
+
@code = args[:code] if args.key?(:code)
|
6185
|
+
@details = args[:details] if args.key?(:details)
|
6186
|
+
@documentation_link = args[:documentation_link] if args.key?(:documentation_link)
|
6187
|
+
@severity = args[:severity] if args.key?(:severity)
|
6188
|
+
end
|
6189
|
+
end
|
6190
|
+
|
6223
6191
|
# **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
|
6224
6192
|
# Controller.
|
6225
6193
|
class ServiceMeshFeatureState
|
@@ -6230,6 +6198,11 @@ module Google
|
|
6230
6198
|
# @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage>]
|
6231
6199
|
attr_accessor :analysis_messages
|
6232
6200
|
|
6201
|
+
# Output only. List of conditions reported for this feature.
|
6202
|
+
# Corresponds to the JSON property `conditions`
|
6203
|
+
# @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshFeatureCondition>]
|
6204
|
+
attr_accessor :conditions
|
6205
|
+
|
6233
6206
|
def initialize(**args)
|
6234
6207
|
update!(**args)
|
6235
6208
|
end
|
@@ -6237,6 +6210,7 @@ module Google
|
|
6237
6210
|
# Update properties of this object
|
6238
6211
|
def update!(**args)
|
6239
6212
|
@analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
|
6213
|
+
@conditions = args[:conditions] if args.key?(:conditions)
|
6240
6214
|
end
|
6241
6215
|
end
|
6242
6216
|
|
@@ -6290,7 +6264,8 @@ module Google
|
|
6290
6264
|
# @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage>]
|
6291
6265
|
attr_accessor :analysis_messages
|
6292
6266
|
|
6293
|
-
# Output only. List of conditions reported for this membership.
|
6267
|
+
# Output only. List of conditions reported for this membership. TODO b/395151419:
|
6268
|
+
# Use the common Condition message.
|
6294
6269
|
# Corresponds to the JSON property `conditions`
|
6295
6270
|
# @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshCondition>]
|
6296
6271
|
attr_accessor :conditions
|
@@ -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.87.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250209"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,18 +22,6 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha
|
24
24
|
|
25
|
-
class AnthosObservabilityFeatureSpec
|
26
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
-
|
28
|
-
include Google::Apis::Core::JsonObjectSupport
|
29
|
-
end
|
30
|
-
|
31
|
-
class AnthosObservabilityMembershipSpec
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
25
|
class AppDevExperienceFeatureSpec
|
38
26
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
27
|
|
@@ -1042,6 +1030,12 @@ module Google
|
|
1042
1030
|
include Google::Apis::Core::JsonObjectSupport
|
1043
1031
|
end
|
1044
1032
|
|
1033
|
+
class ServiceMeshFeatureCondition
|
1034
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1035
|
+
|
1036
|
+
include Google::Apis::Core::JsonObjectSupport
|
1037
|
+
end
|
1038
|
+
|
1045
1039
|
class ServiceMeshFeatureState
|
1046
1040
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1047
1041
|
|
@@ -1126,23 +1120,6 @@ module Google
|
|
1126
1120
|
include Google::Apis::Core::JsonObjectSupport
|
1127
1121
|
end
|
1128
1122
|
|
1129
|
-
class AnthosObservabilityFeatureSpec
|
1130
|
-
# @private
|
1131
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1132
|
-
property :default_membership_spec, as: 'defaultMembershipSpec', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
|
1133
|
-
|
1134
|
-
end
|
1135
|
-
end
|
1136
|
-
|
1137
|
-
class AnthosObservabilityMembershipSpec
|
1138
|
-
# @private
|
1139
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1140
|
-
property :do_not_optimize_metrics, as: 'doNotOptimizeMetrics'
|
1141
|
-
property :enable_stackdriver_on_applications, as: 'enableStackdriverOnApplications'
|
1142
|
-
property :version, as: 'version'
|
1143
|
-
end
|
1144
|
-
end
|
1145
|
-
|
1146
1123
|
class AppDevExperienceFeatureSpec
|
1147
1124
|
# @private
|
1148
1125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1374,8 +1351,6 @@ module Google
|
|
1374
1351
|
class CommonFeatureSpec
|
1375
1352
|
# @private
|
1376
1353
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1377
|
-
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityFeatureSpec::Representation
|
1378
|
-
|
1379
1354
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec::Representation
|
1380
1355
|
|
1381
1356
|
property :cloudauditlogging, as: 'cloudauditlogging', class: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec, decorator: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec::Representation
|
@@ -1469,7 +1444,6 @@ module Google
|
|
1469
1444
|
class ConfigManagementConfigSync
|
1470
1445
|
# @private
|
1471
1446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1472
|
-
property :allow_vertical_scale, as: 'allowVerticalScale'
|
1473
1447
|
property :enabled, as: 'enabled'
|
1474
1448
|
property :git, as: 'git', class: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig::Representation
|
1475
1449
|
|
@@ -2401,8 +2375,6 @@ module Google
|
|
2401
2375
|
class MembershipFeatureSpec
|
2402
2376
|
# @private
|
2403
2377
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2404
|
-
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
|
2405
|
-
|
2406
2378
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
|
2407
2379
|
|
2408
2380
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
|
@@ -2886,11 +2858,23 @@ module Google
|
|
2886
2858
|
end
|
2887
2859
|
end
|
2888
2860
|
|
2861
|
+
class ServiceMeshFeatureCondition
|
2862
|
+
# @private
|
2863
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2864
|
+
property :code, as: 'code'
|
2865
|
+
property :details, as: 'details'
|
2866
|
+
property :documentation_link, as: 'documentationLink'
|
2867
|
+
property :severity, as: 'severity'
|
2868
|
+
end
|
2869
|
+
end
|
2870
|
+
|
2889
2871
|
class ServiceMeshFeatureState
|
2890
2872
|
# @private
|
2891
2873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2892
2874
|
collection :analysis_messages, as: 'analysisMessages', class: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage, decorator: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage::Representation
|
2893
2875
|
|
2876
|
+
collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1alpha::ServiceMeshFeatureCondition, decorator: Google::Apis::GkehubV1alpha::ServiceMeshFeatureCondition::Representation
|
2877
|
+
|
2894
2878
|
end
|
2895
2879
|
end
|
2896
2880
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.87.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.87.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for GKE Hub API V1alpha
|
79
79
|
test_files: []
|