// Package workerschema provides access to the Dex API. // // See http://github.com/coreos/dex // // Usage example: // // import "google.golang.org/api/workerschema/v1" // ... // workerschemaService, err := workerschema.New(oauthHttpClient) package workerschema import ( "bytes" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "strconv" "strings" "google.golang.org/api/googleapi" ) // 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 _ = googleapi.Version var _ = errors.New var _ = strings.Replace const apiId = "dex:v1" const apiName = "workerschema" const apiVersion = "v1" const basePath = "$ENDPOINT/api/v1/" func New(client *http.Client) (*Service, error) { if client == nil { return nil, errors.New("client is nil") } s := &Service{client: client, BasePath: basePath} s.Clients = NewClientsService(s) s.Users = NewUsersService(s) return s, nil } type Service struct { client *http.Client BasePath string // API endpoint base URL Clients *ClientsService Users *UsersService } func NewClientsService(s *Service) *ClientsService { rs := &ClientsService{s: s} return rs } type ClientsService struct { s *Service } func NewUsersService(s *Service) *UsersService { rs := &UsersService{s: s} return rs } type UsersService struct { s *Service } type Client struct { Id string `json:"id,omitempty"` RedirectURIs []string `json:"redirectURIs,omitempty"` } type ClientPage struct { Clients []*Client `json:"clients,omitempty"` NextPageToken string `json:"nextPageToken,omitempty"` } type ClientWithSecret struct { Id string `json:"id,omitempty"` RedirectURIs []string `json:"redirectURIs,omitempty"` Secret string `json:"secret,omitempty"` } type Error struct { Error string `json:"error,omitempty"` Error_description string `json:"error_description,omitempty"` } type User struct { Admin bool `json:"admin,omitempty"` CreatedAt string `json:"createdAt,omitempty"` DisplayName string `json:"displayName,omitempty"` Email string `json:"email,omitempty"` EmailVerified bool `json:"emailVerified,omitempty"` Id string `json:"id,omitempty"` } type UserCreateRequest struct { RedirectURL string `json:"redirectURL,omitempty"` User *User `json:"user,omitempty"` } type UserCreateResponse struct { EmailSent bool `json:"emailSent,omitempty"` ResetPasswordLink string `json:"resetPasswordLink,omitempty"` User *User `json:"user,omitempty"` } type UserCreateResponseUser struct { } type UserResponse struct { User *User `json:"user,omitempty"` } type UsersResponse struct { NextPageToken string `json:"nextPageToken,omitempty"` Users []*User `json:"users,omitempty"` } // method id "dex.Client.Create": type ClientsCreateCall struct { s *Service client *Client opt_ map[string]interface{} } // Create: Register a new Client. func (r *ClientsService) Create(client *Client) *ClientsCreateCall { c := &ClientsCreateCall{s: r.s, opt_: make(map[string]interface{})} c.client = client 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 *ClientsCreateCall) Fields(s ...googleapi.Field) *ClientsCreateCall { c.opt_["fields"] = googleapi.CombineFields(s) return c } func (c *ClientsCreateCall) Do() (*ClientWithSecret, error) { var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.client) if err != nil { return nil, err } ctype := "application/json" params := make(url.Values) params.Set("alt", "json") if v, ok := c.opt_["fields"]; ok { params.Set("fields", fmt.Sprintf("%v", v)) } urls := googleapi.ResolveRelative(c.s.BasePath, "clients") urls += "?" + params.Encode() req, _ := http.NewRequest("POST", urls, body) googleapi.SetOpaque(req.URL) req.Header.Set("Content-Type", ctype) req.Header.Set("User-Agent", "google-api-go-client/0.5") res, err := c.s.client.Do(req) if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } var ret *ClientWithSecret if err := json.NewDecoder(res.Body).Decode(&ret); err != nil { return nil, err } return ret, nil // { // "description": "Register a new Client.", // "httpMethod": "POST", // "id": "dex.Client.Create", // "path": "clients", // "request": { // "$ref": "Client" // }, // "response": { // "$ref": "ClientWithSecret" // } // } } // method id "dex.Client.List": type ClientsListCall struct { s *Service opt_ map[string]interface{} } // List: Retrieve a page of Client objects. func (r *ClientsService) List() *ClientsListCall { c := &ClientsListCall{s: r.s, opt_: make(map[string]interface{})} return c } // NextPageToken sets the optional parameter "nextPageToken": func (c *ClientsListCall) NextPageToken(nextPageToken string) *ClientsListCall { c.opt_["nextPageToken"] = nextPageToken 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 *ClientsListCall) Fields(s ...googleapi.Field) *ClientsListCall { c.opt_["fields"] = googleapi.CombineFields(s) return c } func (c *ClientsListCall) Do() (*ClientPage, error) { var body io.Reader = nil params := make(url.Values) params.Set("alt", "json") if v, ok := c.opt_["nextPageToken"]; ok { params.Set("nextPageToken", fmt.Sprintf("%v", v)) } if v, ok := c.opt_["fields"]; ok { params.Set("fields", fmt.Sprintf("%v", v)) } urls := googleapi.ResolveRelative(c.s.BasePath, "clients") urls += "?" + params.Encode() req, _ := http.NewRequest("GET", urls, body) googleapi.SetOpaque(req.URL) req.Header.Set("User-Agent", "google-api-go-client/0.5") res, err := c.s.client.Do(req) if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } var ret *ClientPage if err := json.NewDecoder(res.Body).Decode(&ret); err != nil { return nil, err } return ret, nil // { // "description": "Retrieve a page of Client objects.", // "httpMethod": "GET", // "id": "dex.Client.List", // "parameters": { // "nextPageToken": { // "location": "query", // "type": "string" // } // }, // "path": "clients", // "response": { // "$ref": "ClientPage" // } // } } // method id "dex.User.Create": type UsersCreateCall struct { s *Service usercreaterequest *UserCreateRequest opt_ map[string]interface{} } // Create: Create a new User. func (r *UsersService) Create(usercreaterequest *UserCreateRequest) *UsersCreateCall { c := &UsersCreateCall{s: r.s, opt_: make(map[string]interface{})} c.usercreaterequest = usercreaterequest 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 *UsersCreateCall) Fields(s ...googleapi.Field) *UsersCreateCall { c.opt_["fields"] = googleapi.CombineFields(s) return c } func (c *UsersCreateCall) Do() (*UserCreateResponse, error) { var body io.Reader = nil body, err := googleapi.WithoutDataWrapper.JSONReader(c.usercreaterequest) if err != nil { return nil, err } ctype := "application/json" params := make(url.Values) params.Set("alt", "json") if v, ok := c.opt_["fields"]; ok { params.Set("fields", fmt.Sprintf("%v", v)) } urls := googleapi.ResolveRelative(c.s.BasePath, "users") urls += "?" + params.Encode() req, _ := http.NewRequest("POST", urls, body) googleapi.SetOpaque(req.URL) req.Header.Set("Content-Type", ctype) req.Header.Set("User-Agent", "google-api-go-client/0.5") res, err := c.s.client.Do(req) if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } var ret *UserCreateResponse if err := json.NewDecoder(res.Body).Decode(&ret); err != nil { return nil, err } return ret, nil // { // "description": "Create a new User.", // "httpMethod": "POST", // "id": "dex.User.Create", // "path": "users", // "request": { // "$ref": "UserCreateRequest" // }, // "response": { // "$ref": "UserCreateResponse" // } // } } // method id "dex.User.Get": type UsersGetCall struct { s *Service id string opt_ map[string]interface{} } // Get: Get a single use object. func (r *UsersService) Get(id string) *UsersGetCall { c := &UsersGetCall{s: r.s, opt_: make(map[string]interface{})} c.id = id 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 *UsersGetCall) Fields(s ...googleapi.Field) *UsersGetCall { c.opt_["fields"] = googleapi.CombineFields(s) return c } func (c *UsersGetCall) Do() (*UserResponse, error) { var body io.Reader = nil params := make(url.Values) params.Set("alt", "json") if v, ok := c.opt_["fields"]; ok { params.Set("fields", fmt.Sprintf("%v", v)) } urls := googleapi.ResolveRelative(c.s.BasePath, "users/{id}") urls += "?" + params.Encode() req, _ := http.NewRequest("GET", urls, body) googleapi.Expand(req.URL, map[string]string{ "id": c.id, }) req.Header.Set("User-Agent", "google-api-go-client/0.5") res, err := c.s.client.Do(req) if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } var ret *UserResponse if err := json.NewDecoder(res.Body).Decode(&ret); err != nil { return nil, err } return ret, nil // { // "description": "Get a single use object.", // "httpMethod": "GET", // "id": "dex.User.Get", // "parameterOrder": [ // "id" // ], // "parameters": { // "id": { // "location": "path", // "required": true, // "type": "string" // } // }, // "path": "users/{id}", // "response": { // "$ref": "UserResponse" // } // } } // method id "dex.User.List": type UsersListCall struct { s *Service opt_ map[string]interface{} } // List: Retrieve a page of User objects. func (r *UsersService) List() *UsersListCall { c := &UsersListCall{s: r.s, opt_: make(map[string]interface{})} return c } // MaxResults sets the optional parameter "maxResults": func (c *UsersListCall) MaxResults(maxResults int64) *UsersListCall { c.opt_["maxResults"] = maxResults return c } // NextPageToken sets the optional parameter "nextPageToken": func (c *UsersListCall) NextPageToken(nextPageToken string) *UsersListCall { c.opt_["nextPageToken"] = nextPageToken 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 *UsersListCall) Fields(s ...googleapi.Field) *UsersListCall { c.opt_["fields"] = googleapi.CombineFields(s) return c } func (c *UsersListCall) Do() (*UsersResponse, error) { var body io.Reader = nil params := make(url.Values) params.Set("alt", "json") if v, ok := c.opt_["maxResults"]; ok { params.Set("maxResults", fmt.Sprintf("%v", v)) } if v, ok := c.opt_["nextPageToken"]; ok { params.Set("nextPageToken", fmt.Sprintf("%v", v)) } if v, ok := c.opt_["fields"]; ok { params.Set("fields", fmt.Sprintf("%v", v)) } urls := googleapi.ResolveRelative(c.s.BasePath, "users") urls += "?" + params.Encode() req, _ := http.NewRequest("GET", urls, body) googleapi.SetOpaque(req.URL) req.Header.Set("User-Agent", "google-api-go-client/0.5") res, err := c.s.client.Do(req) if err != nil { return nil, err } defer googleapi.CloseBody(res) if err := googleapi.CheckResponse(res); err != nil { return nil, err } var ret *UsersResponse if err := json.NewDecoder(res.Body).Decode(&ret); err != nil { return nil, err } return ret, nil // { // "description": "Retrieve a page of User objects.", // "httpMethod": "GET", // "id": "dex.User.List", // "parameters": { // "maxResults": { // "location": "query", // "type": "integer" // }, // "nextPageToken": { // "location": "query", // "type": "string" // } // }, // "path": "users", // "response": { // "$ref": "UsersResponse" // } // } }