google-apis-gkehub_v1beta 0.44.0 → 0.46.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: 61e362ae4c32ce3fb6c2df104da443062c8abe3bb770a80eab9a8e27b771433d
|
4
|
+
data.tar.gz: 07e70183345d22808f9a93a3e8eeeac01156aec403d382df88ffac5fd153f3e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d54c805227d726ad6af077de600e71b12e0b2f3e3cc0fbb06d904aaf867708291dc9bbec8fddef36e28b4e30ccddcd34f2a83aefe0c40972c515e33d1216fe3c
|
7
|
+
data.tar.gz: ca2fc1698ffc3979930fad809ecbce21c2f0fe4717d3b53f5ef16f5642f1bbe90f92241994f8cfd62c935e3a5caa49b370169db232d427070af9e9a4bf1068c8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
2
2
|
|
3
|
+
### v0.46.0 (2023-04-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230424
|
6
|
+
|
7
|
+
### v0.45.0 (2023-04-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230414
|
10
|
+
|
3
11
|
### v0.44.0 (2023-04-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230407
|
@@ -1469,7 +1469,7 @@ module Google
|
|
1469
1469
|
# @return [Google::Apis::GkehubV1beta::CommonFleetDefaultMemberConfigSpec]
|
1470
1470
|
attr_accessor :fleet_default_member_config
|
1471
1471
|
|
1472
|
-
#
|
1472
|
+
# Labels for this Feature.
|
1473
1473
|
# Corresponds to the JSON property `labels`
|
1474
1474
|
# @return [Hash<String,String>]
|
1475
1475
|
attr_accessor :labels
|
@@ -1649,8 +1649,8 @@ module Google
|
|
1649
1649
|
attr_accessor :display_name
|
1650
1650
|
|
1651
1651
|
# Output only. The full, unique resource name of this fleet in the format of `
|
1652
|
-
# projects/`project`/locations/`location`/fleets/`fleet``. Each
|
1653
|
-
# have at most one fleet resource, named "default".
|
1652
|
+
# projects/`project`/locations/`location`/fleets/`fleet``. Each Google Cloud
|
1653
|
+
# project can have at most one fleet resource, named "default".
|
1654
1654
|
# Corresponds to the JSON property `name`
|
1655
1655
|
# @return [String]
|
1656
1656
|
attr_accessor :name
|
@@ -1711,12 +1711,18 @@ module Google
|
|
1711
1711
|
class FleetObservabilityFeatureSpec
|
1712
1712
|
include Google::Apis::Core::Hashable
|
1713
1713
|
|
1714
|
+
# LoggingConfig defines the configuration for different types of logs.
|
1715
|
+
# Corresponds to the JSON property `loggingConfig`
|
1716
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityLoggingConfig]
|
1717
|
+
attr_accessor :logging_config
|
1718
|
+
|
1714
1719
|
def initialize(**args)
|
1715
1720
|
update!(**args)
|
1716
1721
|
end
|
1717
1722
|
|
1718
1723
|
# Update properties of this object
|
1719
1724
|
def update!(**args)
|
1725
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
1720
1726
|
end
|
1721
1727
|
end
|
1722
1728
|
|
@@ -1734,6 +1740,31 @@ module Google
|
|
1734
1740
|
end
|
1735
1741
|
end
|
1736
1742
|
|
1743
|
+
# LoggingConfig defines the configuration for different types of logs.
|
1744
|
+
class FleetObservabilityLoggingConfig
|
1745
|
+
include Google::Apis::Core::Hashable
|
1746
|
+
|
1747
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1748
|
+
# Corresponds to the JSON property `defaultConfig`
|
1749
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig]
|
1750
|
+
attr_accessor :default_config
|
1751
|
+
|
1752
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1753
|
+
# Corresponds to the JSON property `fleetScopeLogsConfig`
|
1754
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig]
|
1755
|
+
attr_accessor :fleet_scope_logs_config
|
1756
|
+
|
1757
|
+
def initialize(**args)
|
1758
|
+
update!(**args)
|
1759
|
+
end
|
1760
|
+
|
1761
|
+
# Update properties of this object
|
1762
|
+
def update!(**args)
|
1763
|
+
@default_config = args[:default_config] if args.key?(:default_config)
|
1764
|
+
@fleet_scope_logs_config = args[:fleet_scope_logs_config] if args.key?(:fleet_scope_logs_config)
|
1765
|
+
end
|
1766
|
+
end
|
1767
|
+
|
1737
1768
|
# **FleetObservability**: The membership-specific input for FleetObservability
|
1738
1769
|
# feature.
|
1739
1770
|
class FleetObservabilityMembershipSpec
|
@@ -1762,6 +1793,25 @@ module Google
|
|
1762
1793
|
end
|
1763
1794
|
end
|
1764
1795
|
|
1796
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1797
|
+
class FleetObservabilityRoutingConfig
|
1798
|
+
include Google::Apis::Core::Hashable
|
1799
|
+
|
1800
|
+
# mode configures the logs routing mode.
|
1801
|
+
# Corresponds to the JSON property `mode`
|
1802
|
+
# @return [String]
|
1803
|
+
attr_accessor :mode
|
1804
|
+
|
1805
|
+
def initialize(**args)
|
1806
|
+
update!(**args)
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
# Update properties of this object
|
1810
|
+
def update!(**args)
|
1811
|
+
@mode = args[:mode] if args.key?(:mode)
|
1812
|
+
end
|
1813
|
+
end
|
1814
|
+
|
1765
1815
|
# The `Status` type defines a logical error model that is suitable for different
|
1766
1816
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1767
1817
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -2281,7 +2331,7 @@ module Google
|
|
2281
2331
|
end
|
2282
2332
|
end
|
2283
2333
|
|
2284
|
-
# A resource that represents Google Cloud
|
2334
|
+
# A resource that represents a Google Cloud location.
|
2285
2335
|
class Location
|
2286
2336
|
include Google::Apis::Core::Hashable
|
2287
2337
|
|
@@ -2924,14 +2974,12 @@ module Google
|
|
2924
2974
|
class PolicyControllerBundleInstallSpec
|
2925
2975
|
include Google::Apis::Core::Hashable
|
2926
2976
|
|
2927
|
-
# the set of namespaces to be exempted from the bundle
|
2928
|
-
# Decrement this
|
2977
|
+
# the set of namespaces to be exempted from the bundle
|
2929
2978
|
# Corresponds to the JSON property `exemptedNamespaces`
|
2930
2979
|
# @return [Array<String>]
|
2931
2980
|
attr_accessor :exempted_namespaces
|
2932
2981
|
|
2933
|
-
# Management specifies how the bundle will be managed by the controller.
|
2934
|
-
# 271878194): Remove this
|
2982
|
+
# Management specifies how the bundle will be managed by the controller.
|
2935
2983
|
# Corresponds to the JSON property `management`
|
2936
2984
|
# @return [String]
|
2937
2985
|
attr_accessor :management
|
@@ -2963,7 +3011,7 @@ module Google
|
|
2963
3011
|
# @return [Fixnum]
|
2964
3012
|
attr_accessor :constraint_violation_limit
|
2965
3013
|
|
2966
|
-
# Map of deployment configs to deployments (
|
3014
|
+
# Map of deployment configs to deployments ("admission", "audit", "mutation').
|
2967
3015
|
# Corresponds to the JSON property `deploymentConfigs`
|
2968
3016
|
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerDeploymentConfig>]
|
2969
3017
|
attr_accessor :deployment_configs
|
@@ -3076,7 +3124,7 @@ module Google
|
|
3076
3124
|
attr_accessor :component_states
|
3077
3125
|
|
3078
3126
|
# The state of the template library and any bundles included in the chosen
|
3079
|
-
# version of the manifest
|
3127
|
+
# version of the manifest
|
3080
3128
|
# Corresponds to the JSON property `contentStates`
|
3081
3129
|
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerOnClusterState>]
|
3082
3130
|
attr_accessor :content_states
|
@@ -3297,15 +3345,14 @@ module Google
|
|
3297
3345
|
class PolicyControllerTemplateLibraryConfig
|
3298
3346
|
include Google::Apis::Core::Hashable
|
3299
3347
|
|
3300
|
-
# Whether the standard template library should be installed or not.
|
3301
|
-
# 271878194): Remove this
|
3348
|
+
# Whether the standard template library should be installed or not.
|
3302
3349
|
# Corresponds to the JSON property `included`
|
3303
3350
|
# @return [Boolean]
|
3304
3351
|
attr_accessor :included
|
3305
3352
|
alias_method :included?, :included
|
3306
3353
|
|
3307
3354
|
# Configures the manner in which the template library is installed on the
|
3308
|
-
# cluster.
|
3355
|
+
# cluster.
|
3309
3356
|
# Corresponds to the JSON property `installation`
|
3310
3357
|
# @return [String]
|
3311
3358
|
attr_accessor :installation
|
@@ -3475,6 +3522,12 @@ module Google
|
|
3475
3522
|
class Scope
|
3476
3523
|
include Google::Apis::Core::Hashable
|
3477
3524
|
|
3525
|
+
# If true, all Memberships in the Fleet bind to this Scope.
|
3526
|
+
# Corresponds to the JSON property `allMemberships`
|
3527
|
+
# @return [Boolean]
|
3528
|
+
attr_accessor :all_memberships
|
3529
|
+
alias_method :all_memberships?, :all_memberships
|
3530
|
+
|
3478
3531
|
# Output only. When the scope was created.
|
3479
3532
|
# Corresponds to the JSON property `createTime`
|
3480
3533
|
# @return [String]
|
@@ -3514,6 +3567,7 @@ module Google
|
|
3514
3567
|
|
3515
3568
|
# Update properties of this object
|
3516
3569
|
def update!(**args)
|
3570
|
+
@all_memberships = args[:all_memberships] if args.key?(:all_memberships)
|
3517
3571
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3518
3572
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3519
3573
|
@name = args[:name] if args.key?(:name)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.46.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230424"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class FleetObservabilityLoggingConfig
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class FleetObservabilityMembershipSpec
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -322,6 +328,12 @@ module Google
|
|
322
328
|
include Google::Apis::Core::JsonObjectSupport
|
323
329
|
end
|
324
330
|
|
331
|
+
class FleetObservabilityRoutingConfig
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
325
337
|
class GoogleRpcStatus
|
326
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
339
|
|
@@ -1141,6 +1153,8 @@ module Google
|
|
1141
1153
|
class FleetObservabilityFeatureSpec
|
1142
1154
|
# @private
|
1143
1155
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1156
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::GkehubV1beta::FleetObservabilityLoggingConfig, decorator: Google::Apis::GkehubV1beta::FleetObservabilityLoggingConfig::Representation
|
1157
|
+
|
1144
1158
|
end
|
1145
1159
|
end
|
1146
1160
|
|
@@ -1150,6 +1164,16 @@ module Google
|
|
1150
1164
|
end
|
1151
1165
|
end
|
1152
1166
|
|
1167
|
+
class FleetObservabilityLoggingConfig
|
1168
|
+
# @private
|
1169
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1170
|
+
property :default_config, as: 'defaultConfig', class: Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig, decorator: Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig::Representation
|
1171
|
+
|
1172
|
+
property :fleet_scope_logs_config, as: 'fleetScopeLogsConfig', class: Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig, decorator: Google::Apis::GkehubV1beta::FleetObservabilityRoutingConfig::Representation
|
1173
|
+
|
1174
|
+
end
|
1175
|
+
end
|
1176
|
+
|
1153
1177
|
class FleetObservabilityMembershipSpec
|
1154
1178
|
# @private
|
1155
1179
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1162,6 +1186,13 @@ module Google
|
|
1162
1186
|
end
|
1163
1187
|
end
|
1164
1188
|
|
1189
|
+
class FleetObservabilityRoutingConfig
|
1190
|
+
# @private
|
1191
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1192
|
+
property :mode, as: 'mode'
|
1193
|
+
end
|
1194
|
+
end
|
1195
|
+
|
1165
1196
|
class GoogleRpcStatus
|
1166
1197
|
# @private
|
1167
1198
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1640,6 +1671,7 @@ module Google
|
|
1640
1671
|
class Scope
|
1641
1672
|
# @private
|
1642
1673
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1674
|
+
property :all_memberships, as: 'allMemberships'
|
1643
1675
|
property :create_time, as: 'createTime'
|
1644
1676
|
property :delete_time, as: 'deleteTime'
|
1645
1677
|
property :name, as: 'name'
|
@@ -654,8 +654,8 @@ module Google
|
|
654
654
|
# Updates a fleet.
|
655
655
|
# @param [String] name
|
656
656
|
# Output only. The full, unique resource name of this fleet in the format of `
|
657
|
-
# projects/`project`/locations/`location`/fleets/`fleet``. Each
|
658
|
-
# have at most one fleet resource, named "default".
|
657
|
+
# projects/`project`/locations/`location`/fleets/`fleet``. Each Google Cloud
|
658
|
+
# project can have at most one fleet resource, named "default".
|
659
659
|
# @param [Google::Apis::GkehubV1beta::Fleet] fleet_object
|
660
660
|
# @param [String] update_mask
|
661
661
|
# Required. The fields to be updated;
|
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.
|
4
|
+
version: 0.46.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: 2023-04-
|
11
|
+
date: 2023-04-30 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.46.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: []
|