Skip to content

Commit 42e697b

Browse files
chore(healthcare): update the api
#### healthcare:v1 The following keys were deleted: - schemas.Binding.properties.bindingId (Total Keys: 1) The following keys were added: - resources.projects.resources.locations.resources.datasets.resources.consentStores.methods.getIamPolicy (Total Keys: 14) - resources.projects.resources.locations.resources.datasets.resources.consentStores.methods.setIamPolicy (Total Keys: 12) - resources.projects.resources.locations.resources.datasets.resources.consentStores.methods.testIamPermissions (Total Keys: 12) - resources.projects.resources.locations.resources.datasets.resources.fhirStores.resources.fhir.methods.search-type (Total Keys: 15) - schemas.GoogleCloudHealthcareV1FhirBigQueryDestination.properties.writeDisposition (Total Keys: 1) #### healthcare:v1beta1 The following keys were deleted: - schemas.Binding.properties.bindingId (Total Keys: 1) - schemas.GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails (Total Keys: 9) - schemas.GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse (Total Keys: 5) - schemas.GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails (Total Keys: 9) - schemas.GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse (Total Keys: 5) The following keys were added: - resources.projects.resources.locations.resources.datasets.resources.fhirStores.resources.fhir.methods.Resource-validate (Total Keys: 18) - resources.projects.resources.locations.resources.datasets.resources.fhirStores.resources.fhir.methods.search-type (Total Keys: 15) - resources.projects.resources.locations.resources.datasets.resources.hl7V2Stores.resources.messages.methods.batchGet (Total Keys: 16) - schemas.BatchGetMessagesResponse (Total Keys: 4) - schemas.Consent.properties.metadata (Total Keys: 2) - schemas.ExportResourcesRequest.properties._since (Total Keys: 1) - schemas.ExportResourcesRequest.properties._type (Total Keys: 1) - schemas.FhirStore.properties.validationConfig (Total Keys: 1) - schemas.ValidationConfig (Total Keys: 5)
1 parent 6cf2a93 commit 42e697b

File tree

24 files changed

+12702
-11984
lines changed

24 files changed

+12702
-11984
lines changed

docs/dyn/healthcare_v1.projects.locations.datasets.consentStores.html

Lines changed: 258 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/healthcare_v1.projects.locations.datasets.dicomStores.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,6 @@ <h3>Method Details</h3>
394394
],
395395
&quot;bindings&quot;: [ # Associates a list of `members` to a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one member.
396396
{ # Associates `members` with a `role`.
397-
&quot;bindingId&quot;: &quot;A String&quot;,
398397
&quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the members in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
399398
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
400399
&quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.
@@ -462,8 +461,8 @@ <h3>Method Details</h3>
462461

463462
Args:
464463
parent: string, Name of the dataset. (required)
465-
filter: string, Restricts stores returned to those matching a filter. Syntax: https://cloud.google.com/appengine/docs/standard/python/search/query_strings Only filtering on labels is supported. For example, `labels.key=value`.
466-
pageSize: integer, Limit on the number of DICOM stores to return in a single response. If zero the default page size of 100 is used.
464+
filter: string, Restricts stores returned to those matching a filter. The following syntax is available: * A string field value can be written as text inside quotation marks, for example `&quot;query text&quot;`. The only valid relational operation for text fields is equality (`=`), where text is searched within the field, rather than having the field be equal to the text. For example, `&quot;Comment = great&quot;` returns messages with `great` in the comment field. * A number field value can be written as an integer, a decimal, or an exponential. The valid relational operators for number fields are the equality operator (`=`), along with the less than/greater than operators (`&lt;`, `&lt;=`, `&gt;`, `&gt;=`). Note that there is no inequality (`!=`) operator. You can prepend the `NOT` operator to an expression to negate it. * A date field value must be written in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format. Leading zeros are required for one-digit months and days. The valid relational operators for date fields are the equality operator (`=`) , along with the less than/greater than operators (`&lt;`, `&lt;=`, `&gt;`, `&gt;=`). Note that there is no inequality (`!=`) operator. You can prepend the `NOT` operator to an expression to negate it. * Multiple field query expressions can be combined in one query by adding `AND` or `OR` operators between the expressions. If a boolean operator appears within a quoted string, it is not treated as special, it&#x27;s just another part of the character string to be matched. You can prepend the `NOT` operator to an expression to negate it. Only filtering on labels is supported. For example, `labels.key=value`.
465+
pageSize: integer, Limit on the number of DICOM stores to return in a single response. If not specified, 100 is used. May not be larger than 1000.
467466
pageToken: string, The next_page_token value returned from the previous List request, if any.
468467
x__xgafv: string, V1 error format.
469468
Allowed values
@@ -646,7 +645,6 @@ <h3>Method Details</h3>
646645
],
647646
&quot;bindings&quot;: [ # Associates a list of `members` to a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one member.
648647
{ # Associates `members` with a `role`.
649-
&quot;bindingId&quot;: &quot;A String&quot;,
650648
&quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the members in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
651649
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
652650
&quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.
@@ -689,7 +687,6 @@ <h3>Method Details</h3>
689687
],
690688
&quot;bindings&quot;: [ # Associates a list of `members` to a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one member.
691689
{ # Associates `members` with a `role`.
692-
&quot;bindingId&quot;: &quot;A String&quot;,
693690
&quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the members in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
694691
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
695692
&quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.

0 commit comments

Comments
 (0)