123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962 |
- // Package prediction provides access to the Prediction API.
- //
- // See https://developers.google.com/prediction/docs/developer-guide
- //
- // Usage example:
- //
- // import "google.golang.org/api/prediction/v1.2"
- // ...
- // predictionService, err := prediction.New(oauthHttpClient)
- package prediction // import "google.golang.org/api/prediction/v1.2"
- import (
- "bytes"
- "encoding/json"
- "errors"
- "fmt"
- context "golang.org/x/net/context"
- ctxhttp "golang.org/x/net/context/ctxhttp"
- gensupport "google.golang.org/api/gensupport"
- googleapi "google.golang.org/api/googleapi"
- "io"
- "net/http"
- "net/url"
- "strconv"
- "strings"
- )
- // Always reference these packages, just in case the auto-generated code
- // below doesn't.
- var _ = bytes.NewBuffer
- var _ = strconv.Itoa
- var _ = fmt.Sprintf
- var _ = json.NewDecoder
- var _ = io.Copy
- var _ = url.Parse
- var _ = gensupport.MarshalJSON
- var _ = googleapi.Version
- var _ = errors.New
- var _ = strings.Replace
- var _ = context.Canceled
- var _ = ctxhttp.Do
- const apiId = "prediction:v1.2"
- const apiName = "prediction"
- const apiVersion = "v1.2"
- const basePath = "https://www.googleapis.com/prediction/v1.2/"
- // OAuth2 scopes used by this API.
- const (
- // Manage your data and permissions in Google Cloud Storage
- DevstorageFullControlScope = "https://www.googleapis.com/auth/devstorage.full_control"
- // View your data in Google Cloud Storage
- DevstorageReadOnlyScope = "https://www.googleapis.com/auth/devstorage.read_only"
- // Manage your data in Google Cloud Storage
- DevstorageReadWriteScope = "https://www.googleapis.com/auth/devstorage.read_write"
- // Manage your data in the Google Prediction API
- PredictionScope = "https://www.googleapis.com/auth/prediction"
- )
- func New(client *http.Client) (*Service, error) {
- if client == nil {
- return nil, errors.New("client is nil")
- }
- s := &Service{client: client, BasePath: basePath}
- s.Hostedmodels = NewHostedmodelsService(s)
- s.Training = NewTrainingService(s)
- return s, nil
- }
- type Service struct {
- client *http.Client
- BasePath string // API endpoint base URL
- UserAgent string // optional additional User-Agent fragment
- Hostedmodels *HostedmodelsService
- Training *TrainingService
- }
- func (s *Service) userAgent() string {
- if s.UserAgent == "" {
- return googleapi.UserAgent
- }
- return googleapi.UserAgent + " " + s.UserAgent
- }
- func NewHostedmodelsService(s *Service) *HostedmodelsService {
- rs := &HostedmodelsService{s: s}
- return rs
- }
- type HostedmodelsService struct {
- s *Service
- }
- func NewTrainingService(s *Service) *TrainingService {
- rs := &TrainingService{s: s}
- return rs
- }
- type TrainingService struct {
- s *Service
- }
- type Input struct {
- Input *InputInput `json:"input,omitempty"`
- // ForceSendFields is a list of field names (e.g. "Input") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *Input) MarshalJSON() ([]byte, error) {
- type noMethod Input
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type InputInput struct {
- CsvInstance []interface{} `json:"csvInstance,omitempty"`
- // ForceSendFields is a list of field names (e.g. "CsvInstance") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *InputInput) MarshalJSON() ([]byte, error) {
- type noMethod InputInput
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type Output struct {
- Id string `json:"id,omitempty"`
- Kind string `json:"kind,omitempty"`
- OutputLabel string `json:"outputLabel,omitempty"`
- OutputMulti []*OutputOutputMulti `json:"outputMulti,omitempty"`
- OutputValue float64 `json:"outputValue,omitempty"`
- SelfLink string `json:"selfLink,omitempty"`
- // ServerResponse contains the HTTP response code and headers from the
- // server.
- googleapi.ServerResponse `json:"-"`
- // ForceSendFields is a list of field names (e.g. "Id") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *Output) MarshalJSON() ([]byte, error) {
- type noMethod Output
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type OutputOutputMulti struct {
- Label string `json:"label,omitempty"`
- Score float64 `json:"score,omitempty"`
- // ForceSendFields is a list of field names (e.g. "Label") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *OutputOutputMulti) MarshalJSON() ([]byte, error) {
- type noMethod OutputOutputMulti
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type Training struct {
- Id string `json:"id,omitempty"`
- Kind string `json:"kind,omitempty"`
- ModelInfo *TrainingModelInfo `json:"modelInfo,omitempty"`
- SelfLink string `json:"selfLink,omitempty"`
- TrainingStatus string `json:"trainingStatus,omitempty"`
- // ServerResponse contains the HTTP response code and headers from the
- // server.
- googleapi.ServerResponse `json:"-"`
- // ForceSendFields is a list of field names (e.g. "Id") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *Training) MarshalJSON() ([]byte, error) {
- type noMethod Training
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type TrainingModelInfo struct {
- ClassificationAccuracy float64 `json:"classificationAccuracy,omitempty"`
- MeanSquaredError float64 `json:"meanSquaredError,omitempty"`
- ModelType string `json:"modelType,omitempty"`
- // ForceSendFields is a list of field names (e.g.
- // "ClassificationAccuracy") to unconditionally include in API requests.
- // By default, fields with empty values are omitted from API requests.
- // However, any non-pointer, non-interface field appearing in
- // ForceSendFields will be sent to the server regardless of whether the
- // field is empty or not. This may be used to include empty fields in
- // Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *TrainingModelInfo) MarshalJSON() ([]byte, error) {
- type noMethod TrainingModelInfo
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- type Update struct {
- // ClassLabel: The true class label of this instance
- ClassLabel string `json:"classLabel,omitempty"`
- // CsvInstance: The input features for this instance
- CsvInstance []interface{} `json:"csvInstance,omitempty"`
- // ForceSendFields is a list of field names (e.g. "ClassLabel") to
- // unconditionally include in API requests. By default, fields with
- // empty values are omitted from API requests. However, any non-pointer,
- // non-interface field appearing in ForceSendFields will be sent to the
- // server regardless of whether the field is empty or not. This may be
- // used to include empty fields in Patch requests.
- ForceSendFields []string `json:"-"`
- }
- func (s *Update) MarshalJSON() ([]byte, error) {
- type noMethod Update
- raw := noMethod(*s)
- return gensupport.MarshalJSON(raw, s.ForceSendFields)
- }
- // method id "prediction.predict":
- type PredictCall struct {
- s *Service
- data string
- input *Input
- urlParams_ gensupport.URLParams
- ctx_ context.Context
- }
- // Predict: Submit data and request a prediction
- func (s *Service) Predict(data string, input *Input) *PredictCall {
- c := &PredictCall{s: s, urlParams_: make(gensupport.URLParams)}
- c.data = data
- c.input = input
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *PredictCall) Fields(s ...googleapi.Field) *PredictCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *PredictCall) Context(ctx context.Context) *PredictCall {
- c.ctx_ = ctx
- return c
- }
- func (c *PredictCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- body, err := googleapi.WithoutDataWrapper.JSONReader(c.input)
- if err != nil {
- return nil, err
- }
- ctype := "application/json"
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "training/{data}/predict")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("POST", urls, body)
- googleapi.Expand(req.URL, map[string]string{
- "data": c.data,
- })
- req.Header.Set("Content-Type", ctype)
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.predict" call.
- // Exactly one of *Output or error will be non-nil. Any non-2xx status
- // code is an error. Response headers are in either
- // *Output.ServerResponse.Header or (if a response was returned at all)
- // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to
- // check whether the returned error was because http.StatusNotModified
- // was returned.
- func (c *PredictCall) Do(opts ...googleapi.CallOption) (*Output, error) {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if res != nil && res.StatusCode == http.StatusNotModified {
- if res.Body != nil {
- res.Body.Close()
- }
- return nil, &googleapi.Error{
- Code: res.StatusCode,
- Header: res.Header,
- }
- }
- if err != nil {
- return nil, err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return nil, err
- }
- ret := &Output{
- ServerResponse: googleapi.ServerResponse{
- Header: res.Header,
- HTTPStatusCode: res.StatusCode,
- },
- }
- if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- // {
- // "description": "Submit data and request a prediction",
- // "httpMethod": "POST",
- // "id": "prediction.predict",
- // "parameterOrder": [
- // "data"
- // ],
- // "parameters": {
- // "data": {
- // "description": "mybucket%2Fmydata resource in Google Storage",
- // "location": "path",
- // "required": true,
- // "type": "string"
- // }
- // },
- // "path": "training/{data}/predict",
- // "request": {
- // "$ref": "Input"
- // },
- // "response": {
- // "$ref": "Output"
- // },
- // "scopes": [
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
- // method id "prediction.hostedmodels.predict":
- type HostedmodelsPredictCall struct {
- s *Service
- hostedModelName string
- input *Input
- urlParams_ gensupport.URLParams
- ctx_ context.Context
- }
- // Predict: Submit input and request an output against a hosted model
- func (r *HostedmodelsService) Predict(hostedModelName string, input *Input) *HostedmodelsPredictCall {
- c := &HostedmodelsPredictCall{s: r.s, urlParams_: make(gensupport.URLParams)}
- c.hostedModelName = hostedModelName
- c.input = input
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *HostedmodelsPredictCall) Fields(s ...googleapi.Field) *HostedmodelsPredictCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *HostedmodelsPredictCall) Context(ctx context.Context) *HostedmodelsPredictCall {
- c.ctx_ = ctx
- return c
- }
- func (c *HostedmodelsPredictCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- body, err := googleapi.WithoutDataWrapper.JSONReader(c.input)
- if err != nil {
- return nil, err
- }
- ctype := "application/json"
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "hostedmodels/{hostedModelName}/predict")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("POST", urls, body)
- googleapi.Expand(req.URL, map[string]string{
- "hostedModelName": c.hostedModelName,
- })
- req.Header.Set("Content-Type", ctype)
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.hostedmodels.predict" call.
- // Exactly one of *Output or error will be non-nil. Any non-2xx status
- // code is an error. Response headers are in either
- // *Output.ServerResponse.Header or (if a response was returned at all)
- // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to
- // check whether the returned error was because http.StatusNotModified
- // was returned.
- func (c *HostedmodelsPredictCall) Do(opts ...googleapi.CallOption) (*Output, error) {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if res != nil && res.StatusCode == http.StatusNotModified {
- if res.Body != nil {
- res.Body.Close()
- }
- return nil, &googleapi.Error{
- Code: res.StatusCode,
- Header: res.Header,
- }
- }
- if err != nil {
- return nil, err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return nil, err
- }
- ret := &Output{
- ServerResponse: googleapi.ServerResponse{
- Header: res.Header,
- HTTPStatusCode: res.StatusCode,
- },
- }
- if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- // {
- // "description": "Submit input and request an output against a hosted model",
- // "httpMethod": "POST",
- // "id": "prediction.hostedmodels.predict",
- // "parameterOrder": [
- // "hostedModelName"
- // ],
- // "parameters": {
- // "hostedModelName": {
- // "description": "The name of a hosted model",
- // "location": "path",
- // "required": true,
- // "type": "string"
- // }
- // },
- // "path": "hostedmodels/{hostedModelName}/predict",
- // "request": {
- // "$ref": "Input"
- // },
- // "response": {
- // "$ref": "Output"
- // },
- // "scopes": [
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
- // method id "prediction.training.delete":
- type TrainingDeleteCall struct {
- s *Service
- data string
- urlParams_ gensupport.URLParams
- ctx_ context.Context
- }
- // Delete: Delete a trained model
- func (r *TrainingService) Delete(data string) *TrainingDeleteCall {
- c := &TrainingDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)}
- c.data = data
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *TrainingDeleteCall) Fields(s ...googleapi.Field) *TrainingDeleteCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *TrainingDeleteCall) Context(ctx context.Context) *TrainingDeleteCall {
- c.ctx_ = ctx
- return c
- }
- func (c *TrainingDeleteCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "training/{data}")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("DELETE", urls, body)
- googleapi.Expand(req.URL, map[string]string{
- "data": c.data,
- })
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.training.delete" call.
- func (c *TrainingDeleteCall) Do(opts ...googleapi.CallOption) error {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if err != nil {
- return err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return err
- }
- return nil
- // {
- // "description": "Delete a trained model",
- // "httpMethod": "DELETE",
- // "id": "prediction.training.delete",
- // "parameterOrder": [
- // "data"
- // ],
- // "parameters": {
- // "data": {
- // "description": "mybucket/mydata resource in Google Storage",
- // "location": "path",
- // "required": true,
- // "type": "string"
- // }
- // },
- // "path": "training/{data}",
- // "scopes": [
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
- // method id "prediction.training.get":
- type TrainingGetCall struct {
- s *Service
- data string
- urlParams_ gensupport.URLParams
- ifNoneMatch_ string
- ctx_ context.Context
- }
- // Get: Check training status of your model
- func (r *TrainingService) Get(data string) *TrainingGetCall {
- c := &TrainingGetCall{s: r.s, urlParams_: make(gensupport.URLParams)}
- c.data = data
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *TrainingGetCall) Fields(s ...googleapi.Field) *TrainingGetCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // IfNoneMatch sets the optional parameter which makes the operation
- // fail if the object's ETag matches the given value. This is useful for
- // getting updates only after the object has changed since the last
- // request. Use googleapi.IsNotModified to check whether the response
- // error from Do is the result of In-None-Match.
- func (c *TrainingGetCall) IfNoneMatch(entityTag string) *TrainingGetCall {
- c.ifNoneMatch_ = entityTag
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *TrainingGetCall) Context(ctx context.Context) *TrainingGetCall {
- c.ctx_ = ctx
- return c
- }
- func (c *TrainingGetCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "training/{data}")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("GET", urls, body)
- googleapi.Expand(req.URL, map[string]string{
- "data": c.data,
- })
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ifNoneMatch_ != "" {
- req.Header.Set("If-None-Match", c.ifNoneMatch_)
- }
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.training.get" call.
- // Exactly one of *Training or error will be non-nil. Any non-2xx status
- // code is an error. Response headers are in either
- // *Training.ServerResponse.Header or (if a response was returned at
- // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
- // to check whether the returned error was because
- // http.StatusNotModified was returned.
- func (c *TrainingGetCall) Do(opts ...googleapi.CallOption) (*Training, error) {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if res != nil && res.StatusCode == http.StatusNotModified {
- if res.Body != nil {
- res.Body.Close()
- }
- return nil, &googleapi.Error{
- Code: res.StatusCode,
- Header: res.Header,
- }
- }
- if err != nil {
- return nil, err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return nil, err
- }
- ret := &Training{
- ServerResponse: googleapi.ServerResponse{
- Header: res.Header,
- HTTPStatusCode: res.StatusCode,
- },
- }
- if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- // {
- // "description": "Check training status of your model",
- // "httpMethod": "GET",
- // "id": "prediction.training.get",
- // "parameterOrder": [
- // "data"
- // ],
- // "parameters": {
- // "data": {
- // "description": "mybucket/mydata resource in Google Storage",
- // "location": "path",
- // "required": true,
- // "type": "string"
- // }
- // },
- // "path": "training/{data}",
- // "response": {
- // "$ref": "Training"
- // },
- // "scopes": [
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
- // method id "prediction.training.insert":
- type TrainingInsertCall struct {
- s *Service
- training *Training
- urlParams_ gensupport.URLParams
- ctx_ context.Context
- }
- // Insert: Begin training your model
- func (r *TrainingService) Insert(training *Training) *TrainingInsertCall {
- c := &TrainingInsertCall{s: r.s, urlParams_: make(gensupport.URLParams)}
- c.training = training
- return c
- }
- // Data sets the optional parameter "data": mybucket/mydata resource in
- // Google Storage
- func (c *TrainingInsertCall) Data(data string) *TrainingInsertCall {
- c.urlParams_.Set("data", data)
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *TrainingInsertCall) Fields(s ...googleapi.Field) *TrainingInsertCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *TrainingInsertCall) Context(ctx context.Context) *TrainingInsertCall {
- c.ctx_ = ctx
- return c
- }
- func (c *TrainingInsertCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- body, err := googleapi.WithoutDataWrapper.JSONReader(c.training)
- if err != nil {
- return nil, err
- }
- ctype := "application/json"
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "training")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("POST", urls, body)
- googleapi.SetOpaque(req.URL)
- req.Header.Set("Content-Type", ctype)
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.training.insert" call.
- // Exactly one of *Training or error will be non-nil. Any non-2xx status
- // code is an error. Response headers are in either
- // *Training.ServerResponse.Header or (if a response was returned at
- // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
- // to check whether the returned error was because
- // http.StatusNotModified was returned.
- func (c *TrainingInsertCall) Do(opts ...googleapi.CallOption) (*Training, error) {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if res != nil && res.StatusCode == http.StatusNotModified {
- if res.Body != nil {
- res.Body.Close()
- }
- return nil, &googleapi.Error{
- Code: res.StatusCode,
- Header: res.Header,
- }
- }
- if err != nil {
- return nil, err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return nil, err
- }
- ret := &Training{
- ServerResponse: googleapi.ServerResponse{
- Header: res.Header,
- HTTPStatusCode: res.StatusCode,
- },
- }
- if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- // {
- // "description": "Begin training your model",
- // "httpMethod": "POST",
- // "id": "prediction.training.insert",
- // "parameters": {
- // "data": {
- // "description": "mybucket/mydata resource in Google Storage",
- // "location": "query",
- // "type": "string"
- // }
- // },
- // "path": "training",
- // "request": {
- // "$ref": "Training"
- // },
- // "response": {
- // "$ref": "Training"
- // },
- // "scopes": [
- // "https://www.googleapis.com/auth/devstorage.full_control",
- // "https://www.googleapis.com/auth/devstorage.read_only",
- // "https://www.googleapis.com/auth/devstorage.read_write",
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
- // method id "prediction.training.update":
- type TrainingUpdateCall struct {
- s *Service
- data string
- update *Update
- urlParams_ gensupport.URLParams
- ctx_ context.Context
- }
- // Update: Add new data to a trained model
- func (r *TrainingService) Update(data string, update *Update) *TrainingUpdateCall {
- c := &TrainingUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
- c.data = data
- c.update = update
- return c
- }
- // Fields allows partial responses to be retrieved. See
- // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
- // for more information.
- func (c *TrainingUpdateCall) Fields(s ...googleapi.Field) *TrainingUpdateCall {
- c.urlParams_.Set("fields", googleapi.CombineFields(s))
- return c
- }
- // Context sets the context to be used in this call's Do method. Any
- // pending HTTP request will be aborted if the provided context is
- // canceled.
- func (c *TrainingUpdateCall) Context(ctx context.Context) *TrainingUpdateCall {
- c.ctx_ = ctx
- return c
- }
- func (c *TrainingUpdateCall) doRequest(alt string) (*http.Response, error) {
- var body io.Reader = nil
- body, err := googleapi.WithoutDataWrapper.JSONReader(c.update)
- if err != nil {
- return nil, err
- }
- ctype := "application/json"
- c.urlParams_.Set("alt", alt)
- urls := googleapi.ResolveRelative(c.s.BasePath, "training/{data}")
- urls += "?" + c.urlParams_.Encode()
- req, _ := http.NewRequest("PUT", urls, body)
- googleapi.Expand(req.URL, map[string]string{
- "data": c.data,
- })
- req.Header.Set("Content-Type", ctype)
- req.Header.Set("User-Agent", c.s.userAgent())
- if c.ctx_ != nil {
- return ctxhttp.Do(c.ctx_, c.s.client, req)
- }
- return c.s.client.Do(req)
- }
- // Do executes the "prediction.training.update" call.
- // Exactly one of *Training or error will be non-nil. Any non-2xx status
- // code is an error. Response headers are in either
- // *Training.ServerResponse.Header or (if a response was returned at
- // all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
- // to check whether the returned error was because
- // http.StatusNotModified was returned.
- func (c *TrainingUpdateCall) Do(opts ...googleapi.CallOption) (*Training, error) {
- gensupport.SetOptions(c.urlParams_, opts...)
- res, err := c.doRequest("json")
- if res != nil && res.StatusCode == http.StatusNotModified {
- if res.Body != nil {
- res.Body.Close()
- }
- return nil, &googleapi.Error{
- Code: res.StatusCode,
- Header: res.Header,
- }
- }
- if err != nil {
- return nil, err
- }
- defer googleapi.CloseBody(res)
- if err := googleapi.CheckResponse(res); err != nil {
- return nil, err
- }
- ret := &Training{
- ServerResponse: googleapi.ServerResponse{
- Header: res.Header,
- HTTPStatusCode: res.StatusCode,
- },
- }
- if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- // {
- // "description": "Add new data to a trained model",
- // "httpMethod": "PUT",
- // "id": "prediction.training.update",
- // "parameterOrder": [
- // "data"
- // ],
- // "parameters": {
- // "data": {
- // "description": "mybucket/mydata resource in Google Storage",
- // "location": "path",
- // "required": true,
- // "type": "string"
- // }
- // },
- // "path": "training/{data}",
- // "request": {
- // "$ref": "Update"
- // },
- // "response": {
- // "$ref": "Training"
- // },
- // "scopes": [
- // "https://www.googleapis.com/auth/prediction"
- // ]
- // }
- }
|