Skip to content

Commit

Permalink
fix(healthcare): update the API
Browse files Browse the repository at this point in the history
#### healthcare:v1beta1

The following keys were changed:
- schemas.DateShiftConfig.properties.cryptoKey.description
- schemas.DateShiftConfig.properties.kmsWrapped.description
- schemas.FhirStore.properties.notificationConfig.description

#### healthcare:v1

The following keys were changed:
- schemas.DateShiftConfig.properties.cryptoKey.description
- schemas.DateShiftConfig.properties.kmsWrapped.description
- schemas.TextConfig.properties.transformations.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent 454caaf commit fa9914f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions discovery/healthcare-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4053,7 +4053,7 @@
}
}
},
"revision": "20221122",
"revision": "20230126",
"rootUrl": "https://healthcare.googleapis.com/",
"schemas": {
"ActivateConsentRequest": {
Expand Down Expand Up @@ -4583,13 +4583,13 @@
"id": "DateShiftConfig",
"properties": {
"cryptoKey": {
"description": "An AES 128/192/256 bit key. Causes the shift to be computed based on this key and the patient ID. A default key is generated for each de-identification operation and is used when neither `crypto_key` nor `kms_wrapped` is specified. Must not be set if `kms_wrapped` is set.",
"description": "An AES 128/192/256 bit key. The date shift is computed based on this key and the patient ID. If the patient ID is empty for a DICOM resource, the date shift is computed based on this key and the study instance UID. If `crypto_key` is not set, then `kms_wrapped` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `kms_wrapped` is set.",
"format": "byte",
"type": "string"
},
"kmsWrapped": {
"$ref": "KmsWrappedCryptoKey",
"description": "KMS wrapped key. Must not be set if `crypto_key` is set."
"description": "KMS wrapped key. If `kms_wrapped` is not set, then `crypto_key` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `crypto_key` is set."
}
},
"type": "object"
Expand Down Expand Up @@ -6699,7 +6699,7 @@
"id": "TextConfig",
"properties": {
"transformations": {
"description": "The transformations to apply to the detected data.",
"description": "The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.",
"items": {
"$ref": "InfoTypeTransformation"
},
Expand Down
8 changes: 4 additions & 4 deletions discovery/healthcare-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4865,7 +4865,7 @@
}
}
},
"revision": "20221122",
"revision": "20230126",
"rootUrl": "https://healthcare.googleapis.com/",
"schemas": {
"Action": {
Expand Down Expand Up @@ -5616,13 +5616,13 @@
"id": "DateShiftConfig",
"properties": {
"cryptoKey": {
"description": "An AES 128/192/256 bit key. Causes the shift to be computed based on this key and the patient ID. A default key is generated for each de-identification operation and is used when neither `crypto_key` nor `kms_wrapped` is specified. Must not be set if `kms_wrapped` is set.",
"description": "An AES 128/192/256 bit key. The date shift is computed based on this key and the patient ID. If the patient ID is empty for a DICOM resource, the date shift is computed based on this key and the study instance UID. If `crypto_key` is not set, then `kms_wrapped` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `kms_wrapped` is set.",
"format": "byte",
"type": "string"
},
"kmsWrapped": {
"$ref": "KmsWrappedCryptoKey",
"description": "KMS wrapped key. Must not be set if `crypto_key` is set."
"description": "KMS wrapped key. If `kms_wrapped` is not set, then `crypto_key` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `crypto_key` is set."
}
},
"type": "object"
Expand Down Expand Up @@ -6374,7 +6374,7 @@
},
"notificationConfig": {
"$ref": "NotificationConfig",
"description": "If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\"."
"description": "If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\". Deprecated. Use `notification_configs` instead."
},
"notificationConfigs": {
"description": "Specifies where and whether to send notifications upon changes to a Fhir store.",
Expand Down
6 changes: 3 additions & 3 deletions src/apis/healthcare/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -472,11 +472,11 @@ export namespace healthcare_v1 {
*/
export interface Schema$DateShiftConfig {
/**
* An AES 128/192/256 bit key. Causes the shift to be computed based on this key and the patient ID. A default key is generated for each de-identification operation and is used when neither `crypto_key` nor `kms_wrapped` is specified. Must not be set if `kms_wrapped` is set.
* An AES 128/192/256 bit key. The date shift is computed based on this key and the patient ID. If the patient ID is empty for a DICOM resource, the date shift is computed based on this key and the study instance UID. If `crypto_key` is not set, then `kms_wrapped` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `kms_wrapped` is set.
*/
cryptoKey?: string | null;
/**
* KMS wrapped key. Must not be set if `crypto_key` is set.
* KMS wrapped key. If `kms_wrapped` is not set, then `crypto_key` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `crypto_key` is set.
*/
kmsWrapped?: Schema$KmsWrappedCryptoKey;
}
Expand Down Expand Up @@ -1965,7 +1965,7 @@ export namespace healthcare_v1 {
}
export interface Schema$TextConfig {
/**
* The transformations to apply to the detected data.
* The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.
*/
transformations?: Schema$InfoTypeTransformation[];
}
Expand Down
6 changes: 3 additions & 3 deletions src/apis/healthcare/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -645,11 +645,11 @@ export namespace healthcare_v1beta1 {
*/
export interface Schema$DateShiftConfig {
/**
* An AES 128/192/256 bit key. Causes the shift to be computed based on this key and the patient ID. A default key is generated for each de-identification operation and is used when neither `crypto_key` nor `kms_wrapped` is specified. Must not be set if `kms_wrapped` is set.
* An AES 128/192/256 bit key. The date shift is computed based on this key and the patient ID. If the patient ID is empty for a DICOM resource, the date shift is computed based on this key and the study instance UID. If `crypto_key` is not set, then `kms_wrapped` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `kms_wrapped` is set.
*/
cryptoKey?: string | null;
/**
* KMS wrapped key. Must not be set if `crypto_key` is set.
* KMS wrapped key. If `kms_wrapped` is not set, then `crypto_key` is used to calculate the date shift. If neither is set, a default key is generated for each de-identify operation. Must not be set if `crypto_key` is set.
*/
kmsWrapped?: Schema$KmsWrappedCryptoKey;
}
Expand Down Expand Up @@ -1213,7 +1213,7 @@ export namespace healthcare_v1beta1 {
*/
name?: string | null;
/**
* If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource".
* If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". Deprecated. Use `notification_configs` instead.
*/
notificationConfig?: Schema$NotificationConfig;
/**
Expand Down

0 comments on commit fa9914f

Please sign in to comment.