Skip to content

Commit 9dae517

Browse files
feat(dataplex): update the API
#### dataplex:v1 The following keys were added: - schemas.GoogleCloudDataplexV1AspectType.properties.dataClassification.description - schemas.GoogleCloudDataplexV1AspectType.properties.dataClassification.enum - schemas.GoogleCloudDataplexV1AspectType.properties.dataClassification.enumDescriptions - schemas.GoogleCloudDataplexV1AspectType.properties.dataClassification.type The following keys were changed: - endpoints - resources.projects.resources.locations.methods.lookupEntry.parameters.view.enumDescriptions - resources.projects.resources.locations.resources.entryGroups.resources.entries.methods.get.parameters.view.enumDescriptions
1 parent 48fb99c commit 9dae517

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

discovery/dataplex-v1.json

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@
6666
"endpointUrl": "https://dataplex.asia-southeast2.rep.googleapis.com/",
6767
"location": "asia-southeast2"
6868
},
69+
{
70+
"description": "Regional Endpoint",
71+
"endpointUrl": "https://dataplex.asia-southeast3.rep.googleapis.com/",
72+
"location": "asia-southeast3"
73+
},
6974
{
7075
"description": "Regional Endpoint",
7176
"endpointUrl": "https://dataplex.australia-southeast1.rep.googleapis.com/",
@@ -111,6 +116,11 @@
111116
"endpointUrl": "https://dataplex.europe-west12.rep.googleapis.com/",
112117
"location": "europe-west12"
113118
},
119+
{
120+
"description": "Regional Endpoint",
121+
"endpointUrl": "https://dataplex.europe-west15.rep.googleapis.com/",
122+
"location": "europe-west15"
123+
},
114124
{
115125
"description": "Regional Endpoint",
116126
"endpointUrl": "https://dataplex.europe-west2.rep.googleapis.com/",
@@ -860,7 +870,7 @@
860870
"Returns entry only, without aspects.",
861871
"Returns all required aspects as well as the keys of all non-required aspects.",
862872
"Returns aspects matching custom fields in GetEntryRequest. If the number of aspects exceeds 100, the first 100 will be returned.",
863-
"Returns all aspects. If the number of aspects exceeds 100, the first 100 will be returned."
873+
""
864874
],
865875
"location": "query",
866876
"type": "string"
@@ -3062,7 +3072,7 @@
30623072
"Returns entry only, without aspects.",
30633073
"Returns all required aspects as well as the keys of all non-required aspects.",
30643074
"Returns aspects matching custom fields in GetEntryRequest. If the number of aspects exceeds 100, the first 100 will be returned.",
3065-
"Returns all aspects. If the number of aspects exceeds 100, the first 100 will be returned."
3075+
""
30663076
],
30673077
"location": "query",
30683078
"type": "string"
@@ -7250,7 +7260,7 @@
72507260
}
72517261
}
72527262
},
7253-
"revision": "20250924",
7263+
"revision": "20251012",
72547264
"rootUrl": "https://dataplex.googleapis.com/",
72557265
"schemas": {
72567266
"Empty": {
@@ -7544,6 +7554,18 @@
75447554
"readOnly": true,
75457555
"type": "string"
75467556
},
7557+
"dataClassification": {
7558+
"description": "Optional. Immutable. Stores data classification of the aspect.",
7559+
"enum": [
7560+
"DATA_CLASSIFICATION_UNSPECIFIED",
7561+
"METADATA_AND_DATA"
7562+
],
7563+
"enumDescriptions": [
7564+
"Denotes that the aspect contains only metadata.",
7565+
"Metadata and data classification."
7566+
],
7567+
"type": "string"
7568+
},
75477569
"description": {
75487570
"description": "Optional. Description of the AspectType.",
75497571
"type": "string"

src/apis/dataplex/v1.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,10 @@ export namespace dataplex_v1 {
333333
* Output only. The time when the AspectType was created.
334334
*/
335335
createTime?: string | null;
336+
/**
337+
* Optional. Immutable. Stores data classification of the aspect.
338+
*/
339+
dataClassification?: string | null;
336340
/**
337341
* Optional. Description of the AspectType.
338342
*/
@@ -7763,6 +7767,7 @@ export namespace dataplex_v1 {
77637767
* // {
77647768
* // "authorization": {},
77657769
* // "createTime": "my_createTime",
7770+
* // "dataClassification": "my_dataClassification",
77667771
* // "description": "my_description",
77677772
* // "displayName": "my_displayName",
77687773
* // "etag": "my_etag",
@@ -8070,6 +8075,7 @@ export namespace dataplex_v1 {
80708075
* // {
80718076
* // "authorization": {},
80728077
* // "createTime": "my_createTime",
8078+
* // "dataClassification": "my_dataClassification",
80738079
* // "description": "my_description",
80748080
* // "displayName": "my_displayName",
80758081
* // "etag": "my_etag",
@@ -8527,6 +8533,7 @@ export namespace dataplex_v1 {
85278533
* // {
85288534
* // "authorization": {},
85298535
* // "createTime": "my_createTime",
8536+
* // "dataClassification": "my_dataClassification",
85308537
* // "description": "my_description",
85318538
* // "displayName": "my_displayName",
85328539
* // "etag": "my_etag",

0 commit comments

Comments
 (0)