google-apis-gkehub_v1alpha 0.11.0 → 0.15.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.
@@ -254,13 +254,16 @@ module Google
254
254
  # REQUIRED: The resource for which the policy is being requested. See the
255
255
  # operation documentation for the appropriate value for this field.
256
256
  # @param [Fixnum] options_requested_policy_version
257
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
258
- # 3. Requests specifying an invalid value will be rejected. Requests for
259
- # policies with any conditional bindings must specify version 3. Policies
260
- # without any conditional bindings may specify any valid value or leave the
261
- # field unset. To learn which resources support conditions in their IAM policies,
262
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
263
- # resource-policies).
257
+ # Optional. The maximum policy version that will be used to format the policy.
258
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
259
+ # rejected. Requests for policies with any conditional role bindings must
260
+ # specify version 3. Policies with no conditional role bindings may specify any
261
+ # valid value or leave the field unset. The policy in the response might use the
262
+ # policy version that you specified, or it might use a lower policy version. For
263
+ # example, if you specify version 3, but the policy has no conditional role
264
+ # bindings, the response uses version 1. To learn which resources support
265
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
266
+ # google.com/iam/help/conditions/resource-policies).
264
267
  # @param [String] fields
265
268
  # Selector specifying which fields to include in a partial response.
266
269
  # @param [String] quota_user
@@ -462,19 +465,216 @@ module Google
462
465
  execute_or_queue_command(command, &block)
463
466
  end
464
467
 
468
+ # Creates a new Membership. **This is currently only supported for GKE clusters
469
+ # on Google Cloud**. To register other clusters, follow the instructions at
470
+ # https://cloud.google.com/anthos/multicluster-management/connect/registering-a-
471
+ # cluster.
472
+ # @param [String] parent
473
+ # Required. The parent (project and location) where the Memberships will be
474
+ # created. Specified in the format `projects/*/locations/*`.
475
+ # @param [Google::Apis::GkehubV1alpha::Membership] membership_object
476
+ # @param [String] membership_id
477
+ # Required. Client chosen ID for the membership. `membership_id` must be a valid
478
+ # RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must
479
+ # consist of lower case alphanumeric characters or `-` 3. It must start and end
480
+ # with an alphanumeric character Which can be expressed as the regex: `[a-z0-9]([
481
+ # -a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.
482
+ # @param [String] request_id
483
+ # Optional. A request ID to identify requests. Specify a unique request ID so
484
+ # that if you must retry your request, the server will know to ignore the
485
+ # request if it has already been completed. The server will guarantee that for
486
+ # at least 60 minutes after the first request. For example, consider a situation
487
+ # where you make an initial request and the request times out. If you make the
488
+ # request again with the same request ID, the server can check if original
489
+ # operation with the same request ID was received, and if so, will ignore the
490
+ # second request. This prevents clients from accidentally creating duplicate
491
+ # commitments. The request ID must be a valid UUID with the exception that zero
492
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
493
+ # @param [String] fields
494
+ # Selector specifying which fields to include in a partial response.
495
+ # @param [String] quota_user
496
+ # Available to use for quota purposes for server-side applications. Can be any
497
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
498
+ # @param [Google::Apis::RequestOptions] options
499
+ # Request-specific options
500
+ #
501
+ # @yield [result, err] Result & error if block supplied
502
+ # @yieldparam result [Google::Apis::GkehubV1alpha::Operation] parsed result object
503
+ # @yieldparam err [StandardError] error object if request failed
504
+ #
505
+ # @return [Google::Apis::GkehubV1alpha::Operation]
506
+ #
507
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
508
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
509
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
510
+ def create_project_location_membership(parent, membership_object = nil, membership_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
511
+ command = make_simple_command(:post, 'v1alpha/{+parent}/memberships', options)
512
+ command.request_representation = Google::Apis::GkehubV1alpha::Membership::Representation
513
+ command.request_object = membership_object
514
+ command.response_representation = Google::Apis::GkehubV1alpha::Operation::Representation
515
+ command.response_class = Google::Apis::GkehubV1alpha::Operation
516
+ command.params['parent'] = parent unless parent.nil?
517
+ command.query['membershipId'] = membership_id unless membership_id.nil?
518
+ command.query['requestId'] = request_id unless request_id.nil?
519
+ command.query['fields'] = fields unless fields.nil?
520
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
521
+ execute_or_queue_command(command, &block)
522
+ end
523
+
524
+ # Removes a Membership. **This is currently only supported for GKE clusters on
525
+ # Google Cloud**. To unregister other clusters, follow the instructions at https:
526
+ # //cloud.google.com/anthos/multicluster-management/connect/unregistering-a-
527
+ # cluster.
528
+ # @param [String] name
529
+ # Required. The Membership resource name in the format `projects/*/locations/*/
530
+ # memberships/*`.
531
+ # @param [String] request_id
532
+ # Optional. A request ID to identify requests. Specify a unique request ID so
533
+ # that if you must retry your request, the server will know to ignore the
534
+ # request if it has already been completed. The server will guarantee that for
535
+ # at least 60 minutes after the first request. For example, consider a situation
536
+ # where you make an initial request and the request times out. If you make the
537
+ # request again with the same request ID, the server can check if original
538
+ # operation with the same request ID was received, and if so, will ignore the
539
+ # second request. This prevents clients from accidentally creating duplicate
540
+ # commitments. The request ID must be a valid UUID with the exception that zero
541
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
542
+ # @param [String] fields
543
+ # Selector specifying which fields to include in a partial response.
544
+ # @param [String] quota_user
545
+ # Available to use for quota purposes for server-side applications. Can be any
546
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
547
+ # @param [Google::Apis::RequestOptions] options
548
+ # Request-specific options
549
+ #
550
+ # @yield [result, err] Result & error if block supplied
551
+ # @yieldparam result [Google::Apis::GkehubV1alpha::Operation] parsed result object
552
+ # @yieldparam err [StandardError] error object if request failed
553
+ #
554
+ # @return [Google::Apis::GkehubV1alpha::Operation]
555
+ #
556
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
557
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
558
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
559
+ def delete_project_location_membership(name, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
560
+ command = make_simple_command(:delete, 'v1alpha/{+name}', options)
561
+ command.response_representation = Google::Apis::GkehubV1alpha::Operation::Representation
562
+ command.response_class = Google::Apis::GkehubV1alpha::Operation
563
+ command.params['name'] = name unless name.nil?
564
+ command.query['requestId'] = request_id unless request_id.nil?
565
+ command.query['fields'] = fields unless fields.nil?
566
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
567
+ execute_or_queue_command(command, &block)
568
+ end
569
+
570
+ # Generates the manifest for deployment of the GKE connect agent. **This method
571
+ # is used internally by Google-provided libraries.** Most clients should not
572
+ # need to call this method directly.
573
+ # @param [String] name
574
+ # Required. The Membership resource name the Agent will associate with, in the
575
+ # format `projects/*/locations/*/memberships/*`.
576
+ # @param [String] image_pull_secret_content
577
+ # Optional. The image pull secret content for the registry, if not public.
578
+ # @param [Boolean] is_upgrade
579
+ # Optional. If true, generate the resources for upgrade only. Some resources
580
+ # generated only for installation (e.g. secrets) will be excluded.
581
+ # @param [String] namespace
582
+ # Optional. Namespace for GKE Connect agent resources. Defaults to `gke-connect`.
583
+ # The Connect Agent is authorized automatically when run in the default
584
+ # namespace. Otherwise, explicit authorization must be granted with an
585
+ # additional IAM binding.
586
+ # @param [String] proxy
587
+ # Optional. URI of a proxy if connectivity from the agent to gkeconnect.
588
+ # googleapis.com requires the use of a proxy. Format must be in the form `http(s)
589
+ # ://`proxy_address``, depending on the HTTP/HTTPS protocol supported by the
590
+ # proxy. This will direct the connect agent's outbound traffic through a HTTP(S)
591
+ # proxy.
592
+ # @param [String] registry
593
+ # Optional. The registry to fetch the connect agent image from. Defaults to gcr.
594
+ # io/gkeconnect.
595
+ # @param [String] version
596
+ # Optional. The Connect agent version to use. Defaults to the most current
597
+ # version.
598
+ # @param [String] fields
599
+ # Selector specifying which fields to include in a partial response.
600
+ # @param [String] quota_user
601
+ # Available to use for quota purposes for server-side applications. Can be any
602
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
603
+ # @param [Google::Apis::RequestOptions] options
604
+ # Request-specific options
605
+ #
606
+ # @yield [result, err] Result & error if block supplied
607
+ # @yieldparam result [Google::Apis::GkehubV1alpha::GenerateConnectManifestResponse] parsed result object
608
+ # @yieldparam err [StandardError] error object if request failed
609
+ #
610
+ # @return [Google::Apis::GkehubV1alpha::GenerateConnectManifestResponse]
611
+ #
612
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
613
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
614
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
615
+ def generate_project_location_membership_connect_manifest(name, image_pull_secret_content: nil, is_upgrade: nil, namespace: nil, proxy: nil, registry: nil, version: nil, fields: nil, quota_user: nil, options: nil, &block)
616
+ command = make_simple_command(:get, 'v1alpha/{+name}:generateConnectManifest', options)
617
+ command.response_representation = Google::Apis::GkehubV1alpha::GenerateConnectManifestResponse::Representation
618
+ command.response_class = Google::Apis::GkehubV1alpha::GenerateConnectManifestResponse
619
+ command.params['name'] = name unless name.nil?
620
+ command.query['imagePullSecretContent'] = image_pull_secret_content unless image_pull_secret_content.nil?
621
+ command.query['isUpgrade'] = is_upgrade unless is_upgrade.nil?
622
+ command.query['namespace'] = namespace unless namespace.nil?
623
+ command.query['proxy'] = proxy unless proxy.nil?
624
+ command.query['registry'] = registry unless registry.nil?
625
+ command.query['version'] = version unless version.nil?
626
+ command.query['fields'] = fields unless fields.nil?
627
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
628
+ execute_or_queue_command(command, &block)
629
+ end
630
+
631
+ # Gets the details of a Membership.
632
+ # @param [String] name
633
+ # Required. The Membership resource name in the format `projects/*/locations/*/
634
+ # memberships/*`.
635
+ # @param [String] fields
636
+ # Selector specifying which fields to include in a partial response.
637
+ # @param [String] quota_user
638
+ # Available to use for quota purposes for server-side applications. Can be any
639
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
640
+ # @param [Google::Apis::RequestOptions] options
641
+ # Request-specific options
642
+ #
643
+ # @yield [result, err] Result & error if block supplied
644
+ # @yieldparam result [Google::Apis::GkehubV1alpha::Membership] parsed result object
645
+ # @yieldparam err [StandardError] error object if request failed
646
+ #
647
+ # @return [Google::Apis::GkehubV1alpha::Membership]
648
+ #
649
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
650
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
651
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
652
+ def get_project_location_membership(name, fields: nil, quota_user: nil, options: nil, &block)
653
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
654
+ command.response_representation = Google::Apis::GkehubV1alpha::Membership::Representation
655
+ command.response_class = Google::Apis::GkehubV1alpha::Membership
656
+ command.params['name'] = name unless name.nil?
657
+ command.query['fields'] = fields unless fields.nil?
658
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
659
+ execute_or_queue_command(command, &block)
660
+ end
661
+
465
662
  # Gets the access control policy for a resource. Returns an empty policy if the
466
663
  # resource exists and does not have a policy set.
467
664
  # @param [String] resource
468
665
  # REQUIRED: The resource for which the policy is being requested. See the
469
666
  # operation documentation for the appropriate value for this field.
470
667
  # @param [Fixnum] options_requested_policy_version
471
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
472
- # 3. Requests specifying an invalid value will be rejected. Requests for
473
- # policies with any conditional bindings must specify version 3. Policies
474
- # without any conditional bindings may specify any valid value or leave the
475
- # field unset. To learn which resources support conditions in their IAM policies,
476
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
477
- # resource-policies).
668
+ # Optional. The maximum policy version that will be used to format the policy.
669
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
670
+ # rejected. Requests for policies with any conditional role bindings must
671
+ # specify version 3. Policies with no conditional role bindings may specify any
672
+ # valid value or leave the field unset. The policy in the response might use the
673
+ # policy version that you specified, or it might use a lower policy version. For
674
+ # example, if you specify version 3, but the policy has no conditional role
675
+ # bindings, the response uses version 1. To learn which resources support
676
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
677
+ # google.com/iam/help/conditions/resource-policies).
478
678
  # @param [String] fields
479
679
  # Selector specifying which fields to include in a partial response.
480
680
  # @param [String] quota_user
@@ -503,6 +703,156 @@ module Google
503
703
  execute_or_queue_command(command, &block)
504
704
  end
505
705
 
706
+ # Lists Memberships in a given project and location.
707
+ # @param [String] parent
708
+ # Required. The parent (project and location) where the Memberships will be
709
+ # listed. Specified in the format `projects/*/locations/*`.
710
+ # @param [String] filter
711
+ # Optional. Lists Memberships that match the filter expression, following the
712
+ # syntax outlined in https://google.aip.dev/160. Examples: - Name is `bar` in
713
+ # project `foo-proj` and location `global`: name = "projects/foo-proj/locations/
714
+ # global/membership/bar" - Memberships that have a label called `foo`: labels.
715
+ # foo:* - Memberships that have a label called `foo` whose value is `bar`:
716
+ # labels.foo = bar - Memberships in the CREATING state: state = CREATING
717
+ # @param [String] order_by
718
+ # Optional. One or more fields to compare and use to sort the output. See https:/
719
+ # /google.aip.dev/132#ordering.
720
+ # @param [Fixnum] page_size
721
+ # Optional. When requesting a 'page' of resources, `page_size` specifies number
722
+ # of resources to return. If unspecified or set to 0, all resources will be
723
+ # returned.
724
+ # @param [String] page_token
725
+ # Optional. Token returned by previous call to `ListMemberships` which specifies
726
+ # the position in the list from where to continue listing the resources.
727
+ # @param [String] fields
728
+ # Selector specifying which fields to include in a partial response.
729
+ # @param [String] quota_user
730
+ # Available to use for quota purposes for server-side applications. Can be any
731
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
732
+ # @param [Google::Apis::RequestOptions] options
733
+ # Request-specific options
734
+ #
735
+ # @yield [result, err] Result & error if block supplied
736
+ # @yieldparam result [Google::Apis::GkehubV1alpha::ListMembershipsResponse] parsed result object
737
+ # @yieldparam err [StandardError] error object if request failed
738
+ #
739
+ # @return [Google::Apis::GkehubV1alpha::ListMembershipsResponse]
740
+ #
741
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
742
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
743
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
744
+ def list_project_location_memberships(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
745
+ command = make_simple_command(:get, 'v1alpha/{+parent}/memberships', options)
746
+ command.response_representation = Google::Apis::GkehubV1alpha::ListMembershipsResponse::Representation
747
+ command.response_class = Google::Apis::GkehubV1alpha::ListMembershipsResponse
748
+ command.params['parent'] = parent unless parent.nil?
749
+ command.query['filter'] = filter unless filter.nil?
750
+ command.query['orderBy'] = order_by unless order_by.nil?
751
+ command.query['pageSize'] = page_size unless page_size.nil?
752
+ command.query['pageToken'] = page_token unless page_token.nil?
753
+ command.query['fields'] = fields unless fields.nil?
754
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
755
+ execute_or_queue_command(command, &block)
756
+ end
757
+
758
+ # Lists Memberships of admin clusters in a given project and location. **This
759
+ # method is only used internally**.
760
+ # @param [String] parent
761
+ # Required. The parent (project and location) where the Memberships of admin
762
+ # cluster will be listed. Specified in the format `projects/*/locations/*`.
763
+ # @param [String] filter
764
+ # Optional. Lists Memberships of admin clusters that match the filter expression.
765
+ # @param [String] order_by
766
+ # Optional. One or more fields to compare and use to sort the output. See https:/
767
+ # /google.aip.dev/132#ordering.
768
+ # @param [Fixnum] page_size
769
+ # Optional. When requesting a 'page' of resources, `page_size` specifies number
770
+ # of resources to return. If unspecified or set to 0, all resources will be
771
+ # returned.
772
+ # @param [String] page_token
773
+ # Optional. Token returned by previous call to `ListAdminClusterMemberships`
774
+ # which specifies the position in the list from where to continue listing the
775
+ # resources.
776
+ # @param [String] fields
777
+ # Selector specifying which fields to include in a partial response.
778
+ # @param [String] quota_user
779
+ # Available to use for quota purposes for server-side applications. Can be any
780
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
781
+ # @param [Google::Apis::RequestOptions] options
782
+ # Request-specific options
783
+ #
784
+ # @yield [result, err] Result & error if block supplied
785
+ # @yieldparam result [Google::Apis::GkehubV1alpha::ListAdminClusterMembershipsResponse] parsed result object
786
+ # @yieldparam err [StandardError] error object if request failed
787
+ #
788
+ # @return [Google::Apis::GkehubV1alpha::ListAdminClusterMembershipsResponse]
789
+ #
790
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
791
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
792
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
793
+ def list_project_location_membership_admin(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
794
+ command = make_simple_command(:get, 'v1alpha/{+parent}/memberships:listAdmin', options)
795
+ command.response_representation = Google::Apis::GkehubV1alpha::ListAdminClusterMembershipsResponse::Representation
796
+ command.response_class = Google::Apis::GkehubV1alpha::ListAdminClusterMembershipsResponse
797
+ command.params['parent'] = parent unless parent.nil?
798
+ command.query['filter'] = filter unless filter.nil?
799
+ command.query['orderBy'] = order_by unless order_by.nil?
800
+ command.query['pageSize'] = page_size unless page_size.nil?
801
+ command.query['pageToken'] = page_token unless page_token.nil?
802
+ command.query['fields'] = fields unless fields.nil?
803
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
804
+ execute_or_queue_command(command, &block)
805
+ end
806
+
807
+ # Updates an existing Membership.
808
+ # @param [String] name
809
+ # Required. The Membership resource name in the format `projects/*/locations/*/
810
+ # memberships/*`.
811
+ # @param [Google::Apis::GkehubV1alpha::Membership] membership_object
812
+ # @param [String] request_id
813
+ # Optional. A request ID to identify requests. Specify a unique request ID so
814
+ # that if you must retry your request, the server will know to ignore the
815
+ # request if it has already been completed. The server will guarantee that for
816
+ # at least 60 minutes after the first request. For example, consider a situation
817
+ # where you make an initial request and the request times out. If you make the
818
+ # request again with the same request ID, the server can check if original
819
+ # operation with the same request ID was received, and if so, will ignore the
820
+ # second request. This prevents clients from accidentally creating duplicate
821
+ # commitments. The request ID must be a valid UUID with the exception that zero
822
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
823
+ # @param [String] update_mask
824
+ # Required. Mask of fields to update.
825
+ # @param [String] fields
826
+ # Selector specifying which fields to include in a partial response.
827
+ # @param [String] quota_user
828
+ # Available to use for quota purposes for server-side applications. Can be any
829
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
830
+ # @param [Google::Apis::RequestOptions] options
831
+ # Request-specific options
832
+ #
833
+ # @yield [result, err] Result & error if block supplied
834
+ # @yieldparam result [Google::Apis::GkehubV1alpha::Operation] parsed result object
835
+ # @yieldparam err [StandardError] error object if request failed
836
+ #
837
+ # @return [Google::Apis::GkehubV1alpha::Operation]
838
+ #
839
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
840
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
841
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
842
+ def patch_project_location_membership(name, membership_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
843
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
844
+ command.request_representation = Google::Apis::GkehubV1alpha::Membership::Representation
845
+ command.request_object = membership_object
846
+ command.response_representation = Google::Apis::GkehubV1alpha::Operation::Representation
847
+ command.response_class = Google::Apis::GkehubV1alpha::Operation
848
+ command.params['name'] = name unless name.nil?
849
+ command.query['requestId'] = request_id unless request_id.nil?
850
+ command.query['updateMask'] = update_mask unless update_mask.nil?
851
+ command.query['fields'] = fields unless fields.nil?
852
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
853
+ execute_or_queue_command(command, &block)
854
+ end
855
+
506
856
  # Sets the access control policy on the specified resource. Replaces any
507
857
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
508
858
  # PERMISSION_DENIED` errors.
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.11.0
4
+ version: 0.15.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: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.11.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha
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.15.0
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: []
65
65
  require_paths: