licensing

package
v2.3.1+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2016 License: BSD-3-Clause, Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

Package licensing provides access to the Enterprise License Manager API.

See https://developers.google.com/google-apps/licensing/

Usage example:

import "google.golang.org/api/licensing/v1"
...
licensingService, err := licensing.New(oauthHttpClient)

Index

Constants

View Source
const (
	// View and manage Google Apps licenses for your domain
	AppsLicensingScope = "https://www.googleapis.com/auth/apps.licensing"
)

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

type LicenseAssignment

type LicenseAssignment struct {
	// Etags: ETag of the resource.
	Etags string `json:"etags,omitempty"`

	// Kind: Identifies the resource as a LicenseAssignment.
	Kind string `json:"kind,omitempty"`

	// ProductId: Name of the product.
	ProductId string `json:"productId,omitempty"`

	// SelfLink: Link to this page.
	SelfLink string `json:"selfLink,omitempty"`

	// SkuId: Name of the sku of the product.
	SkuId string `json:"skuId,omitempty"`

	// UserId: Email id of the user.
	UserId string `json:"userId,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Etags") 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:"-"`
}

LicenseAssignment: Template for LiscenseAssignment Resource

func (*LicenseAssignment) MarshalJSON

func (s *LicenseAssignment) MarshalJSON() ([]byte, error)

type LicenseAssignmentInsert

type LicenseAssignmentInsert struct {
	// UserId: Email id of the user
	UserId string `json:"userId,omitempty"`

	// ForceSendFields is a list of field names (e.g. "UserId") 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:"-"`
}

LicenseAssignmentInsert: Template for LicenseAssignment Insert request

func (*LicenseAssignmentInsert) MarshalJSON

func (s *LicenseAssignmentInsert) MarshalJSON() ([]byte, error)

type LicenseAssignmentList

type LicenseAssignmentList struct {
	// Etag: ETag of the resource.
	Etag string `json:"etag,omitempty"`

	// Items: The LicenseAssignments in this page of results.
	Items []*LicenseAssignment `json:"items,omitempty"`

	// Kind: Identifies the resource as a collection of LicenseAssignments.
	Kind string `json:"kind,omitempty"`

	// NextPageToken: The continuation token, used to page through large
	// result sets. Provide this value in a subsequent request to return the
	// next page of results.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Etag") 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:"-"`
}

LicenseAssignmentList: LicesnseAssignment List for a given product/sku for a customer.

func (*LicenseAssignmentList) MarshalJSON

func (s *LicenseAssignmentList) MarshalJSON() ([]byte, error)

type LicenseAssignmentsDeleteCall

type LicenseAssignmentsDeleteCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsDeleteCall) Context

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 (*LicenseAssignmentsDeleteCall) Do

Do executes the "licensing.licenseAssignments.delete" call.

func (*LicenseAssignmentsDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type LicenseAssignmentsGetCall

type LicenseAssignmentsGetCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsGetCall) Context

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 (*LicenseAssignmentsGetCall) Do

Do executes the "licensing.licenseAssignments.get" call. Exactly one of *LicenseAssignment or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignment.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 (*LicenseAssignmentsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*LicenseAssignmentsGetCall) IfNoneMatch

func (c *LicenseAssignmentsGetCall) IfNoneMatch(entityTag string) *LicenseAssignmentsGetCall

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.

type LicenseAssignmentsInsertCall

type LicenseAssignmentsInsertCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsInsertCall) Context

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 (*LicenseAssignmentsInsertCall) Do

Do executes the "licensing.licenseAssignments.insert" call. Exactly one of *LicenseAssignment or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignment.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 (*LicenseAssignmentsInsertCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type LicenseAssignmentsListForProductAndSkuCall

type LicenseAssignmentsListForProductAndSkuCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsListForProductAndSkuCall) Context

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 (*LicenseAssignmentsListForProductAndSkuCall) Do

Do executes the "licensing.licenseAssignments.listForProductAndSku" call. Exactly one of *LicenseAssignmentList or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignmentList.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 (*LicenseAssignmentsListForProductAndSkuCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*LicenseAssignmentsListForProductAndSkuCall) IfNoneMatch

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 (*LicenseAssignmentsListForProductAndSkuCall) MaxResults

MaxResults sets the optional parameter "maxResults": Maximum number of campaigns to return at one time. Must be positive. Default value is 100.

func (*LicenseAssignmentsListForProductAndSkuCall) PageToken

PageToken sets the optional parameter "pageToken": Token to fetch the next page. By default server will return first page

type LicenseAssignmentsListForProductCall

type LicenseAssignmentsListForProductCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsListForProductCall) Context

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 (*LicenseAssignmentsListForProductCall) Do

Do executes the "licensing.licenseAssignments.listForProduct" call. Exactly one of *LicenseAssignmentList or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignmentList.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 (*LicenseAssignmentsListForProductCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*LicenseAssignmentsListForProductCall) IfNoneMatch

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 (*LicenseAssignmentsListForProductCall) MaxResults

MaxResults sets the optional parameter "maxResults": Maximum number of campaigns to return at one time. Must be positive. Default value is 100.

func (*LicenseAssignmentsListForProductCall) PageToken

PageToken sets the optional parameter "pageToken": Token to fetch the next page. By default server will return first page

type LicenseAssignmentsPatchCall

type LicenseAssignmentsPatchCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsPatchCall) Context

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 (*LicenseAssignmentsPatchCall) Do

Do executes the "licensing.licenseAssignments.patch" call. Exactly one of *LicenseAssignment or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignment.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 (*LicenseAssignmentsPatchCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type LicenseAssignmentsService

type LicenseAssignmentsService struct {
	// contains filtered or unexported fields
}

func NewLicenseAssignmentsService

func NewLicenseAssignmentsService(s *Service) *LicenseAssignmentsService

func (*LicenseAssignmentsService) Delete

func (r *LicenseAssignmentsService) Delete(productId string, skuId string, userId string) *LicenseAssignmentsDeleteCall

Delete: Revoke License.

func (*LicenseAssignmentsService) Get

func (r *LicenseAssignmentsService) Get(productId string, skuId string, userId string) *LicenseAssignmentsGetCall

Get: Get license assignment of a particular product and sku for a user

func (*LicenseAssignmentsService) Insert

func (r *LicenseAssignmentsService) Insert(productId string, skuId string, licenseassignmentinsert *LicenseAssignmentInsert) *LicenseAssignmentsInsertCall

Insert: Assign License.

func (*LicenseAssignmentsService) ListForProduct

func (r *LicenseAssignmentsService) ListForProduct(productId string, customerId string) *LicenseAssignmentsListForProductCall

ListForProduct: List license assignments for given product of the customer.

func (*LicenseAssignmentsService) ListForProductAndSku

func (r *LicenseAssignmentsService) ListForProductAndSku(productId string, skuId string, customerId string) *LicenseAssignmentsListForProductAndSkuCall

ListForProductAndSku: List license assignments for given product and sku of the customer.

func (*LicenseAssignmentsService) Patch

func (r *LicenseAssignmentsService) Patch(productId string, skuId string, userId string, licenseassignment *LicenseAssignment) *LicenseAssignmentsPatchCall

Patch: Assign License. This method supports patch semantics.

func (*LicenseAssignmentsService) Update

func (r *LicenseAssignmentsService) Update(productId string, skuId string, userId string, licenseassignment *LicenseAssignment) *LicenseAssignmentsUpdateCall

Update: Assign License.

type LicenseAssignmentsUpdateCall

type LicenseAssignmentsUpdateCall struct {
	// contains filtered or unexported fields
}

func (*LicenseAssignmentsUpdateCall) Context

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 (*LicenseAssignmentsUpdateCall) Do

Do executes the "licensing.licenseAssignments.update" call. Exactly one of *LicenseAssignment or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LicenseAssignment.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 (*LicenseAssignmentsUpdateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type Service

type Service struct {
	BasePath  string // API endpoint base URL
	UserAgent string // optional additional User-Agent fragment

	LicenseAssignments *LicenseAssignmentsService
	// contains filtered or unexported fields
}

func New

func New(client *http.Client) (*Service, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL