google-apis-gkehub_v2 0.5.0 → 0.6.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: 04d79905a9224331cf0d7da08a25db5c8cbf1f0e92f4b094d8454a1156e43cf4
|
4
|
+
data.tar.gz: 3b55881d85a3ccd59cb1c5f31c1a7c0dce4c4ef7c931f6f83611808d5f086da5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 002f780fec9b9341e1065ebec837fad4bd63d4771e43e712f5d66d8eb7dcbc611e90f1ba9b72b3b57d80004c8252c1209658e791e0638b869b3b7bfd631b794c
|
7
|
+
data.tar.gz: '08bf3dfaf8053a7dc270d02a35a50ff15e8c5c5f31f41811028a90fd146a7df8f268ac0cff90a992e0984109445b0b440589cd0a5830dd0edbed97d73a4cfb58'
|
data/CHANGELOG.md
CHANGED
@@ -307,13 +307,6 @@ module Google
|
|
307
307
|
class ConfigManagementConfigSync
|
308
308
|
include Google::Apis::Core::Hashable
|
309
309
|
|
310
|
-
# Optional. Set to true to allow the vertical scaling. Defaults to false which
|
311
|
-
# disallows vertical scaling. This field is deprecated.
|
312
|
-
# Corresponds to the JSON property `allowVerticalScale`
|
313
|
-
# @return [Boolean]
|
314
|
-
attr_accessor :allow_vertical_scale
|
315
|
-
alias_method :allow_vertical_scale?, :allow_vertical_scale
|
316
|
-
|
317
310
|
# Optional. Enables the installation of ConfigSync. If set to true, ConfigSync
|
318
311
|
# resources will be created and the other ConfigSync fields will be applied if
|
319
312
|
# exist. If set to false, all other ConfigSync fields will be ignored,
|
@@ -374,7 +367,6 @@ module Google
|
|
374
367
|
|
375
368
|
# Update properties of this object
|
376
369
|
def update!(**args)
|
377
|
-
@allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
|
378
370
|
@enabled = args[:enabled] if args.key?(:enabled)
|
379
371
|
@git = args[:git] if args.key?(:git)
|
380
372
|
@metrics_gcp_service_account_email = args[:metrics_gcp_service_account_email] if args.key?(:metrics_gcp_service_account_email)
|
@@ -698,8 +690,8 @@ module Google
|
|
698
690
|
attr_accessor :policy_dir
|
699
691
|
|
700
692
|
# Required. Type of secret configured for access to the Git repo. Must be one of
|
701
|
-
# ssh, cookiefile, gcenode, token, gcpserviceaccount or none. The
|
702
|
-
# this is case-sensitive.
|
693
|
+
# ssh, cookiefile, gcenode, token, gcpserviceaccount, githubapp or none. The
|
694
|
+
# validation of this is case-sensitive.
|
703
695
|
# Corresponds to the JSON property `secretType`
|
704
696
|
# @return [String]
|
705
697
|
attr_accessor :secret_type
|
@@ -709,7 +701,7 @@ module Google
|
|
709
701
|
# @return [String]
|
710
702
|
attr_accessor :sync_branch
|
711
703
|
|
712
|
-
#
|
704
|
+
# Required. The URL of the Git repository to use as the source of truth.
|
713
705
|
# Corresponds to the JSON property `syncRepo`
|
714
706
|
# @return [String]
|
715
707
|
attr_accessor :sync_repo
|
@@ -916,12 +908,14 @@ module Google
|
|
916
908
|
# @return [String]
|
917
909
|
attr_accessor :policy_dir
|
918
910
|
|
919
|
-
#
|
911
|
+
# Required. Type of secret configured for access to the OCI repo. Must be one of
|
912
|
+
# gcenode, gcpserviceaccount, k8sserviceaccount or none. The validation of this
|
913
|
+
# is case-sensitive.
|
920
914
|
# Corresponds to the JSON property `secretType`
|
921
915
|
# @return [String]
|
922
916
|
attr_accessor :secret_type
|
923
917
|
|
924
|
-
#
|
918
|
+
# Required. The OCI image repository URL for the package to sync from. e.g. `
|
925
919
|
# LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
|
926
920
|
# Corresponds to the JSON property `syncRepo`
|
927
921
|
# @return [String]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV2
|
18
18
|
# Version of the google-apis-gkehub_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.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 = "20250113"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -663,7 +663,6 @@ module Google
|
|
663
663
|
class ConfigManagementConfigSync
|
664
664
|
# @private
|
665
665
|
class Representation < Google::Apis::Core::JsonRepresentation
|
666
|
-
property :allow_vertical_scale, as: 'allowVerticalScale'
|
667
666
|
property :enabled, as: 'enabled'
|
668
667
|
property :git, as: 'git', class: Google::Apis::GkehubV2::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV2::ConfigManagementGitConfig::Representation
|
669
668
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.6.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v2
|
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 V2
|
79
79
|
test_files: []
|