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 admin/directory/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4671,7 +4671,7 @@
}
}
},
"revision": "20251021",
"revision": "20251107",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5459,7 +5459,7 @@
"type": "array"
},
"bluetoothAdapterInfo": {
"description": "Output only. Information about bluetooth adapters of the device.",
"description": "Output only. Information about Bluetooth adapters of the device.",
"items": {
"$ref": "BluetoothAdapterInfo"
},
Expand Down
2 changes: 1 addition & 1 deletion admin/directory/v1/admin-gen.go

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

6 changes: 3 additions & 3 deletions admin/reports/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/admin.reports.audit.readonly": {
"description": "View audit reports for your G Suite domain"
"description": "View audit reports for your Google Workspace domain"
},
"https://www.googleapis.com/auth/admin.reports.usage.readonly": {
"description": "View usage reports for your G Suite domain"
"description": "View usage reports for your Google Workspace domain"
}
}
}
Expand Down Expand Up @@ -635,7 +635,7 @@
}
}
},
"revision": "20250818",
"revision": "20251107",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Activities": {
Expand Down
4 changes: 2 additions & 2 deletions admin/reports/v1/admin-gen.go

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

89 changes: 86 additions & 3 deletions aiplatform/v1/aiplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -10333,6 +10333,48 @@
}
}
},
"google": {
"resources": {
"science": {
"methods": {
"inference": {
"description": "Forwards arbitrary HTTP requests for both streaming and non-streaming cases. To use this method, invoke_route_prefix must be set to allow the paths that will be specified in the request.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/endpoints/google/science/inference",
"httpMethod": "POST",
"id": "aiplatform.projects.locations.endpoints.google.science.inference",
"parameterOrder": [
"endpoint"
],
"parameters": {
"deployedModelId": {
"description": "ID of the DeployedModel that serves the invoke request.",
"location": "query",
"type": "string"
},
"endpoint": {
"description": "Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/endpoints/google$",
"required": true,
"type": "string"
}
},
"path": "v1/{+endpoint}/science/inference",
"request": {
"$ref": "GoogleApiHttpBody"
},
"response": {
"$ref": "GoogleApiHttpBody"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
}
}
}
}
},
"invoke": {
"methods": {
"invoke": {
Expand Down Expand Up @@ -28693,7 +28735,7 @@
}
}
},
"revision": "20251101",
"revision": "20251114",
"rootUrl": "https://aiplatform.googleapis.com/",
"schemas": {
"CloudAiLargeModelsVisionGenerateVideoResponse": {
Expand Down Expand Up @@ -29747,7 +29789,7 @@
"id": "GoogleCloudAiplatformV1AutoscalingMetricSpec",
"properties": {
"metricName": {
"description": "Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count`",
"description": "Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` * `pubsub.googleapis.com/subscription/num_undelivered_messages`",
"type": "string"
},
"target": {
Expand Down Expand Up @@ -34483,7 +34525,7 @@
},
"response": {
"$ref": "GoogleCloudAiplatformV1EvaluationInstanceInstanceData",
"description": "Required. Data used to populate placeholder `response` in a metric prompt template."
"description": "Optional. Data used to populate placeholder `response` in a metric prompt template."
},
"rubricGroups": {
"additionalProperties": {
Expand Down Expand Up @@ -51703,6 +51745,43 @@
},
"type": "object"
},
"GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderData": {
"description": "Defines data for an application builder.",
"id": "GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderData",
"properties": {
"codeRepositoryState": {
"description": "Serialized state of the code repository. This string will typically contain a JSON representation of the UI's CodeRepositoryService state (files, folders, content, and any metadata). The UI is responsible for serialization and deserialization.",
"type": "string"
},
"linkedResources": {
"description": "Linked resources attached to the application by the user.",
"items": {
"$ref": "GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource": {
"description": "A linked resource attached to the application by the user.",
"id": "GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource",
"properties": {
"displayName": {
"description": "A user-friendly name for the data source shown in the UI.",
"type": "string"
},
"name": {
"description": "The unique resource name of the data source. The format is determined by the 'type' field. For type \"SAVED_PROMPT\": projects/{project}/locations/{location}/datasets/{dataset} For type \"AI_AGENT\": projects/{project}/locations/{location}/agents/{agent}",
"type": "string"
},
"type": {
"description": "The type of the linked resource. e.g., \"SAVED_PROMPT\", \"AI_AGENT\" This string corresponds to the name of the LinkedResourceType enum member. See: google3/cloud/console/web/ai/platform/llm/prompts/build/services/specs_repository_service/linked_resources/linked_resource.ts",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudAiplatformV1SchemaPromptSpecMultimodalPrompt": {
"description": "Prompt variation that embeds preambles to prompt string.",
"id": "GoogleCloudAiplatformV1SchemaPromptSpecMultimodalPrompt",
Expand Down Expand Up @@ -51805,6 +51884,10 @@
"description": "Prompt variation that stores preambles in separate fields.",
"id": "GoogleCloudAiplatformV1SchemaPromptSpecStructuredPrompt",
"properties": {
"appBuilderData": {
"$ref": "GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderData",
"description": "Data for app builder use case."
},
"context": {
"$ref": "GoogleCloudAiplatformV1Content",
"description": "Preamble: The context of the prompt."
Expand Down
Loading