google-apis-healthcare_v1 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: 882ca8b6c1b528bea416ee217eccaed9044075d981943d62300091ef021f5d7b
4
- data.tar.gz: b00068b7de55daec0c0b73905fa8a16f93635eaf3ddcd97e59c2ecb17acfbd22
3
+ metadata.gz: f2112a721d8dbd19788e6fc189e4092140fa1fe20d313f5a3b9d8ae45f29cc85
4
+ data.tar.gz: c37c73cee2ffb42bdc4745093820c9a1393d29769278dec9678f426b3f62341d
5
5
  SHA512:
6
- metadata.gz: 705943a8d282166cb2af839dabe8965aa6b09fd3b4bbb5e25060fd5bc528413da00d1a2a8df5f6779f0888613d3b5064c74e6c1f88e7956f1daf393e28f4737d
7
- data.tar.gz: 604d81c5e22cde796ec9fa6928fbf1b28f8c66131448680d2694d53c9ee7af1eb7475c79e7db544cda477106aeb777ecd8f4bc0e4e2da0e6066ec16d0ed015e9
6
+ metadata.gz: 2259a399f0b787adb36d3920ad1b9d0bc6042a3720834a67f29f86db5901ecffd5ec2a05aa0af6539a57334033f18304f73050a6f1bf0b83802a0bbbafe19a0f
7
+ data.tar.gz: feb8924d5c6993b8e5f73f4383148e8c69526f3b47c08003ba0f889a91d547a4e5e101b7f24dc36b4cf22e6566d092ae4bf27d2e2c654fa0ac842ad757b4394a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
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
@@ -1130,11 +1130,30 @@ module Google
1130
1130
  include Google::Apis::Core::Hashable
1131
1131
 
1132
1132
  # Restricts notifications sent for messages matching a filter. If this is empty,
1133
- # all messages are matched. Syntax: https://cloud.google.com/appengine/docs/
1134
- # standard/python/search/query_strings The following fields and functions are
1135
- # available for filtering: * `message_type`, from the MSH-9.1 field. For example,
1136
- # `NOT message_type = "ADT"`. * `send_date` or `sendDate`, the YYYY-MM-DD date
1137
- # the message was sent in the dataset's time_zone, from the MSH-7 segment. For
1133
+ # all messages are matched. The following syntax is available: * A string field
1134
+ # value can be written as text inside quotation marks, for example `"query text"`
1135
+ # . The only valid relational operation for text fields is equality (`=`), where
1136
+ # text is searched within the field, rather than having the field be equal to
1137
+ # the text. For example, `"Comment = great"` returns messages with `great` in
1138
+ # the comment field. * A number field value can be written as an integer, a
1139
+ # decimal, or an exponential. The valid relational operators for number fields
1140
+ # are the equality operator (`=`), along with the less than/greater than
1141
+ # operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
1142
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
1143
+ # A date field value must be written in `yyyy-mm-dd` form. Fields with date and
1144
+ # time use the RFC3339 time format. Leading zeros are required for one-digit
1145
+ # months and days. The valid relational operators for date fields are the
1146
+ # equality operator (`=`) , along with the less than/greater than operators (`<`,
1147
+ # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
1148
+ # prepend the `NOT` operator to an expression to negate it. * Multiple field
1149
+ # query expressions can be combined in one query by adding `AND` or `OR`
1150
+ # operators between the expressions. If a boolean operator appears within a
1151
+ # quoted string, it is not treated as special, it's just another part of the
1152
+ # character string to be matched. You can prepend the `NOT` operator to an
1153
+ # expression to negate it. The following fields and functions are available for
1154
+ # filtering: * `message_type`, from the MSH-9.1 field. For example, `NOT
1155
+ # message_type = "ADT"`. * `send_date` or `sendDate`, the YYYY-MM-DD date the
1156
+ # message was sent in the dataset's time_zone, from the MSH-7 segment. For
1138
1157
  # example, `send_date < "2017-01-02"`. * `send_time`, the timestamp when the
1139
1158
  # message was sent, using the RFC3339 time format for comparisons, from the MSH-
1140
1159
  # 7 segment. For example, `send_time < "2017-01-02T00:00:00-05:00"`. * `
@@ -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.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
@@ -829,9 +829,28 @@ module Google
829
829
  # @param [String] parent
830
830
  # Name of the dataset.
831
831
  # @param [String] filter
832
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
833
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
834
- # on labels is supported. For example, `labels.key=value`.
832
+ # Restricts stores returned to those matching a filter. The following syntax is
833
+ # available: * A string field value can be written as text inside quotation
834
+ # marks, for example `"query text"`. The only valid relational operation for
835
+ # text fields is equality (`=`), where text is searched within the field, rather
836
+ # than having the field be equal to the text. For example, `"Comment = great"`
837
+ # returns messages with `great` in the comment field. * A number field value can
838
+ # be written as an integer, a decimal, or an exponential. The valid relational
839
+ # operators for number fields are the equality operator (`=`), along with the
840
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
841
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
842
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
843
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
844
+ # required for one-digit months and days. The valid relational operators for
845
+ # date fields are the equality operator (`=`) , along with the less than/greater
846
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
847
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
848
+ # Multiple field query expressions can be combined in one query by adding `AND`
849
+ # or `OR` operators between the expressions. If a boolean operator appears
850
+ # within a quoted string, it is not treated as special, it's just another part
851
+ # of the character string to be matched. You can prepend the `NOT` operator to
852
+ # an expression to negate it. Only filtering on labels is supported. For example,
853
+ # `labels.key=value`.
835
854
  # @param [Fixnum] page_size
836
855
  # Limit on the number of DICOM stores to return in a single response. If not
837
856
  # specified, 100 is used. May not be larger than 1000.
@@ -2159,9 +2178,28 @@ module Google
2159
2178
  # @param [String] parent
2160
2179
  # Name of the dataset.
2161
2180
  # @param [String] filter
2162
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
2163
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
2164
- # on labels is supported, for example `labels.key=value`.
2181
+ # Restricts stores returned to those matching a filter. The following syntax is
2182
+ # available: * A string field value can be written as text inside quotation
2183
+ # marks, for example `"query text"`. The only valid relational operation for
2184
+ # text fields is equality (`=`), where text is searched within the field, rather
2185
+ # than having the field be equal to the text. For example, `"Comment = great"`
2186
+ # returns messages with `great` in the comment field. * A number field value can
2187
+ # be written as an integer, a decimal, or an exponential. The valid relational
2188
+ # operators for number fields are the equality operator (`=`), along with the
2189
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2190
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2191
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
2192
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
2193
+ # required for one-digit months and days. The valid relational operators for
2194
+ # date fields are the equality operator (`=`) , along with the less than/greater
2195
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
2196
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
2197
+ # Multiple field query expressions can be combined in one query by adding `AND`
2198
+ # or `OR` operators between the expressions. If a boolean operator appears
2199
+ # within a quoted string, it is not treated as special, it's just another part
2200
+ # of the character string to be matched. You can prepend the `NOT` operator to
2201
+ # an expression to negate it. Only filtering on labels is supported, for example
2202
+ # `labels.key=value`.
2165
2203
  # @param [Fixnum] page_size
2166
2204
  # Limit on the number of FHIR stores to return in a single response. If not
2167
2205
  # specified, 100 is used. May not be larger than 1000.
@@ -3162,9 +3200,28 @@ module Google
3162
3200
  # @param [String] parent
3163
3201
  # Name of the dataset.
3164
3202
  # @param [String] filter
3165
- # Restricts stores returned to those matching a filter. Syntax: https://cloud.
3166
- # google.com/appengine/docs/standard/python/search/query_strings Only filtering
3167
- # on labels is supported. For example, `labels.key=value`.
3203
+ # Restricts stores returned to those matching a filter. The following syntax is
3204
+ # available: * A string field value can be written as text inside quotation
3205
+ # marks, for example `"query text"`. The only valid relational operation for
3206
+ # text fields is equality (`=`), where text is searched within the field, rather
3207
+ # than having the field be equal to the text. For example, `"Comment = great"`
3208
+ # returns messages with `great` in the comment field. * A number field value can
3209
+ # be written as an integer, a decimal, or an exponential. The valid relational
3210
+ # operators for number fields are the equality operator (`=`), along with the
3211
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
3212
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
3213
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
3214
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
3215
+ # required for one-digit months and days. The valid relational operators for
3216
+ # date fields are the equality operator (`=`) , along with the less than/greater
3217
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
3218
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
3219
+ # Multiple field query expressions can be combined in one query by adding `AND`
3220
+ # or `OR` operators between the expressions. If a boolean operator appears
3221
+ # within a quoted string, it is not treated as special, it's just another part
3222
+ # of the character string to be matched. You can prepend the `NOT` operator to
3223
+ # an expression to negate it. Only filtering on labels is supported. For example,
3224
+ # `labels.key=value`.
3168
3225
  # @param [Fixnum] page_size
3169
3226
  # Limit on the number of HL7v2 stores to return in a single response. If not
3170
3227
  # specified, 100 is used. May not be larger than 1000.
@@ -3462,22 +3519,40 @@ module Google
3462
3519
  # @param [String] parent
3463
3520
  # Name of the HL7v2 store to retrieve messages from.
3464
3521
  # @param [String] filter
3465
- # Restricts messages returned to those matching a filter. Syntax: https://cloud.
3466
- # google.com/appengine/docs/standard/python/search/query_strings Fields/
3467
- # functions available for filtering are: * `message_type`, from the MSH-9.1
3468
- # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
3469
- # the YYYY-MM-DD date the message was sent in the dataset's time_zone, from the
3470
- # MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
3471
- # timestamp when the message was sent, using the RFC3339 time format for
3472
- # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
3473
- # 00:00-05:00"`. * `send_facility`, the care center that the message came from,
3474
- # from the MSH-4 segment. For example, `send_facility = "ABC"`. * `PatientId(
3475
- # value, type)`, which matches if the message lists a patient having an ID of
3476
- # the given value and type in the PID-2, PID-3, or PID-4 segments. For example, `
3477
- # PatientId("123456", "MRN")`. * `labels.x`, a string value of the label with
3478
- # key `x` as set using the Message.labels map. For example, `labels."priority"="
3479
- # high"`. The operator `:*` can be used to assert the existence of a label. For
3480
- # example, `labels."priority":*`.
3522
+ # Restricts messages returned to those matching a filter. The following syntax
3523
+ # is available: * A string field value can be written as text inside quotation
3524
+ # marks, for example `"query text"`. The only valid relational operation for
3525
+ # text fields is equality (`=`), where text is searched within the field, rather
3526
+ # than having the field be equal to the text. For example, `"Comment = great"`
3527
+ # returns messages with `great` in the comment field. * A number field value can
3528
+ # be written as an integer, a decimal, or an exponential. The valid relational
3529
+ # operators for number fields are the equality operator (`=`), along with the
3530
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
3531
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
3532
+ # expression to negate it. * A date field value must be written in `yyyy-mm-dd`
3533
+ # form. Fields with date and time use the RFC3339 time format. Leading zeros are
3534
+ # required for one-digit months and days. The valid relational operators for
3535
+ # date fields are the equality operator (`=`) , along with the less than/greater
3536
+ # than operators (`<`, `<=`, `>`, `>=`). Note that there is no inequality (`!=`)
3537
+ # operator. You can prepend the `NOT` operator to an expression to negate it. *
3538
+ # Multiple field query expressions can be combined in one query by adding `AND`
3539
+ # or `OR` operators between the expressions. If a boolean operator appears
3540
+ # within a quoted string, it is not treated as special, it's just another part
3541
+ # of the character string to be matched. You can prepend the `NOT` operator to
3542
+ # an expression to negate it. Fields/functions available for filtering are: * `
3543
+ # message_type`, from the MSH-9.1 field. For example, `NOT message_type = "ADT"`.
3544
+ # * `send_date` or `sendDate`, the YYYY-MM-DD date the message was sent in the
3545
+ # dataset's time_zone, from the MSH-7 segment. For example, `send_date < "2017-
3546
+ # 01-02"`. * `send_time`, the timestamp when the message was sent, using the
3547
+ # RFC3339 time format for comparisons, from the MSH-7 segment. For example, `
3548
+ # send_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
3549
+ # that the message came from, from the MSH-4 segment. For example, `
3550
+ # send_facility = "ABC"`. * `PatientId(value, type)`, which matches if the
3551
+ # message lists a patient having an ID of the given value and type in the PID-2,
3552
+ # PID-3, or PID-4 segments. For example, `PatientId("123456", "MRN")`. * `labels.
3553
+ # x`, a string value of the label with key `x` as set using the Message.labels
3554
+ # map. For example, `labels."priority"="high"`. The operator `:*` can be used to
3555
+ # assert the existence of a label. For example, `labels."priority":*`.
3481
3556
  # @param [String] order_by
3482
3557
  # Orders messages returned by the specified order_by clause. Syntax: https://
3483
3558
  # 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_v1
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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1
57
57
  post_install_message:
58
58
  rdoc_options: []