google-apis-healthcare_v1beta1 0.84.0 → 0.86.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: 5d1739e4fbef5ef36ed63839cc98d156a346adca93125754ce474968b469b726
4
- data.tar.gz: 85fb6bdadc829b3ae8e7f4e6810a1e9bc97025087d2145c37a4074fd7ff4391a
3
+ metadata.gz: 9bf682a9aeb3f4990b0657352e8b62cfa4b13ba8524bbaf950fa3c9fc080de4e
4
+ data.tar.gz: 13dde9cc3e6a0245350101e33a3f79abd00eb2493435a30df8aa6383beaaa1d4
5
5
  SHA512:
6
- metadata.gz: 832f8c3a52f270da43e0b97e462acbfd86570c530b4a126b087469a8a687dbbd992a215b6c96ef576d1cedb14cbb81a1b13eec7978908acb43da7cd132dff992
7
- data.tar.gz: b6236846823186b995a67ed0edb6b16d4c75a82701d9e70b07272a7757cfaec782c657708d66c9d47053c6adb369e2b9a96c68cfc2c75e31f1eb1af11305b80a
6
+ metadata.gz: 83474b115cfe7b658f5af456f2a8b4195b46b7b216220555ad23c63378fd207ab13b16344876121754682ed33ce4dc9432dad9c53167a1e39bc39e9d4a1d3e6e
7
+ data.tar.gz: 6de7a2139dfd7d9217221538d809704c618074ba8b54af9161d58f1bc5456ed6ad16b7b460250cc06e82eb313d8a67b2e8288fda4540975d53fb4cda8ccaba7a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.86.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250724
6
+
7
+ ### v0.85.0 (2025-08-10)
8
+
9
+ * Regenerated from discovery document revision 20250710
10
+
3
11
  ### v0.84.0 (2025-07-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250625
@@ -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.84.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250625"
25
+ REVISION = "20250724"
26
26
  end
27
27
  end
28
28
  end
@@ -472,127 +472,6 @@ module Google
472
472
  execute_or_queue_command(command, &block)
473
473
  end
474
474
 
475
- # Gets the access control policy for a resource. Returns an empty policy if the
476
- # resource exists and does not have a policy set.
477
- # @param [String] resource
478
- # REQUIRED: The resource for which the policy is being requested. See [Resource
479
- # names](https://cloud.google.com/apis/design/resource_names) for the
480
- # appropriate value for this field.
481
- # @param [Fixnum] options_requested_policy_version
482
- # Optional. The maximum policy version that will be used to format the policy.
483
- # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
484
- # rejected. Requests for policies with any conditional role bindings must
485
- # specify version 3. Policies with no conditional role bindings may specify any
486
- # valid value or leave the field unset. The policy in the response might use the
487
- # policy version that you specified, or it might use a lower policy version. For
488
- # example, if you specify version 3, but the policy has no conditional role
489
- # bindings, the response uses version 1. To learn which resources support
490
- # conditions in their IAM policies, see the [IAM documentation](https://cloud.
491
- # google.com/iam/help/conditions/resource-policies).
492
- # @param [String] fields
493
- # Selector specifying which fields to include in a partial response.
494
- # @param [String] quota_user
495
- # Available to use for quota purposes for server-side applications. Can be any
496
- # arbitrary string assigned to a user, but should not exceed 40 characters.
497
- # @param [Google::Apis::RequestOptions] options
498
- # Request-specific options
499
- #
500
- # @yield [result, err] Result & error if block supplied
501
- # @yieldparam result [Google::Apis::HealthcareV1beta1::Policy] parsed result object
502
- # @yieldparam err [StandardError] error object if request failed
503
- #
504
- # @return [Google::Apis::HealthcareV1beta1::Policy]
505
- #
506
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
507
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
508
- # @raise [Google::Apis::AuthorizationError] Authorization is required
509
- def get_project_location_dataset_annotation_store_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
510
- command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
511
- command.response_representation = Google::Apis::HealthcareV1beta1::Policy::Representation
512
- command.response_class = Google::Apis::HealthcareV1beta1::Policy
513
- command.params['resource'] = resource unless resource.nil?
514
- command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
515
- command.query['fields'] = fields unless fields.nil?
516
- command.query['quotaUser'] = quota_user unless quota_user.nil?
517
- execute_or_queue_command(command, &block)
518
- end
519
-
520
- # Sets the access control policy on the specified resource. Replaces any
521
- # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
522
- # PERMISSION_DENIED` errors.
523
- # @param [String] resource
524
- # REQUIRED: The resource for which the policy is being specified. See [Resource
525
- # names](https://cloud.google.com/apis/design/resource_names) for the
526
- # appropriate value for this field.
527
- # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
528
- # @param [String] fields
529
- # Selector specifying which fields to include in a partial response.
530
- # @param [String] quota_user
531
- # Available to use for quota purposes for server-side applications. Can be any
532
- # arbitrary string assigned to a user, but should not exceed 40 characters.
533
- # @param [Google::Apis::RequestOptions] options
534
- # Request-specific options
535
- #
536
- # @yield [result, err] Result & error if block supplied
537
- # @yieldparam result [Google::Apis::HealthcareV1beta1::Policy] parsed result object
538
- # @yieldparam err [StandardError] error object if request failed
539
- #
540
- # @return [Google::Apis::HealthcareV1beta1::Policy]
541
- #
542
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
543
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
544
- # @raise [Google::Apis::AuthorizationError] Authorization is required
545
- def set_annotation_store_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
546
- command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
547
- command.request_representation = Google::Apis::HealthcareV1beta1::SetIamPolicyRequest::Representation
548
- command.request_object = set_iam_policy_request_object
549
- command.response_representation = Google::Apis::HealthcareV1beta1::Policy::Representation
550
- command.response_class = Google::Apis::HealthcareV1beta1::Policy
551
- command.params['resource'] = resource unless resource.nil?
552
- command.query['fields'] = fields unless fields.nil?
553
- command.query['quotaUser'] = quota_user unless quota_user.nil?
554
- execute_or_queue_command(command, &block)
555
- end
556
-
557
- # Returns permissions that a caller has on the specified resource. If the
558
- # resource does not exist, this will return an empty set of permissions, not a `
559
- # NOT_FOUND` error. Note: This operation is designed to be used for building
560
- # permission-aware UIs and command-line tools, not for authorization checking.
561
- # This operation may "fail open" without warning.
562
- # @param [String] resource
563
- # REQUIRED: The resource for which the policy detail is being requested. See [
564
- # Resource names](https://cloud.google.com/apis/design/resource_names) for the
565
- # appropriate value for this field.
566
- # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
567
- # @param [String] fields
568
- # Selector specifying which fields to include in a partial response.
569
- # @param [String] quota_user
570
- # Available to use for quota purposes for server-side applications. Can be any
571
- # arbitrary string assigned to a user, but should not exceed 40 characters.
572
- # @param [Google::Apis::RequestOptions] options
573
- # Request-specific options
574
- #
575
- # @yield [result, err] Result & error if block supplied
576
- # @yieldparam result [Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse] parsed result object
577
- # @yieldparam err [StandardError] error object if request failed
578
- #
579
- # @return [Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse]
580
- #
581
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
582
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
583
- # @raise [Google::Apis::AuthorizationError] Authorization is required
584
- def test_annotation_store_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
585
- command = make_simple_command(:post, 'v1beta1/{+resource}:testIamPermissions', options)
586
- command.request_representation = Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest::Representation
587
- command.request_object = test_iam_permissions_request_object
588
- command.response_representation = Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse::Representation
589
- command.response_class = Google::Apis::HealthcareV1beta1::TestIamPermissionsResponse
590
- command.params['resource'] = resource unless resource.nil?
591
- command.query['fields'] = fields unless fields.nil?
592
- command.query['quotaUser'] = quota_user unless quota_user.nil?
593
- execute_or_queue_command(command, &block)
594
- end
595
-
596
475
  # Checks if a particular data_id of a User data mapping in the specified consent
597
476
  # store is consented for the specified use.
598
477
  # @param [String] consent_store
@@ -3058,13 +2937,13 @@ module Google
3058
2937
  end
3059
2938
 
3060
2939
  # RetrieveStudyMetadata returns instance associated with the given study
3061
- # presented as metadata with the bulk data removed. See [RetrieveTransaction](
3062
- # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4).
3063
- # For details on the implementation of RetrieveStudyMetadata, see [Metadata
3064
- # resources](https://cloud.google.com/healthcare/docs/dicom#metadata_resources)
3065
- # in the Cloud Healthcare API conformance statement. For samples that show how
3066
- # to call RetrieveStudyMetadata, see [Retrieve metadata](https://cloud.google.
3067
- # com/healthcare/docs/how-tos/dicomweb#retrieve-metadata).
2940
+ # presented as metadata. See [RetrieveTransaction](http://dicom.nema.org/medical/
2941
+ # dicom/current/output/html/part18.html#sect_10.4). For details on the
2942
+ # implementation of RetrieveStudyMetadata, see [Metadata resources](https://
2943
+ # cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
2944
+ # Healthcare API conformance statement. For samples that show how to call
2945
+ # RetrieveStudyMetadata, see [Retrieve metadata](https://cloud.google.com/
2946
+ # healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3068
2947
  # @param [String] parent
3069
2948
  # Required. The name of the DICOM store that is being accessed. For example, `
3070
2949
  # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
@@ -3318,12 +3197,11 @@ module Google
3318
3197
  end
3319
3198
 
3320
3199
  # RetrieveSeriesMetadata returns instance associated with the given study and
3321
- # series, presented as metadata with the bulk data removed. See [
3322
- # RetrieveTransaction](http://dicom.nema.org/medical/dicom/current/output/html/
3323
- # part18.html#sect_10.4). For details on the implementation of
3324
- # RetrieveSeriesMetadata, see [Metadata resources](https://cloud.google.com/
3325
- # healthcare/docs/dicom#metadata_resources) in the Cloud Healthcare API
3326
- # conformance statement. For samples that show how to call
3200
+ # series, presented as metadata. See [RetrieveTransaction](http://dicom.nema.org/
3201
+ # medical/dicom/current/output/html/part18.html#sect_10.4). For details on the
3202
+ # implementation of RetrieveSeriesMetadata, see [Metadata resources](https://
3203
+ # cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
3204
+ # Healthcare API conformance statement. For samples that show how to call
3327
3205
  # RetrieveSeriesMetadata, see [Retrieve metadata](https://cloud.google.com/
3328
3206
  # healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3329
3207
  # @param [String] parent
@@ -3535,14 +3413,13 @@ module Google
3535
3413
  end
3536
3414
 
3537
3415
  # RetrieveInstanceMetadata returns instance associated with the given study,
3538
- # series, and SOP Instance UID presented as metadata with the bulk data removed.
3539
- # See [RetrieveTransaction](http://dicom.nema.org/medical/dicom/current/output/
3540
- # html/part18.html#sect_10.4). For details on the implementation of
3541
- # RetrieveInstanceMetadata, see [Metadata resources](https://cloud.google.com/
3542
- # healthcare/docs/dicom#metadata_resources) in the Cloud Healthcare API
3543
- # conformance statement. For samples that show how to call
3544
- # RetrieveInstanceMetadata, see [Retrieve metadata](https://cloud.google.com/
3545
- # healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3416
+ # series, and SOP Instance UID presented as metadata. See [RetrieveTransaction](
3417
+ # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4).
3418
+ # For details on the implementation of RetrieveInstanceMetadata, see [Metadata
3419
+ # resources](https://cloud.google.com/healthcare/docs/dicom#metadata_resources)
3420
+ # in the Cloud Healthcare API conformance statement. For samples that show how
3421
+ # to call RetrieveInstanceMetadata, see [Retrieve metadata](https://cloud.google.
3422
+ # com/healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3546
3423
  # @param [String] parent
3547
3424
  # Required. The name of the DICOM store that is being accessed. For example, `
3548
3425
  # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
@@ -3629,9 +3506,9 @@ module Google
3629
3506
  end
3630
3507
 
3631
3508
  # Returns uncompressed, unencoded bytes representing the referenced bulkdata tag
3632
- # from an instance. See [Retrieve Transaction] (http://dicom.nema.org/medical/
3633
- # dicom/current/output/html/part18.html#sect_10.4)`: .external`. For details on
3634
- # the implementation of RetrieveBulkdata, see [Bulkdata resources](https://cloud.
3509
+ # from an instance. See [Retrieve Transaction](http://dicom.nema.org/medical/
3510
+ # dicom/current/output/html/part18.html#sect_10.4). For details on the
3511
+ # implementation of RetrieveBulkdata, see [Bulkdata resources](https://cloud.
3635
3512
  # google.com/healthcare/docs/dicom#bulkdata-resources) in the Cloud Healthcare
3636
3513
  # API conformance statement. For samples that show how to call RetrieveBulkdata,
3637
3514
  # see [Retrieve bulkdata](https://cloud.google.com/healthcare/docs/how-tos/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.84.0
4
+ version: 0.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.84.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.86.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: