google-apis-gkehub_v1beta 0.31.0 → 0.33.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: 48dd59abc5094ecc38fb9a027cd91c7cfc552eb0b270977cf2f9e03c6fe685da
4
- data.tar.gz: 110d5f5e89da8cc9bdc7c9b508ecc4b3041207622fa87735f56ea88ddf6c0dd8
3
+ metadata.gz: d95a04b0d7998cef9d66f1ac12383cf1a8c6113c2247c228b73fb761b9608b49
4
+ data.tar.gz: 9a9d5684c7917bb5ce0f2319cd458df97e4cd1ce5ff009f8d9efc61eb828e454
5
5
  SHA512:
6
- metadata.gz: cd6bb80f0ef211db895901cdc53676e41338c0b0073d75ffd76c91e45247f3d9b270c9e4b0e227dde8a31e53aba1e886e731527aabc21462ebae72424376e716
7
- data.tar.gz: c3d90ac89a4f3b8520f3a61ed5baab15d97fbba1c2e740349ab4793bacce754e2c217bbc3a126a031c48ce25caa051e1940d9b30ab797bed5a9011dc55c0a107
6
+ metadata.gz: 062f8c57b0682f5e304ad3880f7f140ab1b85998af7c345d527bdf7d5f5d3842c3d649dba4891abaa6d1370e98ce8ae63b303df00538326631c079847b4275a8
7
+ data.tar.gz: 5f3bd1b025de25f2c1820f46b348af422189493247480e2e2512c996fd8bc43e232c50ea9597c11e3bb69ff22ae0bfa7a9c1f3ea77a2af100c37016d9df6c3b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.33.0 (2022-09-21)
4
+
5
+ * Regenerated using generator version 0.10.0
6
+
7
+ ### v0.32.0 (2022-09-14)
8
+
9
+ * Regenerated from discovery document revision 20220912
10
+
3
11
  ### v0.31.0 (2022-09-04)
4
12
 
5
13
  * 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.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.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.33.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-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.33.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: []