google-apis-healthcare_v1beta1 0.66.0 → 0.67.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2fbe0befad91972eb2764a42565d40f495342b97a05b53d33992503779cfbd4
4
- data.tar.gz: f9009718fe01b432ce731f4dc80d6cda89e2686b5619bd75648d1ecd43bfedfd
3
+ metadata.gz: 5799aa13c1c313e2837b825b747688a8170a0b8e4e020e197b516ba787c07cd8
4
+ data.tar.gz: fd9b5833b6f26ff60e54932df9627f789dc4bb2a7b16bfb6d8379aff6f07e674
5
5
  SHA512:
6
- metadata.gz: ecf572ae9ea74f1e2ec34b6074f7ac4db386226b5544099cf3497e95fa6f0353b7fd2077b7a9ad33e74eb24fbaafbff70912cbcedaf1f2bd9808eb9ac98e6c2d
7
- data.tar.gz: 42c7c05299170267d72023aee04754c08f56584426fd4ae979c208e5c87e256d8b002ad0e1486780a3730e5fc5e719a295a89d2c800aab76068c944d246a1177
6
+ metadata.gz: 98a308577d2811087f77c114bbc00b11cfa6228fbccdabca9cff1069cc40fe5cfe7f6731e5b3372fc00c6fbee241e60f47a31ae0b4d79e92a2f1e0f1e87ca928
7
+ data.tar.gz: 0731552e9337d7718e2ebeb9decff0bb54d5e989e3c34d3e74a7e9b652c92ba6a6595336c1157be07c45401397b445ad28e324006d65319658543aa20f71aa64
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.67.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240220
6
+
3
7
  ### v0.66.0 (2024-02-23)
4
8
 
5
9
  * Regenerated using generator version 0.14.0
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1beta1
18
18
  # Version of the google-apis-healthcare_v1beta1 gem
19
- GEM_VERSION = "0.66.0"
19
+ GEM_VERSION = "0.67.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 = "20240206"
25
+ REVISION = "20240220"
26
26
  end
27
27
  end
28
28
  end
@@ -2572,6 +2572,127 @@ module Google
2572
2572
  execute_or_queue_command(command, &block)
2573
2573
  end
2574
2574
 
2575
+ # Gets the access control policy for a resource. Returns an empty policy if the
2576
+ # resource exists and does not have a policy set.
2577
+ # @param [String] resource
2578
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
2579
+ # names](https://cloud.google.com/apis/design/resource_names) for the
2580
+ # appropriate value for this field.
2581
+ # @param [Fixnum] options_requested_policy_version
2582
+ # Optional. The maximum policy version that will be used to format the policy.
2583
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
2584
+ # rejected. Requests for policies with any conditional role bindings must
2585
+ # specify version 3. Policies with no conditional role bindings may specify any
2586
+ # valid value or leave the field unset. The policy in the response might use the
2587
+ # policy version that you specified, or it might use a lower policy version. For
2588
+ # example, if you specify version 3, but the policy has no conditional role
2589
+ # bindings, the response uses version 1. To learn which resources support
2590
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2591
+ # google.com/iam/help/conditions/resource-policies).
2592
+ # @param [String] fields
2593
+ # Selector specifying which fields to include in a partial response.
2594
+ # @param [String] quota_user
2595
+ # Available to use for quota purposes for server-side applications. Can be any
2596
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2597
+ # @param [Google::Apis::RequestOptions] options
2598
+ # Request-specific options
2599
+ #
2600
+ # @yield [result, err] Result & error if block supplied
2601
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Policy] parsed result object
2602
+ # @yieldparam err [StandardError] error object if request failed
2603
+ #
2604
+ # @return [Google::Apis::HealthcareV1beta1::Policy]
2605
+ #
2606
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2607
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2608
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2609
+ def get_project_location_dataset_data_mapper_workspace_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
2610
+ command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
2611
+ command.response_representation = Google::Apis::HealthcareV1beta1::Policy::Representation
2612
+ command.response_class = Google::Apis::HealthcareV1beta1::Policy
2613
+ command.params['resource'] = resource unless resource.nil?
2614
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
2615
+ command.query['fields'] = fields unless fields.nil?
2616
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2617
+ execute_or_queue_command(command, &block)
2618
+ end
2619
+
2620
+ # Sets the access control policy on the specified resource. Replaces any
2621
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
2622
+ # PERMISSION_DENIED` errors.
2623
+ # @param [String] resource
2624
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
2625
+ # names](https://cloud.google.com/apis/design/resource_names) for the
2626
+ # appropriate value for this field.
2627
+ # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
2628
+ # @param [String] fields
2629
+ # Selector specifying which fields to include in a partial response.
2630
+ # @param [String] quota_user
2631
+ # Available to use for quota purposes for server-side applications. Can be any
2632
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2633
+ # @param [Google::Apis::RequestOptions] options
2634
+ # Request-specific options
2635
+ #
2636
+ # @yield [result, err] Result & error if block supplied
2637
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Policy] parsed result object
2638
+ # @yieldparam err [StandardError] error object if request failed
2639
+ #
2640
+ # @return [Google::Apis::HealthcareV1beta1::Policy]
2641
+ #
2642
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2643
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2644
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2645
+ def set_data_mapper_workspace_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2646
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
2647
+ command.request_representation = Google::Apis::HealthcareV1beta1::SetIamPolicyRequest::Representation
2648
+ command.request_object = set_iam_policy_request_object
2649
+ command.response_representation = Google::Apis::HealthcareV1beta1::Policy::Representation
2650
+ command.response_class = Google::Apis::HealthcareV1beta1::Policy
2651
+ command.params['resource'] = resource unless resource.nil?
2652
+ command.query['fields'] = fields unless fields.nil?
2653
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2654
+ execute_or_queue_command(command, &block)
2655
+ end
2656
+
2657
+ # Returns permissions that a caller has on the specified resource. If the
2658
+ # resource does not exist, this will return an empty set of permissions, not a `
2659
+ # NOT_FOUND` error. Note: This operation is designed to be used for building
2660
+ # permission-aware UIs and command-line tools, not for authorization checking.
2661
+ # This operation may "fail open" without warning.
2662
+ # @param [String] resource
2663
+ # REQUIRED: The resource for which the policy detail is being requested. See [
2664
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
2665
+ # appropriate value for this field.
2666
+ # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
2667
+ # @param [String] fields
2668
+ # Selector specifying which fields to include in a partial response.
2669
+ # @param [String] quota_user
2670
+ # Available to use for quota purposes for server-side applications. Can be any
2671
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2672
+ # @param [Google::Apis::RequestOptions] options
2673
+ # Request-specific options
2674
+ #
2675
+ # @yield [result, err] Result & error if block supplied
2676
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse] parsed result object
2677
+ # @yieldparam err [StandardError] error object if request failed
2678
+ #
2679
+ # @return [Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse]
2680
+ #
2681
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2682
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2683
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2684
+ def test_data_mapper_workspace_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2685
+ command = make_simple_command(:post, 'v1beta1/{+resource}:testIamPermissions', options)
2686
+ command.request_representation = Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest::Representation
2687
+ command.request_object = test_iam_permissions_request_object
2688
+ command.response_representation = Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse::Representation
2689
+ command.response_class = Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse
2690
+ command.params['resource'] = resource unless resource.nil?
2691
+ command.query['fields'] = fields unless fields.nil?
2692
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2693
+ execute_or_queue_command(command, &block)
2694
+ end
2695
+
2575
2696
  # Creates a new DICOM store within the parent dataset.
2576
2697
  # @param [String] parent
2577
2698
  # 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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.67.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.66.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.67.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []