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
12 changes: 6 additions & 6 deletions bigtableadmin/v2/bigtableadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@
],
"parameters": {
"name": {
"description": "Identifier. The unique name of the materialized view. Format: `projects/{project}/instances/{instance}/materializedViews/{materialized_view}`",
"description": "Identifier. The unique name of the materialized view. Format: `projects/{project}/instances/{instance}/materializedViews/{materialized_view}` Views: `SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.",
"location": "path",
"pattern": "^projects/[^/]+/instances/[^/]+/materializedViews/[^/]+$",
"required": true,
Expand Down Expand Up @@ -3077,7 +3077,7 @@
}
}
},
"revision": "20250821",
"revision": "20250828",
"rootUrl": "https://bigtableadmin.googleapis.com/",
"schemas": {
"AppProfile": {
Expand Down Expand Up @@ -4941,19 +4941,19 @@
"id": "MaterializedView",
"properties": {
"deletionProtection": {
"description": "Set to true to make the MaterializedView protected against deletion.",
"description": "Set to true to make the MaterializedView protected against deletion. Views: `SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.",
"type": "boolean"
},
"etag": {
"description": "Optional. The etag for this materialized view. This may be sent on update requests to ensure that the client has an up-to-date value before proceeding. The server returns an ABORTED error on a mismatched etag.",
"description": "Optional. The etag for this materialized view. This may be sent on update requests to ensure that the client has an up-to-date value before proceeding. The server returns an ABORTED error on a mismatched etag. Views: `SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.",
"type": "string"
},
"name": {
"description": "Identifier. The unique name of the materialized view. Format: `projects/{project}/instances/{instance}/materializedViews/{materialized_view}`",
"description": "Identifier. The unique name of the materialized view. Format: `projects/{project}/instances/{instance}/materializedViews/{materialized_view}` Views: `SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.",
"type": "string"
},
"query": {
"description": "Required. Immutable. The materialized view's select query.",
"description": "Required. Immutable. The materialized view's select query. Views: `SCHEMA_VIEW`, `FULL`.",
"type": "string"
}
},
Expand Down
12 changes: 7 additions & 5 deletions bigtableadmin/v2/bigtableadmin-gen.go

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

27 changes: 24 additions & 3 deletions file/v1/file-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@
}
}
},
"revision": "20250819",
"revision": "20250825",
"rootUrl": "https://file.googleapis.com/",
"schemas": {
"Backup": {
Expand Down Expand Up @@ -1874,12 +1874,14 @@
"enum": [
"CONNECT_MODE_UNSPECIFIED",
"DIRECT_PEERING",
"PRIVATE_SERVICE_ACCESS"
"PRIVATE_SERVICE_ACCESS",
"PRIVATE_SERVICE_CONNECT"
],
"enumDescriptions": [
"Not set.",
"Connect via direct peering to the Filestore service.",
"Connect to your Filestore instance using Private Service Access. Private services access provides an IP address range for multiple Google Cloud services, including Filestore."
"Connect to your Filestore instance using Private Service Access. Private services access provides an IP address range for multiple Google Cloud services, including Filestore.",
"Connect to your Filestore instance using Private Service Connect. A connection policy must exist in the region for the VPC network and the google-cloud-filestore service class."
],
"type": "string"
},
Expand Down Expand Up @@ -1910,6 +1912,10 @@
"description": "The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected.",
"type": "string"
},
"pscConfig": {
"$ref": "PscConfig",
"description": "Optional. Private Service Connect configuration. Should only be set when connect_mode is PRIVATE_SERVICE_CONNECT."
},
"reservedIpRange": {
"description": "Optional, reserved_ip_range can have one of the following two types of values. * CIDR range value when using DIRECT_PEERING connect mode. * [Allocated IP address range](https://cloud.google.com/compute/docs/ip-addresses/reserve-static-internal-ip-address) when using PRIVATE_SERVICE_ACCESS connect mode. When the name of an allocated IP address range is specified, it must be one of the ranges associated with the private service access connection. When specified as a direct CIDR value, it must be a /29 CIDR block for Basic tier, a /24 CIDR block for High Scale tier, or a /26 CIDR block for Enterprise tier in one of the [internal IP address ranges](https://www.arin.net/reference/research/statistics/address_filters/) that identifies the range of IP addresses reserved for this instance. For example, 10.0.0.0/29, 192.168.0.0/24 or 192.168.0.0/26, respectively. The range you specify can't overlap with either existing subnets or assigned IP address ranges for other Filestore instances in the selected VPC network.",
"type": "string"
Expand Down Expand Up @@ -1952,6 +1958,10 @@
},
"type": "array"
},
"network": {
"description": "Optional. The source VPC network for ip_ranges. Required for instances using Private Service Connect, optional otherwise. If provided, must be the same network specified in the `NetworkConfig.network` field.",
"type": "string"
},
"squashMode": {
"description": "Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH.",
"enum": [
Expand Down Expand Up @@ -2111,6 +2121,17 @@
},
"type": "object"
},
"PscConfig": {
"description": "Private Service Connect configuration.",
"id": "PscConfig",
"properties": {
"endpointProject": {
"description": "Optional. Consumer service project in which the Private Service Connect endpoint would be set up. This is optional, and only relevant in case the network is a shared VPC. If this is not specified, the endpoint would be setup in the VPC host project.",
"type": "string"
}
},
"type": "object"
},
"ReplicaConfig": {
"description": "Replica configuration for the instance.",
"id": "ReplicaConfig",
Expand Down
35 changes: 35 additions & 0 deletions file/v1/file-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 migrationcenter/v1/migrationcenter-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -2407,7 +2407,7 @@
}
}
},
"revision": "20250814",
"revision": "20250904",
"rootUrl": "https://migrationcenter.googleapis.com/",
"schemas": {
"AddAssetsToGroupRequest": {
Expand Down
6 changes: 3 additions & 3 deletions migrationcenter/v1/migrationcenter-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 tpu/v1/tpu-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -665,7 +665,7 @@
}
}
},
"revision": "20250815",
"revision": "20250903",
"rootUrl": "https://tpu.googleapis.com/",
"schemas": {
"AcceleratorType": {
Expand Down
6 changes: 3 additions & 3 deletions tpu/v1/tpu-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 tpu/v1alpha1/tpu-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -675,7 +675,7 @@
}
}
},
"revision": "20250815",
"revision": "20250903",
"rootUrl": "https://tpu.googleapis.com/",
"schemas": {
"AcceleratorType": {
Expand Down
6 changes: 3 additions & 3 deletions tpu/v1alpha1/tpu-gen.go

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

30 changes: 28 additions & 2 deletions tpu/v2/tpu-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -893,7 +893,7 @@
}
}
},
"revision": "20250815",
"revision": "20250903",
"rootUrl": "https://tpu.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -1000,12 +1000,34 @@
},
"type": "object"
},
"BootDiskConfig": {
"description": "Sets the boot disk configuration for the TPU node.",
"id": "BootDiskConfig",
"properties": {
"customerEncryptionKey": {
"$ref": "CustomerEncryptionKey",
"description": "Optional. Customer encryption key for boot disk."
}
},
"type": "object"
},
"CreatingData": {
"description": "Further data for the creating state.",
"id": "CreatingData",
"properties": {},
"type": "object"
},
"CustomerEncryptionKey": {
"description": "Defines the customer encryption key for disk encryption.",
"id": "CustomerEncryptionKey",
"properties": {
"kmsKeyName": {
"description": "The name of the encryption key that is stored in Google Cloud KMS. For example: \"kmsKeyName\": \"projects/KMS_PROJECT_ID/locations/REGION/keyRings/KEY_REGION/cryptoKeys/KEY The fully-qualifed key name may be returned for resource GET requests. For example: \"kmsKeyName\": \"projects/KMS_PROJECT_ID/locations/REGION/keyRings/KEY_REGION/cryptoKeys/KEY/cryptoKeyVersions/1 ",
"type": "string"
}
},
"type": "object"
},
"DeletingData": {
"description": "Further data for the deleting state.",
"id": "DeletingData",
Expand Down Expand Up @@ -1421,6 +1443,10 @@
"readOnly": true,
"type": "string"
},
"bootDiskConfig": {
"$ref": "BootDiskConfig",
"description": "Optional. Boot disk configuration."
},
"cidrBlock": {
"description": "The CIDR block that the TPU node will use when selecting an IP address. This CIDR block must be a /29 block; the Compute Engine networks API forbids a smaller block, and using a larger block would be wasteful (a node can only consume one IP address). Errors will occur if the CIDR block has already been used for a currently existing TPU node, the CIDR block conflicts with any subnetworks in the user's provided network, or the provided network is peered with another network that is using that CIDR block.",
"type": "string"
Expand Down
Loading