google-apis-gkehub_v1 0.12.0 → 0.13.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: e4c9cd2a7cf55b4d40cce09d86720bce60100f852d6ba25215c6d66997b5aed5
4
- data.tar.gz: ce32da609da617ba242df17a621785c6298911185d104281924797a9960f5992
3
+ metadata.gz: 608e9a472ea5b709996436599312fa0a04b234e519be61c54e9d88814ee5138b
4
+ data.tar.gz: 9248afb2da24e6ca244efa2f4fb52eda50e6aa0f78a542887a4eb87cc7a518c3
5
5
  SHA512:
6
- metadata.gz: 107df958ae027b03bbe3e7eef32f6032bb1cadb126c0826c3d7a1f2b2777f16ab4498713f0b895b7746236713e6b1cf6c6c65bde17ec4b3acb80779bae898262
7
- data.tar.gz: b8dcd8ffc55f7b224a9a46c499d47341e64eae7da93d44acd1773881d32d9c82ebcbc915497652939dec41a6012d313eb5ffb9587f1855b6f0f9da7feacd07a6
6
+ metadata.gz: 2a45c8c32b41c0fb8449c68e0683ae59bc9a36b3b77d83d5666cc3dcdf2ff4077e943011848c59a1c14704bcc06c16845592c88515fd0796694c6750c93efc2a
7
+ data.tar.gz: f4b0c9f8007fbfac11d3eb0ba0a9d2ee0421d71b76772b481d3fee4c0837203d90530ba7cc001ec290570c63fdccafc6bd1927b18d687a84bee075036c070994
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.13.0 (2021-10-04)
4
+
5
+ * Regenerated from discovery document revision 20210927
6
+
3
7
  ### v0.12.0 (2021-09-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20210920
@@ -281,11 +281,6 @@ module Google
281
281
  # @return [Google::Apis::GkehubV1::ConfigManagementGitConfig]
282
282
  attr_accessor :git
283
283
 
284
- # Specifies CPU and memory limits for containers, keyed by container name
285
- # Corresponds to the JSON property `resourceRequirements`
286
- # @return [Hash<String,Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements>]
287
- attr_accessor :resource_requirements
288
-
289
284
  # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured”
290
285
  # mode.
291
286
  # Corresponds to the JSON property `sourceFormat`
@@ -299,7 +294,6 @@ module Google
299
294
  # Update properties of this object
300
295
  def update!(**args)
301
296
  @git = args[:git] if args.key?(:git)
302
- @resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements)
303
297
  @source_format = args[:source_format] if args.key?(:source_format)
304
298
  end
305
299
  end
@@ -445,42 +439,6 @@ module Google
445
439
  end
446
440
  end
447
441
 
448
- # ResourceRequirements allows to override the CPU and memory resource
449
- # requirements of a container.
450
- class ConfigManagementContainerResourceRequirements
451
- include Google::Apis::Core::Hashable
452
-
453
- # Name of the container
454
- # Corresponds to the JSON property `containerName`
455
- # @return [String]
456
- attr_accessor :container_name
457
-
458
- # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
459
- # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
460
- # pkg/api/resource/generated.proto
461
- # Corresponds to the JSON property `cpuLimit`
462
- # @return [Google::Apis::GkehubV1::ConfigManagementQuantity]
463
- attr_accessor :cpu_limit
464
-
465
- # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
466
- # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
467
- # pkg/api/resource/generated.proto
468
- # Corresponds to the JSON property `memoryLimit`
469
- # @return [Google::Apis::GkehubV1::ConfigManagementQuantity]
470
- attr_accessor :memory_limit
471
-
472
- def initialize(**args)
473
- update!(**args)
474
- end
475
-
476
- # Update properties of this object
477
- def update!(**args)
478
- @container_name = args[:container_name] if args.key?(:container_name)
479
- @cpu_limit = args[:cpu_limit] if args.key?(:cpu_limit)
480
- @memory_limit = args[:memory_limit] if args.key?(:memory_limit)
481
- end
482
- end
483
-
484
442
  # Model for a config file in the git repo with an associated Sync error
485
443
  class ConfigManagementErrorResource
486
444
  include Google::Apis::Core::Hashable
@@ -558,12 +516,6 @@ module Google
558
516
  # @return [String]
559
517
  attr_accessor :https_proxy
560
518
 
561
- # Enable or disable the SSL certificate verification Default: false.
562
- # Corresponds to the JSON property `noSslVerify`
563
- # @return [Boolean]
564
- attr_accessor :no_ssl_verify
565
- alias_method :no_ssl_verify?, :no_ssl_verify
566
-
567
519
  # The path within the Git repository that represents the top level of the repo
568
520
  # to sync. Default: the root directory of the repository.
569
521
  # Corresponds to the JSON property `policyDir`
@@ -580,11 +532,6 @@ module Google
580
532
  # @return [String]
581
533
  attr_accessor :sync_branch
582
534
 
583
- # The depth of git commits synced by the git-sync container.
584
- # Corresponds to the JSON property `syncDepth`
585
- # @return [Fixnum]
586
- attr_accessor :sync_depth
587
-
588
535
  # The URL of the Git repository to use as the source of truth.
589
536
  # Corresponds to the JSON property `syncRepo`
590
537
  # @return [String]
@@ -608,11 +555,9 @@ module Google
608
555
  def update!(**args)
609
556
  @gcp_service_account_email = args[:gcp_service_account_email] if args.key?(:gcp_service_account_email)
610
557
  @https_proxy = args[:https_proxy] if args.key?(:https_proxy)
611
- @no_ssl_verify = args[:no_ssl_verify] if args.key?(:no_ssl_verify)
612
558
  @policy_dir = args[:policy_dir] if args.key?(:policy_dir)
613
559
  @secret_type = args[:secret_type] if args.key?(:secret_type)
614
560
  @sync_branch = args[:sync_branch] if args.key?(:sync_branch)
615
- @sync_depth = args[:sync_depth] if args.key?(:sync_depth)
616
561
  @sync_repo = args[:sync_repo] if args.key?(:sync_repo)
617
562
  @sync_rev = args[:sync_rev] if args.key?(:sync_rev)
618
563
  @sync_wait_secs = args[:sync_wait_secs] if args.key?(:sync_wait_secs)
@@ -1002,27 +947,6 @@ module Google
1002
947
  end
1003
948
  end
1004
949
 
1005
- # The view model of a single quantity, e.g. "800 MiB". Corresponds to https://
1006
- # github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
1007
- # pkg/api/resource/generated.proto
1008
- class ConfigManagementQuantity
1009
- include Google::Apis::Core::Hashable
1010
-
1011
- # Stringified version of the quantity, e.g., "800 MiB".
1012
- # Corresponds to the JSON property `string`
1013
- # @return [String]
1014
- attr_accessor :string
1015
-
1016
- def initialize(**args)
1017
- update!(**args)
1018
- end
1019
-
1020
- # Update properties of this object
1021
- def update!(**args)
1022
- @string = args[:string] if args.key?(:string)
1023
- end
1024
- end
1025
-
1026
950
  # An ACM created error representing a problem syncing configurations
1027
951
  class ConfigManagementSyncError
1028
952
  include Google::Apis::Core::Hashable
@@ -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.12.0"
19
+ GEM_VERSION = "0.13.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 = "20210920"
25
+ REVISION = "20210927"
26
26
  end
27
27
  end
28
28
  end
@@ -88,12 +88,6 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
- class ConfigManagementContainerResourceRequirements
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
91
  class ConfigManagementErrorResource
98
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
93
 
@@ -184,12 +178,6 @@ module Google
184
178
  include Google::Apis::Core::JsonObjectSupport
185
179
  end
186
180
 
187
- class ConfigManagementQuantity
188
- class Representation < Google::Apis::Core::JsonRepresentation; end
189
-
190
- include Google::Apis::Core::JsonObjectSupport
191
- end
192
-
193
181
  class ConfigManagementSyncError
194
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
183
 
@@ -446,8 +434,6 @@ module Google
446
434
  class Representation < Google::Apis::Core::JsonRepresentation
447
435
  property :git, as: 'git', class: Google::Apis::GkehubV1::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1::ConfigManagementGitConfig::Representation
448
436
 
449
- hash :resource_requirements, as: 'resourceRequirements', class: Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements, decorator: Google::Apis::GkehubV1::ConfigManagementContainerResourceRequirements::Representation
450
-
451
437
  property :source_format, as: 'sourceFormat'
452
438
  end
453
439
  end
@@ -490,17 +476,6 @@ module Google
490
476
  end
491
477
  end
492
478
 
493
- class ConfigManagementContainerResourceRequirements
494
- # @private
495
- class Representation < Google::Apis::Core::JsonRepresentation
496
- property :container_name, as: 'containerName'
497
- property :cpu_limit, as: 'cpuLimit', class: Google::Apis::GkehubV1::ConfigManagementQuantity, decorator: Google::Apis::GkehubV1::ConfigManagementQuantity::Representation
498
-
499
- property :memory_limit, as: 'memoryLimit', class: Google::Apis::GkehubV1::ConfigManagementQuantity, decorator: Google::Apis::GkehubV1::ConfigManagementQuantity::Representation
500
-
501
- end
502
- end
503
-
504
479
  class ConfigManagementErrorResource
505
480
  # @private
506
481
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -525,11 +500,9 @@ module Google
525
500
  class Representation < Google::Apis::Core::JsonRepresentation
526
501
  property :gcp_service_account_email, as: 'gcpServiceAccountEmail'
527
502
  property :https_proxy, as: 'httpsProxy'
528
- property :no_ssl_verify, as: 'noSslVerify'
529
503
  property :policy_dir, as: 'policyDir'
530
504
  property :secret_type, as: 'secretType'
531
505
  property :sync_branch, as: 'syncBranch'
532
- property :sync_depth, :numeric_string => true, as: 'syncDepth'
533
506
  property :sync_repo, as: 'syncRepo'
534
507
  property :sync_rev, as: 'syncRev'
535
508
  property :sync_wait_secs, :numeric_string => true, as: 'syncWaitSecs'
@@ -656,13 +629,6 @@ module Google
656
629
  end
657
630
  end
658
631
 
659
- class ConfigManagementQuantity
660
- # @private
661
- class Representation < Google::Apis::Core::JsonRepresentation
662
- property :string, as: 'string'
663
- end
664
- end
665
-
666
632
  class ConfigManagementSyncError
667
633
  # @private
668
634
  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.12.0
4
+ version: 0.13.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-09-27 00:00:00.000000000 Z
11
+ date: 2021-10-11 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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.13.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: []