google-apis-gkehub_v1 0.22.0 → 0.25.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8093a203ab2412e0557a143d245388a1d6457b2186de6555ac3f581e7b2f8747
|
4
|
+
data.tar.gz: 11a3a7732663c082fd4c1647426540ec6ef25ba1a3089bcad9dd1cbc2dfafb95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71b612ffc175c46653f46db93c2566bf50391253dcf19cbf7044fcbeb75c73899351b6d06c7172c66f49ac6e67f4fd927130d6fbc16f46acc152ac522e12fbbf
|
7
|
+
data.tar.gz: 9cfe9dfaac24bd4ae314a842557734e806d05858a4872990817d78554675b305b8ce42f853957f1c6f9196fb6410051c68026a9779fc46629ca80e5b36e26692
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2022-04-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220422
|
6
|
+
|
7
|
+
### v0.24.0 (2022-04-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220408
|
10
|
+
|
11
|
+
### v0.23.0 (2022-04-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220401
|
14
|
+
|
3
15
|
### v0.22.0 (2022-03-26)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220318
|
@@ -202,7 +202,7 @@ module Google
|
|
202
202
|
# @return [Google::Apis::GkehubV1::Expr]
|
203
203
|
attr_accessor :condition
|
204
204
|
|
205
|
-
# Specifies the principals requesting access for a Cloud
|
205
|
+
# Specifies the principals requesting access for a Google Cloud resource. `
|
206
206
|
# members` can have the following values: * `allUsers`: A special identifier
|
207
207
|
# that represents anyone who is on the internet; with or without a Google
|
208
208
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -1455,6 +1455,191 @@ module Google
|
|
1455
1455
|
end
|
1456
1456
|
end
|
1457
1457
|
|
1458
|
+
# Configuration of an auth method for a member/cluster. Only one authentication
|
1459
|
+
# method (e.g., OIDC and LDAP) can be set per AuthMethod.
|
1460
|
+
class IdentityServiceAuthMethod
|
1461
|
+
include Google::Apis::Core::Hashable
|
1462
|
+
|
1463
|
+
# Identifier for auth config.
|
1464
|
+
# Corresponds to the JSON property `name`
|
1465
|
+
# @return [String]
|
1466
|
+
attr_accessor :name
|
1467
|
+
|
1468
|
+
# Configuration for OIDC Auth flow.
|
1469
|
+
# Corresponds to the JSON property `oidcConfig`
|
1470
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceOidcConfig]
|
1471
|
+
attr_accessor :oidc_config
|
1472
|
+
|
1473
|
+
# Proxy server address to use for auth method.
|
1474
|
+
# Corresponds to the JSON property `proxy`
|
1475
|
+
# @return [String]
|
1476
|
+
attr_accessor :proxy
|
1477
|
+
|
1478
|
+
def initialize(**args)
|
1479
|
+
update!(**args)
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
# Update properties of this object
|
1483
|
+
def update!(**args)
|
1484
|
+
@name = args[:name] if args.key?(:name)
|
1485
|
+
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
1486
|
+
@proxy = args[:proxy] if args.key?(:proxy)
|
1487
|
+
end
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
# **Anthos Identity Service**: Configuration for a single Membership.
|
1491
|
+
class IdentityServiceMembershipSpec
|
1492
|
+
include Google::Apis::Core::Hashable
|
1493
|
+
|
1494
|
+
# A member may support multiple auth methods.
|
1495
|
+
# Corresponds to the JSON property `authMethods`
|
1496
|
+
# @return [Array<Google::Apis::GkehubV1::IdentityServiceAuthMethod>]
|
1497
|
+
attr_accessor :auth_methods
|
1498
|
+
|
1499
|
+
def initialize(**args)
|
1500
|
+
update!(**args)
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
# Update properties of this object
|
1504
|
+
def update!(**args)
|
1505
|
+
@auth_methods = args[:auth_methods] if args.key?(:auth_methods)
|
1506
|
+
end
|
1507
|
+
end
|
1508
|
+
|
1509
|
+
# **Anthos Identity Service**: State for a single Membership.
|
1510
|
+
class IdentityServiceMembershipState
|
1511
|
+
include Google::Apis::Core::Hashable
|
1512
|
+
|
1513
|
+
# The reason of the failure.
|
1514
|
+
# Corresponds to the JSON property `failureReason`
|
1515
|
+
# @return [String]
|
1516
|
+
attr_accessor :failure_reason
|
1517
|
+
|
1518
|
+
# Installed AIS version. This is the AIS version installed on this member. The
|
1519
|
+
# values makes sense iff state is OK.
|
1520
|
+
# Corresponds to the JSON property `installedVersion`
|
1521
|
+
# @return [String]
|
1522
|
+
attr_accessor :installed_version
|
1523
|
+
|
1524
|
+
# **Anthos Identity Service**: Configuration for a single Membership.
|
1525
|
+
# Corresponds to the JSON property `memberConfig`
|
1526
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceMembershipSpec]
|
1527
|
+
attr_accessor :member_config
|
1528
|
+
|
1529
|
+
# Deployment state on this member
|
1530
|
+
# Corresponds to the JSON property `state`
|
1531
|
+
# @return [String]
|
1532
|
+
attr_accessor :state
|
1533
|
+
|
1534
|
+
def initialize(**args)
|
1535
|
+
update!(**args)
|
1536
|
+
end
|
1537
|
+
|
1538
|
+
# Update properties of this object
|
1539
|
+
def update!(**args)
|
1540
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
1541
|
+
@installed_version = args[:installed_version] if args.key?(:installed_version)
|
1542
|
+
@member_config = args[:member_config] if args.key?(:member_config)
|
1543
|
+
@state = args[:state] if args.key?(:state)
|
1544
|
+
end
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
# Configuration for OIDC Auth flow.
|
1548
|
+
class IdentityServiceOidcConfig
|
1549
|
+
include Google::Apis::Core::Hashable
|
1550
|
+
|
1551
|
+
# PEM-encoded CA for OIDC provider.
|
1552
|
+
# Corresponds to the JSON property `certificateAuthorityData`
|
1553
|
+
# @return [String]
|
1554
|
+
attr_accessor :certificate_authority_data
|
1555
|
+
|
1556
|
+
# ID for OIDC client application.
|
1557
|
+
# Corresponds to the JSON property `clientId`
|
1558
|
+
# @return [String]
|
1559
|
+
attr_accessor :client_id
|
1560
|
+
|
1561
|
+
# Input only. Unencrypted OIDC client secret will be passed to the GKE Hub CLH.
|
1562
|
+
# Corresponds to the JSON property `clientSecret`
|
1563
|
+
# @return [String]
|
1564
|
+
attr_accessor :client_secret
|
1565
|
+
|
1566
|
+
# Flag to denote if reverse proxy is used to connect to auth provider. This flag
|
1567
|
+
# should be set to true when provider is not reachable by Google Cloud Console.
|
1568
|
+
# Corresponds to the JSON property `deployCloudConsoleProxy`
|
1569
|
+
# @return [Boolean]
|
1570
|
+
attr_accessor :deploy_cloud_console_proxy
|
1571
|
+
alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
|
1572
|
+
|
1573
|
+
# Output only. Encrypted OIDC Client secret
|
1574
|
+
# Corresponds to the JSON property `encryptedClientSecret`
|
1575
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1576
|
+
# @return [String]
|
1577
|
+
attr_accessor :encrypted_client_secret
|
1578
|
+
|
1579
|
+
# Comma-separated list of key-value pairs.
|
1580
|
+
# Corresponds to the JSON property `extraParams`
|
1581
|
+
# @return [String]
|
1582
|
+
attr_accessor :extra_params
|
1583
|
+
|
1584
|
+
# Prefix to prepend to group name.
|
1585
|
+
# Corresponds to the JSON property `groupPrefix`
|
1586
|
+
# @return [String]
|
1587
|
+
attr_accessor :group_prefix
|
1588
|
+
|
1589
|
+
# Claim in OIDC ID token that holds group information.
|
1590
|
+
# Corresponds to the JSON property `groupsClaim`
|
1591
|
+
# @return [String]
|
1592
|
+
attr_accessor :groups_claim
|
1593
|
+
|
1594
|
+
# URI for the OIDC provider. This should point to the level below .well-known/
|
1595
|
+
# openid-configuration.
|
1596
|
+
# Corresponds to the JSON property `issuerUri`
|
1597
|
+
# @return [String]
|
1598
|
+
attr_accessor :issuer_uri
|
1599
|
+
|
1600
|
+
# Registered redirect uri to redirect users going through OAuth flow using
|
1601
|
+
# kubectl plugin.
|
1602
|
+
# Corresponds to the JSON property `kubectlRedirectUri`
|
1603
|
+
# @return [String]
|
1604
|
+
attr_accessor :kubectl_redirect_uri
|
1605
|
+
|
1606
|
+
# Comma-separated list of identifiers.
|
1607
|
+
# Corresponds to the JSON property `scopes`
|
1608
|
+
# @return [String]
|
1609
|
+
attr_accessor :scopes
|
1610
|
+
|
1611
|
+
# Claim in OIDC ID token that holds username.
|
1612
|
+
# Corresponds to the JSON property `userClaim`
|
1613
|
+
# @return [String]
|
1614
|
+
attr_accessor :user_claim
|
1615
|
+
|
1616
|
+
# Prefix to prepend to user name.
|
1617
|
+
# Corresponds to the JSON property `userPrefix`
|
1618
|
+
# @return [String]
|
1619
|
+
attr_accessor :user_prefix
|
1620
|
+
|
1621
|
+
def initialize(**args)
|
1622
|
+
update!(**args)
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
# Update properties of this object
|
1626
|
+
def update!(**args)
|
1627
|
+
@certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
|
1628
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
1629
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1630
|
+
@deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
|
1631
|
+
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1632
|
+
@extra_params = args[:extra_params] if args.key?(:extra_params)
|
1633
|
+
@group_prefix = args[:group_prefix] if args.key?(:group_prefix)
|
1634
|
+
@groups_claim = args[:groups_claim] if args.key?(:groups_claim)
|
1635
|
+
@issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
|
1636
|
+
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
1637
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
1638
|
+
@user_claim = args[:user_claim] if args.key?(:user_claim)
|
1639
|
+
@user_prefix = args[:user_prefix] if args.key?(:user_prefix)
|
1640
|
+
end
|
1641
|
+
end
|
1642
|
+
|
1458
1643
|
# KubernetesMetadata provides informational metadata for Memberships
|
1459
1644
|
# representing Kubernetes clusters.
|
1460
1645
|
class KubernetesMetadata
|
@@ -1889,6 +2074,16 @@ module Google
|
|
1889
2074
|
# @return [Google::Apis::GkehubV1::ConfigManagementMembershipSpec]
|
1890
2075
|
attr_accessor :configmanagement
|
1891
2076
|
|
2077
|
+
# **Anthos Identity Service**: Configuration for a single Membership.
|
2078
|
+
# Corresponds to the JSON property `identityservice`
|
2079
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceMembershipSpec]
|
2080
|
+
attr_accessor :identityservice
|
2081
|
+
|
2082
|
+
# **Service Mesh**: Spec for a single Membership for the servicemesh feature
|
2083
|
+
# Corresponds to the JSON property `mesh`
|
2084
|
+
# @return [Google::Apis::GkehubV1::ServiceMeshMembershipSpec]
|
2085
|
+
attr_accessor :mesh
|
2086
|
+
|
1892
2087
|
def initialize(**args)
|
1893
2088
|
update!(**args)
|
1894
2089
|
end
|
@@ -1896,6 +2091,8 @@ module Google
|
|
1896
2091
|
# Update properties of this object
|
1897
2092
|
def update!(**args)
|
1898
2093
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2094
|
+
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2095
|
+
@mesh = args[:mesh] if args.key?(:mesh)
|
1899
2096
|
end
|
1900
2097
|
end
|
1901
2098
|
|
@@ -1914,6 +2111,17 @@ module Google
|
|
1914
2111
|
# @return [Google::Apis::GkehubV1::ConfigManagementMembershipState]
|
1915
2112
|
attr_accessor :configmanagement
|
1916
2113
|
|
2114
|
+
# **Anthos Identity Service**: State for a single Membership.
|
2115
|
+
# Corresponds to the JSON property `identityservice`
|
2116
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceMembershipState]
|
2117
|
+
attr_accessor :identityservice
|
2118
|
+
|
2119
|
+
# **Service Mesh**: State for a single Membership, as analyzed by the Service
|
2120
|
+
# Mesh Hub Controller.
|
2121
|
+
# Corresponds to the JSON property `servicemesh`
|
2122
|
+
# @return [Google::Apis::GkehubV1::ServiceMeshMembershipState]
|
2123
|
+
attr_accessor :servicemesh
|
2124
|
+
|
1917
2125
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
1918
2126
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
1919
2127
|
# on the context.
|
@@ -1929,6 +2137,8 @@ module Google
|
|
1929
2137
|
def update!(**args)
|
1930
2138
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
1931
2139
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2140
|
+
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2141
|
+
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
1932
2142
|
@state = args[:state] if args.key?(:state)
|
1933
2143
|
end
|
1934
2144
|
end
|
@@ -2323,6 +2533,95 @@ module Google
|
|
2323
2533
|
end
|
2324
2534
|
end
|
2325
2535
|
|
2536
|
+
# Status of control plane management.
|
2537
|
+
class ServiceMeshControlPlaneManagement
|
2538
|
+
include Google::Apis::Core::Hashable
|
2539
|
+
|
2540
|
+
# Explanation of state.
|
2541
|
+
# Corresponds to the JSON property `details`
|
2542
|
+
# @return [Array<Google::Apis::GkehubV1::ServiceMeshStatusDetails>]
|
2543
|
+
attr_accessor :details
|
2544
|
+
|
2545
|
+
# LifecycleState of control plane management.
|
2546
|
+
# Corresponds to the JSON property `state`
|
2547
|
+
# @return [String]
|
2548
|
+
attr_accessor :state
|
2549
|
+
|
2550
|
+
def initialize(**args)
|
2551
|
+
update!(**args)
|
2552
|
+
end
|
2553
|
+
|
2554
|
+
# Update properties of this object
|
2555
|
+
def update!(**args)
|
2556
|
+
@details = args[:details] if args.key?(:details)
|
2557
|
+
@state = args[:state] if args.key?(:state)
|
2558
|
+
end
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
# **Service Mesh**: Spec for a single Membership for the servicemesh feature
|
2562
|
+
class ServiceMeshMembershipSpec
|
2563
|
+
include Google::Apis::Core::Hashable
|
2564
|
+
|
2565
|
+
# Enables automatic control plane management.
|
2566
|
+
# Corresponds to the JSON property `controlPlane`
|
2567
|
+
# @return [String]
|
2568
|
+
attr_accessor :control_plane
|
2569
|
+
|
2570
|
+
def initialize(**args)
|
2571
|
+
update!(**args)
|
2572
|
+
end
|
2573
|
+
|
2574
|
+
# Update properties of this object
|
2575
|
+
def update!(**args)
|
2576
|
+
@control_plane = args[:control_plane] if args.key?(:control_plane)
|
2577
|
+
end
|
2578
|
+
end
|
2579
|
+
|
2580
|
+
# **Service Mesh**: State for a single Membership, as analyzed by the Service
|
2581
|
+
# Mesh Hub Controller.
|
2582
|
+
class ServiceMeshMembershipState
|
2583
|
+
include Google::Apis::Core::Hashable
|
2584
|
+
|
2585
|
+
# Status of control plane management.
|
2586
|
+
# Corresponds to the JSON property `controlPlaneManagement`
|
2587
|
+
# @return [Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement]
|
2588
|
+
attr_accessor :control_plane_management
|
2589
|
+
|
2590
|
+
def initialize(**args)
|
2591
|
+
update!(**args)
|
2592
|
+
end
|
2593
|
+
|
2594
|
+
# Update properties of this object
|
2595
|
+
def update!(**args)
|
2596
|
+
@control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
|
2597
|
+
end
|
2598
|
+
end
|
2599
|
+
|
2600
|
+
# Structured and human-readable details for a status.
|
2601
|
+
class ServiceMeshStatusDetails
|
2602
|
+
include Google::Apis::Core::Hashable
|
2603
|
+
|
2604
|
+
# A machine-readable code that further describes a broad status.
|
2605
|
+
# Corresponds to the JSON property `code`
|
2606
|
+
# @return [String]
|
2607
|
+
attr_accessor :code
|
2608
|
+
|
2609
|
+
# Human-readable explanation of code.
|
2610
|
+
# Corresponds to the JSON property `details`
|
2611
|
+
# @return [String]
|
2612
|
+
attr_accessor :details
|
2613
|
+
|
2614
|
+
def initialize(**args)
|
2615
|
+
update!(**args)
|
2616
|
+
end
|
2617
|
+
|
2618
|
+
# Update properties of this object
|
2619
|
+
def update!(**args)
|
2620
|
+
@code = args[:code] if args.key?(:code)
|
2621
|
+
@details = args[:details] if args.key?(:details)
|
2622
|
+
end
|
2623
|
+
end
|
2624
|
+
|
2326
2625
|
# Request message for `SetIamPolicy` method.
|
2327
2626
|
class SetIamPolicyRequest
|
2328
2627
|
include Google::Apis::Core::Hashable
|
@@ -2406,7 +2705,7 @@ module Google
|
|
2406
2705
|
include Google::Apis::Core::Hashable
|
2407
2706
|
|
2408
2707
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
2409
|
-
# (such as
|
2708
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
2410
2709
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
2411
2710
|
# Corresponds to the JSON property `permissions`
|
2412
2711
|
# @return [Array<String>]
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220422"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,30 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class IdentityServiceAuthMethod
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class IdentityServiceMembershipSpec
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class IdentityServiceMembershipState
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class IdentityServiceOidcConfig
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
265
289
|
class KubernetesMetadata
|
266
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
291
|
|
@@ -382,6 +406,30 @@ module Google
|
|
382
406
|
include Google::Apis::Core::JsonObjectSupport
|
383
407
|
end
|
384
408
|
|
409
|
+
class ServiceMeshControlPlaneManagement
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
415
|
+
class ServiceMeshMembershipSpec
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
421
|
+
class ServiceMeshMembershipState
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class ServiceMeshStatusDetails
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
385
433
|
class SetIamPolicyRequest
|
386
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
435
|
|
@@ -809,6 +857,54 @@ module Google
|
|
809
857
|
end
|
810
858
|
end
|
811
859
|
|
860
|
+
class IdentityServiceAuthMethod
|
861
|
+
# @private
|
862
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
863
|
+
property :name, as: 'name'
|
864
|
+
property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1::IdentityServiceOidcConfig::Representation
|
865
|
+
|
866
|
+
property :proxy, as: 'proxy'
|
867
|
+
end
|
868
|
+
end
|
869
|
+
|
870
|
+
class IdentityServiceMembershipSpec
|
871
|
+
# @private
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
873
|
+
collection :auth_methods, as: 'authMethods', class: Google::Apis::GkehubV1::IdentityServiceAuthMethod, decorator: Google::Apis::GkehubV1::IdentityServiceAuthMethod::Representation
|
874
|
+
|
875
|
+
end
|
876
|
+
end
|
877
|
+
|
878
|
+
class IdentityServiceMembershipState
|
879
|
+
# @private
|
880
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
881
|
+
property :failure_reason, as: 'failureReason'
|
882
|
+
property :installed_version, as: 'installedVersion'
|
883
|
+
property :member_config, as: 'memberConfig', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
|
884
|
+
|
885
|
+
property :state, as: 'state'
|
886
|
+
end
|
887
|
+
end
|
888
|
+
|
889
|
+
class IdentityServiceOidcConfig
|
890
|
+
# @private
|
891
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
892
|
+
property :certificate_authority_data, as: 'certificateAuthorityData'
|
893
|
+
property :client_id, as: 'clientId'
|
894
|
+
property :client_secret, as: 'clientSecret'
|
895
|
+
property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
|
896
|
+
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
897
|
+
property :extra_params, as: 'extraParams'
|
898
|
+
property :group_prefix, as: 'groupPrefix'
|
899
|
+
property :groups_claim, as: 'groupsClaim'
|
900
|
+
property :issuer_uri, as: 'issuerUri'
|
901
|
+
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
902
|
+
property :scopes, as: 'scopes'
|
903
|
+
property :user_claim, as: 'userClaim'
|
904
|
+
property :user_prefix, as: 'userPrefix'
|
905
|
+
end
|
906
|
+
end
|
907
|
+
|
812
908
|
class KubernetesMetadata
|
813
909
|
# @private
|
814
910
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -926,6 +1022,10 @@ module Google
|
|
926
1022
|
class Representation < Google::Apis::Core::JsonRepresentation
|
927
1023
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
|
928
1024
|
|
1025
|
+
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
|
1026
|
+
|
1027
|
+
property :mesh, as: 'mesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipSpec::Representation
|
1028
|
+
|
929
1029
|
end
|
930
1030
|
end
|
931
1031
|
|
@@ -936,6 +1036,10 @@ module Google
|
|
936
1036
|
|
937
1037
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
|
938
1038
|
|
1039
|
+
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipState::Representation
|
1040
|
+
|
1041
|
+
property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipState::Representation
|
1042
|
+
|
939
1043
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
940
1044
|
|
941
1045
|
end
|
@@ -1026,6 +1130,38 @@ module Google
|
|
1026
1130
|
end
|
1027
1131
|
end
|
1028
1132
|
|
1133
|
+
class ServiceMeshControlPlaneManagement
|
1134
|
+
# @private
|
1135
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1136
|
+
collection :details, as: 'details', class: Google::Apis::GkehubV1::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1::ServiceMeshStatusDetails::Representation
|
1137
|
+
|
1138
|
+
property :state, as: 'state'
|
1139
|
+
end
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class ServiceMeshMembershipSpec
|
1143
|
+
# @private
|
1144
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1145
|
+
property :control_plane, as: 'controlPlane'
|
1146
|
+
end
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class ServiceMeshMembershipState
|
1150
|
+
# @private
|
1151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1152
|
+
property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement::Representation
|
1153
|
+
|
1154
|
+
end
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
class ServiceMeshStatusDetails
|
1158
|
+
# @private
|
1159
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1160
|
+
property :code, as: 'code'
|
1161
|
+
property :details, as: 'details'
|
1162
|
+
end
|
1163
|
+
end
|
1164
|
+
|
1029
1165
|
class SetIamPolicyRequest
|
1030
1166
|
# @private
|
1031
1167
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -84,8 +84,8 @@ module Google
|
|
84
84
|
# The resource that owns the locations collection, if applicable.
|
85
85
|
# @param [String] filter
|
86
86
|
# A filter to narrow down results to a preferred subset. The filtering language
|
87
|
-
# accepts strings like "displayName=tokyo"
|
88
|
-
# AIP-160](https://google.aip.dev/160).
|
87
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
88
|
+
# in [AIP-160](https://google.aip.dev/160).
|
89
89
|
# @param [Fixnum] page_size
|
90
90
|
# The maximum number of results to return. If not set, the service selects a
|
91
91
|
# default.
|
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.
|
4
|
+
version: 0.25.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-
|
11
|
+
date: 2022-05-02 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.25.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: []
|