google-apis-gkehub_v1 0.35.0 → 0.36.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: dcc4aa37fbd239afe85c0ad5cbf8e247820b17c016ad8f47c5c0c0e09fe33464
4
- data.tar.gz: 8cea71d677228ae8d1ecf62ac4081c6ab38934b1c5a39abbc3fbf284cdbd6429
3
+ metadata.gz: d23dcfdda6556e2d99c5ba3c0009a748f77e643a37ee022ed8c4c7ee65be009e
4
+ data.tar.gz: 690888507f6922cbc3f1f3f94964e7ffe40d6419887c1aa50b9830e2a92d25c7
5
5
  SHA512:
6
- metadata.gz: b3394e51174fb64a6072ca18db6dcbc26feaedc25a3cf8c505385a82b5cf5d2506121d94744976fb8d04a97fe42febefbd9d7c2d863efbd5e831179991aa712e
7
- data.tar.gz: 2432da210c31839611452aa0a8ac17ec167268e03ec6d6adba84633d0c972134f2625b09cecca33c4105741aabbe652028aa08ce7ce59f9bfdf93bb7af07f078
6
+ metadata.gz: 9a8f2b64ce1b334c5d28440e52ce240475bc60591eb17da6c7e7be41670326da5f12902696fdb4e552134aa9f110c83bc0f8b5d3c45230bb7f76789bf8e9e5b6
7
+ data.tar.gz: 0461b5af0a232f8b92f0bef78526623ba9047443dd148a224051c6c41117b57c84574019228515635f0aec369679fe3c51921f59c3813666963fc6b55fa03dbc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.36.0 (2022-10-30)
4
+
5
+ * Regenerated from discovery document revision 20221018
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.35.0 (2022-09-20)
4
9
 
5
10
  * Regenerated using generator version 0.10.0
@@ -421,6 +421,11 @@ module Google
421
421
  # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureSpec]
422
422
  attr_accessor :appdevexperience
423
423
 
424
+ # **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
425
+ # Corresponds to the JSON property `fleetobservability`
426
+ # @return [Google::Apis::GkehubV1::FleetObservabilityFeatureSpec]
427
+ attr_accessor :fleetobservability
428
+
424
429
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
425
430
  # feature.
426
431
  # Corresponds to the JSON property `multiclusteringress`
@@ -434,6 +439,7 @@ module Google
434
439
  # Update properties of this object
435
440
  def update!(**args)
436
441
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
442
+ @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
437
443
  @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
438
444
  end
439
445
  end
@@ -447,6 +453,12 @@ module Google
447
453
  # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
448
454
  attr_accessor :appdevexperience
449
455
 
456
+ # **FleetObservability**: An empty state left as an example Hub-wide Feature
457
+ # state.
458
+ # Corresponds to the JSON property `fleetobservability`
459
+ # @return [Google::Apis::GkehubV1::FleetObservabilityFeatureState]
460
+ attr_accessor :fleetobservability
461
+
450
462
  # FeatureState describes the high-level state of a Feature. It may be used to
451
463
  # describe a Feature's state at the environ-level, or per-membershop, depending
452
464
  # on the context.
@@ -461,6 +473,7 @@ module Google
461
473
  # Update properties of this object
462
474
  def update!(**args)
463
475
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
476
+ @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
464
477
  @state = args[:state] if args.key?(:state)
465
478
  end
466
479
  end
@@ -1531,6 +1544,29 @@ module Google
1531
1544
  # @return [Google::Apis::GkehubV1::FeatureResourceState]
1532
1545
  attr_accessor :resource_state
1533
1546
 
1547
+ # Optional. Scope-specific configuration for this Feature. If this Feature does
1548
+ # not support any per-Scope configuration, this field may be unused. The keys
1549
+ # indicate which Scope the configuration is for, in the form: `projects/`p`/
1550
+ # locations/global/scopes/`s`` Where `p` is the project, `s` is a valid Scope in
1551
+ # this project. `p` WILL match the Feature's project. `p` will always be
1552
+ # returned as the project number, but the project ID is also accepted during
1553
+ # input. If the same Scope is specified in the map twice (using the project ID
1554
+ # form, and the project number form), exactly ONE of the entries will be saved,
1555
+ # with no guarantees as to which. For this reason, it is recommended the same
1556
+ # format be used for all entries when mutating a Feature.
1557
+ # Corresponds to the JSON property `scopeSpecs`
1558
+ # @return [Hash<String,Google::Apis::GkehubV1::ScopeFeatureSpec>]
1559
+ attr_accessor :scope_specs
1560
+
1561
+ # Output only. Scope-specific Feature status. If this Feature does report any
1562
+ # per-Scope status, this field may be unused. The keys indicate which Scope the
1563
+ # state is for, in the form: `projects/`p`/locations/global/scopes/`s`` Where `p`
1564
+ # is the project, `s` is a valid Scope in this project. `p` WILL match the
1565
+ # Feature's project.
1566
+ # Corresponds to the JSON property `scopeStates`
1567
+ # @return [Hash<String,Google::Apis::GkehubV1::ScopeFeatureState>]
1568
+ attr_accessor :scope_states
1569
+
1534
1570
  # CommonFeatureSpec contains Hub-wide configuration information
1535
1571
  # Corresponds to the JSON property `spec`
1536
1572
  # @return [Google::Apis::GkehubV1::CommonFeatureSpec]
@@ -1559,6 +1595,8 @@ module Google
1559
1595
  @membership_states = args[:membership_states] if args.key?(:membership_states)
1560
1596
  @name = args[:name] if args.key?(:name)
1561
1597
  @resource_state = args[:resource_state] if args.key?(:resource_state)
1598
+ @scope_specs = args[:scope_specs] if args.key?(:scope_specs)
1599
+ @scope_states = args[:scope_states] if args.key?(:scope_states)
1562
1600
  @spec = args[:spec] if args.key?(:spec)
1563
1601
  @state = args[:state] if args.key?(:state)
1564
1602
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1619,6 +1657,61 @@ module Google
1619
1657
  end
1620
1658
  end
1621
1659
 
1660
+ # **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
1661
+ class FleetObservabilityFeatureSpec
1662
+ include Google::Apis::Core::Hashable
1663
+
1664
+ def initialize(**args)
1665
+ update!(**args)
1666
+ end
1667
+
1668
+ # Update properties of this object
1669
+ def update!(**args)
1670
+ end
1671
+ end
1672
+
1673
+ # **FleetObservability**: An empty state left as an example Hub-wide Feature
1674
+ # state.
1675
+ class FleetObservabilityFeatureState
1676
+ include Google::Apis::Core::Hashable
1677
+
1678
+ def initialize(**args)
1679
+ update!(**args)
1680
+ end
1681
+
1682
+ # Update properties of this object
1683
+ def update!(**args)
1684
+ end
1685
+ end
1686
+
1687
+ # **FleetObservability**: The membership-specific input for FleetObservability
1688
+ # feature.
1689
+ class FleetObservabilityMembershipSpec
1690
+ include Google::Apis::Core::Hashable
1691
+
1692
+ def initialize(**args)
1693
+ update!(**args)
1694
+ end
1695
+
1696
+ # Update properties of this object
1697
+ def update!(**args)
1698
+ end
1699
+ end
1700
+
1701
+ # **FleetObservability**: An empty state left as an example membership-specific
1702
+ # Feature state.
1703
+ class FleetObservabilityMembershipState
1704
+ include Google::Apis::Core::Hashable
1705
+
1706
+ def initialize(**args)
1707
+ update!(**args)
1708
+ end
1709
+
1710
+ # Update properties of this object
1711
+ def update!(**args)
1712
+ end
1713
+ end
1714
+
1622
1715
  # GenerateConnectManifestResponse contains manifest information for installing/
1623
1716
  # upgrading a Connect agent.
1624
1717
  class GenerateConnectManifestResponse
@@ -2400,6 +2493,12 @@ module Google
2400
2493
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipSpec]
2401
2494
  attr_accessor :configmanagement
2402
2495
 
2496
+ # **FleetObservability**: The membership-specific input for FleetObservability
2497
+ # feature.
2498
+ # Corresponds to the JSON property `fleetobservability`
2499
+ # @return [Google::Apis::GkehubV1::FleetObservabilityMembershipSpec]
2500
+ attr_accessor :fleetobservability
2501
+
2403
2502
  # **Anthos Identity Service**: Configuration for a single Membership.
2404
2503
  # Corresponds to the JSON property `identityservice`
2405
2504
  # @return [Google::Apis::GkehubV1::IdentityServiceMembershipSpec]
@@ -2418,6 +2517,7 @@ module Google
2418
2517
  def update!(**args)
2419
2518
  @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2420
2519
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2520
+ @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
2421
2521
  @identityservice = args[:identityservice] if args.key?(:identityservice)
2422
2522
  @mesh = args[:mesh] if args.key?(:mesh)
2423
2523
  end
@@ -2445,6 +2545,12 @@ module Google
2445
2545
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipState]
2446
2546
  attr_accessor :configmanagement
2447
2547
 
2548
+ # **FleetObservability**: An empty state left as an example membership-specific
2549
+ # Feature state.
2550
+ # Corresponds to the JSON property `fleetobservability`
2551
+ # @return [Google::Apis::GkehubV1::FleetObservabilityMembershipState]
2552
+ attr_accessor :fleetobservability
2553
+
2448
2554
  # **Anthos Identity Service**: State for a single Membership.
2449
2555
  # Corresponds to the JSON property `identityservice`
2450
2556
  # @return [Google::Apis::GkehubV1::IdentityServiceMembershipState]
@@ -2472,6 +2578,7 @@ module Google
2472
2578
  @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
2473
2579
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
2474
2580
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
2581
+ @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
2475
2582
  @identityservice = args[:identityservice] if args.key?(:identityservice)
2476
2583
  @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
2477
2584
  @state = args[:state] if args.key?(:state)
@@ -2901,6 +3008,40 @@ module Google
2901
3008
  end
2902
3009
  end
2903
3010
 
3011
+ # ScopeFeatureSpec contains feature specs for a fleet scope.
3012
+ class ScopeFeatureSpec
3013
+ include Google::Apis::Core::Hashable
3014
+
3015
+ def initialize(**args)
3016
+ update!(**args)
3017
+ end
3018
+
3019
+ # Update properties of this object
3020
+ def update!(**args)
3021
+ end
3022
+ end
3023
+
3024
+ # ScopeFeatureState contains Scope-wide Feature status information.
3025
+ class ScopeFeatureState
3026
+ include Google::Apis::Core::Hashable
3027
+
3028
+ # FeatureState describes the high-level state of a Feature. It may be used to
3029
+ # describe a Feature's state at the environ-level, or per-membershop, depending
3030
+ # on the context.
3031
+ # Corresponds to the JSON property `state`
3032
+ # @return [Google::Apis::GkehubV1::FeatureState]
3033
+ attr_accessor :state
3034
+
3035
+ def initialize(**args)
3036
+ update!(**args)
3037
+ end
3038
+
3039
+ # Update properties of this object
3040
+ def update!(**args)
3041
+ @state = args[:state] if args.key?(:state)
3042
+ end
3043
+ end
3044
+
2904
3045
  # Status of control plane management.
2905
3046
  class ServiceMeshControlPlaneManagement
2906
3047
  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.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220912"
25
+ REVISION = "20221018"
26
26
  end
27
27
  end
28
28
  end
@@ -286,6 +286,30 @@ module Google
286
286
  include Google::Apis::Core::JsonObjectSupport
287
287
  end
288
288
 
289
+ class FleetObservabilityFeatureSpec
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
295
+ class FleetObservabilityFeatureState
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
301
+ class FleetObservabilityMembershipSpec
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class FleetObservabilityMembershipState
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
289
313
  class GenerateConnectManifestResponse
290
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
315
 
@@ -472,6 +496,18 @@ module Google
472
496
  include Google::Apis::Core::JsonObjectSupport
473
497
  end
474
498
 
499
+ class ScopeFeatureSpec
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
505
+ class ScopeFeatureState
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
475
511
  class ServiceMeshControlPlaneManagement
476
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
513
 
@@ -654,6 +690,8 @@ module Google
654
690
  class Representation < Google::Apis::Core::JsonRepresentation
655
691
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec::Representation
656
692
 
693
+ property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureSpec::Representation
694
+
657
695
  property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec::Representation
658
696
 
659
697
  end
@@ -664,6 +702,8 @@ module Google
664
702
  class Representation < Google::Apis::Core::JsonRepresentation
665
703
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
666
704
 
705
+ property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureState::Representation
706
+
667
707
  property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
668
708
 
669
709
  end
@@ -965,6 +1005,10 @@ module Google
965
1005
  property :name, as: 'name'
966
1006
  property :resource_state, as: 'resourceState', class: Google::Apis::GkehubV1::FeatureResourceState, decorator: Google::Apis::GkehubV1::FeatureResourceState::Representation
967
1007
 
1008
+ hash :scope_specs, as: 'scopeSpecs', class: Google::Apis::GkehubV1::ScopeFeatureSpec, decorator: Google::Apis::GkehubV1::ScopeFeatureSpec::Representation
1009
+
1010
+ hash :scope_states, as: 'scopeStates', class: Google::Apis::GkehubV1::ScopeFeatureState, decorator: Google::Apis::GkehubV1::ScopeFeatureState::Representation
1011
+
968
1012
  property :spec, as: 'spec', class: Google::Apis::GkehubV1::CommonFeatureSpec, decorator: Google::Apis::GkehubV1::CommonFeatureSpec::Representation
969
1013
 
970
1014
  property :state, as: 'state', class: Google::Apis::GkehubV1::CommonFeatureState, decorator: Google::Apis::GkehubV1::CommonFeatureState::Representation
@@ -989,6 +1033,30 @@ module Google
989
1033
  end
990
1034
  end
991
1035
 
1036
+ class FleetObservabilityFeatureSpec
1037
+ # @private
1038
+ class Representation < Google::Apis::Core::JsonRepresentation
1039
+ end
1040
+ end
1041
+
1042
+ class FleetObservabilityFeatureState
1043
+ # @private
1044
+ class Representation < Google::Apis::Core::JsonRepresentation
1045
+ end
1046
+ end
1047
+
1048
+ class FleetObservabilityMembershipSpec
1049
+ # @private
1050
+ class Representation < Google::Apis::Core::JsonRepresentation
1051
+ end
1052
+ end
1053
+
1054
+ class FleetObservabilityMembershipState
1055
+ # @private
1056
+ class Representation < Google::Apis::Core::JsonRepresentation
1057
+ end
1058
+ end
1059
+
992
1060
  class GenerateConnectManifestResponse
993
1061
  # @private
994
1062
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1201,6 +1269,8 @@ module Google
1201
1269
 
1202
1270
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
1203
1271
 
1272
+ property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec::Representation
1273
+
1204
1274
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
1205
1275
 
1206
1276
  property :mesh, as: 'mesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipSpec::Representation
@@ -1217,6 +1287,8 @@ module Google
1217
1287
 
1218
1288
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
1219
1289
 
1290
+ property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityMembershipState, decorator: Google::Apis::GkehubV1::FleetObservabilityMembershipState::Representation
1291
+
1220
1292
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipState::Representation
1221
1293
 
1222
1294
  property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipState::Representation
@@ -1324,6 +1396,20 @@ module Google
1324
1396
  end
1325
1397
  end
1326
1398
 
1399
+ class ScopeFeatureSpec
1400
+ # @private
1401
+ class Representation < Google::Apis::Core::JsonRepresentation
1402
+ end
1403
+ end
1404
+
1405
+ class ScopeFeatureState
1406
+ # @private
1407
+ class Representation < Google::Apis::Core::JsonRepresentation
1408
+ property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
1409
+
1410
+ end
1411
+ end
1412
+
1327
1413
  class ServiceMeshControlPlaneManagement
1328
1414
  # @private
1329
1415
  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.35.0
4
+ version: 0.36.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-26 00:00:00.000000000 Z
11
+ date: 2022-10-31 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.9.0
19
+ version: 0.9.1
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.9.0
29
+ version: 0.9.1
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []