google-apis-gkehub_v1beta 0.31.0 → 0.32.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: 48dd59abc5094ecc38fb9a027cd91c7cfc552eb0b270977cf2f9e03c6fe685da
4
- data.tar.gz: 110d5f5e89da8cc9bdc7c9b508ecc4b3041207622fa87735f56ea88ddf6c0dd8
3
+ metadata.gz: af93d0501a18a83318e0c4270fc577f05e9f5ec71b49b968b6af504c497aa5a0
4
+ data.tar.gz: a8ca4094d7b91151c4c567badb1041e081f5ce0fa5623991610499599eb33609
5
5
  SHA512:
6
- metadata.gz: cd6bb80f0ef211db895901cdc53676e41338c0b0073d75ffd76c91e45247f3d9b270c9e4b0e227dde8a31e53aba1e886e731527aabc21462ebae72424376e716
7
- data.tar.gz: c3d90ac89a4f3b8520f3a61ed5baab15d97fbba1c2e740349ab4793bacce754e2c217bbc3a126a031c48ce25caa051e1940d9b30ab797bed5a9011dc55c0a107
6
+ metadata.gz: 7f4591d3636156ecf20c6e090f0e6742d621f5b2c5df99a68a484a6592481d85a4fa4645f74ba4e9cf5b5f2b2ee23db412590e6518893cbbf5bee67aae681024
7
+ data.tar.gz: 3f7ff41efe9a182a9bc3843f636d79d59b67abf570c085f57ce009f580baf2e061e6fecb956b68fd0877fd9199a86989237f2a75166b7e7fb38f105f95c7a2ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.32.0 (2022-09-14)
4
+
5
+ * Regenerated from discovery document revision 20220912
6
+
3
7
  ### v0.31.0 (2022-09-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20220828
@@ -518,6 +518,13 @@ module Google
518
518
  class ConfigManagementConfigSync
519
519
  include Google::Apis::Core::Hashable
520
520
 
521
+ # Set to true to allow the vertical scaling. Defaults to false which disallows
522
+ # vertical scaling.
523
+ # Corresponds to the JSON property `allowVerticalScale`
524
+ # @return [Boolean]
525
+ attr_accessor :allow_vertical_scale
526
+ alias_method :allow_vertical_scale?, :allow_vertical_scale
527
+
521
528
  # Enables the installation of ConfigSync. If set to true, ConfigSync resources
522
529
  # will be created and the other ConfigSync fields will be applied if exist. If
523
530
  # set to false, all other ConfigSync fields will be ignored, ConfigSync
@@ -558,6 +565,7 @@ module Google
558
565
 
559
566
  # Update properties of this object
560
567
  def update!(**args)
568
+ @allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
561
569
  @enabled = args[:enabled] if args.key?(:enabled)
562
570
  @git = args[:git] if args.key?(:git)
563
571
  @oci = args[:oci] if args.key?(:oci)
@@ -2706,6 +2714,31 @@ module Google
2706
2714
  end
2707
2715
  end
2708
2716
 
2717
+ # Status of data plane management. Only reported per-member.
2718
+ class ServiceMeshDataPlaneManagement
2719
+ include Google::Apis::Core::Hashable
2720
+
2721
+ # Explanation of the status.
2722
+ # Corresponds to the JSON property `details`
2723
+ # @return [Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>]
2724
+ attr_accessor :details
2725
+
2726
+ # Lifecycle status of data plane management.
2727
+ # Corresponds to the JSON property `state`
2728
+ # @return [String]
2729
+ attr_accessor :state
2730
+
2731
+ def initialize(**args)
2732
+ update!(**args)
2733
+ end
2734
+
2735
+ # Update properties of this object
2736
+ def update!(**args)
2737
+ @details = args[:details] if args.key?(:details)
2738
+ @state = args[:state] if args.key?(:state)
2739
+ end
2740
+ end
2741
+
2709
2742
  # **Service Mesh**: Spec for a single Membership for the servicemesh feature
2710
2743
  class ServiceMeshMembershipSpec
2711
2744
  include Google::Apis::Core::Hashable
@@ -2715,6 +2748,11 @@ module Google
2715
2748
  # @return [String]
2716
2749
  attr_accessor :control_plane
2717
2750
 
2751
+ # Enables automatic Service Mesh management.
2752
+ # Corresponds to the JSON property `management`
2753
+ # @return [String]
2754
+ attr_accessor :management
2755
+
2718
2756
  def initialize(**args)
2719
2757
  update!(**args)
2720
2758
  end
@@ -2722,6 +2760,7 @@ module Google
2722
2760
  # Update properties of this object
2723
2761
  def update!(**args)
2724
2762
  @control_plane = args[:control_plane] if args.key?(:control_plane)
2763
+ @management = args[:management] if args.key?(:management)
2725
2764
  end
2726
2765
  end
2727
2766
 
@@ -2735,6 +2774,11 @@ module Google
2735
2774
  # @return [Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement]
2736
2775
  attr_accessor :control_plane_management
2737
2776
 
2777
+ # Status of data plane management. Only reported per-member.
2778
+ # Corresponds to the JSON property `dataPlaneManagement`
2779
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshDataPlaneManagement]
2780
+ attr_accessor :data_plane_management
2781
+
2738
2782
  def initialize(**args)
2739
2783
  update!(**args)
2740
2784
  end
@@ -2742,6 +2786,7 @@ module Google
2742
2786
  # Update properties of this object
2743
2787
  def update!(**args)
2744
2788
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
2789
+ @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
2745
2790
  end
2746
2791
  end
2747
2792
 
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220828"
25
+ REVISION = "20220912"
26
26
  end
27
27
  end
28
28
  end
@@ -460,6 +460,12 @@ module Google
460
460
  include Google::Apis::Core::JsonObjectSupport
461
461
  end
462
462
 
463
+ class ServiceMeshDataPlaneManagement
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
463
469
  class ServiceMeshMembershipSpec
464
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
471
 
@@ -667,6 +673,7 @@ module Google
667
673
  class ConfigManagementConfigSync
668
674
  # @private
669
675
  class Representation < Google::Apis::Core::JsonRepresentation
676
+ property :allow_vertical_scale, as: 'allowVerticalScale'
670
677
  property :enabled, as: 'enabled'
671
678
  property :git, as: 'git', class: Google::Apis::GkehubV1beta::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1beta::ConfigManagementGitConfig::Representation
672
679
 
@@ -1265,10 +1272,20 @@ module Google
1265
1272
  end
1266
1273
  end
1267
1274
 
1275
+ class ServiceMeshDataPlaneManagement
1276
+ # @private
1277
+ class Representation < Google::Apis::Core::JsonRepresentation
1278
+ collection :details, as: 'details', class: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails::Representation
1279
+
1280
+ property :state, as: 'state'
1281
+ end
1282
+ end
1283
+
1268
1284
  class ServiceMeshMembershipSpec
1269
1285
  # @private
1270
1286
  class Representation < Google::Apis::Core::JsonRepresentation
1271
1287
  property :control_plane, as: 'controlPlane'
1288
+ property :management, as: 'management'
1272
1289
  end
1273
1290
  end
1274
1291
 
@@ -1277,6 +1294,8 @@ module Google
1277
1294
  class Representation < Google::Apis::Core::JsonRepresentation
1278
1295
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement::Representation
1279
1296
 
1297
+ property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshDataPlaneManagement::Representation
1298
+
1280
1299
  end
1281
1300
  end
1282
1301
 
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.31.0
4
+ version: 0.32.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: 2022-09-05 00:00:00.000000000 Z
11
+ date: 2022-09-19 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.32.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: []