google-apis-healthcare_v1beta1 0.2.0 → 0.3.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: 5de45cccfa43043856ca7804f783590b5a1f246f0130635712c0153f4786e4db
4
- data.tar.gz: ce82cb746cb3ed230d38d456714ef6ca4df3353c94a143ebc331e079d1e68abe
3
+ metadata.gz: 874d0251e05c116179a2de7d4d86e545e31eb851ce128a74816a3775a315710b
4
+ data.tar.gz: 5c2a77ad2c37a7ed73a0100391e7ac57389c070f0caab1e5fcf0f107d5ec902b
5
5
  SHA512:
6
- metadata.gz: a2ab6a8d3b483237e19adc6c2d4a7547ccda5bea8c46276b704a4f8d6e08a1d57f822484a396d94bea047afd86143b21fb7e2aac101ae4d26ffd0c0e03cd2031
7
- data.tar.gz: fe3b8bbd1ef084c747a84b39ef4cf1d49416d18d6acf11ca26e9ccc6f37ed0171976f40575994d1a67784647b474729241820473e47ad313eb327f5a4165939a
6
+ metadata.gz: 2816543ab74c918a0ea26a5c974385438a7f7f28b4a31e9e810755b5d528f6dc83f07a2eae4fd65e807c3b76f73619bf291c22db76f51117584912b8d62577b1
7
+ data.tar.gz: 551312e4b456c413e4117ff4ffc806683813cae71846a3b90407a479d4fc4cd00740fa1a52585b17301fdf63145a65e8fc43afaaffcbfd6037297612be23a49e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.3.0 (2021-02-18)
4
+
5
+ * Regenerated from discovery document revision 20210205
6
+
3
7
  ### v0.2.0 (2021-02-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20210203
@@ -2685,148 +2685,6 @@ module Google
2685
2685
  end
2686
2686
  end
2687
2687
 
2688
- # Response when errors occur while exporting resources. This structure is
2689
- # included in the error details to describe the detailed outcome. It is only
2690
- # included when the operation finishes with errors.
2691
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails
2692
- include Google::Apis::Core::Hashable
2693
-
2694
- # The number of resources that had errors.
2695
- # Corresponds to the JSON property `errorCount`
2696
- # @return [Fixnum]
2697
- attr_accessor :error_count
2698
-
2699
- # The name of the FHIR store where resources have been exported, in the format `
2700
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/fhirStores/
2701
- # `fhir_store_id``.
2702
- # Corresponds to the JSON property `fhirStore`
2703
- # @return [String]
2704
- attr_accessor :fhir_store
2705
-
2706
- # The total number of resources included in the export operation. This is the
2707
- # sum of the success and error counts.
2708
- # Corresponds to the JSON property `resourceCount`
2709
- # @return [Fixnum]
2710
- attr_accessor :resource_count
2711
-
2712
- # The number of resources that were exported.
2713
- # Corresponds to the JSON property `successCount`
2714
- # @return [Fixnum]
2715
- attr_accessor :success_count
2716
-
2717
- def initialize(**args)
2718
- update!(**args)
2719
- end
2720
-
2721
- # Update properties of this object
2722
- def update!(**args)
2723
- @error_count = args[:error_count] if args.key?(:error_count)
2724
- @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
2725
- @resource_count = args[:resource_count] if args.key?(:resource_count)
2726
- @success_count = args[:success_count] if args.key?(:success_count)
2727
- end
2728
- end
2729
-
2730
- # Response when all resources export successfully. This structure is included
2731
- # in the response to describe the detailed outcome after the operation finishes
2732
- # successfully.
2733
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse
2734
- include Google::Apis::Core::Hashable
2735
-
2736
- # The name of the FHIR store where resources have been exported, in the format `
2737
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/fhirStores/
2738
- # `fhir_store_id``.
2739
- # Corresponds to the JSON property `fhirStore`
2740
- # @return [String]
2741
- attr_accessor :fhir_store
2742
-
2743
- # The total number of resources exported from the requested FHIR store.
2744
- # Corresponds to the JSON property `resourceCount`
2745
- # @return [Fixnum]
2746
- attr_accessor :resource_count
2747
-
2748
- def initialize(**args)
2749
- update!(**args)
2750
- end
2751
-
2752
- # Update properties of this object
2753
- def update!(**args)
2754
- @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
2755
- @resource_count = args[:resource_count] if args.key?(:resource_count)
2756
- end
2757
- end
2758
-
2759
- # Error response of importing resources. This structure is included in the
2760
- # error details to describe the detailed error after the operation finishes with
2761
- # some failure.
2762
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails
2763
- include Google::Apis::Core::Hashable
2764
-
2765
- # The number of resources that had errors.
2766
- # Corresponds to the JSON property `errorCount`
2767
- # @return [Fixnum]
2768
- attr_accessor :error_count
2769
-
2770
- # The name of the FHIR store where resources have been imported, in the format `
2771
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/fhirStores/
2772
- # `fhir_store_id``.
2773
- # Corresponds to the JSON property `fhirStore`
2774
- # @return [String]
2775
- attr_accessor :fhir_store
2776
-
2777
- # The total number of resources included in the source data. This is the sum of
2778
- # the success and error counts.
2779
- # Corresponds to the JSON property `inputSize`
2780
- # @return [Fixnum]
2781
- attr_accessor :input_size
2782
-
2783
- # The number of resources that have been imported.
2784
- # Corresponds to the JSON property `successCount`
2785
- # @return [Fixnum]
2786
- attr_accessor :success_count
2787
-
2788
- def initialize(**args)
2789
- update!(**args)
2790
- end
2791
-
2792
- # Update properties of this object
2793
- def update!(**args)
2794
- @error_count = args[:error_count] if args.key?(:error_count)
2795
- @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
2796
- @input_size = args[:input_size] if args.key?(:input_size)
2797
- @success_count = args[:success_count] if args.key?(:success_count)
2798
- end
2799
- end
2800
-
2801
- # Final response of importing resources. This structure is included in the
2802
- # response to describe the detailed outcome after the operation finishes
2803
- # successfully.
2804
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse
2805
- include Google::Apis::Core::Hashable
2806
-
2807
- # The name of the FHIR store where the resources have been imported, in the
2808
- # format `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
2809
- # fhirStores/`fhir_store_id``.
2810
- # Corresponds to the JSON property `fhirStore`
2811
- # @return [String]
2812
- attr_accessor :fhir_store
2813
-
2814
- # The total number of resources included in the source data.
2815
- # Corresponds to the JSON property `inputSize`
2816
- # @return [Fixnum]
2817
- attr_accessor :input_size
2818
-
2819
- def initialize(**args)
2820
- update!(**args)
2821
- end
2822
-
2823
- # Update properties of this object
2824
- def update!(**args)
2825
- @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
2826
- @input_size = args[:input_size] if args.key?(:input_size)
2827
- end
2828
- end
2829
-
2830
2688
  # Construct representing a logical group or a segment.
2831
2689
  class GroupOrSegment
2832
2690
  include Google::Apis::Core::Hashable
@@ -2912,22 +2770,40 @@ module Google
2912
2770
  include Google::Apis::Core::Hashable
2913
2771
 
2914
2772
  # Restricts notifications sent for messages matching a filter. If this is empty,
2915
- # all messages are matched. Syntax: https://cloud.google.com/appengine/docs/
2916
- # standard/python/search/query_strings The following fields and functions are
2917
- # available for filtering: * `message_type`, from the MSH-9.1 field. For example,
2918
- # `NOT message_type = "ADT"`. * `send_date` or `sendDate`, the YYYY-MM-DD date
2919
- # the message was sent in the dataset's time_zone, from the MSH-7 segment. For
2920
- # example, `send_date < "2017-01-02"`. * `send_time`, the timestamp when the
2921
- # message was sent, using the RFC3339 time format for comparisons, from the MSH-
2922
- # 7 segment. For example, `send_time < "2017-01-02T00:00:00-05:00"`. * `
2923
- # send_facility`, the care center that the message came from, from the MSH-4
2924
- # segment. For example, `send_facility = "ABC"`. * `PatientId(value, type)`,
2925
- # which matches if the message lists a patient having an ID of the given value
2926
- # and type in the PID-2, PID-3, or PID-4 segments. For example, `PatientId("
2927
- # 123456", "MRN")`. * `labels.x`, a string value of the label with key `x` as
2928
- # set using the Message.labels map. For example, `labels."priority"="high"`. The
2929
- # operator `:*` can be used to assert the existence of a label. For example, `
2930
- # labels."priority":*`.
2773
+ # all messages are matched. The following syntax is available: * A string field
2774
+ # value can be written as text inside quotation marks, for example `"query text"`
2775
+ # . The only valid relational operation for text fields is equality (`=`), where
2776
+ # text is searched within the field, rather than having the field be equal to
2777
+ # the text. For example, `"Comment = great"` returns messages with `great` in
2778
+ # the comment field. * A number field value can be written as an integer, a
2779
+ # decimal, or an exponential. The valid relational operators for number fields
2780
+ # are the equality operator (`=`), along with the less than/greater than
2781
+ # operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
2782
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
2783
+ # A date field value must be written in `yyyy-mm-dd` form. Fields with date and
2784
+ # time use the RFC3339 time format. Leading zeros are required for one-digit
2785
+ # months and days. The valid relational operators for date fields are the
2786
+ # equality operator (`=`) , along with the less than/greater than operators (`<`,
2787
+ # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
2788
+ # prepend the `NOT` operator to an expression to negate it. * Multiple field
2789
+ # query expressions can be combined in one query by adding `AND` or `OR`
2790
+ # operators between the expressions. If a boolean operator appears within a
2791
+ # quoted string, it is not treated as special, it's just another part of the
2792
+ # character string to be matched. You can prepend the `NOT` operator to an
2793
+ # expression to negate it. Fields/functions available for filtering are: * `
2794
+ # message_type`, from the MSH-9.1 field. For example, `NOT message_type = "ADT"`.
2795
+ # * `send_date` or `sendDate`, the YYYY-MM-DD date the message was sent in the
2796
+ # dataset's time_zone, from the MSH-7 segment. For example, `send_date < "2017-
2797
+ # 01-02"`. * `send_time`, the timestamp when the message was sent, using the
2798
+ # RFC3339 time format for comparisons, from the MSH-7 segment. For example, `
2799
+ # send_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
2800
+ # that the message came from, from the MSH-4 segment. For example, `
2801
+ # send_facility = "ABC"`. * `PatientId(value, type)`, which matches if the
2802
+ # message lists a patient having an ID of the given value and type in the PID-2,
2803
+ # PID-3, or PID-4 segments. For example, `PatientId("123456", "MRN")`. * `labels.
2804
+ # x`, a string value of the label with key `x` as set using the Message.labels
2805
+ # map. For example, `labels."priority"="high"`. The operator `:*` can be used to
2806
+ # assert the existence of a label. For example, `labels."priority":*`.
2931
2807
  # Corresponds to the JSON property `filter`
2932
2808
  # @return [String]
2933
2809
  attr_accessor :filter
@@ -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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210203"
25
+ REVISION = "20210205"
26
26
  end
27
27
  end
28
28
  end
@@ -502,30 +502,6 @@ module Google
502
502
  include Google::Apis::Core::JsonObjectSupport
503
503
  end
504
504
 
505
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails
506
- class Representation < Google::Apis::Core::JsonRepresentation; end
507
-
508
- include Google::Apis::Core::JsonObjectSupport
509
- end
510
-
511
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse
512
- class Representation < Google::Apis::Core::JsonRepresentation; end
513
-
514
- include Google::Apis::Core::JsonObjectSupport
515
- end
516
-
517
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails
518
- class Representation < Google::Apis::Core::JsonRepresentation; end
519
-
520
- include Google::Apis::Core::JsonObjectSupport
521
- end
522
-
523
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse
524
- class Representation < Google::Apis::Core::JsonRepresentation; end
525
-
526
- include Google::Apis::Core::JsonObjectSupport
527
- end
528
-
529
505
  class GroupOrSegment
530
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
507
 
@@ -1715,42 +1691,6 @@ module Google
1715
1691
  end
1716
1692
  end
1717
1693
 
1718
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails
1719
- # @private
1720
- class Representation < Google::Apis::Core::JsonRepresentation
1721
- property :error_count, :numeric_string => true, as: 'errorCount'
1722
- property :fhir_store, as: 'fhirStore'
1723
- property :resource_count, :numeric_string => true, as: 'resourceCount'
1724
- property :success_count, :numeric_string => true, as: 'successCount'
1725
- end
1726
- end
1727
-
1728
- class GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse
1729
- # @private
1730
- class Representation < Google::Apis::Core::JsonRepresentation
1731
- property :fhir_store, as: 'fhirStore'
1732
- property :resource_count, :numeric_string => true, as: 'resourceCount'
1733
- end
1734
- end
1735
-
1736
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails
1737
- # @private
1738
- class Representation < Google::Apis::Core::JsonRepresentation
1739
- property :error_count, :numeric_string => true, as: 'errorCount'
1740
- property :fhir_store, as: 'fhirStore'
1741
- property :input_size, :numeric_string => true, as: 'inputSize'
1742
- property :success_count, :numeric_string => true, as: 'successCount'
1743
- end
1744
- end
1745
-
1746
- class GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse
1747
- # @private
1748
- class Representation < Google::Apis::Core::JsonRepresentation
1749
- property :fhir_store, as: 'fhirStore'
1750
- property :input_size, :numeric_string => true, as: 'inputSize'
1751
- end
1752
- end
1753
-
1754
1694
  class GroupOrSegment
1755
1695
  # @private
1756
1696
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -715,9 +715,28 @@ module Google
715
715
  # @param [String] parent
716
716
  # Name of the dataset.
717
717
  # @param [String] filter
718
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
719
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
720
- # on labels is supported, for example `labels.key=value`.
718
+ # Restricts stores returned to those matching a filter. The following syntax is
719
+ # available: * A string field value can be written as text inside quotation
720
+ # marks, for example `"query text"`. The only valid relational operation for
721
+ # text fields is equality (`=`), where text is searched within the field, rather
722
+ # than having the field be equal to the text. For example, `"Comment = great"`
723
+ # returns messages with `great` in the comment field. * A number field value can
724
+ # be written as an integer, a decimal, or an exponential. The valid relational
725
+ # operators for number fields are the equality operator (`=`), along with the
726
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
727
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
728
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
729
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
730
+ # required for one-digit months and days. The valid relational operators for
731
+ # date fields are the equality operator (`=`) , along with the less than/greater
732
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
733
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
734
+ # Multiple field query expressions can be combined in one query by adding `AND`
735
+ # or `OR` operators between the expressions. If a boolean operator appears
736
+ # within a quoted string, it is not treated as special, it's just another part
737
+ # of the character string to be matched. You can prepend the `NOT` operator to
738
+ # an expression to negate it. Only filtering on labels is supported, for example
739
+ # `labels.key=value`.
721
740
  # @param [Fixnum] page_size
722
741
  # Limit on the number of Annotation stores to return in a single response. If
723
742
  # not specified, 100 is used. May not be larger than 1000.
@@ -1270,9 +1289,28 @@ module Google
1270
1289
  # @param [String] parent
1271
1290
  # Required. Name of the dataset.
1272
1291
  # @param [String] filter
1273
- # Restricts the stores returned to those matching a filter. Syntax: https://
1274
- # cloud.google.com/appengine/docs/standard/python/search/query_strings. Only
1275
- # filtering on labels is supported. For example, `labels.key=value`.
1292
+ # Restricts the stores returned to those matching a filter. The following syntax
1293
+ # is available: * A string field value can be written as text inside quotation
1294
+ # marks, for example `"query text"`. The only valid relational operation for
1295
+ # text fields is equality (`=`), where text is searched within the field, rather
1296
+ # than having the field be equal to the text. For example, `"Comment = great"`
1297
+ # returns messages with `great` in the comment field. * A number field value can
1298
+ # be written as an integer, a decimal, or an exponential. The valid relational
1299
+ # operators for number fields are the equality operator (`=`), along with the
1300
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1301
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1302
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
1303
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
1304
+ # required for one-digit months and days. The valid relational operators for
1305
+ # date fields are the equality operator (`=`) , along with the less than/greater
1306
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
1307
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
1308
+ # Multiple field query expressions can be combined in one query by adding `AND`
1309
+ # or `OR` operators between the expressions. If a boolean operator appears
1310
+ # within a quoted string, it is not treated as special, it's just another part
1311
+ # of the character string to be matched. You can prepend the `NOT` operator to
1312
+ # an expression to negate it. Only filtering on labels is supported. For example,
1313
+ # `labels.key=value`.
1276
1314
  # @param [Fixnum] page_size
1277
1315
  # Limit on the number of Consent stores to return in a single response. If not
1278
1316
  # specified, 100 is used. May not be larger than 1000.
@@ -1578,9 +1616,28 @@ module Google
1578
1616
  # @param [String] parent
1579
1617
  # Required. Name of the Consent store to retrieve attribute definitions from.
1580
1618
  # @param [String] filter
1581
- # Restricts the attributes returned to those matching a filter. Syntax: https://
1582
- # cloud.google.com/appengine/docs/standard/python/search/query_strings. The only
1583
- # field available for filtering is `category`.
1619
+ # Restricts the attributes returned to those matching a filter. The following
1620
+ # syntax is available: * A string field value can be written as text inside
1621
+ # quotation marks, for example `"query text"`. The only valid relational
1622
+ # operation for text fields is equality (`=`), where text is searched within the
1623
+ # field, rather than having the field be equal to the text. For example, `"
1624
+ # Comment = great"` returns messages with `great` in the comment field. * A
1625
+ # number field value can be written as an integer, a decimal, or an exponential.
1626
+ # The valid relational operators for number fields are the equality operator (`=`
1627
+ # ), along with the less than/greater than operators (`<`, `<=`, `>`, `>=`).
1628
+ # Note that there is no inequality (`!=`) operator. You can prepend the `NOT`
1629
+ # operator to an expression to negate it. * A date field value must be written
1630
+ # in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format.
1631
+ # Leading zeros are required for one-digit months and days. The valid relational
1632
+ # operators for date fields are the equality operator (`=`) , along with the
1633
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1634
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1635
+ # expression to negate it. * Multiple field query expressions can be combined in
1636
+ # one query by adding `AND` or `OR` operators between the expressions. If a
1637
+ # boolean operator appears within a quoted string, it is not treated as special,
1638
+ # it's just another part of the character string to be matched. You can prepend
1639
+ # the `NOT` operator to an expression to negate it. The only field available for
1640
+ # filtering is `category`.
1584
1641
  # @param [Fixnum] page_size
1585
1642
  # Limit on the number of attribute definitions to return in a single response.
1586
1643
  # If not specified, 100 is used. May not be larger than 1000.
@@ -1757,9 +1814,29 @@ module Google
1757
1814
  # @param [String] parent
1758
1815
  # Required. Name of the Consent store to retrieve consent artifacts from.
1759
1816
  # @param [String] filter
1760
- # Restricts the artifacts returned to those matching a filter. Syntax: https://
1761
- # cloud.google.com/appengine/docs/standard/python/search/query_strings The
1762
- # fields available for filtering are: - user_id - consent_content_version
1817
+ # Restricts the artifacts returned to those matching a filter. The following
1818
+ # syntax is available: * A string field value can be written as text inside
1819
+ # quotation marks, for example `"query text"`. The only valid relational
1820
+ # operation for text fields is equality (`=`), where text is searched within the
1821
+ # field, rather than having the field be equal to the text. For example, `"
1822
+ # Comment = great"` returns messages with `great` in the comment field. * A
1823
+ # number field value can be written as an integer, a decimal, or an exponential.
1824
+ # The valid relational operators for number fields are the equality operator (`=`
1825
+ # ), along with the less than/greater than operators (`<`, `<=`, `>`, `>=`).
1826
+ # Note that there is no inequality (`!=`) operator. You can prepend the `NOT`
1827
+ # operator to an expression to negate it. * A date field value must be written
1828
+ # in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format.
1829
+ # Leading zeros are required for one-digit months and days. The valid relational
1830
+ # operators for date fields are the equality operator (`=`) , along with the
1831
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1832
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1833
+ # expression to negate it. * Multiple field query expressions can be combined in
1834
+ # one query by adding `AND` or `OR` operators between the expressions. If a
1835
+ # boolean operator appears within a quoted string, it is not treated as special,
1836
+ # it's just another part of the character string to be matched. You can prepend
1837
+ # the `NOT` operator to an expression to negate it. The fields available for
1838
+ # filtering are: - user_id - consent_content_version - metadata. For example, `
1839
+ # Metadata("key")="value"` or `HasMetadata("key")`.
1763
1840
  # @param [Fixnum] page_size
1764
1841
  # Limit on the number of consent artifacts to return in a single response. If
1765
1842
  # not specified, 100 is used. May not be larger than 1000.
@@ -1979,11 +2056,29 @@ module Google
1979
2056
  # @param [String] parent
1980
2057
  # Required. Name of the Consent store to retrieve consents from.
1981
2058
  # @param [String] filter
1982
- # Restricts the consents returned to those matching a filter. Syntax: https://
1983
- # cloud.google.com/appengine/docs/standard/python/search/query_strings The
1984
- # fields available for filtering are: - user_id - consent_artifact - state -
1985
- # revision_create_time - metadata. For example, `Metadata("key")="value"` or `
1986
- # HasMetadata("key")`.
2059
+ # Restricts the consents returned to those matching a filter. The following
2060
+ # syntax is available: * A string field value can be written as text inside
2061
+ # quotation marks, for example `"query text"`. The only valid relational
2062
+ # operation for text fields is equality (`=`), where text is searched within the
2063
+ # field, rather than having the field be equal to the text. For example, `"
2064
+ # Comment = great"` returns messages with `great` in the comment field. * A
2065
+ # number field value can be written as an integer, a decimal, or an exponential.
2066
+ # The valid relational operators for number fields are the equality operator (`=`
2067
+ # ), along with the less than/greater than operators (`<`, `<=`, `>`, `>=`).
2068
+ # Note that there is no inequality (`!=`) operator. You can prepend the `NOT`
2069
+ # operator to an expression to negate it. * A date field value must be written
2070
+ # in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format.
2071
+ # Leading zeros are required for one-digit months and days. The valid relational
2072
+ # operators for date fields are the equality operator (`=`) , along with the
2073
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2074
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2075
+ # expression to negate it. * Multiple field query expressions can be combined in
2076
+ # one query by adding `AND` or `OR` operators between the expressions. If a
2077
+ # boolean operator appears within a quoted string, it is not treated as special,
2078
+ # it's just another part of the character string to be matched. You can prepend
2079
+ # the `NOT` operator to an expression to negate it. The fields available for
2080
+ # filtering are: - user_id - consent_artifact - state - revision_create_time -
2081
+ # metadata. For example, `Metadata("key")="value"` or `HasMetadata("key")`.
1987
2082
  # @param [Fixnum] page_size
1988
2083
  # Limit on the number of consents to return in a single response. If not
1989
2084
  # specified, 100 is used. May not be larger than 1000.
@@ -2023,10 +2118,28 @@ module Google
2023
2118
  # @param [String] name
2024
2119
  # Required. The resource name of the consent to retrieve revisions for.
2025
2120
  # @param [String] filter
2026
- # Restricts the revisions returned to those matching a filter. Syntax: https://
2027
- # cloud.google.com/appengine/docs/standard/python/search/query_strings. Fields/
2028
- # functions available for filtering are: - user_id - consent_artifact - state -
2029
- # revision_create_time
2121
+ # Restricts the revisions returned to those matching a filter. The following
2122
+ # syntax is available: * A string field value can be written as text inside
2123
+ # quotation marks, for example `"query text"`. The only valid relational
2124
+ # operation for text fields is equality (`=`), where text is searched within the
2125
+ # field, rather than having the field be equal to the text. For example, `"
2126
+ # Comment = great"` returns messages with `great` in the comment field. * A
2127
+ # number field value can be written as an integer, a decimal, or an exponential.
2128
+ # The valid relational operators for number fields are the equality operator (`=`
2129
+ # ), along with the less than/greater than operators (`<`, `<=`, `>`, `>=`).
2130
+ # Note that there is no inequality (`!=`) operator. You can prepend the `NOT`
2131
+ # operator to an expression to negate it. * A date field value must be written
2132
+ # in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format.
2133
+ # Leading zeros are required for one-digit months and days. The valid relational
2134
+ # operators for date fields are the equality operator (`=`) , along with the
2135
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2136
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2137
+ # expression to negate it. * Multiple field query expressions can be combined in
2138
+ # one query by adding `AND` or `OR` operators between the expressions. If a
2139
+ # boolean operator appears within a quoted string, it is not treated as special,
2140
+ # it's just another part of the character string to be matched. You can prepend
2141
+ # the `NOT` operator to an expression to negate it. Fields/functions available
2142
+ # for filtering are: - user_id - consent_artifact - state - revision_create_time
2030
2143
  # @param [Fixnum] page_size
2031
2144
  # Limit on the number of revisions to return in a single response. If not
2032
2145
  # specified, 100 is used. May not be larger than 1000.
@@ -2316,10 +2429,28 @@ module Google
2316
2429
  # @param [String] parent
2317
2430
  # Required. Name of the Consent store to retrieve user data mappings from.
2318
2431
  # @param [String] filter
2319
- # Restricts the user data mappings returned to those matching a filter. Syntax:
2320
- # https://cloud.google.com/appengine/docs/standard/python/search/query_strings
2321
- # The fields available for filtering are: - data_id - user_id - archived -
2322
- # archive_time
2432
+ # Restricts the user data mappings returned to those matching a filter. The
2433
+ # following syntax is available: * A string field value can be written as text
2434
+ # inside quotation marks, for example `"query text"`. The only valid relational
2435
+ # operation for text fields is equality (`=`), where text is searched within the
2436
+ # field, rather than having the field be equal to the text. For example, `"
2437
+ # Comment = great"` returns messages with `great` in the comment field. * A
2438
+ # number field value can be written as an integer, a decimal, or an exponential.
2439
+ # The valid relational operators for number fields are the equality operator (`=`
2440
+ # ), along with the less than/greater than operators (`<`, `<=`, `>`, `>=`).
2441
+ # Note that there is no inequality (`!=`) operator. You can prepend the `NOT`
2442
+ # operator to an expression to negate it. * A date field value must be written
2443
+ # in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format.
2444
+ # Leading zeros are required for one-digit months and days. The valid relational
2445
+ # operators for date fields are the equality operator (`=`) , along with the
2446
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2447
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2448
+ # expression to negate it. * Multiple field query expressions can be combined in
2449
+ # one query by adding `AND` or `OR` operators between the expressions. If a
2450
+ # boolean operator appears within a quoted string, it is not treated as special,
2451
+ # it's just another part of the character string to be matched. You can prepend
2452
+ # the `NOT` operator to an expression to negate it. The fields available for
2453
+ # filtering are: - data_id - user_id - archived - archive_time
2323
2454
  # @param [Fixnum] page_size
2324
2455
  # Limit on the number of user data mappings to return in a single response. If
2325
2456
  # not specified, 100 is used. May not be larger than 1000.
@@ -2654,9 +2785,28 @@ module Google
2654
2785
  # @param [String] parent
2655
2786
  # Name of the dataset.
2656
2787
  # @param [String] filter
2657
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
2658
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
2659
- # on labels is supported. For example, `labels.key=value`.
2788
+ # Restricts stores returned to those matching a filter. The following syntax is
2789
+ # available: * A string field value can be written as text inside quotation
2790
+ # marks, for example `"query text"`. The only valid relational operation for
2791
+ # text fields is equality (`=`), where text is searched within the field, rather
2792
+ # than having the field be equal to the text. For example, `"Comment = great"`
2793
+ # returns messages with `great` in the comment field. * A number field value can
2794
+ # be written as an integer, a decimal, or an exponential. The valid relational
2795
+ # operators for number fields are the equality operator (`=`), along with the
2796
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2797
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2798
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
2799
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
2800
+ # required for one-digit months and days. The valid relational operators for
2801
+ # date fields are the equality operator (`=`) , along with the less than/greater
2802
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
2803
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
2804
+ # Multiple field query expressions can be combined in one query by adding `AND`
2805
+ # or `OR` operators between the expressions. If a boolean operator appears
2806
+ # within a quoted string, it is not treated as special, it's just another part
2807
+ # of the character string to be matched. You can prepend the `NOT` operator to
2808
+ # an expression to negate it. Only filtering on labels is supported. For example,
2809
+ # `labels.key=value`.
2660
2810
  # @param [Fixnum] page_size
2661
2811
  # Limit on the number of DICOM stores to return in a single response. If not
2662
2812
  # specified, 100 is used. May not be larger than 1000.
@@ -3986,9 +4136,28 @@ module Google
3986
4136
  # @param [String] parent
3987
4137
  # Name of the dataset.
3988
4138
  # @param [String] filter
3989
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
3990
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
3991
- # on labels is supported, for example `labels.key=value`.
4139
+ # Restricts stores returned to those matching a filter. The following syntax is
4140
+ # available: * A string field value can be written as text inside quotation
4141
+ # marks, for example `"query text"`. The only valid relational operation for
4142
+ # text fields is equality (`=`), where text is searched within the field, rather
4143
+ # than having the field be equal to the text. For example, `"Comment = great"`
4144
+ # returns messages with `great` in the comment field. * A number field value can
4145
+ # be written as an integer, a decimal, or an exponential. The valid relational
4146
+ # operators for number fields are the equality operator (`=`), along with the
4147
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
4148
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
4149
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
4150
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
4151
+ # required for one-digit months and days. The valid relational operators for
4152
+ # date fields are the equality operator (`=`) , along with the less than/greater
4153
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
4154
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
4155
+ # Multiple field query expressions can be combined in one query by adding `AND`
4156
+ # or `OR` operators between the expressions. If a boolean operator appears
4157
+ # within a quoted string, it is not treated as special, it's just another part
4158
+ # of the character string to be matched. You can prepend the `NOT` operator to
4159
+ # an expression to negate it. Only filtering on labels is supported, for example
4160
+ # `labels.key=value`.
3992
4161
  # @param [Fixnum] page_size
3993
4162
  # Limit on the number of FHIR stores to return in a single response. If not
3994
4163
  # specified, 100 is used. May not be larger than 1000.
@@ -5497,9 +5666,28 @@ module Google
5497
5666
  # @param [String] parent
5498
5667
  # Name of the dataset.
5499
5668
  # @param [String] filter
5500
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
5501
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
5502
- # on labels is supported. For example, `labels.key=value`.
5669
+ # Restricts stores returned to those matching a filter. The following syntax is
5670
+ # available: * A string field value can be written as text inside quotation
5671
+ # marks, for example `"query text"`. The only valid relational operation for
5672
+ # text fields is equality (`=`), where text is searched within the field, rather
5673
+ # than having the field be equal to the text. For example, `"Comment = great"`
5674
+ # returns messages with `great` in the comment field. * A number field value can
5675
+ # be written as an integer, a decimal, or an exponential. The valid relational
5676
+ # operators for number fields are the equality operator (`=`), along with the
5677
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
5678
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
5679
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
5680
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
5681
+ # required for one-digit months and days. The valid relational operators for
5682
+ # date fields are the equality operator (`=`) , along with the less than/greater
5683
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
5684
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
5685
+ # Multiple field query expressions can be combined in one query by adding `AND`
5686
+ # or `OR` operators between the expressions. If a boolean operator appears
5687
+ # within a quoted string, it is not treated as special, it's just another part
5688
+ # of the character string to be matched. You can prepend the `NOT` operator to
5689
+ # an expression to negate it. Only filtering on labels is supported. For example,
5690
+ # `labels.key=value`.
5503
5691
  # @param [Fixnum] page_size
5504
5692
  # Limit on the number of HL7v2 stores to return in a single response. If not
5505
5693
  # specified, 100 is used. May not be larger than 1000.
@@ -5838,22 +6026,40 @@ module Google
5838
6026
  # @param [String] parent
5839
6027
  # Name of the HL7v2 store to retrieve messages from.
5840
6028
  # @param [String] filter
5841
- # Restricts messages returned to those matching a filter. Syntax: https://cloud.
5842
- # google.com/appengine/docs/standard/python/search/query_strings The following
5843
- # fields and functions are available for filtering: * `message_type`, from the
5844
- # MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date` or `
5845
- # sendDate`, the YYYY-MM-DD date the message was sent in the dataset's time_zone,
5846
- # from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`
5847
- # , the timestamp when the message was sent, using the RFC3339 time format for
5848
- # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
5849
- # 00:00-05:00"`. * `send_facility`, the care center that the message came from,
5850
- # from the MSH-4 segment. For example, `send_facility = "ABC"`. * `PatientId(
5851
- # value, type)`, which matches if the message lists a patient having an ID of
5852
- # the given value and type in the PID-2, PID-3, or PID-4 segments. For example, `
5853
- # PatientId("123456", "MRN")`. * `labels.x`, a string value of the label with
5854
- # key `x` as set using the Message.labels map. For example, `labels."priority"="
5855
- # high"`. The operator `:*` can be used to assert the existence of a label. For
5856
- # example, `labels."priority":*`.
6029
+ # Restricts messages returned to those matching a filter. The following syntax
6030
+ # is available: * A string field value can be written as text inside quotation
6031
+ # marks, for example `"query text"`. The only valid relational operation for
6032
+ # text fields is equality (`=`), where text is searched within the field, rather
6033
+ # than having the field be equal to the text. For example, `"Comment = great"`
6034
+ # returns messages with `great` in the comment field. * A number field value can
6035
+ # be written as an integer, a decimal, or an exponential. The valid relational
6036
+ # operators for number fields are the equality operator (`=`), along with the
6037
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
6038
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
6039
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
6040
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
6041
+ # required for one-digit months and days. The valid relational operators for
6042
+ # date fields are the equality operator (`=`) , along with the less than/greater
6043
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
6044
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
6045
+ # Multiple field query expressions can be combined in one query by adding `AND`
6046
+ # or `OR` operators between the expressions. If a boolean operator appears
6047
+ # within a quoted string, it is not treated as special, it's just another part
6048
+ # of the character string to be matched. You can prepend the `NOT` operator to
6049
+ # an expression to negate it. Fields/functions available for filtering are: * `
6050
+ # message_type`, from the MSH-9.1 field. For example, `NOT message_type = "ADT"`.
6051
+ # * `send_date` or `sendDate`, the YYYY-MM-DD date the message was sent in the
6052
+ # dataset's time_zone, from the MSH-7 segment. For example, `send_date < "2017-
6053
+ # 01-02"`. * `send_time`, the timestamp when the message was sent, using the
6054
+ # RFC3339 time format for comparisons, from the MSH-7 segment. For example, `
6055
+ # send_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
6056
+ # that the message came from, from the MSH-4 segment. For example, `
6057
+ # send_facility = "ABC"`. * `PatientId(value, type)`, which matches if the
6058
+ # message lists a patient having an ID of the given value and type in the PID-2,
6059
+ # PID-3, or PID-4 segments. For example, `PatientId("123456", "MRN")`. * `labels.
6060
+ # x`, a string value of the label with key `x` as set using the Message.labels
6061
+ # map. For example, `labels."priority"="high"`. The operator `:*` can be used to
6062
+ # assert the existence of a label. For example, `labels."priority":*`.
5857
6063
  # @param [String] order_by
5858
6064
  # Orders messages returned by the specified order_by clause. Syntax: https://
5859
6065
  # cloud.google.com/apis/design/design_patterns#sorting_order Fields available
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.2.0
4
+ version: 0.3.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-02-08 00:00:00.000000000 Z
11
+ date: 2021-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []