Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2421)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Feb 18, 2024
1 parent 762eb61 commit af6aa38
Show file tree
Hide file tree
Showing 28 changed files with 6,479 additions and 862 deletions.
4 changes: 2 additions & 2 deletions batch/v1/batch-api.json
Expand Up @@ -561,7 +561,7 @@
}
}
},
"revision": "20240202",
"revision": "20240206",
"rootUrl": "https://batch.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -1358,7 +1358,7 @@
"type": "array"
},
"uid": {
"description": "Output only. A system generated unique ID (in UUID4 format) for the Job.",
"description": "Output only. A system generated unique ID for the Job.",
"readOnly": true,
"type": "string"
},
Expand Down
3 changes: 1 addition & 2 deletions batch/v1/batch-gen.go

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

4 changes: 2 additions & 2 deletions beyondcorp/v1/beyondcorp-api.json
Expand Up @@ -1804,7 +1804,7 @@
}
}
},
"revision": "20240103",
"revision": "20240207",
"rootUrl": "https://beyondcorp.googleapis.com/",
"schemas": {
"AllocatedConnection": {
Expand Down Expand Up @@ -3131,7 +3131,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
6 changes: 5 additions & 1 deletion beyondcorp/v1/beyondcorp-gen.go

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

4 changes: 2 additions & 2 deletions beyondcorp/v1alpha/beyondcorp-api.json
Expand Up @@ -3716,7 +3716,7 @@
}
}
},
"revision": "20240103",
"revision": "20240207",
"rootUrl": "https://beyondcorp.googleapis.com/",
"schemas": {
"AllocatedConnection": {
Expand Down Expand Up @@ -5931,7 +5931,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
6 changes: 5 additions & 1 deletion beyondcorp/v1alpha/beyondcorp-gen.go

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

23 changes: 19 additions & 4 deletions connectors/v1/connectors-api.json
Expand Up @@ -2354,7 +2354,7 @@
}
}
},
"revision": "20240122",
"revision": "20240207",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3441,6 +3441,21 @@
"description": "Optional. Location of the custom connector spec.",
"type": "string"
},
"state": {
"description": "Output only. State of the custom connector version.",
"enum": [
"STATE_UNSPECIFIED",
"ACTIVE",
"DEPRECATED"
],
"enumDescriptions": [
"State Unspecified.",
"Active state. By default we set the state to Active.",
"Deprecated state."
],
"readOnly": true,
"type": "string"
},
"updateTime": {
"description": "Output only. Updated time.",
"format": "google-datetime",
Expand Down Expand Up @@ -3651,9 +3666,9 @@
"CMEK"
],
"enumDescriptions": [
"Egress mode unspecified.",
"Network egress through auto assigned IPs.",
"Network egress through static IPs."
"Encryption type unspecified.",
"Google managed encryption keys",
"Customer managed encryption keys."
],
"type": "string"
},
Expand Down
14 changes: 11 additions & 3 deletions connectors/v1/connectors-gen.go

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

179 changes: 178 additions & 1 deletion datastream/v1/datastream-api.json
Expand Up @@ -1250,7 +1250,7 @@
}
}
},
"revision": "20240117",
"revision": "20240215",
"rootUrl": "https://datastream.googleapis.com/",
"schemas": {
"AvroFileFormat": {
Expand All @@ -1274,6 +1274,10 @@
"postgresqlExcludedObjects": {
"$ref": "PostgresqlRdbms",
"description": "PostgreSQL data source objects to avoid backfilling."
},
"sqlServerExcludedObjects": {
"$ref": "SqlServerRdbms",
"description": "SQLServer data source objects to avoid backfilling"
}
},
"type": "object"
Expand Down Expand Up @@ -1455,6 +1459,10 @@
"$ref": "PrivateConnectivity",
"description": "Private connectivity."
},
"sqlServerProfile": {
"$ref": "SqlServerProfile",
"description": "SQLServer Connection Profile configuration."
},
"staticServiceIpConnectivity": {
"$ref": "StaticServiceIpConnectivity",
"description": "Static Service IP connectivity."
Expand Down Expand Up @@ -2776,6 +2784,10 @@
"sourceConnectionProfile": {
"description": "Required. Source connection profile resoource. Format: `projects/{project}/locations/{location}/connectionProfiles/{name}`",
"type": "string"
},
"sqlServerSourceConfig": {
"$ref": "SqlServerSourceConfig",
"description": "SQLServer data source configuration."
}
},
"type": "object"
Expand Down Expand Up @@ -2806,6 +2818,10 @@
"postgresqlIdentifier": {
"$ref": "PostgresqlObjectIdentifier",
"description": "PostgreSQL data source object identifier."
},
"sqlServerIdentifier": {
"$ref": "SqlServerObjectIdentifier",
"description": "SQLServer data source object identifier."
}
},
"type": "object"
Expand All @@ -2825,6 +2841,167 @@
},
"type": "object"
},
"SqlServerColumn": {
"description": "SQLServer Column.",
"id": "SqlServerColumn",
"properties": {
"column": {
"description": "Column name.",
"type": "string"
},
"dataType": {
"description": "The SQLServer data type.",
"type": "string"
},
"length": {
"description": "Column length.",
"format": "int32",
"type": "integer"
},
"nullable": {
"description": "Whether or not the column can accept a null value.",
"type": "boolean"
},
"ordinalPosition": {
"description": "The ordinal position of the column in the table.",
"format": "int32",
"type": "integer"
},
"precision": {
"description": "Column precision.",
"format": "int32",
"type": "integer"
},
"primaryKey": {
"description": "Whether or not the column represents a primary key.",
"type": "boolean"
},
"scale": {
"description": "Column scale.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"SqlServerObjectIdentifier": {
"description": "SQLServer data source object identifier.",
"id": "SqlServerObjectIdentifier",
"properties": {
"schema": {
"description": "Required. The schema name.",
"type": "string"
},
"table": {
"description": "Required. The table name.",
"type": "string"
}
},
"type": "object"
},
"SqlServerProfile": {
"description": "SQLServer database profile",
"id": "SqlServerProfile",
"properties": {
"database": {
"description": "Required. Database for the SQLServer connection.",
"type": "string"
},
"hostname": {
"description": "Required. Hostname for the SQLServer connection.",
"type": "string"
},
"password": {
"description": "Required. Password for the SQLServer connection.",
"type": "string"
},
"port": {
"description": "Port for the SQLServer connection, default value is 1433.",
"format": "int32",
"type": "integer"
},
"username": {
"description": "Required. Username for the SQLServer connection.",
"type": "string"
}
},
"type": "object"
},
"SqlServerRdbms": {
"description": "SQLServer database structure.",
"id": "SqlServerRdbms",
"properties": {
"schemas": {
"description": "SQLServer schemas in the database server.",
"items": {
"$ref": "SqlServerSchema"
},
"type": "array"
}
},
"type": "object"
},
"SqlServerSchema": {
"description": "SQLServer schema.",
"id": "SqlServerSchema",
"properties": {
"schema": {
"description": "Schema name.",
"type": "string"
},
"tables": {
"description": "Tables in the schema.",
"items": {
"$ref": "SqlServerTable"
},
"type": "array"
}
},
"type": "object"
},
"SqlServerSourceConfig": {
"description": "SQLServer data source configuration",
"id": "SqlServerSourceConfig",
"properties": {
"excludeObjects": {
"$ref": "SqlServerRdbms",
"description": "SQLServer objects to exclude from the stream."
},
"includeObjects": {
"$ref": "SqlServerRdbms",
"description": "SQLServer objects to include in the stream."
},
"maxConcurrentBackfillTasks": {
"description": "Max concurrent backfill tasks.",
"format": "int32",
"type": "integer"
},
"maxConcurrentCdcTasks": {
"description": "Max concurrent CDC tasks.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"SqlServerTable": {
"description": "SQLServer table.",
"id": "SqlServerTable",
"properties": {
"columns": {
"description": "SQLServer columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.",
"items": {
"$ref": "SqlServerColumn"
},
"type": "array"
},
"table": {
"description": "Table name.",
"type": "string"
}
},
"type": "object"
},
"StartBackfillJobRequest": {
"description": "Request for manually initiating a backfill job for a specific stream object.",
"id": "StartBackfillJobRequest",
Expand Down

0 comments on commit af6aa38

Please sign in to comment.