@maxim_mazurok/gapi.client.dlp-v2 0.0.20220806 → 0.0.20220826
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.
- package/index.d.ts +93 -13
- package/package.json +1 -1
- package/tests.ts +277 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://dlp.googleapis.com/$discovery/rest?version=v2
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220826
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
|
@@ -24,7 +24,7 @@ declare namespace gapi.client {
|
|
|
24
24
|
|
|
25
25
|
namespace dlp {
|
|
26
26
|
interface GooglePrivacyDlpV2Action {
|
|
27
|
-
/** Create a de-identified copy of the input data.
|
|
27
|
+
/** Create a de-identified copy of the input data. */
|
|
28
28
|
deidentify?: GooglePrivacyDlpV2Deidentify;
|
|
29
29
|
/** Enable email notification for project owners and editors on job's completion/failure. */
|
|
30
30
|
jobNotificationEmails?: any;
|
|
@@ -34,7 +34,7 @@ declare namespace gapi.client {
|
|
|
34
34
|
publishSummaryToCscc?: any;
|
|
35
35
|
/** Enable Stackdriver metric dlp.googleapis.com/finding_count. */
|
|
36
36
|
publishToStackdriver?: any;
|
|
37
|
-
/** Publish a notification to a
|
|
37
|
+
/** Publish a notification to a Pub/Sub topic. */
|
|
38
38
|
pubSub?: GooglePrivacyDlpV2PublishToPubSub;
|
|
39
39
|
/** Save resulting findings in a provided location. */
|
|
40
40
|
saveFindings?: GooglePrivacyDlpV2SaveFindings;
|
|
@@ -42,6 +42,12 @@ declare namespace gapi.client {
|
|
|
42
42
|
// tslint:disable-next-line:no-empty-interface
|
|
43
43
|
interface GooglePrivacyDlpV2ActivateJobTriggerRequest {
|
|
44
44
|
}
|
|
45
|
+
// tslint:disable-next-line:no-empty-interface
|
|
46
|
+
interface GooglePrivacyDlpV2AllInfoTypes {
|
|
47
|
+
}
|
|
48
|
+
// tslint:disable-next-line:no-empty-interface
|
|
49
|
+
interface GooglePrivacyDlpV2AllText {
|
|
50
|
+
}
|
|
45
51
|
interface GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails {
|
|
46
52
|
/** Categorical stats result */
|
|
47
53
|
categoricalStatsResult?: GooglePrivacyDlpV2CategoricalStatsResult;
|
|
@@ -566,8 +572,8 @@ declare namespace gapi.client {
|
|
|
566
572
|
}
|
|
567
573
|
interface GooglePrivacyDlpV2Deidentify {
|
|
568
574
|
/**
|
|
569
|
-
* Required. User settable
|
|
570
|
-
* the input bucket. De-identified files will overwrite files in the output path. Form of: gs://bucket/folder/ or gs://bucket
|
|
575
|
+
* Required. User settable Cloud Storage bucket and folders to store de-identified files. This field must be set for cloud storage deidentification. The output Cloud Storage bucket
|
|
576
|
+
* must be different from the input bucket. De-identified files will overwrite files in the output path. Form of: gs://bucket/folder/ or gs://bucket
|
|
571
577
|
*/
|
|
572
578
|
cloudStorageOutput?: string;
|
|
573
579
|
/**
|
|
@@ -586,6 +592,8 @@ declare namespace gapi.client {
|
|
|
586
592
|
transformationDetailsStorageConfig?: GooglePrivacyDlpV2TransformationDetailsStorageConfig;
|
|
587
593
|
}
|
|
588
594
|
interface GooglePrivacyDlpV2DeidentifyConfig {
|
|
595
|
+
/** Treat the dataset as an image and redact. */
|
|
596
|
+
imageTransformations?: GooglePrivacyDlpV2ImageTransformations;
|
|
589
597
|
/** Treat the dataset as free-form text and apply the same free text transformation everywhere. */
|
|
590
598
|
infoTypeTransformations?: GooglePrivacyDlpV2InfoTypeTransformations;
|
|
591
599
|
/** Treat the dataset as structured. Transformations can be applied to specific locations within structured datasets, such as transforming a column within a table. */
|
|
@@ -945,6 +953,19 @@ declare namespace gapi.client {
|
|
|
945
953
|
/** The color to use when redacting content from an image. If not specified, the default is black. */
|
|
946
954
|
redactionColor?: GooglePrivacyDlpV2Color;
|
|
947
955
|
}
|
|
956
|
+
interface GooglePrivacyDlpV2ImageTransformation {
|
|
957
|
+
/** Apply transformation to all findings not specified in other ImageTransformation's selected_info_types. Only one instance is allowed within the ImageTransformations message. */
|
|
958
|
+
allInfoTypes?: any;
|
|
959
|
+
/** Apply transformation to all text that doesn't match an infoType. Only one instance is allowed within the ImageTransformations message. */
|
|
960
|
+
allText?: any;
|
|
961
|
+
/** The color to use when redacting content from an image. If not specified, the default is black. */
|
|
962
|
+
redactionColor?: GooglePrivacyDlpV2Color;
|
|
963
|
+
/** Apply transformation to the selected info_types. */
|
|
964
|
+
selectedInfoTypes?: GooglePrivacyDlpV2SelectedInfoTypes;
|
|
965
|
+
}
|
|
966
|
+
interface GooglePrivacyDlpV2ImageTransformations {
|
|
967
|
+
transforms?: GooglePrivacyDlpV2ImageTransformation[];
|
|
968
|
+
}
|
|
948
969
|
interface GooglePrivacyDlpV2InfoType {
|
|
949
970
|
/**
|
|
950
971
|
* Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when
|
|
@@ -1555,6 +1576,14 @@ declare namespace gapi.client {
|
|
|
1555
1576
|
/** A condition that when it evaluates to true will result in the record being evaluated to be suppressed from the transformed content. */
|
|
1556
1577
|
condition?: GooglePrivacyDlpV2RecordCondition;
|
|
1557
1578
|
}
|
|
1579
|
+
interface GooglePrivacyDlpV2RecordTransformation {
|
|
1580
|
+
/** Findings container modification timestamp, if applicable. */
|
|
1581
|
+
containerTimestamp?: string;
|
|
1582
|
+
/** Container version, if available ("generation" for Cloud Storage). */
|
|
1583
|
+
containerVersion?: string;
|
|
1584
|
+
/** For record transformations, provide a field. */
|
|
1585
|
+
fieldId?: GooglePrivacyDlpV2FieldId;
|
|
1586
|
+
}
|
|
1558
1587
|
interface GooglePrivacyDlpV2RecordTransformations {
|
|
1559
1588
|
/** Transform the record by applying various field transformations. */
|
|
1560
1589
|
fieldTransformations?: GooglePrivacyDlpV2FieldTransformation[];
|
|
@@ -1675,6 +1704,10 @@ declare namespace gapi.client {
|
|
|
1675
1704
|
*/
|
|
1676
1705
|
recurrencePeriodDuration?: string;
|
|
1677
1706
|
}
|
|
1707
|
+
interface GooglePrivacyDlpV2SelectedInfoTypes {
|
|
1708
|
+
/** Required. InfoTypes to apply the transformation to. Required. Provided InfoType must be unique within the ImageTransformations message. */
|
|
1709
|
+
infoTypes?: GooglePrivacyDlpV2InfoType[];
|
|
1710
|
+
}
|
|
1678
1711
|
interface GooglePrivacyDlpV2SensitivityScore {
|
|
1679
1712
|
/** The score applied to the resource. */
|
|
1680
1713
|
score?: string;
|
|
@@ -1899,6 +1932,40 @@ declare namespace gapi.client {
|
|
|
1899
1932
|
*/
|
|
1900
1933
|
structuredDeidentifyTemplate?: string;
|
|
1901
1934
|
}
|
|
1935
|
+
interface GooglePrivacyDlpV2TransformationDescription {
|
|
1936
|
+
/**
|
|
1937
|
+
* A human-readable string representation of the `RecordCondition` corresponding to this transformation. Set if a `RecordCondition` was used to determine whether or not to apply this
|
|
1938
|
+
* transformation. Examples: * (age_field > 85) * (age_field <= 18) * (zip_field exists) * (zip_field == 01234) && (city_field != "Springville") * (zip_field == 01234) && (age_field <=
|
|
1939
|
+
* 18) && (city_field exists)
|
|
1940
|
+
*/
|
|
1941
|
+
condition?: string;
|
|
1942
|
+
/**
|
|
1943
|
+
* A description of the transformation. This is empty for a RECORD_SUPPRESSION, or is the output of calling toString() on the `PrimitiveTransformation` protocol buffer message for any
|
|
1944
|
+
* other type of transformation.
|
|
1945
|
+
*/
|
|
1946
|
+
description?: string;
|
|
1947
|
+
/** Set if the transformation was limited to a specific `InfoType`. */
|
|
1948
|
+
infoType?: GooglePrivacyDlpV2InfoType;
|
|
1949
|
+
/** The transformation type. */
|
|
1950
|
+
type?: string;
|
|
1951
|
+
}
|
|
1952
|
+
interface GooglePrivacyDlpV2TransformationDetails {
|
|
1953
|
+
/** The top level name of the container where the transformation is located (this will be the source file name or table name). */
|
|
1954
|
+
containerName?: string;
|
|
1955
|
+
/** The name of the job that completed the transformation. */
|
|
1956
|
+
resourceName?: string;
|
|
1957
|
+
/** Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful. */
|
|
1958
|
+
statusDetails?: GooglePrivacyDlpV2TransformationResultStatus;
|
|
1959
|
+
/**
|
|
1960
|
+
* Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states
|
|
1961
|
+
* that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
|
|
1962
|
+
*/
|
|
1963
|
+
transformation?: GooglePrivacyDlpV2TransformationDescription[];
|
|
1964
|
+
/** The precise location of the transformed content in the original container. */
|
|
1965
|
+
transformationLocation?: GooglePrivacyDlpV2TransformationLocation;
|
|
1966
|
+
/** The number of bytes that were transformed. If transformation was unsuccessful or did not take place because there was no content to transform, this will be zero. */
|
|
1967
|
+
transformedBytes?: string;
|
|
1968
|
+
}
|
|
1902
1969
|
interface GooglePrivacyDlpV2TransformationDetailsStorageConfig {
|
|
1903
1970
|
/**
|
|
1904
1971
|
* The BigQuery table in which to store the output. This may be an existing table or in a new table in an existing dataset. If table_id is not set a new one will be generated for you
|
|
@@ -1912,12 +1979,29 @@ declare namespace gapi.client {
|
|
|
1912
1979
|
/** Throw an error */
|
|
1913
1980
|
throwError?: any;
|
|
1914
1981
|
}
|
|
1982
|
+
interface GooglePrivacyDlpV2TransformationLocation {
|
|
1983
|
+
/** Information about the functionality of the container where this finding occurred, if available. */
|
|
1984
|
+
containerType?: string;
|
|
1985
|
+
/**
|
|
1986
|
+
* For infotype transformations, link to the corresponding findings ID so that location information does not need to be duplicated. Each findings ID correlates to an entry in the
|
|
1987
|
+
* findings output table, this table only gets created when users specify to save findings (add the save findings action to the request).
|
|
1988
|
+
*/
|
|
1989
|
+
findingId?: string;
|
|
1990
|
+
/** For record transformations, provide a field and container information. */
|
|
1991
|
+
recordTransformation?: GooglePrivacyDlpV2RecordTransformation;
|
|
1992
|
+
}
|
|
1915
1993
|
interface GooglePrivacyDlpV2TransformationOverview {
|
|
1916
1994
|
/** Transformations applied to the dataset. */
|
|
1917
1995
|
transformationSummaries?: GooglePrivacyDlpV2TransformationSummary[];
|
|
1918
1996
|
/** Total size in bytes that were transformed in some way. */
|
|
1919
1997
|
transformedBytes?: string;
|
|
1920
1998
|
}
|
|
1999
|
+
interface GooglePrivacyDlpV2TransformationResultStatus {
|
|
2000
|
+
/** Detailed error codes and messages */
|
|
2001
|
+
details?: GoogleRpcStatus;
|
|
2002
|
+
/** Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful. */
|
|
2003
|
+
resultStatusType?: string;
|
|
2004
|
+
}
|
|
1921
2005
|
interface GooglePrivacyDlpV2TransformationSummary {
|
|
1922
2006
|
/** Set if the transformation was limited to a specific FieldId. */
|
|
1923
2007
|
field?: GooglePrivacyDlpV2FieldId;
|
|
@@ -3533,8 +3617,7 @@ declare namespace gapi.client {
|
|
|
3533
3617
|
/**
|
|
3534
3618
|
* Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing
|
|
3535
3619
|
* location](https://cloud.google.com/dlp/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no
|
|
3536
|
-
* location specified (defaults to global): `projects/`PROJECT_ID
|
|
3537
|
-
* no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
3620
|
+
* location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
3538
3621
|
* specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3
|
|
3539
3622
|
*/
|
|
3540
3623
|
parent: string;
|
|
@@ -3780,8 +3863,7 @@ declare namespace gapi.client {
|
|
|
3780
3863
|
/**
|
|
3781
3864
|
* Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing
|
|
3782
3865
|
* location](https://cloud.google.com/dlp/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no
|
|
3783
|
-
* location specified (defaults to global): `projects/`PROJECT_ID
|
|
3784
|
-
* no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
3866
|
+
* location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
3785
3867
|
* specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3
|
|
3786
3868
|
*/
|
|
3787
3869
|
parent: string;
|
|
@@ -6794,8 +6876,7 @@ declare namespace gapi.client {
|
|
|
6794
6876
|
/**
|
|
6795
6877
|
* Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing
|
|
6796
6878
|
* location](https://cloud.google.com/dlp/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no
|
|
6797
|
-
* location specified (defaults to global): `projects/`PROJECT_ID
|
|
6798
|
-
* no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
6879
|
+
* location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
6799
6880
|
* specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3
|
|
6800
6881
|
*/
|
|
6801
6882
|
parent: string;
|
|
@@ -7043,8 +7124,7 @@ declare namespace gapi.client {
|
|
|
7043
7124
|
/**
|
|
7044
7125
|
* Required. Parent resource name. The format of this value varies depending on the scope of the request (project or organization) and whether you have [specified a processing
|
|
7045
7126
|
* location](https://cloud.google.com/dlp/docs/specifying-location): + Projects scope, location specified: `projects/`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no
|
|
7046
|
-
* location specified (defaults to global): `projects/`PROJECT_ID
|
|
7047
|
-
* no location specified (defaults to global): `organizations/`ORG_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
7127
|
+
* location specified (defaults to global): `projects/`PROJECT_ID The following example `parent` string specifies a parent project with the identifier `example-project`, and
|
|
7048
7128
|
* specifies the `europe-west3` location for processing data: parent=projects/example-project/locations/europe-west3
|
|
7049
7129
|
*/
|
|
7050
7130
|
parent: string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20220826
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -53,6 +53,29 @@ gapi.load('client', async () => {
|
|
|
53
53
|
deidentifyTemplate: {
|
|
54
54
|
createTime: "Test string",
|
|
55
55
|
deidentifyConfig: {
|
|
56
|
+
imageTransformations: {
|
|
57
|
+
transforms: [
|
|
58
|
+
{
|
|
59
|
+
allInfoTypes: {
|
|
60
|
+
},
|
|
61
|
+
allText: {
|
|
62
|
+
},
|
|
63
|
+
redactionColor: {
|
|
64
|
+
blue: 42,
|
|
65
|
+
green: 42,
|
|
66
|
+
red: 42,
|
|
67
|
+
},
|
|
68
|
+
selectedInfoTypes: {
|
|
69
|
+
infoTypes: [
|
|
70
|
+
{
|
|
71
|
+
name: "Test string",
|
|
72
|
+
version: "Test string",
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
},
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
},
|
|
56
79
|
infoTypeTransformations: {
|
|
57
80
|
transformations: [
|
|
58
81
|
{
|
|
@@ -888,6 +911,29 @@ gapi.load('client', async () => {
|
|
|
888
911
|
deidentifyTemplate: {
|
|
889
912
|
createTime: "Test string",
|
|
890
913
|
deidentifyConfig: {
|
|
914
|
+
imageTransformations: {
|
|
915
|
+
transforms: [
|
|
916
|
+
{
|
|
917
|
+
allInfoTypes: {
|
|
918
|
+
},
|
|
919
|
+
allText: {
|
|
920
|
+
},
|
|
921
|
+
redactionColor: {
|
|
922
|
+
blue: 42,
|
|
923
|
+
green: 42,
|
|
924
|
+
red: 42,
|
|
925
|
+
},
|
|
926
|
+
selectedInfoTypes: {
|
|
927
|
+
infoTypes: [
|
|
928
|
+
{
|
|
929
|
+
name: "Test string",
|
|
930
|
+
version: "Test string",
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
},
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
},
|
|
891
937
|
infoTypeTransformations: {
|
|
892
938
|
transformations: [
|
|
893
939
|
{
|
|
@@ -2024,6 +2070,29 @@ gapi.load('client', async () => {
|
|
|
2024
2070
|
deidentifyTemplate: {
|
|
2025
2071
|
createTime: "Test string",
|
|
2026
2072
|
deidentifyConfig: {
|
|
2073
|
+
imageTransformations: {
|
|
2074
|
+
transforms: [
|
|
2075
|
+
{
|
|
2076
|
+
allInfoTypes: {
|
|
2077
|
+
},
|
|
2078
|
+
allText: {
|
|
2079
|
+
},
|
|
2080
|
+
redactionColor: {
|
|
2081
|
+
blue: 42,
|
|
2082
|
+
green: 42,
|
|
2083
|
+
red: 42,
|
|
2084
|
+
},
|
|
2085
|
+
selectedInfoTypes: {
|
|
2086
|
+
infoTypes: [
|
|
2087
|
+
{
|
|
2088
|
+
name: "Test string",
|
|
2089
|
+
version: "Test string",
|
|
2090
|
+
}
|
|
2091
|
+
],
|
|
2092
|
+
},
|
|
2093
|
+
}
|
|
2094
|
+
],
|
|
2095
|
+
},
|
|
2027
2096
|
infoTypeTransformations: {
|
|
2028
2097
|
transformations: [
|
|
2029
2098
|
{
|
|
@@ -2859,6 +2928,29 @@ gapi.load('client', async () => {
|
|
|
2859
2928
|
deidentifyTemplate: {
|
|
2860
2929
|
createTime: "Test string",
|
|
2861
2930
|
deidentifyConfig: {
|
|
2931
|
+
imageTransformations: {
|
|
2932
|
+
transforms: [
|
|
2933
|
+
{
|
|
2934
|
+
allInfoTypes: {
|
|
2935
|
+
},
|
|
2936
|
+
allText: {
|
|
2937
|
+
},
|
|
2938
|
+
redactionColor: {
|
|
2939
|
+
blue: 42,
|
|
2940
|
+
green: 42,
|
|
2941
|
+
red: 42,
|
|
2942
|
+
},
|
|
2943
|
+
selectedInfoTypes: {
|
|
2944
|
+
infoTypes: [
|
|
2945
|
+
{
|
|
2946
|
+
name: "Test string",
|
|
2947
|
+
version: "Test string",
|
|
2948
|
+
}
|
|
2949
|
+
],
|
|
2950
|
+
},
|
|
2951
|
+
}
|
|
2952
|
+
],
|
|
2953
|
+
},
|
|
2862
2954
|
infoTypeTransformations: {
|
|
2863
2955
|
transformations: [
|
|
2864
2956
|
{
|
|
@@ -4848,6 +4940,29 @@ gapi.load('client', async () => {
|
|
|
4848
4940
|
parent: "Test string",
|
|
4849
4941
|
}, {
|
|
4850
4942
|
deidentifyConfig: {
|
|
4943
|
+
imageTransformations: {
|
|
4944
|
+
transforms: [
|
|
4945
|
+
{
|
|
4946
|
+
allInfoTypes: {
|
|
4947
|
+
},
|
|
4948
|
+
allText: {
|
|
4949
|
+
},
|
|
4950
|
+
redactionColor: {
|
|
4951
|
+
blue: 42,
|
|
4952
|
+
green: 42,
|
|
4953
|
+
red: 42,
|
|
4954
|
+
},
|
|
4955
|
+
selectedInfoTypes: {
|
|
4956
|
+
infoTypes: [
|
|
4957
|
+
{
|
|
4958
|
+
name: "Test string",
|
|
4959
|
+
version: "Test string",
|
|
4960
|
+
}
|
|
4961
|
+
],
|
|
4962
|
+
},
|
|
4963
|
+
}
|
|
4964
|
+
],
|
|
4965
|
+
},
|
|
4851
4966
|
infoTypeTransformations: {
|
|
4852
4967
|
transformations: [
|
|
4853
4968
|
{
|
|
@@ -6199,6 +6314,29 @@ gapi.load('client', async () => {
|
|
|
6199
6314
|
},
|
|
6200
6315
|
locationId: "Test string",
|
|
6201
6316
|
reidentifyConfig: {
|
|
6317
|
+
imageTransformations: {
|
|
6318
|
+
transforms: [
|
|
6319
|
+
{
|
|
6320
|
+
allInfoTypes: {
|
|
6321
|
+
},
|
|
6322
|
+
allText: {
|
|
6323
|
+
},
|
|
6324
|
+
redactionColor: {
|
|
6325
|
+
blue: 42,
|
|
6326
|
+
green: 42,
|
|
6327
|
+
red: 42,
|
|
6328
|
+
},
|
|
6329
|
+
selectedInfoTypes: {
|
|
6330
|
+
infoTypes: [
|
|
6331
|
+
{
|
|
6332
|
+
name: "Test string",
|
|
6333
|
+
version: "Test string",
|
|
6334
|
+
}
|
|
6335
|
+
],
|
|
6336
|
+
},
|
|
6337
|
+
}
|
|
6338
|
+
],
|
|
6339
|
+
},
|
|
6202
6340
|
infoTypeTransformations: {
|
|
6203
6341
|
transformations: [
|
|
6204
6342
|
{
|
|
@@ -7015,6 +7153,29 @@ gapi.load('client', async () => {
|
|
|
7015
7153
|
deidentifyTemplate: {
|
|
7016
7154
|
createTime: "Test string",
|
|
7017
7155
|
deidentifyConfig: {
|
|
7156
|
+
imageTransformations: {
|
|
7157
|
+
transforms: [
|
|
7158
|
+
{
|
|
7159
|
+
allInfoTypes: {
|
|
7160
|
+
},
|
|
7161
|
+
allText: {
|
|
7162
|
+
},
|
|
7163
|
+
redactionColor: {
|
|
7164
|
+
blue: 42,
|
|
7165
|
+
green: 42,
|
|
7166
|
+
red: 42,
|
|
7167
|
+
},
|
|
7168
|
+
selectedInfoTypes: {
|
|
7169
|
+
infoTypes: [
|
|
7170
|
+
{
|
|
7171
|
+
name: "Test string",
|
|
7172
|
+
version: "Test string",
|
|
7173
|
+
}
|
|
7174
|
+
],
|
|
7175
|
+
},
|
|
7176
|
+
}
|
|
7177
|
+
],
|
|
7178
|
+
},
|
|
7018
7179
|
infoTypeTransformations: {
|
|
7019
7180
|
transformations: [
|
|
7020
7181
|
{
|
|
@@ -7850,6 +8011,29 @@ gapi.load('client', async () => {
|
|
|
7850
8011
|
deidentifyTemplate: {
|
|
7851
8012
|
createTime: "Test string",
|
|
7852
8013
|
deidentifyConfig: {
|
|
8014
|
+
imageTransformations: {
|
|
8015
|
+
transforms: [
|
|
8016
|
+
{
|
|
8017
|
+
allInfoTypes: {
|
|
8018
|
+
},
|
|
8019
|
+
allText: {
|
|
8020
|
+
},
|
|
8021
|
+
redactionColor: {
|
|
8022
|
+
blue: 42,
|
|
8023
|
+
green: 42,
|
|
8024
|
+
red: 42,
|
|
8025
|
+
},
|
|
8026
|
+
selectedInfoTypes: {
|
|
8027
|
+
infoTypes: [
|
|
8028
|
+
{
|
|
8029
|
+
name: "Test string",
|
|
8030
|
+
version: "Test string",
|
|
8031
|
+
}
|
|
8032
|
+
],
|
|
8033
|
+
},
|
|
8034
|
+
}
|
|
8035
|
+
],
|
|
8036
|
+
},
|
|
7853
8037
|
infoTypeTransformations: {
|
|
7854
8038
|
transformations: [
|
|
7855
8039
|
{
|
|
@@ -10244,6 +10428,29 @@ gapi.load('client', async () => {
|
|
|
10244
10428
|
parent: "Test string",
|
|
10245
10429
|
}, {
|
|
10246
10430
|
deidentifyConfig: {
|
|
10431
|
+
imageTransformations: {
|
|
10432
|
+
transforms: [
|
|
10433
|
+
{
|
|
10434
|
+
allInfoTypes: {
|
|
10435
|
+
},
|
|
10436
|
+
allText: {
|
|
10437
|
+
},
|
|
10438
|
+
redactionColor: {
|
|
10439
|
+
blue: 42,
|
|
10440
|
+
green: 42,
|
|
10441
|
+
red: 42,
|
|
10442
|
+
},
|
|
10443
|
+
selectedInfoTypes: {
|
|
10444
|
+
infoTypes: [
|
|
10445
|
+
{
|
|
10446
|
+
name: "Test string",
|
|
10447
|
+
version: "Test string",
|
|
10448
|
+
}
|
|
10449
|
+
],
|
|
10450
|
+
},
|
|
10451
|
+
}
|
|
10452
|
+
],
|
|
10453
|
+
},
|
|
10247
10454
|
infoTypeTransformations: {
|
|
10248
10455
|
transformations: [
|
|
10249
10456
|
{
|
|
@@ -11595,6 +11802,29 @@ gapi.load('client', async () => {
|
|
|
11595
11802
|
},
|
|
11596
11803
|
locationId: "Test string",
|
|
11597
11804
|
reidentifyConfig: {
|
|
11805
|
+
imageTransformations: {
|
|
11806
|
+
transforms: [
|
|
11807
|
+
{
|
|
11808
|
+
allInfoTypes: {
|
|
11809
|
+
},
|
|
11810
|
+
allText: {
|
|
11811
|
+
},
|
|
11812
|
+
redactionColor: {
|
|
11813
|
+
blue: 42,
|
|
11814
|
+
green: 42,
|
|
11815
|
+
red: 42,
|
|
11816
|
+
},
|
|
11817
|
+
selectedInfoTypes: {
|
|
11818
|
+
infoTypes: [
|
|
11819
|
+
{
|
|
11820
|
+
name: "Test string",
|
|
11821
|
+
version: "Test string",
|
|
11822
|
+
}
|
|
11823
|
+
],
|
|
11824
|
+
},
|
|
11825
|
+
}
|
|
11826
|
+
],
|
|
11827
|
+
},
|
|
11598
11828
|
infoTypeTransformations: {
|
|
11599
11829
|
transformations: [
|
|
11600
11830
|
{
|
|
@@ -12411,6 +12641,29 @@ gapi.load('client', async () => {
|
|
|
12411
12641
|
deidentifyTemplate: {
|
|
12412
12642
|
createTime: "Test string",
|
|
12413
12643
|
deidentifyConfig: {
|
|
12644
|
+
imageTransformations: {
|
|
12645
|
+
transforms: [
|
|
12646
|
+
{
|
|
12647
|
+
allInfoTypes: {
|
|
12648
|
+
},
|
|
12649
|
+
allText: {
|
|
12650
|
+
},
|
|
12651
|
+
redactionColor: {
|
|
12652
|
+
blue: 42,
|
|
12653
|
+
green: 42,
|
|
12654
|
+
red: 42,
|
|
12655
|
+
},
|
|
12656
|
+
selectedInfoTypes: {
|
|
12657
|
+
infoTypes: [
|
|
12658
|
+
{
|
|
12659
|
+
name: "Test string",
|
|
12660
|
+
version: "Test string",
|
|
12661
|
+
}
|
|
12662
|
+
],
|
|
12663
|
+
},
|
|
12664
|
+
}
|
|
12665
|
+
],
|
|
12666
|
+
},
|
|
12414
12667
|
infoTypeTransformations: {
|
|
12415
12668
|
transformations: [
|
|
12416
12669
|
{
|
|
@@ -13246,6 +13499,29 @@ gapi.load('client', async () => {
|
|
|
13246
13499
|
deidentifyTemplate: {
|
|
13247
13500
|
createTime: "Test string",
|
|
13248
13501
|
deidentifyConfig: {
|
|
13502
|
+
imageTransformations: {
|
|
13503
|
+
transforms: [
|
|
13504
|
+
{
|
|
13505
|
+
allInfoTypes: {
|
|
13506
|
+
},
|
|
13507
|
+
allText: {
|
|
13508
|
+
},
|
|
13509
|
+
redactionColor: {
|
|
13510
|
+
blue: 42,
|
|
13511
|
+
green: 42,
|
|
13512
|
+
red: 42,
|
|
13513
|
+
},
|
|
13514
|
+
selectedInfoTypes: {
|
|
13515
|
+
infoTypes: [
|
|
13516
|
+
{
|
|
13517
|
+
name: "Test string",
|
|
13518
|
+
version: "Test string",
|
|
13519
|
+
}
|
|
13520
|
+
],
|
|
13521
|
+
},
|
|
13522
|
+
}
|
|
13523
|
+
],
|
|
13524
|
+
},
|
|
13249
13525
|
infoTypeTransformations: {
|
|
13250
13526
|
transformations: [
|
|
13251
13527
|
{
|