google-apis-healthcare_v1 0.56.0 → 0.57.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: 9e44cd05b065e756556b8a6a7b6c1043cea73112affe2332eb92eecb7f9332e0
4
- data.tar.gz: 16b14493f699803c78e5d1b98fd927da5e703a2b96c82bda3195dfb55d3c180c
3
+ metadata.gz: 562bd4f530d71c111195a9501f09ae55f36ff68205c02cb9ad35d2d30ad969ec
4
+ data.tar.gz: 985b30d4ae46a00c646a7571f89276faebf69e4580e8fb5c5e670eaf76373143
5
5
  SHA512:
6
- metadata.gz: ba606ad2ea5fc40068bfa867cc34838b7b5a84261199c9b91767bd8e6dcb99ddd7759207a58e872ba0d8d4cbd0be3fef20fa96228cd7fe579d316303c07e561f
7
- data.tar.gz: a78325ded2fbf2962cd8edc57ee7149caff53191a71f53e48dd9a44bbbc23fd2cda3ce12f937d8dbfbabdd9112bebeb6e2b357eb8673dddaa537bf472dd9815c
6
+ metadata.gz: 815d2708465806c9e27091116e93a0c3cc1e24df0f520a4a736666b9df5029daa20ba340ef6ef18653c0662a863617f2388ced4ec9ab2015c8a5f1400cc9e8eb
7
+ data.tar.gz: 312ef19c3d2bb6f75eecc958c5cef5004b39a07833c5d49c96f8f5375fe7578037dba234e46c721c5409f7ee5ecc84f5f6b9a70015a17d3b7b29387451ada9d4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.57.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240220
6
+
3
7
  ### v0.56.0 (2024-02-24)
4
8
 
5
9
  * Regenerated using generator version 0.14.0
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1
18
18
  # Version of the google-apis-healthcare_v1 gem
19
- GEM_VERSION = "0.56.0"
19
+ GEM_VERSION = "0.57.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 = "20240130"
25
+ REVISION = "20240220"
26
26
  end
27
27
  end
28
28
  end
@@ -1909,6 +1909,127 @@ module Google
1909
1909
  execute_or_queue_command(command, &block)
1910
1910
  end
1911
1911
 
1912
+ # Gets the access control policy for a resource. Returns an empty policy if the
1913
+ # resource exists and does not have a policy set.
1914
+ # @param [String] resource
1915
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1916
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1917
+ # appropriate value for this field.
1918
+ # @param [Fixnum] options_requested_policy_version
1919
+ # Optional. The maximum policy version that will be used to format the policy.
1920
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
1921
+ # rejected. Requests for policies with any conditional role bindings must
1922
+ # specify version 3. Policies with no conditional role bindings may specify any
1923
+ # valid value or leave the field unset. The policy in the response might use the
1924
+ # policy version that you specified, or it might use a lower policy version. For
1925
+ # example, if you specify version 3, but the policy has no conditional role
1926
+ # bindings, the response uses version 1. To learn which resources support
1927
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1928
+ # google.com/iam/help/conditions/resource-policies).
1929
+ # @param [String] fields
1930
+ # Selector specifying which fields to include in a partial response.
1931
+ # @param [String] quota_user
1932
+ # Available to use for quota purposes for server-side applications. Can be any
1933
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1934
+ # @param [Google::Apis::RequestOptions] options
1935
+ # Request-specific options
1936
+ #
1937
+ # @yield [result, err] Result & error if block supplied
1938
+ # @yieldparam result [Google::Apis::HealthcareV1::Policy] parsed result object
1939
+ # @yieldparam err [StandardError] error object if request failed
1940
+ #
1941
+ # @return [Google::Apis::HealthcareV1::Policy]
1942
+ #
1943
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1944
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1945
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1946
+ def get_project_location_dataset_data_mapper_workspace_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
1947
+ command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
1948
+ command.response_representation = Google::Apis::HealthcareV1::Policy::Representation
1949
+ command.response_class = Google::Apis::HealthcareV1::Policy
1950
+ command.params['resource'] = resource unless resource.nil?
1951
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
1952
+ command.query['fields'] = fields unless fields.nil?
1953
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1954
+ execute_or_queue_command(command, &block)
1955
+ end
1956
+
1957
+ # Sets the access control policy on the specified resource. Replaces any
1958
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
1959
+ # PERMISSION_DENIED` errors.
1960
+ # @param [String] resource
1961
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1962
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1963
+ # appropriate value for this field.
1964
+ # @param [Google::Apis::HealthcareV1::SetIamPolicyRequest] set_iam_policy_request_object
1965
+ # @param [String] fields
1966
+ # Selector specifying which fields to include in a partial response.
1967
+ # @param [String] quota_user
1968
+ # Available to use for quota purposes for server-side applications. Can be any
1969
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1970
+ # @param [Google::Apis::RequestOptions] options
1971
+ # Request-specific options
1972
+ #
1973
+ # @yield [result, err] Result & error if block supplied
1974
+ # @yieldparam result [Google::Apis::HealthcareV1::Policy] parsed result object
1975
+ # @yieldparam err [StandardError] error object if request failed
1976
+ #
1977
+ # @return [Google::Apis::HealthcareV1::Policy]
1978
+ #
1979
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1980
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1981
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1982
+ def set_data_mapper_workspace_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1983
+ command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
1984
+ command.request_representation = Google::Apis::HealthcareV1::SetIamPolicyRequest::Representation
1985
+ command.request_object = set_iam_policy_request_object
1986
+ command.response_representation = Google::Apis::HealthcareV1::Policy::Representation
1987
+ command.response_class = Google::Apis::HealthcareV1::Policy
1988
+ command.params['resource'] = resource unless resource.nil?
1989
+ command.query['fields'] = fields unless fields.nil?
1990
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1991
+ execute_or_queue_command(command, &block)
1992
+ end
1993
+
1994
+ # Returns permissions that a caller has on the specified resource. If the
1995
+ # resource does not exist, this will return an empty set of permissions, not a `
1996
+ # NOT_FOUND` error. Note: This operation is designed to be used for building
1997
+ # permission-aware UIs and command-line tools, not for authorization checking.
1998
+ # This operation may "fail open" without warning.
1999
+ # @param [String] resource
2000
+ # REQUIRED: The resource for which the policy detail is being requested. See [
2001
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
2002
+ # appropriate value for this field.
2003
+ # @param [Google::Apis::HealthcareV1::TestIamPermissionsRequest] test_iam_permissions_request_object
2004
+ # @param [String] fields
2005
+ # Selector specifying which fields to include in a partial response.
2006
+ # @param [String] quota_user
2007
+ # Available to use for quota purposes for server-side applications. Can be any
2008
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2009
+ # @param [Google::Apis::RequestOptions] options
2010
+ # Request-specific options
2011
+ #
2012
+ # @yield [result, err] Result & error if block supplied
2013
+ # @yieldparam result [Google::Apis::HealthcareV1::TestIamPermissionsResponse] parsed result object
2014
+ # @yieldparam err [StandardError] error object if request failed
2015
+ #
2016
+ # @return [Google::Apis::HealthcareV1::TestIamPermissionsResponse]
2017
+ #
2018
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2019
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2020
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2021
+ def test_data_mapper_workspace_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2022
+ command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
2023
+ command.request_representation = Google::Apis::HealthcareV1::TestIamPermissionsRequest::Representation
2024
+ command.request_object = test_iam_permissions_request_object
2025
+ command.response_representation = Google::Apis::HealthcareV1::TestIamPermissionsResponse::Representation
2026
+ command.response_class = Google::Apis::HealthcareV1::TestIamPermissionsResponse
2027
+ command.params['resource'] = resource unless resource.nil?
2028
+ command.query['fields'] = fields unless fields.nil?
2029
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2030
+ execute_or_queue_command(command, &block)
2031
+ end
2032
+
1912
2033
  # Creates a new DICOM store within the parent dataset.
1913
2034
  # @param [String] parent
1914
2035
  # Required. The name of the dataset this DICOM store belongs to.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.56.0
4
+ version: 0.57.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-03 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-healthcare_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.56.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.57.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
63
63
  post_install_message:
64
64
  rdoc_options: []