versionhistory
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
Package versionhistory provides access to the versionhistory.googleapis.com API.
For product documentation, see:https://developer.chrome.com/docs/web-platform/versionhistory/guide
Library status¶
These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany new features.
When possible, we recommend using our newer[Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)that are still actively being worked and iterated on.
Creating a client¶
Usage example:
import "google.golang.org/api/versionhistory/v1"...ctx := context.Background()versionhistoryService, err := versionhistory.NewService(ctx)
In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.
Other authentication options¶
To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:
versionhistoryService, err := versionhistory.NewService(ctx, option.WithAPIKey("AIza..."))To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)versionhistoryService, err := versionhistory.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))Seegoogle.golang.org/api/option.ClientOption for details on options.
Index¶
- type Channel
- type Interval
- type ListChannelsResponse
- type ListPlatformsResponse
- type ListReleasesResponse
- type ListVersionsResponse
- type Platform
- type PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) Context(ctx context.Context) *PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) Do(opts ...googleapi.CallOption) (*ListChannelsResponse, error)
- func (c *PlatformsChannelsListCall) Fields(s ...googleapi.Field) *PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) Header() http.Header
- func (c *PlatformsChannelsListCall) IfNoneMatch(entityTag string) *PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) PageSize(pageSize int64) *PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) PageToken(pageToken string) *PlatformsChannelsListCall
- func (c *PlatformsChannelsListCall) Pages(ctx context.Context, f func(*ListChannelsResponse) error) error
- type PlatformsChannelsService
- type PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) Context(ctx context.Context) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) Do(opts ...googleapi.CallOption) (*ListVersionsResponse, error)
- func (c *PlatformsChannelsVersionsListCall) Fields(s ...googleapi.Field) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) Filter(filter string) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) Header() http.Header
- func (c *PlatformsChannelsVersionsListCall) IfNoneMatch(entityTag string) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) OrderBy(orderBy string) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) PageSize(pageSize int64) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) PageToken(pageToken string) *PlatformsChannelsVersionsListCall
- func (c *PlatformsChannelsVersionsListCall) Pages(ctx context.Context, f func(*ListVersionsResponse) error) error
- type PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) Context(ctx context.Context) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) Do(opts ...googleapi.CallOption) (*ListReleasesResponse, error)
- func (c *PlatformsChannelsVersionsReleasesListCall) Fields(s ...googleapi.Field) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) Filter(filter string) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) Header() http.Header
- func (c *PlatformsChannelsVersionsReleasesListCall) IfNoneMatch(entityTag string) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) OrderBy(orderBy string) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) PageSize(pageSize int64) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) PageToken(pageToken string) *PlatformsChannelsVersionsReleasesListCall
- func (c *PlatformsChannelsVersionsReleasesListCall) Pages(ctx context.Context, f func(*ListReleasesResponse) error) error
- type PlatformsChannelsVersionsReleasesService
- type PlatformsChannelsVersionsService
- type PlatformsListCall
- func (c *PlatformsListCall) Context(ctx context.Context) *PlatformsListCall
- func (c *PlatformsListCall) Do(opts ...googleapi.CallOption) (*ListPlatformsResponse, error)
- func (c *PlatformsListCall) Fields(s ...googleapi.Field) *PlatformsListCall
- func (c *PlatformsListCall) Header() http.Header
- func (c *PlatformsListCall) IfNoneMatch(entityTag string) *PlatformsListCall
- func (c *PlatformsListCall) PageSize(pageSize int64) *PlatformsListCall
- func (c *PlatformsListCall) PageToken(pageToken string) *PlatformsListCall
- func (c *PlatformsListCall) Pages(ctx context.Context, f func(*ListPlatformsResponse) error) error
- type PlatformsService
- type Release
- type RolloutData
- type Service
- type Version
Constants¶
This section is empty.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeChannel¶
type Channel struct {// ChannelType: Type of channel.//// Possible values:// "CHANNEL_TYPE_UNSPECIFIED"// "STABLE" - The Stable channel.// "BETA" - The Beta channel.// "DEV" - The Dev channel.// "CANARY" - The Canary channel.// "CANARY_ASAN" - The Canary channel for Chrome, with DCHECK/ASAN enabled.// "ALL"// "EXTENDED" - The Extended Stable channel for Chrome.// "LTS" - The Long-term support channel for ChromeOS.// "LTC" - The Long-term support candidate channel for ChromeOS.ChannelTypestring `json:"channelType,omitempty"`// Name: Channel name. Format is// "{product}/platforms/{platform}/channels/{channel}"Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "ChannelType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ChannelType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}Channel: Each Channel is owned by a Platform and owns a collection ofversions. Possible Channels are listed in the Channel enum below. Not allChannels are available for every Platform (e.g. CANARY does not exist forLINUX).
func (Channel)MarshalJSON¶
typeInterval¶
type Interval struct {// EndTime: Optional. Exclusive end of the interval. If specified, a Timestamp// matching this interval will have to be before the end.EndTimestring `json:"endTime,omitempty"`// StartTime: Optional. Inclusive start of the interval. If specified, a// Timestamp matching this interval will have to be the same or after the// start.StartTimestring `json:"startTime,omitempty"`// ForceSendFields is a list of field names (e.g. "EndTime") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}Interval: Represents a time interval, encoded as a Timestamp start(inclusive) and a Timestamp end (exclusive). The start must be less than orequal to the end. When the start equals the end, the interval is empty(matches no time). When both start and end are unspecified, the intervalmatches any time.
func (Interval)MarshalJSON¶
typeListChannelsResponse¶
type ListChannelsResponse struct {// Channels: The list of channels.Channels []*Channel `json:"channels,omitempty"`// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is omitted, there are no subsequent pages.NextPageTokenstring `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. "Channels") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Channels") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}ListChannelsResponse: Response message for ListChannels.
func (ListChannelsResponse)MarshalJSON¶
func (sListChannelsResponse) MarshalJSON() ([]byte,error)
typeListPlatformsResponse¶
type ListPlatformsResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is omitted, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Platforms: The list of platforms.Platforms []*Platform `json:"platforms,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}ListPlatformsResponse: Response message for ListPlatforms.
func (ListPlatformsResponse)MarshalJSON¶
func (sListPlatformsResponse) MarshalJSON() ([]byte,error)
typeListReleasesResponse¶
type ListReleasesResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is omitted, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Releases: The list of releases.Releases []*Release `json:"releases,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}ListReleasesResponse: Response message for ListReleases.
func (ListReleasesResponse)MarshalJSON¶
func (sListReleasesResponse) MarshalJSON() ([]byte,error)
typeListVersionsResponse¶
type ListVersionsResponse struct {// NextPageToken: A token, which can be sent as `page_token` to retrieve the// next page. If this field is omitted, there are no subsequent pages.NextPageTokenstring `json:"nextPageToken,omitempty"`// Versions: The list of versions.Versions []*Version `json:"versions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}ListVersionsResponse: Response message for ListVersions.
func (ListVersionsResponse)MarshalJSON¶
func (sListVersionsResponse) MarshalJSON() ([]byte,error)
typePlatform¶
type Platform struct {// Name: Platform name. Format is "{product}/platforms/{platform}"Namestring `json:"name,omitempty"`// PlatformType: Type of platform.//// Possible values:// "PLATFORM_TYPE_UNSPECIFIED"// "WIN" - Chrome Desktop for Windows (32-bit).// "WIN64" - Chrome Desktop for Windows (x86_64).// "MAC" - Chrome Desktop for macOS (x86_64).// "LINUX" - Chrome Desktop for Linux.// "ANDROID" - Chrome for Android.// "WEBVIEW" - WebView for Android.// "IOS" - Chrome for iOS.// "ALL"// "MAC_ARM64" - Chrome for macOS (ARM64).// "LACROS" - ChromeOS Lacros (x86_64).// "LACROS_ARM32" - ChromeOS Lacros (ARM).// "CHROMEOS" - ChromeOS.// "LACROS_ARM64" - ChromeOS Lacros (ARM64).// "FUCHSIA" - Chrome for Fuchsia.// "WIN_ARM64" - Chrome Desktop for Windows (ARM64).PlatformTypestring `json:"platformType,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}Platform: Each Platform is owned by a Product and owns a collection ofchannels. Available platforms are listed in Platform enum below. Not allChannels are available for every Platform (e.g. CANARY does not exist forLINUX).
func (Platform)MarshalJSON¶
typePlatformsChannelsListCall¶
type PlatformsChannelsListCall struct {// contains filtered or unexported fields}func (*PlatformsChannelsListCall)Context¶
func (c *PlatformsChannelsListCall) Context(ctxcontext.Context) *PlatformsChannelsListCall
Context sets the context to be used in this call's Do method.
func (*PlatformsChannelsListCall)Do¶
func (c *PlatformsChannelsListCall) Do(opts ...googleapi.CallOption) (*ListChannelsResponse,error)
Do executes the "versionhistory.platforms.channels.list" call.Any non-2xx status code is an error. Response headers are in either*ListChannelsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.
func (*PlatformsChannelsListCall)Fields¶
func (c *PlatformsChannelsListCall) Fields(s ...googleapi.Field) *PlatformsChannelsListCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*PlatformsChannelsListCall)Header¶
func (c *PlatformsChannelsListCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*PlatformsChannelsListCall)IfNoneMatch¶
func (c *PlatformsChannelsListCall) IfNoneMatch(entityTagstring) *PlatformsChannelsListCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
func (*PlatformsChannelsListCall)PageSize¶
func (c *PlatformsChannelsListCall) PageSize(pageSizeint64) *PlatformsChannelsListCall
PageSize sets the optional parameter "pageSize": Optional limit on thenumber of channels to include in the response. If unspecified, the serverwill pick an appropriate default.
func (*PlatformsChannelsListCall)PageToken¶
func (c *PlatformsChannelsListCall) PageToken(pageTokenstring) *PlatformsChannelsListCall
PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListChannels` call. Provide this to retrieve the subsequentpage.
func (*PlatformsChannelsListCall)Pages¶
func (c *PlatformsChannelsListCall) Pages(ctxcontext.Context, f func(*ListChannelsResponse)error)error
Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.
typePlatformsChannelsService¶
type PlatformsChannelsService struct {Versions *PlatformsChannelsVersionsService// contains filtered or unexported fields}funcNewPlatformsChannelsService¶
func NewPlatformsChannelsService(s *Service) *PlatformsChannelsService
func (*PlatformsChannelsService)List¶
func (r *PlatformsChannelsService) List(parentstring) *PlatformsChannelsListCall
List: Returns list of channels that are available for a given platform.
- parent: The platform, which owns this collection of channels. Format:{product}/platforms/{platform}.
typePlatformsChannelsVersionsListCall¶
type PlatformsChannelsVersionsListCall struct {// contains filtered or unexported fields}func (*PlatformsChannelsVersionsListCall)Context¶
func (c *PlatformsChannelsVersionsListCall) Context(ctxcontext.Context) *PlatformsChannelsVersionsListCall
Context sets the context to be used in this call's Do method.
func (*PlatformsChannelsVersionsListCall)Do¶
func (c *PlatformsChannelsVersionsListCall) Do(opts ...googleapi.CallOption) (*ListVersionsResponse,error)
Do executes the "versionhistory.platforms.channels.versions.list" call.Any non-2xx status code is an error. Response headers are in either*ListVersionsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.
func (*PlatformsChannelsVersionsListCall)Fields¶
func (c *PlatformsChannelsVersionsListCall) Fields(s ...googleapi.Field) *PlatformsChannelsVersionsListCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*PlatformsChannelsVersionsListCall)Filter¶
func (c *PlatformsChannelsVersionsListCall) Filter(filterstring) *PlatformsChannelsVersionsListCall
Filter sets the optional parameter "filter": Filter string. Format is acomma separated list of All comma separated filter clauses are conjoinedwith a logical "and". Valid field_names are "version", "name", "platform",and "channel". Valid operators are "<", "<=", "=", ">=", and ">". Channelcomparison is done by distance from stable. Ex) stable < beta, beta < dev,canary < canary_asan. Version comparison is done numerically. If version isnot entirely written, the version will be appended with 0 in missing fields.Ex) version > 80 becoms version > 80.0.0.0 Name and platform are filtered bystring comparison. Ex) "...?filter=channel<=beta, version >= 80 Ex)"...?filter=version > 80, version < 81
func (*PlatformsChannelsVersionsListCall)Header¶
func (c *PlatformsChannelsVersionsListCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*PlatformsChannelsVersionsListCall)IfNoneMatch¶
func (c *PlatformsChannelsVersionsListCall) IfNoneMatch(entityTagstring) *PlatformsChannelsVersionsListCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
func (*PlatformsChannelsVersionsListCall)OrderBy¶
func (c *PlatformsChannelsVersionsListCall) OrderBy(orderBystring) *PlatformsChannelsVersionsListCall
OrderBy sets the optional parameter "orderBy": Ordering string. Validorder_by strings are "version", "name", "platform", and "channel".Optionally, you can append " desc" or " asc" to specify the sorting order.Multiple order_by strings can be used in a comma separated list. Ordering bychannel will sort by distance from the stable channel (not alphabetically).A list of channels sorted in this order is: stable, beta, dev, canary, andcanary_asan. Sorting by name may cause unexpected behaviour as it is a naivestring sort. For example, 1.0.0.8 will be before 1.0.0.10 in descendingorder. If order_by is not specified the response will be sorted by versionin descending order. Ex) "...?order_by=version asc" Ex)"...?order_by=platform desc, channel, version"
func (*PlatformsChannelsVersionsListCall)PageSize¶
func (c *PlatformsChannelsVersionsListCall) PageSize(pageSizeint64) *PlatformsChannelsVersionsListCall
PageSize sets the optional parameter "pageSize": Optional limit on thenumber of versions to include in the response. If unspecified, the serverwill pick an appropriate default.
func (*PlatformsChannelsVersionsListCall)PageToken¶
func (c *PlatformsChannelsVersionsListCall) PageToken(pageTokenstring) *PlatformsChannelsVersionsListCall
PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListVersions` call. Provide this to retrieve the subsequentpage.
func (*PlatformsChannelsVersionsListCall)Pages¶
func (c *PlatformsChannelsVersionsListCall) Pages(ctxcontext.Context, f func(*ListVersionsResponse)error)error
Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.
typePlatformsChannelsVersionsReleasesListCall¶
type PlatformsChannelsVersionsReleasesListCall struct {// contains filtered or unexported fields}func (*PlatformsChannelsVersionsReleasesListCall)Context¶
func (c *PlatformsChannelsVersionsReleasesListCall) Context(ctxcontext.Context) *PlatformsChannelsVersionsReleasesListCall
Context sets the context to be used in this call's Do method.
func (*PlatformsChannelsVersionsReleasesListCall)Do¶
func (c *PlatformsChannelsVersionsReleasesListCall) Do(opts ...googleapi.CallOption) (*ListReleasesResponse,error)
Do executes the "versionhistory.platforms.channels.versions.releases.list" call.Any non-2xx status code is an error. Response headers are in either*ListReleasesResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.
func (*PlatformsChannelsVersionsReleasesListCall)Fields¶
func (c *PlatformsChannelsVersionsReleasesListCall) Fields(s ...googleapi.Field) *PlatformsChannelsVersionsReleasesListCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*PlatformsChannelsVersionsReleasesListCall)Filter¶
func (c *PlatformsChannelsVersionsReleasesListCall) Filter(filterstring) *PlatformsChannelsVersionsReleasesListCall
Filter sets the optional parameter "filter": Filter string. Format is acomma separated list of All comma separated filter clauses are conjoinedwith a logical "and". Valid field_names are "version", "name", "platform","channel", "fraction" "starttime", and "endtime". Valid operators are "<","<=", "=", ">=", and ">". Channel comparison is done by distance fromstable. must be a valid channel when filtering by channel. Ex) stable <beta, beta < dev, canary < canary_asan. Version comparison is donenumerically. Ex) 1.0.0.8 < 1.0.0.10. If version is not entirely written, theversion will be appended with 0 for the missing fields. Ex) version > 80becoms version > 80.0.0.0 When filtering by starttime or endtime, stringmust be inRFC 3339 date string format. Name and platform are filtered bystring comparison. Ex) "...?filter=channel<=beta, version >= 80 Ex)"...?filter=version > 80, version < 81 Ex)"...?filter=starttime>2020-01-01T00:00:00Z
func (*PlatformsChannelsVersionsReleasesListCall)Header¶
func (c *PlatformsChannelsVersionsReleasesListCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*PlatformsChannelsVersionsReleasesListCall)IfNoneMatch¶
func (c *PlatformsChannelsVersionsReleasesListCall) IfNoneMatch(entityTagstring) *PlatformsChannelsVersionsReleasesListCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
func (*PlatformsChannelsVersionsReleasesListCall)OrderBy¶
func (c *PlatformsChannelsVersionsReleasesListCall) OrderBy(orderBystring) *PlatformsChannelsVersionsReleasesListCall
OrderBy sets the optional parameter "orderBy": Ordering string. Validorder_by strings are "version", "name", "starttime", "endtime", "platform","channel", and "fraction". Optionally, you can append "desc" or "asc" tospecify the sorting order. Multiple order_by strings can be used in a commaseparated list. Ordering by channel will sort by distance from the stablechannel (not alphabetically). A list of channels sorted in this order is:stable, beta, dev, canary, and canary_asan. Sorting by name may causeunexpected behaviour as it is a naive string sort. For example, 1.0.0.8 willbe before 1.0.0.10 in descending order. If order_by is not specified theresponse will be sorted by starttime in descending order. Ex)"...?order_by=starttime asc" Ex) "...?order_by=platform desc, channel,startime desc"
func (*PlatformsChannelsVersionsReleasesListCall)PageSize¶
func (c *PlatformsChannelsVersionsReleasesListCall) PageSize(pageSizeint64) *PlatformsChannelsVersionsReleasesListCall
PageSize sets the optional parameter "pageSize": Optional limit on thenumber of releases to include in the response. If unspecified, the serverwill pick an appropriate default.
func (*PlatformsChannelsVersionsReleasesListCall)PageToken¶
func (c *PlatformsChannelsVersionsReleasesListCall) PageToken(pageTokenstring) *PlatformsChannelsVersionsReleasesListCall
PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListReleases` call. Provide this to retrieve the subsequentpage.
func (*PlatformsChannelsVersionsReleasesListCall)Pages¶
func (c *PlatformsChannelsVersionsReleasesListCall) Pages(ctxcontext.Context, f func(*ListReleasesResponse)error)error
Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.
typePlatformsChannelsVersionsReleasesService¶
type PlatformsChannelsVersionsReleasesService struct {// contains filtered or unexported fields}funcNewPlatformsChannelsVersionsReleasesService¶
func NewPlatformsChannelsVersionsReleasesService(s *Service) *PlatformsChannelsVersionsReleasesService
func (*PlatformsChannelsVersionsReleasesService)List¶
func (r *PlatformsChannelsVersionsReleasesService) List(parentstring) *PlatformsChannelsVersionsReleasesListCall
List: Returns list of releases of the given version.
- parent: The version, which owns this collection of releases. Format:{product}/platforms/{platform}/channels/{channel}/versions/{version}.
typePlatformsChannelsVersionsService¶
type PlatformsChannelsVersionsService struct {Releases *PlatformsChannelsVersionsReleasesService// contains filtered or unexported fields}funcNewPlatformsChannelsVersionsService¶
func NewPlatformsChannelsVersionsService(s *Service) *PlatformsChannelsVersionsService
func (*PlatformsChannelsVersionsService)List¶
func (r *PlatformsChannelsVersionsService) List(parentstring) *PlatformsChannelsVersionsListCall
List: Returns list of version for the given platform/channel.
- parent: The channel, which owns this collection of versions. Format:{product}/platforms/{platform}/channels/{channel}.
typePlatformsListCall¶
type PlatformsListCall struct {// contains filtered or unexported fields}func (*PlatformsListCall)Context¶
func (c *PlatformsListCall) Context(ctxcontext.Context) *PlatformsListCall
Context sets the context to be used in this call's Do method.
func (*PlatformsListCall)Do¶
func (c *PlatformsListCall) Do(opts ...googleapi.CallOption) (*ListPlatformsResponse,error)
Do executes the "versionhistory.platforms.list" call.Any non-2xx status code is an error. Response headers are in either*ListPlatformsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.
func (*PlatformsListCall)Fields¶
func (c *PlatformsListCall) Fields(s ...googleapi.Field) *PlatformsListCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*PlatformsListCall)Header¶
func (c *PlatformsListCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*PlatformsListCall)IfNoneMatch¶
func (c *PlatformsListCall) IfNoneMatch(entityTagstring) *PlatformsListCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
func (*PlatformsListCall)PageSize¶
func (c *PlatformsListCall) PageSize(pageSizeint64) *PlatformsListCall
PageSize sets the optional parameter "pageSize": Optional limit on thenumber of channels to include in the response. If unspecified, the serverwill pick an appropriate default.
func (*PlatformsListCall)PageToken¶
func (c *PlatformsListCall) PageToken(pageTokenstring) *PlatformsListCall
PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListChannels` call. Provide this to retrieve the subsequentpage.
func (*PlatformsListCall)Pages¶
func (c *PlatformsListCall) Pages(ctxcontext.Context, f func(*ListPlatformsResponse)error)error
Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.
typePlatformsService¶
type PlatformsService struct {Channels *PlatformsChannelsService// contains filtered or unexported fields}funcNewPlatformsService¶
func NewPlatformsService(s *Service) *PlatformsService
func (*PlatformsService)List¶
func (r *PlatformsService) List(parentstring) *PlatformsListCall
List: Returns list of platforms that are available for a given product. Theresource "product" has no resource name in its name.
- parent: The product, which owns this collection of platforms. Format:{product}.
typeRelease¶
type Release struct {// Fraction: Rollout fraction. This fraction indicates the fraction of people// that should receive this version in this release. If the fraction is not// specified in ReleaseManager, the API will assume fraction is 1.Fractionfloat64 `json:"fraction,omitempty"`// FractionGroup: Rollout fraction group. Only fractions with the same// fraction_group are statistically comparable: there may be non-fractional// differences between different fraction groups.FractionGroupint64 `json:"fractionGroup,omitempty,string"`// Name: Release name. Format is// "{product}/platforms/{platform}/channels/{channel}/versions/{version}/release// s/{release}"Namestring `json:"name,omitempty"`// Pinnable: Whether or not the release was available for version pinning.Pinnablebool `json:"pinnable,omitempty"`// RolloutData: Rollout-related metadata. Some releases are part of one or more// A/B rollouts. This field contains the names and data describing this// release's role in any rollouts.RolloutData []*RolloutData `json:"rolloutData,omitempty"`// Serving: Timestamp interval of when the release was live. If end_time is// unspecified, the release is currently live.Serving *Interval `json:"serving,omitempty"`// Version: String containing just the version number. e.g. "84.0.4147.38"Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Fraction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Fraction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}Release: A Release is owned by a Version. A Release contains informationabout the release(s) of its parent version. This includes when the releasebegan and ended, as well as what percentage it was released at. If theversion is released again, or if the serving percentage changes, it willcreate another release under the version.
func (Release)MarshalJSON¶
func (*Release)UnmarshalJSON¶
typeRolloutData¶added inv0.248.0
type RolloutData struct {// RolloutName: The name of the rollout.RolloutNamestring `json:"rolloutName,omitempty"`// Tag: Tags associated with a release's role in a rollout. Most rollouts will// have at least one release with a "rollout" tag and another release with a// "control" tag. Some rollouts may have additional named arms.Tag []string `json:"tag,omitempty"`// ForceSendFields is a list of field names (e.g. "RolloutName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "RolloutName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}RolloutData: Rollout-related metadata for a release.
func (RolloutData)MarshalJSON¶added inv0.248.0
func (sRolloutData) MarshalJSON() ([]byte,error)
typeService¶
type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentPlatforms *PlatformsService// contains filtered or unexported fields} funcNewdeprecated
New creates a new Service. It uses the provided http.Client for requests.
Deprecated: please use NewService instead.To provide a custom HTTP client, use option.WithHTTPClient.If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
funcNewService¶
NewService creates a new Service.
typeVersion¶
type Version struct {// Name: Version name. Format is// "{product}/platforms/{platform}/channels/{channel}/versions/{version}" e.g.// "chrome/platforms/win/channels/beta/versions/84.0.4147.38"Namestring `json:"name,omitempty"`// Version: String containing just the version number. e.g. "84.0.4147.38"Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}Version: Each Version is owned by a Channel. A Version only displays theVersion number (e.g. 84.0.4147.38). A Version owns a collection of releases.