Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dlp/v2/dlp-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -5118,7 +5118,7 @@
}
}
},
"revision": "20250720",
"revision": "20250727",
"rootUrl": "https://dlp.googleapis.com/",
"schemas": {
"GooglePrivacyDlpV2Action": {
Expand Down Expand Up @@ -7204,7 +7204,7 @@
"type": "string"
},
"fileTypesToTransform": {
"description": "List of user-specified file type groups to transform. If specified, only the files with these file types will be transformed. If empty, all supported files will be transformed. Supported types may be automatically added over time. If a file type is set in this field that isn't supported by the Deidentify action then the job will fail and will not be successfully created/started. Currently the only file types supported are: IMAGES, TEXT_FILES, CSV, TSV.",
"description": "List of user-specified file type groups to transform. If specified, only the files with these file types are transformed. If empty, all supported files are transformed. Supported types may be automatically added over time. Any unsupported file types that are set in this field are excluded from de-identification. An error is recorded for each unsupported file in the TransformationDetails output table. Currently the only file types supported are: IMAGES, TEXT_FILES, CSV, TSV.",
"items": {
"enum": [
"FILE_TYPE_UNSPECIFIED",
Expand Down
12 changes: 6 additions & 6 deletions dlp/v2/dlp-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 58 additions & 8 deletions redis/v1/redis-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@
}
}
},
"revision": "20250718",
"revision": "20250729",
"rootUrl": "https://redis.googleapis.com/",
"schemas": {
"AOFConfig": {
Expand Down Expand Up @@ -1378,6 +1378,38 @@
},
"type": "object"
},
"BackupDRMetadata": {
"description": "BackupDRMetadata contains information about the backup and disaster recovery metadata of a database resource.",
"id": "BackupDRMetadata",
"properties": {
"backupConfiguration": {
"$ref": "BackupConfiguration",
"description": "Backup configuration for this instance."
},
"backupRun": {
"$ref": "BackupRun",
"description": "Latest backup run information for this instance."
},
"backupdrConfiguration": {
"$ref": "BackupDRConfiguration",
"description": "BackupDR configuration for this instance."
},
"fullResourceName": {
"description": "Required. Full resource name of this instance.",
"type": "string"
},
"lastRefreshTime": {
"description": "Required. Last time backup configuration was refreshed.",
"format": "google-datetime",
"type": "string"
},
"resourceId": {
"$ref": "DatabaseResourceId",
"description": "Required. Database resource id."
}
},
"type": "object"
},
"BackupFile": {
"description": "Backup is consisted of multiple backup files.",
"id": "BackupFile",
Expand Down Expand Up @@ -1961,9 +1993,13 @@
"type": "object"
},
"DatabaseResourceFeed": {
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 9",
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10",
"id": "DatabaseResourceFeed",
"properties": {
"backupdrMetadata": {
"$ref": "BackupDRMetadata",
"description": "BackupDR metadata is used to ingest metadata from BackupDR."
},
"configBasedSignalData": {
"$ref": "ConfigBasedSignalData",
"description": "Config based signal data is used to ingest signals that are generated based on the configuration of the database resource."
Expand All @@ -1981,15 +2017,17 @@
"OBSERVABILITY_DATA",
"SECURITY_FINDING_DATA",
"RECOMMENDATION_SIGNAL_DATA",
"CONFIG_BASED_SIGNAL_DATA"
"CONFIG_BASED_SIGNAL_DATA",
"BACKUPDR_METADATA"
],
"enumDescriptions": [
"",
"Database resource metadata feed from control plane",
"Database resource monitoring data",
"Database resource security health signal data",
"Database resource recommendation signal data",
"Database config based signal data"
"Database config based signal data",
"Database resource metadata from BackupDR"
],
"type": "string"
},
Expand Down Expand Up @@ -2226,7 +2264,9 @@
"SIGNAL_TYPE_LOCATION_ORG_POLICY_NOT_SATISFIED",
"SIGNAL_TYPE_OUTDATED_MINOR_VERSION",
"SIGNAL_TYPE_SCHEMA_NOT_OPTIMIZED",
"SIGNAL_TYPE_MANY_IDLE_CONNECTIONS"
"SIGNAL_TYPE_MANY_IDLE_CONNECTIONS",
"SIGNAL_TYPE_REPLICATION_LAG",
"SIGNAL_TYPE_OUTDATED_VERSION"
],
"enumDeprecated": [
false,
Expand Down Expand Up @@ -2327,6 +2367,8 @@
false,
false,
false,
false,
false,
false
],
"enumDescriptions": [
Expand Down Expand Up @@ -2428,7 +2470,9 @@
"Location org policy not satisfied.",
"Outdated DB minor version.",
"Schema not optimized.",
"High number of idle connections."
"High number of idle connections.",
"Replication delay.",
"Outdated version."
],
"type": "string"
},
Expand Down Expand Up @@ -2853,7 +2897,9 @@
"SIGNAL_TYPE_LOCATION_ORG_POLICY_NOT_SATISFIED",
"SIGNAL_TYPE_OUTDATED_MINOR_VERSION",
"SIGNAL_TYPE_SCHEMA_NOT_OPTIMIZED",
"SIGNAL_TYPE_MANY_IDLE_CONNECTIONS"
"SIGNAL_TYPE_MANY_IDLE_CONNECTIONS",
"SIGNAL_TYPE_REPLICATION_LAG",
"SIGNAL_TYPE_OUTDATED_VERSION"
],
"enumDeprecated": [
false,
Expand Down Expand Up @@ -2954,6 +3000,8 @@
false,
false,
false,
false,
false,
false
],
"enumDescriptions": [
Expand Down Expand Up @@ -3055,7 +3103,9 @@
"Location org policy not satisfied.",
"Outdated DB minor version.",
"Schema not optimized.",
"High number of idle connections."
"High number of idle connections.",
"Replication delay.",
"Outdated version."
],
"type": "string"
}
Expand Down
51 changes: 46 additions & 5 deletions redis/v1/redis-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading