Struct google_ml1_beta1::ProjectMethods [] [src]

pub struct ProjectMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

A builder providing access to all methods supported on project resources. It is not used directly, but through the CloudMachineLearningEngine hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_ml1_beta1 as ml1_beta1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use ml1_beta1::CloudMachineLearningEngine;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = CloudMachineLearningEngine::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get_config(...)`, `jobs_cancel(...)`, `jobs_create(...)`, `jobs_get(...)`, `jobs_list(...)`, `models_create(...)`, `models_delete(...)`, `models_get(...)`, `models_list(...)`, `models_versions_create(...)`, `models_versions_delete(...)`, `models_versions_get(...)`, `models_versions_list(...)`, `models_versions_set_default(...)`, `operations_cancel(...)`, `operations_delete(...)`, `operations_get(...)`, `operations_list(...)` and `predict(...)`
// to build up your call.
let rb = hub.projects();

Methods

impl<'a, C, A> ProjectMethods<'a, C, A>
[src]

[src]

Create a builder to help you perform the following task:

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED.

NOTE: the name binding below allows API services to override the binding to use different resource name schemes, such as users/*/operations.

Arguments

  • name - The name of the operation collection.

[src]

Create a builder to help you perform the following task:

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Arguments

  • name - The name of the operation resource to be deleted.

[src]

Create a builder to help you perform the following task:

Creates a new version of a model from a trained TensorFlow model.

If the version created in the cloud by this call is the first deployed version of the specified model, it will be made the default version of the model. When you add a version to a model that already has one or more versions, the default version does not automatically change. If you want a new version to be the default, you must call projects.models.versions.setDefault.

Arguments

  • request - No description provided.
  • parent - Required. The name of the model. Authorization: requires Editor role on the parent project.

[src]

Create a builder to help you perform the following task:

Gets basic information about all the versions of a model.

If you expect that a model has a lot of versions, or if you need to handle only a limited number of results at a time, you can request that the list be retrieved in batches (called pages):

Arguments

  • parent - Required. The name of the model for which to list the version. Authorization: requires Viewer role on the parent project.

[src]

Create a builder to help you perform the following task:

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

Arguments

  • name - The name of the operation resource.

[src]

Create a builder to help you perform the following task:

Deletes a model version.

Each model can have multiple versions deployed and in use at any given time. Use this method to remove a single version.

Note: You cannot delete the version that is set as the default version of the model unless it is the only remaining version.

Arguments

  • name - Required. The name of the version. You can get the names of all the versions of a model by calling projects.models.versions.list. Authorization: requires Editor role on the parent project.

[src]

Create a builder to help you perform the following task:

Creates a training or a batch prediction job.

Arguments

  • request - No description provided.
  • parent - Required. The project name. Authorization: requires Editor role on the specified project.

[src]

Create a builder to help you perform the following task:

Deletes a model.

You can only delete a model if there are no versions in it. You can delete versions by calling projects.models.versions.delete.

Arguments

  • name - Required. The name of the model. Authorization: requires Editor role on the parent project.

[src]

Create a builder to help you perform the following task:

Performs prediction on the data in the request.

**** REMOVE FROM GENERATED DOCUMENTATION

Arguments

  • request - No description provided.
  • name - Required. The resource name of a model or a version. Authorization: requires Viewer role on the parent project.

[src]

Create a builder to help you perform the following task:

Gets information about a model version.

Models can have multiple versions. You can call projects.models.versions.list to get the same information that this method returns for all of the versions of a model.

Arguments

  • name - Required. The name of the version. Authorization: requires Viewer role on the parent project.

[src]

Create a builder to help you perform the following task:

Get the service account information associated with your project. You need this information in order to grant the service account persmissions for the Google Cloud Storage location where you put your model training code for training the model with Google Cloud Machine Learning.

Arguments

  • name - Required. The project name. Authorization: requires Viewer role on the specified project.

[src]

Create a builder to help you perform the following task:

Describes a job.

Arguments

  • name - Required. The name of the job to get the description of. Authorization: requires Viewer role on the parent project.

[src]

Create a builder to help you perform the following task:

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

Arguments

  • name - The name of the operation resource to be cancelled.

[src]

Create a builder to help you perform the following task:

Creates a model which will later contain one or more versions.

You must add at least one version before you can request predictions from the model. Add versions by calling projects.models.versions.create.

Arguments

  • request - No description provided.
  • parent - Required. The project name. Authorization: requires Editor role on the specified project.

[src]

Create a builder to help you perform the following task:

Designates a version to be the default for the model.

The default version is used for prediction requests made against the model that don't specify a version.

The first version to be created for a model is automatically set as the default. You must make any subsequent changes to the default version setting manually using this method.

Arguments

  • request - No description provided.
  • name - Required. The name of the version to make the default for the model. You can get the names of all the versions of a model by calling projects.models.versions.list. Authorization: requires Editor role on the parent project.

[src]

Create a builder to help you perform the following task:

Lists the jobs in the project.

Arguments

  • parent - Required. The name of the project for which to list jobs. Authorization: requires Viewer role on the specified project.

[src]

Create a builder to help you perform the following task:

Cancels a running job.

Arguments

  • request - No description provided.
  • name - Required. The name of the job to cancel. Authorization: requires Editor role on the parent project.

[src]

Create a builder to help you perform the following task:

Gets information about a model, including its name, the description (if set), and the default version (if at least one version of the model has been deployed).

Arguments

  • name - Required. The name of the model. Authorization: requires Viewer role on the parent project.

[src]

Create a builder to help you perform the following task:

Lists the models in a project.

Each project can contain multiple models, and each model can have multiple versions.

Arguments

  • parent - Required. The name of the project whose models are to be listed. Authorization: requires Viewer role on the specified project.

Trait Implementations

impl<'a, C, A> MethodsBuilder for ProjectMethods<'a, C, A>
[src]