google-apis-dataform_v1beta1 0.29.0 → 0.31.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: 70949b1ebd47fdc0c1809cd90312343d038f7faa91fe92e8adc441efefe4fd3e
4
- data.tar.gz: af3748f91c6e2224a816d6b31f21968a12b0637f3486833b2b01b8d0ba4d612e
3
+ metadata.gz: c3f652e72ed752e991591050d2b363cbd83aaf12039d1e77a332d7ad4cd39af9
4
+ data.tar.gz: 702d3f04e378b523cf28479c25f9a2bce17393c18440e0a0131bf841f827baf3
5
5
  SHA512:
6
- metadata.gz: 8ba46e81c4d25cecccae56f9ca488064141c6ea366f469f84c97c3d7ee98e18b099521afb3f76e4106e45afe8834f17ada1304b2d494afaec52ff50ef6122230
7
- data.tar.gz: ae5340ab77cbc7b8d496846eb81bfb0517247ca4c09d9f79f7e3d43d67a95170c75087adfff5dcdaacff2184329b691acf41a2702013548aa30683fab14b789d
6
+ metadata.gz: a1cdd5d97d42886ba6ea8d151ba3e5656fd51f3c11485e5f3ce709be91bc9eedb043a4066ef8665c4f01023e5cf9f668a95a590ad4ee30d080cf52d24a26b7e8
7
+ data.tar.gz: 272af198e27bff232e3b6eb98515c750691f11e86ff0aa95d9e07e20e6f8b5b2ceb6a683aca2387f7af6475119430fe0e1d17d7185b35a53fcd7b3d8c0e3c209
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.31.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240608
6
+
7
+ ### v0.30.0 (2024-05-19)
8
+
9
+ * Regenerated from discovery document revision 20240504
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.29.0 (2024-05-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20240427
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240427"
25
+ REVISION = "20240608"
26
26
  end
27
27
  end
28
28
  end
@@ -781,6 +781,170 @@ module Google
781
781
  execute_or_queue_command(command, &block)
782
782
  end
783
783
 
784
+ # Gets the access control policy for a resource. Returns an empty policy if the
785
+ # resource exists and does not have a policy set.
786
+ # @param [String] resource
787
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
788
+ # names](https://cloud.google.com/apis/design/resource_names) for the
789
+ # appropriate value for this field.
790
+ # @param [Fixnum] options_requested_policy_version
791
+ # Optional. The maximum policy version that will be used to format the policy.
792
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
793
+ # rejected. Requests for policies with any conditional role bindings must
794
+ # specify version 3. Policies with no conditional role bindings may specify any
795
+ # valid value or leave the field unset. The policy in the response might use the
796
+ # policy version that you specified, or it might use a lower policy version. For
797
+ # example, if you specify version 3, but the policy has no conditional role
798
+ # bindings, the response uses version 1. To learn which resources support
799
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
800
+ # google.com/iam/help/conditions/resource-policies).
801
+ # @param [String] fields
802
+ # Selector specifying which fields to include in a partial response.
803
+ # @param [String] quota_user
804
+ # Available to use for quota purposes for server-side applications. Can be any
805
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
806
+ # @param [Google::Apis::RequestOptions] options
807
+ # Request-specific options
808
+ #
809
+ # @yield [result, err] Result & error if block supplied
810
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
811
+ # @yieldparam err [StandardError] error object if request failed
812
+ #
813
+ # @return [Google::Apis::DataformV1beta1::Policy]
814
+ #
815
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
816
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
817
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
818
+ def get_project_location_repository_comment_thread_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
819
+ command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
820
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
821
+ command.response_class = Google::Apis::DataformV1beta1::Policy
822
+ command.params['resource'] = resource unless resource.nil?
823
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
824
+ command.query['fields'] = fields unless fields.nil?
825
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
826
+ execute_or_queue_command(command, &block)
827
+ end
828
+
829
+ # Sets the access control policy on the specified resource. Replaces any
830
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
831
+ # PERMISSION_DENIED` errors.
832
+ # @param [String] resource
833
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
834
+ # names](https://cloud.google.com/apis/design/resource_names) for the
835
+ # appropriate value for this field.
836
+ # @param [Google::Apis::DataformV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
837
+ # @param [String] fields
838
+ # Selector specifying which fields to include in a partial response.
839
+ # @param [String] quota_user
840
+ # Available to use for quota purposes for server-side applications. Can be any
841
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
842
+ # @param [Google::Apis::RequestOptions] options
843
+ # Request-specific options
844
+ #
845
+ # @yield [result, err] Result & error if block supplied
846
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
847
+ # @yieldparam err [StandardError] error object if request failed
848
+ #
849
+ # @return [Google::Apis::DataformV1beta1::Policy]
850
+ #
851
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
852
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
853
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
854
+ def set_comment_thread_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
855
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
856
+ command.request_representation = Google::Apis::DataformV1beta1::SetIamPolicyRequest::Representation
857
+ command.request_object = set_iam_policy_request_object
858
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
859
+ command.response_class = Google::Apis::DataformV1beta1::Policy
860
+ command.params['resource'] = resource unless resource.nil?
861
+ command.query['fields'] = fields unless fields.nil?
862
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
863
+ execute_or_queue_command(command, &block)
864
+ end
865
+
866
+ # Gets the access control policy for a resource. Returns an empty policy if the
867
+ # resource exists and does not have a policy set.
868
+ # @param [String] resource
869
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
870
+ # names](https://cloud.google.com/apis/design/resource_names) for the
871
+ # appropriate value for this field.
872
+ # @param [Fixnum] options_requested_policy_version
873
+ # Optional. The maximum policy version that will be used to format the policy.
874
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
875
+ # rejected. Requests for policies with any conditional role bindings must
876
+ # specify version 3. Policies with no conditional role bindings may specify any
877
+ # valid value or leave the field unset. The policy in the response might use the
878
+ # policy version that you specified, or it might use a lower policy version. For
879
+ # example, if you specify version 3, but the policy has no conditional role
880
+ # bindings, the response uses version 1. To learn which resources support
881
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
882
+ # google.com/iam/help/conditions/resource-policies).
883
+ # @param [String] fields
884
+ # Selector specifying which fields to include in a partial response.
885
+ # @param [String] quota_user
886
+ # Available to use for quota purposes for server-side applications. Can be any
887
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
888
+ # @param [Google::Apis::RequestOptions] options
889
+ # Request-specific options
890
+ #
891
+ # @yield [result, err] Result & error if block supplied
892
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
893
+ # @yieldparam err [StandardError] error object if request failed
894
+ #
895
+ # @return [Google::Apis::DataformV1beta1::Policy]
896
+ #
897
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
898
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
899
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
900
+ def get_project_location_repository_comment_thread_comment_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
901
+ command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
902
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
903
+ command.response_class = Google::Apis::DataformV1beta1::Policy
904
+ command.params['resource'] = resource unless resource.nil?
905
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
906
+ command.query['fields'] = fields unless fields.nil?
907
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
908
+ execute_or_queue_command(command, &block)
909
+ end
910
+
911
+ # Sets the access control policy on the specified resource. Replaces any
912
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
913
+ # PERMISSION_DENIED` errors.
914
+ # @param [String] resource
915
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
916
+ # names](https://cloud.google.com/apis/design/resource_names) for the
917
+ # appropriate value for this field.
918
+ # @param [Google::Apis::DataformV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
919
+ # @param [String] fields
920
+ # Selector specifying which fields to include in a partial response.
921
+ # @param [String] quota_user
922
+ # Available to use for quota purposes for server-side applications. Can be any
923
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
924
+ # @param [Google::Apis::RequestOptions] options
925
+ # Request-specific options
926
+ #
927
+ # @yield [result, err] Result & error if block supplied
928
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
929
+ # @yieldparam err [StandardError] error object if request failed
930
+ #
931
+ # @return [Google::Apis::DataformV1beta1::Policy]
932
+ #
933
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
934
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
935
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
936
+ def set_comment_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
937
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
938
+ command.request_representation = Google::Apis::DataformV1beta1::SetIamPolicyRequest::Representation
939
+ command.request_object = set_iam_policy_request_object
940
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
941
+ command.response_class = Google::Apis::DataformV1beta1::Policy
942
+ command.params['resource'] = resource unless resource.nil?
943
+ command.query['fields'] = fields unless fields.nil?
944
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
945
+ execute_or_queue_command(command, &block)
946
+ end
947
+
784
948
  # Creates a new CompilationResult in a given project and location.
785
949
  # @param [String] parent
786
950
  # Required. The repository in which to create the compilation result. Must be in
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.31.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-05-05 00:00:00.000000000 Z
11
+ date: 2024-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-dataform_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.31.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []