config
Creates, updates, deletes, gets or lists a config
resource.
Overview
Name | config |
Type | Resource |
Id | google.ml.config |
Fields
The following fields are returned by SELECT
queries:
- projects_get_config
Successful response
Name | Datatype | Description |
---|---|---|
config | object | (id: GoogleCloudMlV1__Config) |
serviceAccount | string | The service account Cloud ML uses to access resources in the project. |
serviceAccountProject | string (int64) | The project number for service_account . |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_get_config | select | projectsId | Get the service account information associated with your project. You need this information in order to grant the service account permissions for the Google Cloud Storage location where you put your model training code for training the model with Google Cloud Machine Learning. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
projectsId | string |
SELECT
examples
- projects_get_config
Get the service account information associated with your project. You need this information in order to grant the service account permissions for the Google Cloud Storage location where you put your model training code for training the model with Google Cloud Machine Learning.
SELECT
config,
serviceAccount,
serviceAccountProject
FROM google.ml.config
WHERE projectsId = '{{ projectsId }}' -- required;