google-apis-gkehub_v1alpha 0.77.0 → 0.79.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: 65d8ec76342f9000f9fa7402d46478aefe45148f84b25c0c2649cb283e6a8e52
4
- data.tar.gz: 72430d5414b570dbc138a55760ada7c9b09f5d1b75bfaae6626b6fe5e8590319
3
+ metadata.gz: bfe06e0bea5404a40ef3259cbf230e59f79b3b8aaa73223d560f8e0e0ec4d553
4
+ data.tar.gz: 44816dd5041b14f8494653840ce77b5a16f18fed70a4564a845dc147c60841f8
5
5
  SHA512:
6
- metadata.gz: 6d53aa24ca2a671b4433e9b3c7a2956c90571bfb6b31b70468287c7788650e68fdbac26048d62871a8fd608d104d5585957ee4981fe4e97c50e9508497248d9f
7
- data.tar.gz: 34847f168339ea45b5bee001f3937231804298c07c5878094c2a7a18d62188a9987c4376b4cf1d603dbd322a61818dff5239c957711cd5a96f251d483b0d51f6
6
+ metadata.gz: d3d95f33544f5a79e531f547afee50932f69354632118883f1c41833b21eb491f224b1d2361d44591edc2a26775837818e5456cffac3cc48f0c7af1f75a23c1d
7
+ data.tar.gz: ec1d5850d2202708245aaa2257be9eca61e82967e7dd5bc8a3c8ab8a83b14115a6fed3cc78b464ece63a0ec1991ee4560fae23b629827beaab47192795f9ce7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.79.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240322
6
+
7
+ ### v0.78.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240318
10
+
3
11
  ### v0.77.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240229
@@ -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]
@@ -2935,6 +2940,7 @@ module Google
2935
2940
  def update!(**args)
2936
2941
  @azuread_config = args[:azuread_config] if args.key?(:azuread_config)
2937
2942
  @google_config = args[:google_config] if args.key?(:google_config)
2943
+ @ldap_config = args[:ldap_config] if args.key?(:ldap_config)
2938
2944
  @name = args[:name] if args.key?(:name)
2939
2945
  @oidc_config = args[:oidc_config] if args.key?(:oidc_config)
2940
2946
  @proxy = args[:proxy] if args.key?(:proxy)
@@ -3021,6 +3027,84 @@ module Google
3021
3027
  end
3022
3028
  end
3023
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
+
3024
3108
  # **Anthos Identity Service**: Configuration for a single Membership.
3025
3109
  class IdentityServiceMembershipSpec
3026
3110
  include Google::Apis::Core::Hashable
@@ -3251,6 +3335,147 @@ module Google
3251
3335
  end
3252
3336
  end
3253
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
+
3254
3479
  # KubernetesMetadata provides informational metadata for Memberships
3255
3480
  # representing Kubernetes clusters.
3256
3481
  class KubernetesMetadata
@@ -5673,6 +5898,44 @@ module Google
5673
5898
  end
5674
5899
  end
5675
5900
 
5901
+ # Condition being reported.
5902
+ class ServiceMeshCondition
5903
+ include Google::Apis::Core::Hashable
5904
+
5905
+ # Unique identifier of the condition which describes the condition recognizable
5906
+ # to the user.
5907
+ # Corresponds to the JSON property `code`
5908
+ # @return [String]
5909
+ attr_accessor :code
5910
+
5911
+ # A short summary about the issue.
5912
+ # Corresponds to the JSON property `details`
5913
+ # @return [String]
5914
+ attr_accessor :details
5915
+
5916
+ # Links contains actionable information.
5917
+ # Corresponds to the JSON property `documentationLink`
5918
+ # @return [String]
5919
+ attr_accessor :documentation_link
5920
+
5921
+ # Severity level of the condition.
5922
+ # Corresponds to the JSON property `severity`
5923
+ # @return [String]
5924
+ attr_accessor :severity
5925
+
5926
+ def initialize(**args)
5927
+ update!(**args)
5928
+ end
5929
+
5930
+ # Update properties of this object
5931
+ def update!(**args)
5932
+ @code = args[:code] if args.key?(:code)
5933
+ @details = args[:details] if args.key?(:details)
5934
+ @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
5935
+ @severity = args[:severity] if args.key?(:severity)
5936
+ end
5937
+ end
5938
+
5676
5939
  # Status of control plane management.
5677
5940
  class ServiceMeshControlPlaneManagement
5678
5941
  include Google::Apis::Core::Hashable
@@ -5682,6 +5945,11 @@ module Google
5682
5945
  # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails>]
5683
5946
  attr_accessor :details
5684
5947
 
5948
+ # Output only. Implementation of managed control plane.
5949
+ # Corresponds to the JSON property `implementation`
5950
+ # @return [String]
5951
+ attr_accessor :implementation
5952
+
5685
5953
  # LifecycleState of control plane management.
5686
5954
  # Corresponds to the JSON property `state`
5687
5955
  # @return [String]
@@ -5694,6 +5962,7 @@ module Google
5694
5962
  # Update properties of this object
5695
5963
  def update!(**args)
5696
5964
  @details = args[:details] if args.key?(:details)
5965
+ @implementation = args[:implementation] if args.key?(:implementation)
5697
5966
  @state = args[:state] if args.key?(:state)
5698
5967
  end
5699
5968
  end
@@ -5786,6 +6055,11 @@ module Google
5786
6055
  # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage>]
5787
6056
  attr_accessor :analysis_messages
5788
6057
 
6058
+ # Output only. List of condition reporting membership statues
6059
+ # Corresponds to the JSON property `conditions`
6060
+ # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshCondition>]
6061
+ attr_accessor :conditions
6062
+
5789
6063
  # The API version (i.e. Istio CRD version) for configuring service mesh in this
5790
6064
  # cluster. This version is influenced by the `default_channel` field.
5791
6065
  # Corresponds to the JSON property `configApiVersion`
@@ -5809,6 +6083,7 @@ module Google
5809
6083
  # Update properties of this object
5810
6084
  def update!(**args)
5811
6085
  @analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
6086
+ @conditions = args[:conditions] if args.key?(:conditions)
5812
6087
  @config_api_version = args[:config_api_version] if args.key?(:config_api_version)
5813
6088
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
5814
6089
  @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
@@ -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.77.0"
19
+ GEM_VERSION = "0.79.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 = "20240229"
25
+ REVISION = "20240322"
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
 
@@ -568,6 +580,30 @@ module Google
568
580
  include Google::Apis::Core::JsonObjectSupport
569
581
  end
570
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
+
571
607
  class KubernetesMetadata
572
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
609
 
@@ -958,6 +994,12 @@ module Google
958
994
  include Google::Apis::Core::JsonObjectSupport
959
995
  end
960
996
 
997
+ class ServiceMeshCondition
998
+ class Representation < Google::Apis::Core::JsonRepresentation; end
999
+
1000
+ include Google::Apis::Core::JsonObjectSupport
1001
+ end
1002
+
961
1003
  class ServiceMeshControlPlaneManagement
962
1004
  class Representation < Google::Apis::Core::JsonRepresentation; end
963
1005
 
@@ -1897,6 +1939,8 @@ module Google
1897
1939
 
1898
1940
  property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig::Representation
1899
1941
 
1942
+ property :ldap_config, as: 'ldapConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceLdapConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceLdapConfig::Representation
1943
+
1900
1944
  property :name, as: 'name'
1901
1945
  property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig::Representation
1902
1946
 
@@ -1926,6 +1970,29 @@ module Google
1926
1970
  end
1927
1971
  end
1928
1972
 
1973
+ class IdentityServiceGroupConfig
1974
+ # @private
1975
+ class Representation < Google::Apis::Core::JsonRepresentation
1976
+ property :base_dn, as: 'baseDn'
1977
+ property :filter, as: 'filter'
1978
+ property :id_attribute, as: 'idAttribute'
1979
+ end
1980
+ end
1981
+
1982
+ class IdentityServiceLdapConfig
1983
+ # @private
1984
+ class Representation < Google::Apis::Core::JsonRepresentation
1985
+ property :group, as: 'group', class: Google::Apis::GkehubV1alpha::IdentityServiceGroupConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGroupConfig::Representation
1986
+
1987
+ property :server, as: 'server', class: Google::Apis::GkehubV1alpha::IdentityServiceServerConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceServerConfig::Representation
1988
+
1989
+ property :service_account, as: 'serviceAccount', class: Google::Apis::GkehubV1alpha::IdentityServiceServiceAccountConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceServiceAccountConfig::Representation
1990
+
1991
+ property :user, as: 'user', class: Google::Apis::GkehubV1alpha::IdentityServiceUserConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceUserConfig::Representation
1992
+
1993
+ end
1994
+ end
1995
+
1929
1996
  class IdentityServiceMembershipSpec
1930
1997
  # @private
1931
1998
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1979,6 +2046,42 @@ module Google
1979
2046
  end
1980
2047
  end
1981
2048
 
2049
+ class IdentityServiceServerConfig
2050
+ # @private
2051
+ class Representation < Google::Apis::Core::JsonRepresentation
2052
+ property :certificate_authority_data, :base64 => true, as: 'certificateAuthorityData'
2053
+ property :connection_type, as: 'connectionType'
2054
+ property :host, as: 'host'
2055
+ end
2056
+ end
2057
+
2058
+ class IdentityServiceServiceAccountConfig
2059
+ # @private
2060
+ class Representation < Google::Apis::Core::JsonRepresentation
2061
+ property :simple_bind_credentials, as: 'simpleBindCredentials', class: Google::Apis::GkehubV1alpha::IdentityServiceSimpleBindCredentials, decorator: Google::Apis::GkehubV1alpha::IdentityServiceSimpleBindCredentials::Representation
2062
+
2063
+ end
2064
+ end
2065
+
2066
+ class IdentityServiceSimpleBindCredentials
2067
+ # @private
2068
+ class Representation < Google::Apis::Core::JsonRepresentation
2069
+ property :dn, as: 'dn'
2070
+ property :encrypted_password, :base64 => true, as: 'encryptedPassword'
2071
+ property :password, as: 'password'
2072
+ end
2073
+ end
2074
+
2075
+ class IdentityServiceUserConfig
2076
+ # @private
2077
+ class Representation < Google::Apis::Core::JsonRepresentation
2078
+ property :base_dn, as: 'baseDn'
2079
+ property :filter, as: 'filter'
2080
+ property :id_attribute, as: 'idAttribute'
2081
+ property :login_attribute, as: 'loginAttribute'
2082
+ end
2083
+ end
2084
+
1982
2085
  class KubernetesMetadata
1983
2086
  # @private
1984
2087
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2660,11 +2763,22 @@ module Google
2660
2763
  end
2661
2764
  end
2662
2765
 
2766
+ class ServiceMeshCondition
2767
+ # @private
2768
+ class Representation < Google::Apis::Core::JsonRepresentation
2769
+ property :code, as: 'code'
2770
+ property :details, as: 'details'
2771
+ property :documentation_link, as: 'documentationLink'
2772
+ property :severity, as: 'severity'
2773
+ end
2774
+ end
2775
+
2663
2776
  class ServiceMeshControlPlaneManagement
2664
2777
  # @private
2665
2778
  class Representation < Google::Apis::Core::JsonRepresentation
2666
2779
  collection :details, as: 'details', class: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails::Representation
2667
2780
 
2781
+ property :implementation, as: 'implementation'
2668
2782
  property :state, as: 'state'
2669
2783
  end
2670
2784
  end
@@ -2700,6 +2814,8 @@ module Google
2700
2814
  class Representation < Google::Apis::Core::JsonRepresentation
2701
2815
  collection :analysis_messages, as: 'analysisMessages', class: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage, decorator: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage::Representation
2702
2816
 
2817
+ collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1alpha::ServiceMeshCondition, decorator: Google::Apis::GkehubV1alpha::ServiceMeshCondition::Representation
2818
+
2703
2819
  property :config_api_version, as: 'configApiVersion'
2704
2820
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement::Representation
2705
2821
 
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.77.0
4
+ version: 0.79.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-10 00:00:00.000000000 Z
11
+ date: 2024-03-31 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.77.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.79.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: []