google-apis-gkehub_v1 0.78.0 → 0.79.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: d237acd1db8290f5b4ccd1d2c05237086c0100c2b47dfed08c61ba7419a4e59e
4
- data.tar.gz: 5098782ad6e4b181ae4f0decf5af34b789b1b7091c9836da922ea747f864a394
3
+ metadata.gz: b6fc29b869a56a94f7b6851cca5ed76f7dbdddb0c40a1255f4b2a12834853b10
4
+ data.tar.gz: 1c93c5eaa7bfc9adfead48776fd0b10c92c9a2e80ea55b08824d51e9ecdc74e2
5
5
  SHA512:
6
- metadata.gz: 5113ca81e68f1b3a1915bd2a5b6ec639373e094358f76a7b0065e82213d4d2d1a2321e71cb8ff82f0474b3236e545b436a982963e5564b0a301fcea46f5b9f07
7
- data.tar.gz: 1cec6fed445d3a8ec349be26f641d0766cb896ce2100a62a513f7935d5fc24777afebd6f3057cb6dcd3756ad368086f3647bc07f81b7e45073a25668c3fec3f0
6
+ metadata.gz: 65f16cda7a432e0a33643cba5c2122f8f21b2ddcd2c0add9267e8f87a491c980c5b9b7c0cbc22c58c6f2653a9015a9ef1fbcd142f83eb3fbf8a40f6780c2ec5d
7
+ data.tar.gz: b7e7c242dbaba4c2ff91686f3a46069fac5da4665c5c0a1e995abb8acfd7ed9c2b019c17cbfe3b634b0def74c98ca7d270553424d337b1a46d3476132b382e1d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.79.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241108
6
+
3
7
  ### v0.78.0 (2024-08-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20240727
@@ -178,6 +178,18 @@ module Google
178
178
  # @return [String]
179
179
  attr_accessor :oidc_jwks
180
180
 
181
+ # Optional. Output only. The identity provider for the scope-tenancy workload
182
+ # identity pool.
183
+ # Corresponds to the JSON property `scopeTenancyIdentityProvider`
184
+ # @return [String]
185
+ attr_accessor :scope_tenancy_identity_provider
186
+
187
+ # Optional. Output only. The name of the scope-tenancy workload identity pool.
188
+ # This pool is set in the fleet-level feature.
189
+ # Corresponds to the JSON property `scopeTenancyWorkloadIdentityPool`
190
+ # @return [String]
191
+ attr_accessor :scope_tenancy_workload_identity_pool
192
+
181
193
  # Output only. The name of the workload identity pool in which `issuer` will be
182
194
  # recognized. There is a single Workload Identity Pool per Hub that is shared
183
195
  # between all Memberships that belong to that Hub. For a Hub hosted in `
@@ -196,6 +208,8 @@ module Google
196
208
  @identity_provider = args[:identity_provider] if args.key?(:identity_provider)
197
209
  @issuer = args[:issuer] if args.key?(:issuer)
198
210
  @oidc_jwks = args[:oidc_jwks] if args.key?(:oidc_jwks)
211
+ @scope_tenancy_identity_provider = args[:scope_tenancy_identity_provider] if args.key?(:scope_tenancy_identity_provider)
212
+ @scope_tenancy_workload_identity_pool = args[:scope_tenancy_workload_identity_pool] if args.key?(:scope_tenancy_workload_identity_pool)
199
213
  @workload_identity_pool = args[:workload_identity_pool] if args.key?(:workload_identity_pool)
200
214
  end
201
215
  end
@@ -690,7 +704,7 @@ module Google
690
704
  end
691
705
  end
692
706
 
693
- # CommonFeatureSpec contains Hub-wide configuration information
707
+ # CommonFeatureSpec contains Fleet-wide configuration information
694
708
  class CommonFeatureSpec
695
709
  include Google::Apis::Core::Hashable
696
710
 
@@ -735,7 +749,7 @@ module Google
735
749
  end
736
750
  end
737
751
 
738
- # CommonFeatureState contains Hub-wide Feature status information.
752
+ # CommonFeatureState contains Fleet-wide Feature status information.
739
753
  class CommonFeatureState
740
754
  include Google::Apis::Core::Hashable
741
755
 
@@ -814,6 +828,51 @@ module Google
814
828
  end
815
829
  end
816
830
 
831
+ # CompliancePostureConfig defines the settings needed to enable/disable features
832
+ # for the Compliance Posture.
833
+ class CompliancePostureConfig
834
+ include Google::Apis::Core::Hashable
835
+
836
+ # List of enabled compliance standards.
837
+ # Corresponds to the JSON property `complianceStandards`
838
+ # @return [Array<Google::Apis::GkehubV1::ComplianceStandard>]
839
+ attr_accessor :compliance_standards
840
+
841
+ # Defines the enablement mode for Compliance Posture.
842
+ # Corresponds to the JSON property `mode`
843
+ # @return [String]
844
+ attr_accessor :mode
845
+
846
+ def initialize(**args)
847
+ update!(**args)
848
+ end
849
+
850
+ # Update properties of this object
851
+ def update!(**args)
852
+ @compliance_standards = args[:compliance_standards] if args.key?(:compliance_standards)
853
+ @mode = args[:mode] if args.key?(:mode)
854
+ end
855
+ end
856
+
857
+ #
858
+ class ComplianceStandard
859
+ include Google::Apis::Core::Hashable
860
+
861
+ # Name of the compliance standard.
862
+ # Corresponds to the JSON property `standard`
863
+ # @return [String]
864
+ attr_accessor :standard
865
+
866
+ def initialize(**args)
867
+ update!(**args)
868
+ end
869
+
870
+ # Update properties of this object
871
+ def update!(**args)
872
+ @standard = args[:standard] if args.key?(:standard)
873
+ end
874
+ end
875
+
817
876
  # Configuration for Config Sync
818
877
  class ConfigManagementConfigSync
819
878
  include Google::Apis::Core::Hashable
@@ -845,6 +904,10 @@ module Google
845
904
  # enabled. The GSA should have the Monitoring Metric Writer (roles/monitoring.
846
905
  # metricWriter) IAM role. The Kubernetes ServiceAccount `default` in the
847
906
  # namespace `config-management-monitoring` should be bound to the GSA.
907
+ # Deprecated: If Workload Identity Federation for GKE is enabled, Google Cloud
908
+ # Service Account is no longer needed for exporting Config Sync metrics: https://
909
+ # cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/monitor-
910
+ # config-sync-cloud-monitoring#custom-monitoring.
848
911
  # Corresponds to the JSON property `metricsGcpServiceAccountEmail`
849
912
  # @return [String]
850
913
  attr_accessor :metrics_gcp_service_account_email
@@ -868,6 +931,12 @@ module Google
868
931
  # @return [String]
869
932
  attr_accessor :source_format
870
933
 
934
+ # Set to true to stop syncing configs for a single cluster. Default to false.
935
+ # Corresponds to the JSON property `stopSyncing`
936
+ # @return [Boolean]
937
+ attr_accessor :stop_syncing
938
+ alias_method :stop_syncing?, :stop_syncing
939
+
871
940
  def initialize(**args)
872
941
  update!(**args)
873
942
  end
@@ -881,6 +950,7 @@ module Google
881
950
  @oci = args[:oci] if args.key?(:oci)
882
951
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
883
952
  @source_format = args[:source_format] if args.key?(:source_format)
953
+ @stop_syncing = args[:stop_syncing] if args.key?(:stop_syncing)
884
954
  end
885
955
  end
886
956
 
@@ -974,6 +1044,16 @@ module Google
974
1044
  class ConfigManagementConfigSyncState
975
1045
  include Google::Apis::Core::Hashable
976
1046
 
1047
+ # Whether syncing resources to the cluster is stopped at the cluster level.
1048
+ # Corresponds to the JSON property `clusterLevelStopSyncingState`
1049
+ # @return [String]
1050
+ attr_accessor :cluster_level_stop_syncing_state
1051
+
1052
+ # Output only. The number of RootSync and RepoSync CRs in the cluster.
1053
+ # Corresponds to the JSON property `crCount`
1054
+ # @return [Fixnum]
1055
+ attr_accessor :cr_count
1056
+
977
1057
  # The state of ConfigSync's deployment on a cluster
978
1058
  # Corresponds to the JSON property `deploymentState`
979
1059
  # @return [Google::Apis::GkehubV1::ConfigManagementConfigSyncDeploymentState]
@@ -1015,6 +1095,8 @@ module Google
1015
1095
 
1016
1096
  # Update properties of this object
1017
1097
  def update!(**args)
1098
+ @cluster_level_stop_syncing_state = args[:cluster_level_stop_syncing_state] if args.key?(:cluster_level_stop_syncing_state)
1099
+ @cr_count = args[:cr_count] if args.key?(:cr_count)
1018
1100
  @deployment_state = args[:deployment_state] if args.key?(:deployment_state)
1019
1101
  @errors = args[:errors] if args.key?(:errors)
1020
1102
  @reposync_crd = args[:reposync_crd] if args.key?(:reposync_crd)
@@ -1892,6 +1974,12 @@ module Google
1892
1974
  # @return [Google::Apis::GkehubV1::BinaryAuthorizationConfig]
1893
1975
  attr_accessor :binary_authorization_config
1894
1976
 
1977
+ # CompliancePostureConfig defines the settings needed to enable/disable features
1978
+ # for the Compliance Posture.
1979
+ # Corresponds to the JSON property `compliancePostureConfig`
1980
+ # @return [Google::Apis::GkehubV1::CompliancePostureConfig]
1981
+ attr_accessor :compliance_posture_config
1982
+
1895
1983
  # SecurityPostureConfig defines the flags needed to enable/disable features for
1896
1984
  # the Security Posture API.
1897
1985
  # Corresponds to the JSON property `securityPostureConfig`
@@ -1905,6 +1993,7 @@ module Google
1905
1993
  # Update properties of this object
1906
1994
  def update!(**args)
1907
1995
  @binary_authorization_config = args[:binary_authorization_config] if args.key?(:binary_authorization_config)
1996
+ @compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
1908
1997
  @security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
1909
1998
  end
1910
1999
  end
@@ -2000,7 +2089,7 @@ module Google
2000
2089
  end
2001
2090
  end
2002
2091
 
2003
- # Feature represents the settings and status of any Hub Feature.
2092
+ # Feature represents the settings and status of any Fleet Feature.
2004
2093
  class Feature
2005
2094
  include Google::Apis::Core::Hashable
2006
2095
 
@@ -2057,8 +2146,8 @@ module Google
2057
2146
  attr_accessor :name
2058
2147
 
2059
2148
  # FeatureResourceState describes the state of a Feature *resource* in the GkeHub
2060
- # API. See `FeatureState` for the "running state" of the Feature in the Hub and
2061
- # across Memberships.
2149
+ # API. See `FeatureState` for the "running state" of the Feature in the Fleet
2150
+ # and across Memberships.
2062
2151
  # Corresponds to the JSON property `resourceState`
2063
2152
  # @return [Google::Apis::GkehubV1::FeatureResourceState]
2064
2153
  attr_accessor :resource_state
@@ -2086,12 +2175,12 @@ module Google
2086
2175
  # @return [Hash<String,Google::Apis::GkehubV1::ScopeFeatureState>]
2087
2176
  attr_accessor :scope_states
2088
2177
 
2089
- # CommonFeatureSpec contains Hub-wide configuration information
2178
+ # CommonFeatureSpec contains Fleet-wide configuration information
2090
2179
  # Corresponds to the JSON property `spec`
2091
2180
  # @return [Google::Apis::GkehubV1::CommonFeatureSpec]
2092
2181
  attr_accessor :spec
2093
2182
 
2094
- # CommonFeatureState contains Hub-wide Feature status information.
2183
+ # CommonFeatureState contains Fleet-wide Feature status information.
2095
2184
  # Corresponds to the JSON property `state`
2096
2185
  # @return [Google::Apis::GkehubV1::CommonFeatureState]
2097
2186
  attr_accessor :state
@@ -2131,8 +2220,8 @@ module Google
2131
2220
  end
2132
2221
 
2133
2222
  # FeatureResourceState describes the state of a Feature *resource* in the GkeHub
2134
- # API. See `FeatureState` for the "running state" of the Feature in the Hub and
2135
- # across Memberships.
2223
+ # API. See `FeatureState` for the "running state" of the Feature in the Fleet
2224
+ # and across Memberships.
2136
2225
  class FeatureResourceState
2137
2226
  include Google::Apis::Core::Hashable
2138
2227
 
@@ -2712,6 +2801,33 @@ module Google
2712
2801
  end
2713
2802
  end
2714
2803
 
2804
+ # Configuration options for the AIS diagnostic interface.
2805
+ class IdentityServiceDiagnosticInterface
2806
+ include Google::Apis::Core::Hashable
2807
+
2808
+ # Determines whether to enable the diagnostic interface.
2809
+ # Corresponds to the JSON property `enabled`
2810
+ # @return [Boolean]
2811
+ attr_accessor :enabled
2812
+ alias_method :enabled?, :enabled
2813
+
2814
+ # Determines the expiration time of the diagnostic interface enablement. When
2815
+ # reached, requests to the interface would be automatically rejected.
2816
+ # Corresponds to the JSON property `expirationTime`
2817
+ # @return [String]
2818
+ attr_accessor :expiration_time
2819
+
2820
+ def initialize(**args)
2821
+ update!(**args)
2822
+ end
2823
+
2824
+ # Update properties of this object
2825
+ def update!(**args)
2826
+ @enabled = args[:enabled] if args.key?(:enabled)
2827
+ @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
2828
+ end
2829
+ end
2830
+
2715
2831
  # Configuration for the Google Plugin Auth flow.
2716
2832
  class IdentityServiceGoogleConfig
2717
2833
  include Google::Apis::Core::Hashable
@@ -2774,8 +2890,12 @@ module Google
2774
2890
  class IdentityServiceIdentityServiceOptions
2775
2891
  include Google::Apis::Core::Hashable
2776
2892
 
2777
- # Optional. Determines the lifespan of STS tokens issued by Anthos Identity
2778
- # Service.
2893
+ # Configuration options for the AIS diagnostic interface.
2894
+ # Corresponds to the JSON property `diagnosticInterface`
2895
+ # @return [Google::Apis::GkehubV1::IdentityServiceDiagnosticInterface]
2896
+ attr_accessor :diagnostic_interface
2897
+
2898
+ # Determines the lifespan of STS tokens issued by Anthos Identity Service.
2779
2899
  # Corresponds to the JSON property `sessionDuration`
2780
2900
  # @return [String]
2781
2901
  attr_accessor :session_duration
@@ -2786,6 +2906,7 @@ module Google
2786
2906
 
2787
2907
  # Update properties of this object
2788
2908
  def update!(**args)
2909
+ @diagnostic_interface = args[:diagnostic_interface] if args.key?(:diagnostic_interface)
2789
2910
  @session_duration = args[:session_duration] if args.key?(:session_duration)
2790
2911
  end
2791
2912
  end
@@ -3717,6 +3838,11 @@ module Google
3717
3838
  # @return [Google::Apis::GkehubV1::Authority]
3718
3839
  attr_accessor :authority
3719
3840
 
3841
+ # Output only. The tier of the cluster.
3842
+ # Corresponds to the JSON property `clusterTier`
3843
+ # @return [String]
3844
+ attr_accessor :cluster_tier
3845
+
3720
3846
  # Output only. When the Membership was created.
3721
3847
  # Corresponds to the JSON property `createTime`
3722
3848
  # @return [String]
@@ -3803,6 +3929,7 @@ module Google
3803
3929
  # Update properties of this object
3804
3930
  def update!(**args)
3805
3931
  @authority = args[:authority] if args.key?(:authority)
3932
+ @cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
3806
3933
  @create_time = args[:create_time] if args.key?(:create_time)
3807
3934
  @delete_time = args[:delete_time] if args.key?(:delete_time)
3808
3935
  @description = args[:description] if args.key?(:description)
@@ -3970,7 +4097,7 @@ module Google
3970
4097
  end
3971
4098
 
3972
4099
  # MembershipFeatureSpec contains configuration information for a single
3973
- # Membership. NOTE: Please use snake case in your feature name.
4100
+ # Membership.
3974
4101
  class MembershipFeatureSpec
3975
4102
  include Google::Apis::Core::Hashable
3976
4103
 
@@ -5131,15 +5258,15 @@ module Google
5131
5258
  class ResourceManifest
5132
5259
  include Google::Apis::Core::Hashable
5133
5260
 
5134
- # Whether the resource provided in the manifest is `cluster_scoped`. If unset,
5135
- # the manifest is assumed to be namespace scoped. This field is used for REST
5136
- # mapping when applying the resource in a cluster.
5261
+ # Output only. Whether the resource provided in the manifest is `cluster_scoped`.
5262
+ # If unset, the manifest is assumed to be namespace scoped. This field is used
5263
+ # for REST mapping when applying the resource in a cluster.
5137
5264
  # Corresponds to the JSON property `clusterScoped`
5138
5265
  # @return [Boolean]
5139
5266
  attr_accessor :cluster_scoped
5140
5267
  alias_method :cluster_scoped?, :cluster_scoped
5141
5268
 
5142
- # YAML manifest of the resource.
5269
+ # Output only. YAML manifest of the resource.
5143
5270
  # Corresponds to the JSON property `manifest`
5144
5271
  # @return [String]
5145
5272
  attr_accessor :manifest
@@ -5457,6 +5584,12 @@ module Google
5457
5584
  class ServiceMeshMembershipSpec
5458
5585
  include Google::Apis::Core::Hashable
5459
5586
 
5587
+ # Optional. Specifies the API that will be used for configuring the mesh
5588
+ # workloads.
5589
+ # Corresponds to the JSON property `configApi`
5590
+ # @return [String]
5591
+ attr_accessor :config_api
5592
+
5460
5593
  # Deprecated: use `management` instead Enables automatic control plane
5461
5594
  # management.
5462
5595
  # Corresponds to the JSON property `controlPlane`
@@ -5474,6 +5607,7 @@ module Google
5474
5607
 
5475
5608
  # Update properties of this object
5476
5609
  def update!(**args)
5610
+ @config_api = args[:config_api] if args.key?(:config_api)
5477
5611
  @control_plane = args[:control_plane] if args.key?(:control_plane)
5478
5612
  @management = args[:management] if args.key?(:management)
5479
5613
  end
@@ -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.78.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.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240727"
25
+ REVISION = "20241108"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,18 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class CompliancePostureConfig
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class ComplianceStandard
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class ConfigManagementConfigSync
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -478,6 +490,12 @@ module Google
478
490
  include Google::Apis::Core::JsonObjectSupport
479
491
  end
480
492
 
493
+ class IdentityServiceDiagnosticInterface
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
481
499
  class IdentityServiceGoogleConfig
482
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
501
 
@@ -996,6 +1014,8 @@ module Google
996
1014
  property :identity_provider, as: 'identityProvider'
997
1015
  property :issuer, as: 'issuer'
998
1016
  property :oidc_jwks, :base64 => true, as: 'oidcJwks'
1017
+ property :scope_tenancy_identity_provider, as: 'scopeTenancyIdentityProvider'
1018
+ property :scope_tenancy_workload_identity_pool, as: 'scopeTenancyWorkloadIdentityPool'
999
1019
  property :workload_identity_pool, as: 'workloadIdentityPool'
1000
1020
  end
1001
1021
  end
@@ -1184,6 +1204,22 @@ module Google
1184
1204
  end
1185
1205
  end
1186
1206
 
1207
+ class CompliancePostureConfig
1208
+ # @private
1209
+ class Representation < Google::Apis::Core::JsonRepresentation
1210
+ collection :compliance_standards, as: 'complianceStandards', class: Google::Apis::GkehubV1::ComplianceStandard, decorator: Google::Apis::GkehubV1::ComplianceStandard::Representation
1211
+
1212
+ property :mode, as: 'mode'
1213
+ end
1214
+ end
1215
+
1216
+ class ComplianceStandard
1217
+ # @private
1218
+ class Representation < Google::Apis::Core::JsonRepresentation
1219
+ property :standard, as: 'standard'
1220
+ end
1221
+ end
1222
+
1187
1223
  class ConfigManagementConfigSync
1188
1224
  # @private
1189
1225
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1196,6 +1232,7 @@ module Google
1196
1232
 
1197
1233
  property :prevent_drift, as: 'preventDrift'
1198
1234
  property :source_format, as: 'sourceFormat'
1235
+ property :stop_syncing, as: 'stopSyncing'
1199
1236
  end
1200
1237
  end
1201
1238
 
@@ -1224,6 +1261,8 @@ module Google
1224
1261
  class ConfigManagementConfigSyncState
1225
1262
  # @private
1226
1263
  class Representation < Google::Apis::Core::JsonRepresentation
1264
+ property :cluster_level_stop_syncing_state, as: 'clusterLevelStopSyncingState'
1265
+ property :cr_count, as: 'crCount'
1227
1266
  property :deployment_state, as: 'deploymentState', class: Google::Apis::GkehubV1::ConfigManagementConfigSyncDeploymentState, decorator: Google::Apis::GkehubV1::ConfigManagementConfigSyncDeploymentState::Representation
1228
1267
 
1229
1268
  collection :errors, as: 'errors', class: Google::Apis::GkehubV1::ConfigManagementConfigSyncError, decorator: Google::Apis::GkehubV1::ConfigManagementConfigSyncError::Representation
@@ -1486,6 +1525,8 @@ module Google
1486
1525
  class Representation < Google::Apis::Core::JsonRepresentation
1487
1526
  property :binary_authorization_config, as: 'binaryAuthorizationConfig', class: Google::Apis::GkehubV1::BinaryAuthorizationConfig, decorator: Google::Apis::GkehubV1::BinaryAuthorizationConfig::Representation
1488
1527
 
1528
+ property :compliance_posture_config, as: 'compliancePostureConfig', class: Google::Apis::GkehubV1::CompliancePostureConfig, decorator: Google::Apis::GkehubV1::CompliancePostureConfig::Representation
1529
+
1489
1530
  property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1::SecurityPostureConfig, decorator: Google::Apis::GkehubV1::SecurityPostureConfig::Representation
1490
1531
 
1491
1532
  end
@@ -1727,6 +1768,14 @@ module Google
1727
1768
  end
1728
1769
  end
1729
1770
 
1771
+ class IdentityServiceDiagnosticInterface
1772
+ # @private
1773
+ class Representation < Google::Apis::Core::JsonRepresentation
1774
+ property :enabled, as: 'enabled'
1775
+ property :expiration_time, as: 'expirationTime'
1776
+ end
1777
+ end
1778
+
1730
1779
  class IdentityServiceGoogleConfig
1731
1780
  # @private
1732
1781
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1746,6 +1795,8 @@ module Google
1746
1795
  class IdentityServiceIdentityServiceOptions
1747
1796
  # @private
1748
1797
  class Representation < Google::Apis::Core::JsonRepresentation
1798
+ property :diagnostic_interface, as: 'diagnosticInterface', class: Google::Apis::GkehubV1::IdentityServiceDiagnosticInterface, decorator: Google::Apis::GkehubV1::IdentityServiceDiagnosticInterface::Representation
1799
+
1749
1800
  property :session_duration, as: 'sessionDuration'
1750
1801
  end
1751
1802
  end
@@ -2008,6 +2059,7 @@ module Google
2008
2059
  class Representation < Google::Apis::Core::JsonRepresentation
2009
2060
  property :authority, as: 'authority', class: Google::Apis::GkehubV1::Authority, decorator: Google::Apis::GkehubV1::Authority::Representation
2010
2061
 
2062
+ property :cluster_tier, as: 'clusterTier'
2011
2063
  property :create_time, as: 'createTime'
2012
2064
  property :delete_time, as: 'deleteTime'
2013
2065
  property :description, as: 'description'
@@ -2482,6 +2534,7 @@ module Google
2482
2534
  class ServiceMeshMembershipSpec
2483
2535
  # @private
2484
2536
  class Representation < Google::Apis::Core::JsonRepresentation
2537
+ property :config_api, as: 'configApi'
2485
2538
  property :control_plane, as: 'controlPlane'
2486
2539
  property :management, as: 'management'
2487
2540
  end
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.78.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-08-11 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.79.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1