google-apis-gkehub_v1alpha 0.76.0 → 0.78.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: 0c423d720343550769ef4aa8717139ea549b53264881bf873295812ade9dd5af
4
- data.tar.gz: b146b72057ff8e38da2f67b8f2d7cc03c7d02e2d6383981ecf23dd5c7cc27aaf
3
+ metadata.gz: d030efad1314a3abab865ff9bd3cee0a080560535a441cc425d73592ed7e9920
4
+ data.tar.gz: 57661f79dda5da7f53a820294b0b1cef0b964029a2edb9eaac85f04a9104bd38
5
5
  SHA512:
6
- metadata.gz: 4c6fc9387e283a6220940ab99375965998035368ea93e3ce5e64162738a4db8c82f0a1e0210dc1d02d2bc716c2190e0c750c6845d82193da03438db95f054dde
7
- data.tar.gz: 4c7ac1845e0061e2d6e4e23c769995a426b842bf5145f3b3630e98011d3fc5707bead1de47d3d90c913fbfd80976ed291c9216b73e0f8a2a40ce783404b885f4
6
+ metadata.gz: a27371604216d0d24a5226b28e6cd2fb9b9118340326a18a519e143f730fe9c0b2ca2e8d04873172ddc46641ef9936dc100957298c6525785a4f6aea2289d6ab
7
+ data.tar.gz: 95184e8d50b46caf89e757d56433f9c5c9cabba112e45baec69aed449aeea3e0bf8bd1b466e0e281eb0b4d0df061512461e84c802bbeaf820da3b51717dae85c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.78.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240318
6
+
7
+ ### v0.77.0 (2024-03-10)
8
+
9
+ * Regenerated from discovery document revision 20240229
10
+
3
11
  ### v0.76.0 (2024-03-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20240225
@@ -2907,6 +2907,11 @@ module Google
2907
2907
  # @return [Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig]
2908
2908
  attr_accessor :google_config
2909
2909
 
2910
+ # Configuration for the LDAP Auth flow.
2911
+ # Corresponds to the JSON property `ldapConfig`
2912
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceLdapConfig]
2913
+ attr_accessor :ldap_config
2914
+
2910
2915
  # Identifier for auth config.
2911
2916
  # Corresponds to the JSON property `name`
2912
2917
  # @return [String]
@@ -2922,6 +2927,11 @@ module Google
2922
2927
  # @return [String]
2923
2928
  attr_accessor :proxy
2924
2929
 
2930
+ # Configuration for the SAML Auth flow.
2931
+ # Corresponds to the JSON property `samlConfig`
2932
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceSamlConfig]
2933
+ attr_accessor :saml_config
2934
+
2925
2935
  def initialize(**args)
2926
2936
  update!(**args)
2927
2937
  end
@@ -2930,9 +2940,11 @@ module Google
2930
2940
  def update!(**args)
2931
2941
  @azuread_config = args[:azuread_config] if args.key?(:azuread_config)
2932
2942
  @google_config = args[:google_config] if args.key?(:google_config)
2943
+ @ldap_config = args[:ldap_config] if args.key?(:ldap_config)
2933
2944
  @name = args[:name] if args.key?(:name)
2934
2945
  @oidc_config = args[:oidc_config] if args.key?(:oidc_config)
2935
2946
  @proxy = args[:proxy] if args.key?(:proxy)
2947
+ @saml_config = args[:saml_config] if args.key?(:saml_config)
2936
2948
  end
2937
2949
  end
2938
2950
 
@@ -2958,6 +2970,11 @@ module Google
2958
2970
  # @return [String]
2959
2971
  attr_accessor :encrypted_client_secret
2960
2972
 
2973
+ # Optional. Format of the AzureAD groups that the client wants for auth.
2974
+ # Corresponds to the JSON property `groupFormat`
2975
+ # @return [String]
2976
+ attr_accessor :group_format
2977
+
2961
2978
  # The redirect URL that kubectl uses for authorization.
2962
2979
  # Corresponds to the JSON property `kubectlRedirectUri`
2963
2980
  # @return [String]
@@ -2969,6 +2986,11 @@ module Google
2969
2986
  # @return [String]
2970
2987
  attr_accessor :tenant
2971
2988
 
2989
+ # Optional. Claim in the AzureAD ID Token that holds the user details.
2990
+ # Corresponds to the JSON property `userClaim`
2991
+ # @return [String]
2992
+ attr_accessor :user_claim
2993
+
2972
2994
  def initialize(**args)
2973
2995
  update!(**args)
2974
2996
  end
@@ -2978,8 +3000,10 @@ module Google
2978
3000
  @client_id = args[:client_id] if args.key?(:client_id)
2979
3001
  @client_secret = args[:client_secret] if args.key?(:client_secret)
2980
3002
  @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
3003
+ @group_format = args[:group_format] if args.key?(:group_format)
2981
3004
  @kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
2982
3005
  @tenant = args[:tenant] if args.key?(:tenant)
3006
+ @user_claim = args[:user_claim] if args.key?(:user_claim)
2983
3007
  end
2984
3008
  end
2985
3009
 
@@ -3003,6 +3027,84 @@ module Google
3003
3027
  end
3004
3028
  end
3005
3029
 
3030
+ # Contains the properties for locating and authenticating groups in the
3031
+ # directory.
3032
+ class IdentityServiceGroupConfig
3033
+ include Google::Apis::Core::Hashable
3034
+
3035
+ # Required. The location of the subtree in the LDAP directory to search for
3036
+ # group entries.
3037
+ # Corresponds to the JSON property `baseDn`
3038
+ # @return [String]
3039
+ attr_accessor :base_dn
3040
+
3041
+ # Optional. Optional filter to be used when searching for groups a user belongs
3042
+ # to. This can be used to explicitly match only certain groups in order to
3043
+ # reduce the amount of groups returned for each user. This defaults to "(
3044
+ # objectClass=Group)".
3045
+ # Corresponds to the JSON property `filter`
3046
+ # @return [String]
3047
+ attr_accessor :filter
3048
+
3049
+ # Optional. The identifying name of each group a user belongs to. For example,
3050
+ # if this is set to "distinguishedName" then RBACs and other group expectations
3051
+ # should be written as full DNs. This defaults to "distinguishedName".
3052
+ # Corresponds to the JSON property `idAttribute`
3053
+ # @return [String]
3054
+ attr_accessor :id_attribute
3055
+
3056
+ def initialize(**args)
3057
+ update!(**args)
3058
+ end
3059
+
3060
+ # Update properties of this object
3061
+ def update!(**args)
3062
+ @base_dn = args[:base_dn] if args.key?(:base_dn)
3063
+ @filter = args[:filter] if args.key?(:filter)
3064
+ @id_attribute = args[:id_attribute] if args.key?(:id_attribute)
3065
+ end
3066
+ end
3067
+
3068
+ # Configuration for the LDAP Auth flow.
3069
+ class IdentityServiceLdapConfig
3070
+ include Google::Apis::Core::Hashable
3071
+
3072
+ # Contains the properties for locating and authenticating groups in the
3073
+ # directory.
3074
+ # Corresponds to the JSON property `group`
3075
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceGroupConfig]
3076
+ attr_accessor :group
3077
+
3078
+ # Server settings for the external LDAP server.
3079
+ # Corresponds to the JSON property `server`
3080
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceServerConfig]
3081
+ attr_accessor :server
3082
+
3083
+ # Contains the credentials of the service account which is authorized to perform
3084
+ # the LDAP search in the directory. The credentials can be supplied by the
3085
+ # combination of the DN and password or the client certificate.
3086
+ # Corresponds to the JSON property `serviceAccount`
3087
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceServiceAccountConfig]
3088
+ attr_accessor :service_account
3089
+
3090
+ # Defines where users exist in the LDAP directory.
3091
+ # Corresponds to the JSON property `user`
3092
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceUserConfig]
3093
+ attr_accessor :user
3094
+
3095
+ def initialize(**args)
3096
+ update!(**args)
3097
+ end
3098
+
3099
+ # Update properties of this object
3100
+ def update!(**args)
3101
+ @group = args[:group] if args.key?(:group)
3102
+ @server = args[:server] if args.key?(:server)
3103
+ @service_account = args[:service_account] if args.key?(:service_account)
3104
+ @user = args[:user] if args.key?(:user)
3105
+ end
3106
+ end
3107
+
3006
3108
  # **Anthos Identity Service**: Configuration for a single Membership.
3007
3109
  class IdentityServiceMembershipSpec
3008
3110
  include Google::Apis::Core::Hashable
@@ -3163,6 +3265,217 @@ module Google
3163
3265
  end
3164
3266
  end
3165
3267
 
3268
+ # Configuration for the SAML Auth flow.
3269
+ class IdentityServiceSamlConfig
3270
+ include Google::Apis::Core::Hashable
3271
+
3272
+ # Optional. The mapping of additional user attributes like nickname, birthday
3273
+ # and address etc.. `key` is the name of this additional attribute. `value` is a
3274
+ # string presenting as CEL(common expression language, go/cel) used for getting
3275
+ # the value from the resources. Take nickname as an example, in this case, `key`
3276
+ # is "attribute.nickname" and `value` is "assertion.nickname".
3277
+ # Corresponds to the JSON property `attributeMapping`
3278
+ # @return [Hash<String,String>]
3279
+ attr_accessor :attribute_mapping
3280
+
3281
+ # Optional. Prefix to prepend to group name.
3282
+ # Corresponds to the JSON property `groupPrefix`
3283
+ # @return [String]
3284
+ attr_accessor :group_prefix
3285
+
3286
+ # Optional. The SAML attribute to read groups from. This value is expected to be
3287
+ # a string and will be passed along as-is (with the option of being prefixed by
3288
+ # the `group_prefix`).
3289
+ # Corresponds to the JSON property `groupsAttribute`
3290
+ # @return [String]
3291
+ attr_accessor :groups_attribute
3292
+
3293
+ # Required. The list of IdP certificates to validate the SAML response against.
3294
+ # Corresponds to the JSON property `identityProviderCertificates`
3295
+ # @return [Array<String>]
3296
+ attr_accessor :identity_provider_certificates
3297
+
3298
+ # Required. The entity ID of the SAML IdP.
3299
+ # Corresponds to the JSON property `identityProviderId`
3300
+ # @return [String]
3301
+ attr_accessor :identity_provider_id
3302
+
3303
+ # Required. The URI where the SAML IdP exposes the SSO service.
3304
+ # Corresponds to the JSON property `identityProviderSsoUri`
3305
+ # @return [String]
3306
+ attr_accessor :identity_provider_sso_uri
3307
+
3308
+ # Optional. The SAML attribute to read username from. If unspecified, the
3309
+ # username will be read from the NameID element of the assertion in SAML
3310
+ # response. This value is expected to be a string and will be passed along as-is
3311
+ # (with the option of being prefixed by the `user_prefix`).
3312
+ # Corresponds to the JSON property `userAttribute`
3313
+ # @return [String]
3314
+ attr_accessor :user_attribute
3315
+
3316
+ # Optional. Prefix to prepend to user name.
3317
+ # Corresponds to the JSON property `userPrefix`
3318
+ # @return [String]
3319
+ attr_accessor :user_prefix
3320
+
3321
+ def initialize(**args)
3322
+ update!(**args)
3323
+ end
3324
+
3325
+ # Update properties of this object
3326
+ def update!(**args)
3327
+ @attribute_mapping = args[:attribute_mapping] if args.key?(:attribute_mapping)
3328
+ @group_prefix = args[:group_prefix] if args.key?(:group_prefix)
3329
+ @groups_attribute = args[:groups_attribute] if args.key?(:groups_attribute)
3330
+ @identity_provider_certificates = args[:identity_provider_certificates] if args.key?(:identity_provider_certificates)
3331
+ @identity_provider_id = args[:identity_provider_id] if args.key?(:identity_provider_id)
3332
+ @identity_provider_sso_uri = args[:identity_provider_sso_uri] if args.key?(:identity_provider_sso_uri)
3333
+ @user_attribute = args[:user_attribute] if args.key?(:user_attribute)
3334
+ @user_prefix = args[:user_prefix] if args.key?(:user_prefix)
3335
+ end
3336
+ end
3337
+
3338
+ # Server settings for the external LDAP server.
3339
+ class IdentityServiceServerConfig
3340
+ include Google::Apis::Core::Hashable
3341
+
3342
+ # Optional. Contains a Base64 encoded, PEM formatted certificate authority
3343
+ # certificate for the LDAP server. This must be provided for the "ldaps" and "
3344
+ # startTLS" connections.
3345
+ # Corresponds to the JSON property `certificateAuthorityData`
3346
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
3347
+ # @return [String]
3348
+ attr_accessor :certificate_authority_data
3349
+
3350
+ # Optional. Defines the connection type to communicate with the LDAP server. If `
3351
+ # starttls` or `ldaps` is specified, the certificate_authority_data should not
3352
+ # be empty.
3353
+ # Corresponds to the JSON property `connectionType`
3354
+ # @return [String]
3355
+ attr_accessor :connection_type
3356
+
3357
+ # Required. Defines the hostname or IP of the LDAP server. Port is optional and
3358
+ # will default to 389, if unspecified. For example, "ldap.server.example" or "10.
3359
+ # 10.10.10:389".
3360
+ # Corresponds to the JSON property `host`
3361
+ # @return [String]
3362
+ attr_accessor :host
3363
+
3364
+ def initialize(**args)
3365
+ update!(**args)
3366
+ end
3367
+
3368
+ # Update properties of this object
3369
+ def update!(**args)
3370
+ @certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
3371
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
3372
+ @host = args[:host] if args.key?(:host)
3373
+ end
3374
+ end
3375
+
3376
+ # Contains the credentials of the service account which is authorized to perform
3377
+ # the LDAP search in the directory. The credentials can be supplied by the
3378
+ # combination of the DN and password or the client certificate.
3379
+ class IdentityServiceServiceAccountConfig
3380
+ include Google::Apis::Core::Hashable
3381
+
3382
+ # The structure holds the LDAP simple binding credential.
3383
+ # Corresponds to the JSON property `simpleBindCredentials`
3384
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceSimpleBindCredentials]
3385
+ attr_accessor :simple_bind_credentials
3386
+
3387
+ def initialize(**args)
3388
+ update!(**args)
3389
+ end
3390
+
3391
+ # Update properties of this object
3392
+ def update!(**args)
3393
+ @simple_bind_credentials = args[:simple_bind_credentials] if args.key?(:simple_bind_credentials)
3394
+ end
3395
+ end
3396
+
3397
+ # The structure holds the LDAP simple binding credential.
3398
+ class IdentityServiceSimpleBindCredentials
3399
+ include Google::Apis::Core::Hashable
3400
+
3401
+ # Required. The distinguished name(DN) of the service account object/user.
3402
+ # Corresponds to the JSON property `dn`
3403
+ # @return [String]
3404
+ attr_accessor :dn
3405
+
3406
+ # Output only. The encrypted password of the service account object/user.
3407
+ # Corresponds to the JSON property `encryptedPassword`
3408
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
3409
+ # @return [String]
3410
+ attr_accessor :encrypted_password
3411
+
3412
+ # Required. Input only. The password of the service account object/user.
3413
+ # Corresponds to the JSON property `password`
3414
+ # @return [String]
3415
+ attr_accessor :password
3416
+
3417
+ def initialize(**args)
3418
+ update!(**args)
3419
+ end
3420
+
3421
+ # Update properties of this object
3422
+ def update!(**args)
3423
+ @dn = args[:dn] if args.key?(:dn)
3424
+ @encrypted_password = args[:encrypted_password] if args.key?(:encrypted_password)
3425
+ @password = args[:password] if args.key?(:password)
3426
+ end
3427
+ end
3428
+
3429
+ # Defines where users exist in the LDAP directory.
3430
+ class IdentityServiceUserConfig
3431
+ include Google::Apis::Core::Hashable
3432
+
3433
+ # Required. The location of the subtree in the LDAP directory to search for user
3434
+ # entries.
3435
+ # Corresponds to the JSON property `baseDn`
3436
+ # @return [String]
3437
+ attr_accessor :base_dn
3438
+
3439
+ # Optional. Filter to apply when searching for the user. This can be used to
3440
+ # further restrict the user accounts which are allowed to login. This defaults
3441
+ # to "(objectClass=User)".
3442
+ # Corresponds to the JSON property `filter`
3443
+ # @return [String]
3444
+ attr_accessor :filter
3445
+
3446
+ # Optional. Determines which attribute to use as the user's identity after they
3447
+ # are authenticated. This is distinct from the loginAttribute field to allow
3448
+ # users to login with a username, but then have their actual identifier be an
3449
+ # email address or full Distinguished Name (DN). For example, setting
3450
+ # loginAttribute to "sAMAccountName" and identifierAttribute to "
3451
+ # userPrincipalName" would allow a user to login as "bsmith", but actual RBAC
3452
+ # policies for the user would be written as "bsmith@example.com". Using "
3453
+ # userPrincipalName" is recommended since this will be unique for each user.
3454
+ # This defaults to "userPrincipalName".
3455
+ # Corresponds to the JSON property `idAttribute`
3456
+ # @return [String]
3457
+ attr_accessor :id_attribute
3458
+
3459
+ # Optional. The name of the attribute which matches against the input username.
3460
+ # This is used to find the user in the LDAP database e.g. "(=)" and is combined
3461
+ # with the optional filter field. This defaults to "userPrincipalName".
3462
+ # Corresponds to the JSON property `loginAttribute`
3463
+ # @return [String]
3464
+ attr_accessor :login_attribute
3465
+
3466
+ def initialize(**args)
3467
+ update!(**args)
3468
+ end
3469
+
3470
+ # Update properties of this object
3471
+ def update!(**args)
3472
+ @base_dn = args[:base_dn] if args.key?(:base_dn)
3473
+ @filter = args[:filter] if args.key?(:filter)
3474
+ @id_attribute = args[:id_attribute] if args.key?(:id_attribute)
3475
+ @login_attribute = args[:login_attribute] if args.key?(:login_attribute)
3476
+ end
3477
+ end
3478
+
3166
3479
  # KubernetesMetadata provides informational metadata for Memberships
3167
3480
  # representing Kubernetes clusters.
3168
3481
  class KubernetesMetadata
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.76.0"
19
+ GEM_VERSION = "0.78.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240225"
25
+ REVISION = "20240318"
26
26
  end
27
27
  end
28
28
  end
@@ -544,6 +544,18 @@ module Google
544
544
  include Google::Apis::Core::JsonObjectSupport
545
545
  end
546
546
 
547
+ class IdentityServiceGroupConfig
548
+ class Representation < Google::Apis::Core::JsonRepresentation; end
549
+
550
+ include Google::Apis::Core::JsonObjectSupport
551
+ end
552
+
553
+ class IdentityServiceLdapConfig
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
547
559
  class IdentityServiceMembershipSpec
548
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
561
 
@@ -562,6 +574,36 @@ module Google
562
574
  include Google::Apis::Core::JsonObjectSupport
563
575
  end
564
576
 
577
+ class IdentityServiceSamlConfig
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
583
+ class IdentityServiceServerConfig
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
589
+ class IdentityServiceServiceAccountConfig
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
595
+ class IdentityServiceSimpleBindCredentials
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
601
+ class IdentityServiceUserConfig
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
565
607
  class KubernetesMetadata
566
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
609
 
@@ -1891,10 +1933,14 @@ module Google
1891
1933
 
1892
1934
  property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig::Representation
1893
1935
 
1936
+ property :ldap_config, as: 'ldapConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceLdapConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceLdapConfig::Representation
1937
+
1894
1938
  property :name, as: 'name'
1895
1939
  property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig::Representation
1896
1940
 
1897
1941
  property :proxy, as: 'proxy'
1942
+ property :saml_config, as: 'samlConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceSamlConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceSamlConfig::Representation
1943
+
1898
1944
  end
1899
1945
  end
1900
1946
 
@@ -1904,8 +1950,10 @@ module Google
1904
1950
  property :client_id, as: 'clientId'
1905
1951
  property :client_secret, as: 'clientSecret'
1906
1952
  property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
1953
+ property :group_format, as: 'groupFormat'
1907
1954
  property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
1908
1955
  property :tenant, as: 'tenant'
1956
+ property :user_claim, as: 'userClaim'
1909
1957
  end
1910
1958
  end
1911
1959
 
@@ -1916,6 +1964,29 @@ module Google
1916
1964
  end
1917
1965
  end
1918
1966
 
1967
+ class IdentityServiceGroupConfig
1968
+ # @private
1969
+ class Representation < Google::Apis::Core::JsonRepresentation
1970
+ property :base_dn, as: 'baseDn'
1971
+ property :filter, as: 'filter'
1972
+ property :id_attribute, as: 'idAttribute'
1973
+ end
1974
+ end
1975
+
1976
+ class IdentityServiceLdapConfig
1977
+ # @private
1978
+ class Representation < Google::Apis::Core::JsonRepresentation
1979
+ property :group, as: 'group', class: Google::Apis::GkehubV1alpha::IdentityServiceGroupConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGroupConfig::Representation
1980
+
1981
+ property :server, as: 'server', class: Google::Apis::GkehubV1alpha::IdentityServiceServerConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceServerConfig::Representation
1982
+
1983
+ property :service_account, as: 'serviceAccount', class: Google::Apis::GkehubV1alpha::IdentityServiceServiceAccountConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceServiceAccountConfig::Representation
1984
+
1985
+ property :user, as: 'user', class: Google::Apis::GkehubV1alpha::IdentityServiceUserConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceUserConfig::Representation
1986
+
1987
+ end
1988
+ end
1989
+
1919
1990
  class IdentityServiceMembershipSpec
1920
1991
  # @private
1921
1992
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1955,6 +2026,56 @@ module Google
1955
2026
  end
1956
2027
  end
1957
2028
 
2029
+ class IdentityServiceSamlConfig
2030
+ # @private
2031
+ class Representation < Google::Apis::Core::JsonRepresentation
2032
+ hash :attribute_mapping, as: 'attributeMapping'
2033
+ property :group_prefix, as: 'groupPrefix'
2034
+ property :groups_attribute, as: 'groupsAttribute'
2035
+ collection :identity_provider_certificates, as: 'identityProviderCertificates'
2036
+ property :identity_provider_id, as: 'identityProviderId'
2037
+ property :identity_provider_sso_uri, as: 'identityProviderSsoUri'
2038
+ property :user_attribute, as: 'userAttribute'
2039
+ property :user_prefix, as: 'userPrefix'
2040
+ end
2041
+ end
2042
+
2043
+ class IdentityServiceServerConfig
2044
+ # @private
2045
+ class Representation < Google::Apis::Core::JsonRepresentation
2046
+ property :certificate_authority_data, :base64 => true, as: 'certificateAuthorityData'
2047
+ property :connection_type, as: 'connectionType'
2048
+ property :host, as: 'host'
2049
+ end
2050
+ end
2051
+
2052
+ class IdentityServiceServiceAccountConfig
2053
+ # @private
2054
+ class Representation < Google::Apis::Core::JsonRepresentation
2055
+ property :simple_bind_credentials, as: 'simpleBindCredentials', class: Google::Apis::GkehubV1alpha::IdentityServiceSimpleBindCredentials, decorator: Google::Apis::GkehubV1alpha::IdentityServiceSimpleBindCredentials::Representation
2056
+
2057
+ end
2058
+ end
2059
+
2060
+ class IdentityServiceSimpleBindCredentials
2061
+ # @private
2062
+ class Representation < Google::Apis::Core::JsonRepresentation
2063
+ property :dn, as: 'dn'
2064
+ property :encrypted_password, :base64 => true, as: 'encryptedPassword'
2065
+ property :password, as: 'password'
2066
+ end
2067
+ end
2068
+
2069
+ class IdentityServiceUserConfig
2070
+ # @private
2071
+ class Representation < Google::Apis::Core::JsonRepresentation
2072
+ property :base_dn, as: 'baseDn'
2073
+ property :filter, as: 'filter'
2074
+ property :id_attribute, as: 'idAttribute'
2075
+ property :login_attribute, as: 'loginAttribute'
2076
+ end
2077
+ end
2078
+
1958
2079
  class KubernetesMetadata
1959
2080
  # @private
1960
2081
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.76.0
4
+ version: 0.78.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: 2024-03-03 00:00:00.000000000 Z
11
+ date: 2024-03-24 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.76.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.78.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []