getConfig method

Future<GoogleCloudMlV1GetConfigResponse> getConfig(
  1. String name, {
  2. String? $fields,
})

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.

Request parameters:

name - Required. The project name. Value must have pattern ^projects/\[^/\]+$.

$fields - Selector specifying which fields to include in a partial response.

Completes with a GoogleCloudMlV1GetConfigResponse.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<GoogleCloudMlV1GetConfigResponse> getConfig(
  core.String name, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$name') + ':getConfig';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return GoogleCloudMlV1GetConfigResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}