google-apis-gkehub_v1alpha 0.46.0 → 0.48.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: 9a46f1fa11c561d4eeb050f95198212d2feed3d704ebb36e5adcf5074bd63172
4
- data.tar.gz: cf26d2ee29d0f3e961e0a8c8c51e24f07b8fa30da38739e133d0fcd00a3b2d16
3
+ metadata.gz: ecb572e2f38a3307526a21cf0725a47654ee15e3c76035b37978b94dcde1812a
4
+ data.tar.gz: c66e9c6af95348eb11dd5bbb65396c3bc392630fa1cd99cba151eb68601a2042
5
5
  SHA512:
6
- metadata.gz: fe6f9a68e3cbdb79ffecd657c5dbd347eac06f357333ae23932fc4655865a64c373bc1b3669220b5b17651342f77274178faa91b456fa2b655626d10a629d730
7
- data.tar.gz: 37e8341b80cdcb633b8ab46fe1cccc7046a0773881d3d19c5728a5f2987ef06d18bd07042f00ba4a48c71579985a977f6a223dc291f853aecdb2b0c64a285954
6
+ metadata.gz: 440444e6fce7fe9a26a8fbad9b0190ee4ff4319e50534f33aa25840138410cbb61f6df70b174885a65ee2a9db8bc3aedef9f5c1b5ed7a1544dcfe9a902d2caba
7
+ data.tar.gz: 3deef3acfda603715a93497cb0d4e7cf5ddd2431e2b3796b1841e465bf31b87efc4cb38ef045a7d1a1ac8af6bc982858bee4394bce7533cf2e30532b01cc5a6d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.48.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230224
6
+
7
+ ### v0.47.0 (2023-02-26)
8
+
9
+ * Regenerated from discovery document revision 20230219
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.46.0 (2023-02-12)
4
13
 
5
14
  * Regenerated from discovery document revision 20230206
@@ -2535,6 +2535,33 @@ module Google
2535
2535
  end
2536
2536
  end
2537
2537
 
2538
+ # List of MembershipBindings.
2539
+ class ListMembershipBindingsResponse
2540
+ include Google::Apis::Core::Hashable
2541
+
2542
+ # The list of membership_bindings
2543
+ # Corresponds to the JSON property `membershipBindings`
2544
+ # @return [Array<Google::Apis::GkehubV1alpha::MembershipBinding>]
2545
+ attr_accessor :membership_bindings
2546
+
2547
+ # A token to request the next page of resources from the `ListMembershipBindings`
2548
+ # method. The value of an empty string means that there are no more resources
2549
+ # to return.
2550
+ # Corresponds to the JSON property `nextPageToken`
2551
+ # @return [String]
2552
+ attr_accessor :next_page_token
2553
+
2554
+ def initialize(**args)
2555
+ update!(**args)
2556
+ end
2557
+
2558
+ # Update properties of this object
2559
+ def update!(**args)
2560
+ @membership_bindings = args[:membership_bindings] if args.key?(:membership_bindings)
2561
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2562
+ end
2563
+ end
2564
+
2538
2565
  # Response message for the `GkeHub.ListMemberships` method.
2539
2566
  class ListMembershipsResponse
2540
2567
  include Google::Apis::Core::Hashable
@@ -2568,6 +2595,32 @@ module Google
2568
2595
  end
2569
2596
  end
2570
2597
 
2598
+ # List of fleet namespaces.
2599
+ class ListNamespacesResponse
2600
+ include Google::Apis::Core::Hashable
2601
+
2602
+ # The list of fleet namespaces
2603
+ # Corresponds to the JSON property `namespaces`
2604
+ # @return [Array<Google::Apis::GkehubV1alpha::Namespace>]
2605
+ attr_accessor :namespaces
2606
+
2607
+ # A token to request the next page of resources from the `ListNamespaces` method.
2608
+ # The value of an empty string means that there are no more resources to return.
2609
+ # Corresponds to the JSON property `nextPageToken`
2610
+ # @return [String]
2611
+ attr_accessor :next_page_token
2612
+
2613
+ def initialize(**args)
2614
+ update!(**args)
2615
+ end
2616
+
2617
+ # Update properties of this object
2618
+ def update!(**args)
2619
+ @namespaces = args[:namespaces] if args.key?(:namespaces)
2620
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2621
+ end
2622
+ end
2623
+
2571
2624
  # The response message for Operations.ListOperations.
2572
2625
  class ListOperationsResponse
2573
2626
  include Google::Apis::Core::Hashable
@@ -2593,6 +2646,59 @@ module Google
2593
2646
  end
2594
2647
  end
2595
2648
 
2649
+ # List of RBACRoleBindings.
2650
+ class ListRbacRoleBindingsResponse
2651
+ include Google::Apis::Core::Hashable
2652
+
2653
+ # A token to request the next page of resources from the `ListRBACRoleBindings`
2654
+ # method. The value of an empty string means that there are no more resources to
2655
+ # return.
2656
+ # Corresponds to the JSON property `nextPageToken`
2657
+ # @return [String]
2658
+ attr_accessor :next_page_token
2659
+
2660
+ # The list of RBACRoleBindings
2661
+ # Corresponds to the JSON property `rbacrolebindings`
2662
+ # @return [Array<Google::Apis::GkehubV1alpha::RbacRoleBinding>]
2663
+ attr_accessor :rbacrolebindings
2664
+
2665
+ def initialize(**args)
2666
+ update!(**args)
2667
+ end
2668
+
2669
+ # Update properties of this object
2670
+ def update!(**args)
2671
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2672
+ @rbacrolebindings = args[:rbacrolebindings] if args.key?(:rbacrolebindings)
2673
+ end
2674
+ end
2675
+
2676
+ # List of Scopes.
2677
+ class ListScopesResponse
2678
+ include Google::Apis::Core::Hashable
2679
+
2680
+ # A token to request the next page of resources from the `ListScopes` method.
2681
+ # The value of an empty string means that there are no more resources to return.
2682
+ # Corresponds to the JSON property `nextPageToken`
2683
+ # @return [String]
2684
+ attr_accessor :next_page_token
2685
+
2686
+ # The list of Scopes
2687
+ # Corresponds to the JSON property `scopes`
2688
+ # @return [Array<Google::Apis::GkehubV1alpha::Scope>]
2689
+ attr_accessor :scopes
2690
+
2691
+ def initialize(**args)
2692
+ update!(**args)
2693
+ end
2694
+
2695
+ # Update properties of this object
2696
+ def update!(**args)
2697
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2698
+ @scopes = args[:scopes] if args.key?(:scopes)
2699
+ end
2700
+ end
2701
+
2596
2702
  # A resource that represents Google Cloud Platform location.
2597
2703
  class Location
2598
2704
  include Google::Apis::Core::Hashable
@@ -2743,6 +2849,92 @@ module Google
2743
2849
  end
2744
2850
  end
2745
2851
 
2852
+ # MembershipBinding is a subresource of a Membership, representing what Fleet
2853
+ # Scopes (or other, future Fleet resources) a Membership is bound to.
2854
+ class MembershipBinding
2855
+ include Google::Apis::Core::Hashable
2856
+
2857
+ # Output only. When the membership binding was created.
2858
+ # Corresponds to the JSON property `createTime`
2859
+ # @return [String]
2860
+ attr_accessor :create_time
2861
+
2862
+ # Output only. When the membership binding was deleted.
2863
+ # Corresponds to the JSON property `deleteTime`
2864
+ # @return [String]
2865
+ attr_accessor :delete_time
2866
+
2867
+ # Whether the membershipbinding is Fleet-wide; true means that this Membership
2868
+ # should be bound to all Namespaces in this entire Fleet.
2869
+ # Corresponds to the JSON property `fleet`
2870
+ # @return [Boolean]
2871
+ attr_accessor :fleet
2872
+ alias_method :fleet?, :fleet
2873
+
2874
+ # The resource name for the membershipbinding itself `projects/`project`/
2875
+ # locations/`location`/memberships/`membership`/bindings/`membershipbinding``
2876
+ # Corresponds to the JSON property `name`
2877
+ # @return [String]
2878
+ attr_accessor :name
2879
+
2880
+ # A Workspace resource name in the format `projects/*/locations/*/scopes/*`.
2881
+ # Corresponds to the JSON property `scope`
2882
+ # @return [String]
2883
+ attr_accessor :scope
2884
+
2885
+ # MembershipBindingLifecycleState describes the state of a Binding resource.
2886
+ # Corresponds to the JSON property `state`
2887
+ # @return [Google::Apis::GkehubV1alpha::MembershipBindingLifecycleState]
2888
+ attr_accessor :state
2889
+
2890
+ # Output only. Google-generated UUID for this resource. This is unique across
2891
+ # all membershipbinding resources. If a membershipbinding resource is deleted
2892
+ # and another resource with the same name is created, it gets a different uid.
2893
+ # Corresponds to the JSON property `uid`
2894
+ # @return [String]
2895
+ attr_accessor :uid
2896
+
2897
+ # Output only. When the membership binding was last updated.
2898
+ # Corresponds to the JSON property `updateTime`
2899
+ # @return [String]
2900
+ attr_accessor :update_time
2901
+
2902
+ def initialize(**args)
2903
+ update!(**args)
2904
+ end
2905
+
2906
+ # Update properties of this object
2907
+ def update!(**args)
2908
+ @create_time = args[:create_time] if args.key?(:create_time)
2909
+ @delete_time = args[:delete_time] if args.key?(:delete_time)
2910
+ @fleet = args[:fleet] if args.key?(:fleet)
2911
+ @name = args[:name] if args.key?(:name)
2912
+ @scope = args[:scope] if args.key?(:scope)
2913
+ @state = args[:state] if args.key?(:state)
2914
+ @uid = args[:uid] if args.key?(:uid)
2915
+ @update_time = args[:update_time] if args.key?(:update_time)
2916
+ end
2917
+ end
2918
+
2919
+ # MembershipBindingLifecycleState describes the state of a Binding resource.
2920
+ class MembershipBindingLifecycleState
2921
+ include Google::Apis::Core::Hashable
2922
+
2923
+ # Output only. The current state of the MembershipBinding resource.
2924
+ # Corresponds to the JSON property `code`
2925
+ # @return [String]
2926
+ attr_accessor :code
2927
+
2928
+ def initialize(**args)
2929
+ update!(**args)
2930
+ end
2931
+
2932
+ # Update properties of this object
2933
+ def update!(**args)
2934
+ @code = args[:code] if args.key?(:code)
2935
+ end
2936
+ end
2937
+
2746
2938
  # MembershipEndpoint contains information needed to contact a Kubernetes API,
2747
2939
  # endpoint and any additional Kubernetes metadata.
2748
2940
  class MembershipEndpoint
@@ -3074,6 +3266,83 @@ module Google
3074
3266
  end
3075
3267
  end
3076
3268
 
3269
+ # Namespace represents a namespace across the Fleet
3270
+ class Namespace
3271
+ include Google::Apis::Core::Hashable
3272
+
3273
+ # Output only. When the namespace was created.
3274
+ # Corresponds to the JSON property `createTime`
3275
+ # @return [String]
3276
+ attr_accessor :create_time
3277
+
3278
+ # Output only. When the namespace was deleted.
3279
+ # Corresponds to the JSON property `deleteTime`
3280
+ # @return [String]
3281
+ attr_accessor :delete_time
3282
+
3283
+ # The resource name for the namespace `projects/`project`/locations/`location`/
3284
+ # namespaces/`namespace``
3285
+ # Corresponds to the JSON property `name`
3286
+ # @return [String]
3287
+ attr_accessor :name
3288
+
3289
+ # Required. Scope associated with the namespace
3290
+ # Corresponds to the JSON property `scope`
3291
+ # @return [String]
3292
+ attr_accessor :scope
3293
+
3294
+ # NamespaceLifecycleState describes the state of a Namespace resource.
3295
+ # Corresponds to the JSON property `state`
3296
+ # @return [Google::Apis::GkehubV1alpha::NamespaceLifecycleState]
3297
+ attr_accessor :state
3298
+
3299
+ # Output only. Google-generated UUID for this resource. This is unique across
3300
+ # all namespace resources. If a namespace resource is deleted and another
3301
+ # resource with the same name is created, it gets a different uid.
3302
+ # Corresponds to the JSON property `uid`
3303
+ # @return [String]
3304
+ attr_accessor :uid
3305
+
3306
+ # Output only. When the namespace was last updated.
3307
+ # Corresponds to the JSON property `updateTime`
3308
+ # @return [String]
3309
+ attr_accessor :update_time
3310
+
3311
+ def initialize(**args)
3312
+ update!(**args)
3313
+ end
3314
+
3315
+ # Update properties of this object
3316
+ def update!(**args)
3317
+ @create_time = args[:create_time] if args.key?(:create_time)
3318
+ @delete_time = args[:delete_time] if args.key?(:delete_time)
3319
+ @name = args[:name] if args.key?(:name)
3320
+ @scope = args[:scope] if args.key?(:scope)
3321
+ @state = args[:state] if args.key?(:state)
3322
+ @uid = args[:uid] if args.key?(:uid)
3323
+ @update_time = args[:update_time] if args.key?(:update_time)
3324
+ end
3325
+ end
3326
+
3327
+ # NamespaceLifecycleState describes the state of a Namespace resource.
3328
+ class NamespaceLifecycleState
3329
+ include Google::Apis::Core::Hashable
3330
+
3331
+ # Output only. The current state of the Namespace resource.
3332
+ # Corresponds to the JSON property `code`
3333
+ # @return [String]
3334
+ attr_accessor :code
3335
+
3336
+ def initialize(**args)
3337
+ update!(**args)
3338
+ end
3339
+
3340
+ # Update properties of this object
3341
+ def update!(**args)
3342
+ @code = args[:code] if args.key?(:code)
3343
+ end
3344
+ end
3345
+
3077
3346
  # OnPremCluster contains information specific to GKE On-Prem clusters.
3078
3347
  class OnPremCluster
3079
3348
  include Google::Apis::Core::Hashable
@@ -3595,6 +3864,11 @@ module Google
3595
3864
  attr_accessor :pod_anti_affinity
3596
3865
  alias_method :pod_anti_affinity?, :pod_anti_affinity
3597
3866
 
3867
+ # Pod tolerations of node taints.
3868
+ # Corresponds to the JSON property `podTolerations`
3869
+ # @return [Array<Google::Apis::GkehubV1alpha::PolicyControllerToleration>]
3870
+ attr_accessor :pod_tolerations
3871
+
3598
3872
  # Pod replica count.
3599
3873
  # Corresponds to the JSON property `replicaCount`
3600
3874
  # @return [Fixnum]
@@ -3608,6 +3882,7 @@ module Google
3608
3882
  def update!(**args)
3609
3883
  @container_resources = args[:container_resources] if args.key?(:container_resources)
3610
3884
  @pod_anti_affinity = args[:pod_anti_affinity] if args.key?(:pod_anti_affinity)
3885
+ @pod_tolerations = args[:pod_tolerations] if args.key?(:pod_tolerations)
3611
3886
  @replica_count = args[:replica_count] if args.key?(:replica_count)
3612
3887
  end
3613
3888
  end
@@ -3682,6 +3957,137 @@ module Google
3682
3957
  end
3683
3958
  end
3684
3959
 
3960
+ # Toleration of a node taint.
3961
+ class PolicyControllerToleration
3962
+ include Google::Apis::Core::Hashable
3963
+
3964
+ # Matches a taint effect.
3965
+ # Corresponds to the JSON property `effect`
3966
+ # @return [String]
3967
+ attr_accessor :effect
3968
+
3969
+ # Matches a taint key (not necessarily unique).
3970
+ # Corresponds to the JSON property `key`
3971
+ # @return [String]
3972
+ attr_accessor :key
3973
+
3974
+ # Matches a taint operator.
3975
+ # Corresponds to the JSON property `operator`
3976
+ # @return [String]
3977
+ attr_accessor :operator
3978
+
3979
+ # Matches a taint value.
3980
+ # Corresponds to the JSON property `value`
3981
+ # @return [String]
3982
+ attr_accessor :value
3983
+
3984
+ def initialize(**args)
3985
+ update!(**args)
3986
+ end
3987
+
3988
+ # Update properties of this object
3989
+ def update!(**args)
3990
+ @effect = args[:effect] if args.key?(:effect)
3991
+ @key = args[:key] if args.key?(:key)
3992
+ @operator = args[:operator] if args.key?(:operator)
3993
+ @value = args[:value] if args.key?(:value)
3994
+ end
3995
+ end
3996
+
3997
+ # RBACRoleBinding represents a rbacrolebinding across the Fleet
3998
+ class RbacRoleBinding
3999
+ include Google::Apis::Core::Hashable
4000
+
4001
+ # Output only. When the rbacrolebinding was created.
4002
+ # Corresponds to the JSON property `createTime`
4003
+ # @return [String]
4004
+ attr_accessor :create_time
4005
+
4006
+ # Output only. When the rbacrolebinding was deleted.
4007
+ # Corresponds to the JSON property `deleteTime`
4008
+ # @return [String]
4009
+ attr_accessor :delete_time
4010
+
4011
+ # group is the group, as seen by the kubernetes cluster.
4012
+ # Corresponds to the JSON property `group`
4013
+ # @return [String]
4014
+ attr_accessor :group
4015
+
4016
+ # The resource name for the rbacrolebinding `projects/`project`/locations/`
4017
+ # location`/namespaces/`namespace`/rbacrolebindings/`rbacrolebinding`` or `
4018
+ # projects/`project`/locations/`location`/memberships/`membership`/
4019
+ # rbacrolebindings/`rbacrolebinding``
4020
+ # Corresponds to the JSON property `name`
4021
+ # @return [String]
4022
+ attr_accessor :name
4023
+
4024
+ # Role is the type for Kubernetes roles
4025
+ # Corresponds to the JSON property `role`
4026
+ # @return [Google::Apis::GkehubV1alpha::Role]
4027
+ attr_accessor :role
4028
+
4029
+ # RBACRoleBindingLifecycleState describes the state of a RbacRoleBinding
4030
+ # resource.
4031
+ # Corresponds to the JSON property `state`
4032
+ # @return [Google::Apis::GkehubV1alpha::RbacRoleBindingLifecycleState]
4033
+ attr_accessor :state
4034
+
4035
+ # Output only. Google-generated UUID for this resource. This is unique across
4036
+ # all rbacrolebinding resources. If a rbacrolebinding resource is deleted and
4037
+ # another resource with the same name is created, it gets a different uid.
4038
+ # Corresponds to the JSON property `uid`
4039
+ # @return [String]
4040
+ attr_accessor :uid
4041
+
4042
+ # Output only. When the rbacrolebinding was last updated.
4043
+ # Corresponds to the JSON property `updateTime`
4044
+ # @return [String]
4045
+ attr_accessor :update_time
4046
+
4047
+ # user is the name of the user as seen by the kubernetes cluster, example "alice"
4048
+ # or "alice@domain.tld"
4049
+ # Corresponds to the JSON property `user`
4050
+ # @return [String]
4051
+ attr_accessor :user
4052
+
4053
+ def initialize(**args)
4054
+ update!(**args)
4055
+ end
4056
+
4057
+ # Update properties of this object
4058
+ def update!(**args)
4059
+ @create_time = args[:create_time] if args.key?(:create_time)
4060
+ @delete_time = args[:delete_time] if args.key?(:delete_time)
4061
+ @group = args[:group] if args.key?(:group)
4062
+ @name = args[:name] if args.key?(:name)
4063
+ @role = args[:role] if args.key?(:role)
4064
+ @state = args[:state] if args.key?(:state)
4065
+ @uid = args[:uid] if args.key?(:uid)
4066
+ @update_time = args[:update_time] if args.key?(:update_time)
4067
+ @user = args[:user] if args.key?(:user)
4068
+ end
4069
+ end
4070
+
4071
+ # RBACRoleBindingLifecycleState describes the state of a RbacRoleBinding
4072
+ # resource.
4073
+ class RbacRoleBindingLifecycleState
4074
+ include Google::Apis::Core::Hashable
4075
+
4076
+ # Output only. The current state of the rbacrolebinding resource.
4077
+ # Corresponds to the JSON property `code`
4078
+ # @return [String]
4079
+ attr_accessor :code
4080
+
4081
+ def initialize(**args)
4082
+ update!(**args)
4083
+ end
4084
+
4085
+ # Update properties of this object
4086
+ def update!(**args)
4087
+ @code = args[:code] if args.key?(:code)
4088
+ end
4089
+ end
4090
+
3685
4091
  # ResourceManifest represents a single Kubernetes resource to be applied to the
3686
4092
  # cluster.
3687
4093
  class ResourceManifest
@@ -3749,6 +4155,77 @@ module Google
3749
4155
  end
3750
4156
  end
3751
4157
 
4158
+ # Role is the type for Kubernetes roles
4159
+ class Role
4160
+ include Google::Apis::Core::Hashable
4161
+
4162
+ # predefined_role is the Kubernetes default role to use
4163
+ # Corresponds to the JSON property `predefinedRole`
4164
+ # @return [String]
4165
+ attr_accessor :predefined_role
4166
+
4167
+ def initialize(**args)
4168
+ update!(**args)
4169
+ end
4170
+
4171
+ # Update properties of this object
4172
+ def update!(**args)
4173
+ @predefined_role = args[:predefined_role] if args.key?(:predefined_role)
4174
+ end
4175
+ end
4176
+
4177
+ # Scope represents a Scope in a Fleet.
4178
+ class Scope
4179
+ include Google::Apis::Core::Hashable
4180
+
4181
+ # Output only. When the scope was created.
4182
+ # Corresponds to the JSON property `createTime`
4183
+ # @return [String]
4184
+ attr_accessor :create_time
4185
+
4186
+ # Output only. When the scope was deleted.
4187
+ # Corresponds to the JSON property `deleteTime`
4188
+ # @return [String]
4189
+ attr_accessor :delete_time
4190
+
4191
+ # The resource name for the scope `projects/`project`/locations/`location`/
4192
+ # scopes/`scope``
4193
+ # Corresponds to the JSON property `name`
4194
+ # @return [String]
4195
+ attr_accessor :name
4196
+
4197
+ # ScopeLifecycleState describes the state of a Scope resource.
4198
+ # Corresponds to the JSON property `state`
4199
+ # @return [Google::Apis::GkehubV1alpha::ScopeLifecycleState]
4200
+ attr_accessor :state
4201
+
4202
+ # Output only. Google-generated UUID for this resource. This is unique across
4203
+ # all scope resources. If a scope resource is deleted and another resource with
4204
+ # the same name is created, it gets a different uid.
4205
+ # Corresponds to the JSON property `uid`
4206
+ # @return [String]
4207
+ attr_accessor :uid
4208
+
4209
+ # Output only. When the scope was last updated.
4210
+ # Corresponds to the JSON property `updateTime`
4211
+ # @return [String]
4212
+ attr_accessor :update_time
4213
+
4214
+ def initialize(**args)
4215
+ update!(**args)
4216
+ end
4217
+
4218
+ # Update properties of this object
4219
+ def update!(**args)
4220
+ @create_time = args[:create_time] if args.key?(:create_time)
4221
+ @delete_time = args[:delete_time] if args.key?(:delete_time)
4222
+ @name = args[:name] if args.key?(:name)
4223
+ @state = args[:state] if args.key?(:state)
4224
+ @uid = args[:uid] if args.key?(:uid)
4225
+ @update_time = args[:update_time] if args.key?(:update_time)
4226
+ end
4227
+ end
4228
+
3752
4229
  # ScopeFeatureSpec contains feature specs for a fleet scope.
3753
4230
  class ScopeFeatureSpec
3754
4231
  include Google::Apis::Core::Hashable
@@ -3783,6 +4260,25 @@ module Google
3783
4260
  end
3784
4261
  end
3785
4262
 
4263
+ # ScopeLifecycleState describes the state of a Scope resource.
4264
+ class ScopeLifecycleState
4265
+ include Google::Apis::Core::Hashable
4266
+
4267
+ # Output only. The current state of the scope resource.
4268
+ # Corresponds to the JSON property `code`
4269
+ # @return [String]
4270
+ attr_accessor :code
4271
+
4272
+ def initialize(**args)
4273
+ update!(**args)
4274
+ end
4275
+
4276
+ # Update properties of this object
4277
+ def update!(**args)
4278
+ @code = args[:code] if args.key?(:code)
4279
+ end
4280
+ end
4281
+
3786
4282
  # AnalysisMessage is a single message produced by an analyzer, and it used to
3787
4283
  # communicate to the end user about the state of their Service Mesh
3788
4284
  # configuration.
@@ -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.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230206"
25
+ REVISION = "20230224"
26
26
  end
27
27
  end
28
28
  end