Documentation ¶
Overview ¶
Package pubsublite provides access to the Pub/Sub Lite API.
For product documentation, see: https://cloud.google.com/pubsub/lite/docs
Creating a client ¶
Usage example:
import "google.golang.org/api/pubsublite/v1" ... ctx := context.Background() pubsubliteService, err := pubsublite.NewService(ctx)
In this example, Google Application Default Credentials are used for authentication.
For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
Other authentication options ¶
To use an API key for authentication (note: some APIs do not support API keys), use option.WithAPIKey:
pubsubliteService, err := pubsublite.NewService(ctx, option.WithAPIKey("AIza..."))
To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource:
config := &oauth2.Config{...} // ... token, err := config.Exchange(ctx, ...) pubsubliteService, err := pubsublite.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
See https://godoc.org/google.golang.org/api/option/ for details on options.
Index ¶
- Constants
- type AdminProjectsLocationsService
- type AdminProjectsLocationsSubscriptionsCreateCall
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsCreateCall
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsCreateCall
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) Header() http.Header
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) SkipBacklog(skipBacklog bool) *AdminProjectsLocationsSubscriptionsCreateCall
- func (c *AdminProjectsLocationsSubscriptionsCreateCall) SubscriptionId(subscriptionId string) *AdminProjectsLocationsSubscriptionsCreateCall
- type AdminProjectsLocationsSubscriptionsDeleteCall
- func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsDeleteCall
- func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
- func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsDeleteCall
- func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Header() http.Header
- type AdminProjectsLocationsSubscriptionsGetCall
- func (c *AdminProjectsLocationsSubscriptionsGetCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsGetCall
- func (c *AdminProjectsLocationsSubscriptionsGetCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
- func (c *AdminProjectsLocationsSubscriptionsGetCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsGetCall
- func (c *AdminProjectsLocationsSubscriptionsGetCall) Header() http.Header
- func (c *AdminProjectsLocationsSubscriptionsGetCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsSubscriptionsGetCall
- type AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) Do(opts ...googleapi.CallOption) (*ListSubscriptionsResponse, error)
- func (c *AdminProjectsLocationsSubscriptionsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) Header() http.Header
- func (c *AdminProjectsLocationsSubscriptionsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) PageSize(pageSize int64) *AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) PageToken(pageToken string) *AdminProjectsLocationsSubscriptionsListCall
- func (c *AdminProjectsLocationsSubscriptionsListCall) Pages(ctx context.Context, f func(*ListSubscriptionsResponse) error) error
- type AdminProjectsLocationsSubscriptionsPatchCall
- func (c *AdminProjectsLocationsSubscriptionsPatchCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsPatchCall
- func (c *AdminProjectsLocationsSubscriptionsPatchCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
- func (c *AdminProjectsLocationsSubscriptionsPatchCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsPatchCall
- func (c *AdminProjectsLocationsSubscriptionsPatchCall) Header() http.Header
- func (c *AdminProjectsLocationsSubscriptionsPatchCall) UpdateMask(updateMask string) *AdminProjectsLocationsSubscriptionsPatchCall
- type AdminProjectsLocationsSubscriptionsService
- func (r *AdminProjectsLocationsSubscriptionsService) Create(parent string, subscription *Subscription) *AdminProjectsLocationsSubscriptionsCreateCall
- func (r *AdminProjectsLocationsSubscriptionsService) Delete(name string) *AdminProjectsLocationsSubscriptionsDeleteCall
- func (r *AdminProjectsLocationsSubscriptionsService) Get(name string) *AdminProjectsLocationsSubscriptionsGetCall
- func (r *AdminProjectsLocationsSubscriptionsService) List(parent string) *AdminProjectsLocationsSubscriptionsListCall
- func (r *AdminProjectsLocationsSubscriptionsService) Patch(name string, subscription *Subscription) *AdminProjectsLocationsSubscriptionsPatchCall
- type AdminProjectsLocationsTopicsCreateCall
- func (c *AdminProjectsLocationsTopicsCreateCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsCreateCall
- func (c *AdminProjectsLocationsTopicsCreateCall) Do(opts ...googleapi.CallOption) (*Topic, error)
- func (c *AdminProjectsLocationsTopicsCreateCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsCreateCall
- func (c *AdminProjectsLocationsTopicsCreateCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsCreateCall) TopicId(topicId string) *AdminProjectsLocationsTopicsCreateCall
- type AdminProjectsLocationsTopicsDeleteCall
- func (c *AdminProjectsLocationsTopicsDeleteCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsDeleteCall
- func (c *AdminProjectsLocationsTopicsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
- func (c *AdminProjectsLocationsTopicsDeleteCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsDeleteCall
- func (c *AdminProjectsLocationsTopicsDeleteCall) Header() http.Header
- type AdminProjectsLocationsTopicsGetCall
- func (c *AdminProjectsLocationsTopicsGetCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsGetCall
- func (c *AdminProjectsLocationsTopicsGetCall) Do(opts ...googleapi.CallOption) (*Topic, error)
- func (c *AdminProjectsLocationsTopicsGetCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsGetCall
- func (c *AdminProjectsLocationsTopicsGetCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsGetCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsGetCall
- type AdminProjectsLocationsTopicsGetPartitionsCall
- func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsGetPartitionsCall
- func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Do(opts ...googleapi.CallOption) (*TopicPartitions, error)
- func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsGetPartitionsCall
- func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsGetPartitionsCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsGetPartitionsCall
- type AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) Do(opts ...googleapi.CallOption) (*ListTopicsResponse, error)
- func (c *AdminProjectsLocationsTopicsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) PageSize(pageSize int64) *AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) PageToken(pageToken string) *AdminProjectsLocationsTopicsListCall
- func (c *AdminProjectsLocationsTopicsListCall) Pages(ctx context.Context, f func(*ListTopicsResponse) error) error
- type AdminProjectsLocationsTopicsPatchCall
- func (c *AdminProjectsLocationsTopicsPatchCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsPatchCall
- func (c *AdminProjectsLocationsTopicsPatchCall) Do(opts ...googleapi.CallOption) (*Topic, error)
- func (c *AdminProjectsLocationsTopicsPatchCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsPatchCall
- func (c *AdminProjectsLocationsTopicsPatchCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsPatchCall) UpdateMask(updateMask string) *AdminProjectsLocationsTopicsPatchCall
- type AdminProjectsLocationsTopicsService
- func (r *AdminProjectsLocationsTopicsService) Create(parent string, topic *Topic) *AdminProjectsLocationsTopicsCreateCall
- func (r *AdminProjectsLocationsTopicsService) Delete(name string) *AdminProjectsLocationsTopicsDeleteCall
- func (r *AdminProjectsLocationsTopicsService) Get(name string) *AdminProjectsLocationsTopicsGetCall
- func (r *AdminProjectsLocationsTopicsService) GetPartitions(name string) *AdminProjectsLocationsTopicsGetPartitionsCall
- func (r *AdminProjectsLocationsTopicsService) List(parent string) *AdminProjectsLocationsTopicsListCall
- func (r *AdminProjectsLocationsTopicsService) Patch(name string, topic *Topic) *AdminProjectsLocationsTopicsPatchCall
- type AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Do(opts ...googleapi.CallOption) (*ListTopicSubscriptionsResponse, error)
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Header() http.Header
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) PageSize(pageSize int64) *AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) PageToken(pageToken string) *AdminProjectsLocationsTopicsSubscriptionsListCall
- func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Pages(ctx context.Context, f func(*ListTopicSubscriptionsResponse) error) error
- type AdminProjectsLocationsTopicsSubscriptionsService
- type AdminProjectsService
- type AdminService
- type Capacity
- type ComputeHeadCursorRequest
- type ComputeHeadCursorResponse
- type ComputeMessageStatsRequest
- type ComputeMessageStatsResponse
- type Cursor
- type CursorProjectsLocationsService
- type CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Context(ctx context.Context) *CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Do(opts ...googleapi.CallOption) (*ListPartitionCursorsResponse, error)
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Fields(s ...googleapi.Field) *CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Header() http.Header
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) IfNoneMatch(entityTag string) *CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) PageSize(pageSize int64) *CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) PageToken(pageToken string) *CursorProjectsLocationsSubscriptionsCursorsListCall
- func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Pages(ctx context.Context, f func(*ListPartitionCursorsResponse) error) error
- type CursorProjectsLocationsSubscriptionsCursorsService
- type CursorProjectsLocationsSubscriptionsService
- type CursorProjectsService
- type CursorService
- type DeliveryConfig
- type Empty
- type ListPartitionCursorsResponse
- type ListSubscriptionsResponse
- type ListTopicSubscriptionsResponse
- type ListTopicsResponse
- type PartitionConfig
- type PartitionCursor
- type RetentionConfig
- type Service
- type Subscription
- type Topic
- type TopicPartitions
- type TopicStatsProjectsLocationsService
- type TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
- func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Context(ctx context.Context) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
- func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Do(opts ...googleapi.CallOption) (*ComputeHeadCursorResponse, error)
- func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Fields(s ...googleapi.Field) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
- func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Header() http.Header
- type TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
- func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Context(ctx context.Context) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
- func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Do(opts ...googleapi.CallOption) (*ComputeMessageStatsResponse, error)
- func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Fields(s ...googleapi.Field) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
- func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Header() http.Header
- type TopicStatsProjectsLocationsTopicsService
- func (r *TopicStatsProjectsLocationsTopicsService) ComputeHeadCursor(topic string, computeheadcursorrequest *ComputeHeadCursorRequest) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
- func (r *TopicStatsProjectsLocationsTopicsService) ComputeMessageStats(topic string, computemessagestatsrequest *ComputeMessageStatsRequest) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
- type TopicStatsProjectsService
- type TopicStatsService
Constants ¶
const (
// View and manage your data across Google Cloud Platform services
CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
)
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminProjectsLocationsService ¶
type AdminProjectsLocationsService struct { Subscriptions *AdminProjectsLocationsSubscriptionsService Topics *AdminProjectsLocationsTopicsService // contains filtered or unexported fields }
func NewAdminProjectsLocationsService ¶
func NewAdminProjectsLocationsService(s *Service) *AdminProjectsLocationsService
type AdminProjectsLocationsSubscriptionsCreateCall ¶
type AdminProjectsLocationsSubscriptionsCreateCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsSubscriptionsCreateCall) Context ¶
func (c *AdminProjectsLocationsSubscriptionsCreateCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsCreateCall
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 (*AdminProjectsLocationsSubscriptionsCreateCall) Do ¶
func (c *AdminProjectsLocationsSubscriptionsCreateCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
Do executes the "pubsublite.admin.projects.locations.subscriptions.create" call. Exactly one of *Subscription or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Subscription.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 (*AdminProjectsLocationsSubscriptionsCreateCall) Fields ¶
func (c *AdminProjectsLocationsSubscriptionsCreateCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsCreateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsSubscriptionsCreateCall) Header ¶
func (c *AdminProjectsLocationsSubscriptionsCreateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsSubscriptionsCreateCall) SkipBacklog ¶ added in v0.43.0
func (c *AdminProjectsLocationsSubscriptionsCreateCall) SkipBacklog(skipBacklog bool) *AdminProjectsLocationsSubscriptionsCreateCall
SkipBacklog sets the optional parameter "skipBacklog": If true, the newly created subscription will only receive messages published after the subscription was created. Otherwise, the entire message backlog will be received on the subscription. Defaults to false.
func (*AdminProjectsLocationsSubscriptionsCreateCall) SubscriptionId ¶
func (c *AdminProjectsLocationsSubscriptionsCreateCall) SubscriptionId(subscriptionId string) *AdminProjectsLocationsSubscriptionsCreateCall
SubscriptionId sets the optional parameter "subscriptionId": Required. The ID to use for the subscription, which will become the final component of the subscription's name. This value is structured like: `my-sub-name`.
type AdminProjectsLocationsSubscriptionsDeleteCall ¶
type AdminProjectsLocationsSubscriptionsDeleteCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsSubscriptionsDeleteCall) Context ¶
func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsDeleteCall
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 (*AdminProjectsLocationsSubscriptionsDeleteCall) Do ¶
func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
Do executes the "pubsublite.admin.projects.locations.subscriptions.delete" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.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 (*AdminProjectsLocationsSubscriptionsDeleteCall) Fields ¶
func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsSubscriptionsDeleteCall) Header ¶
func (c *AdminProjectsLocationsSubscriptionsDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AdminProjectsLocationsSubscriptionsGetCall ¶
type AdminProjectsLocationsSubscriptionsGetCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsSubscriptionsGetCall) Context ¶
func (c *AdminProjectsLocationsSubscriptionsGetCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsGetCall
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 (*AdminProjectsLocationsSubscriptionsGetCall) Do ¶
func (c *AdminProjectsLocationsSubscriptionsGetCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
Do executes the "pubsublite.admin.projects.locations.subscriptions.get" call. Exactly one of *Subscription or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Subscription.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 (*AdminProjectsLocationsSubscriptionsGetCall) Fields ¶
func (c *AdminProjectsLocationsSubscriptionsGetCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsSubscriptionsGetCall) Header ¶
func (c *AdminProjectsLocationsSubscriptionsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsSubscriptionsGetCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsSubscriptionsGetCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsSubscriptionsGetCall
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 AdminProjectsLocationsSubscriptionsListCall ¶
type AdminProjectsLocationsSubscriptionsListCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsSubscriptionsListCall) Context ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsListCall
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 (*AdminProjectsLocationsSubscriptionsListCall) Do ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) Do(opts ...googleapi.CallOption) (*ListSubscriptionsResponse, error)
Do executes the "pubsublite.admin.projects.locations.subscriptions.list" call. Exactly one of *ListSubscriptionsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListSubscriptionsResponse.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 (*AdminProjectsLocationsSubscriptionsListCall) Fields ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsSubscriptionsListCall) Header ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsSubscriptionsListCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsSubscriptionsListCall
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 (*AdminProjectsLocationsSubscriptionsListCall) PageSize ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) PageSize(pageSize int64) *AdminProjectsLocationsSubscriptionsListCall
PageSize sets the optional parameter "pageSize": The maximum number of subscriptions to return. The service may return fewer than this value. If unset or zero, all subscriptions for the parent will be returned.
func (*AdminProjectsLocationsSubscriptionsListCall) PageToken ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) PageToken(pageToken string) *AdminProjectsLocationsSubscriptionsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListSubscriptions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListSubscriptions` must match the call that provided the page token.
func (*AdminProjectsLocationsSubscriptionsListCall) Pages ¶
func (c *AdminProjectsLocationsSubscriptionsListCall) Pages(ctx context.Context, f func(*ListSubscriptionsResponse) 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.
type AdminProjectsLocationsSubscriptionsPatchCall ¶
type AdminProjectsLocationsSubscriptionsPatchCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsSubscriptionsPatchCall) Context ¶
func (c *AdminProjectsLocationsSubscriptionsPatchCall) Context(ctx context.Context) *AdminProjectsLocationsSubscriptionsPatchCall
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 (*AdminProjectsLocationsSubscriptionsPatchCall) Do ¶
func (c *AdminProjectsLocationsSubscriptionsPatchCall) Do(opts ...googleapi.CallOption) (*Subscription, error)
Do executes the "pubsublite.admin.projects.locations.subscriptions.patch" call. Exactly one of *Subscription or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Subscription.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 (*AdminProjectsLocationsSubscriptionsPatchCall) Fields ¶
func (c *AdminProjectsLocationsSubscriptionsPatchCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsSubscriptionsPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsSubscriptionsPatchCall) Header ¶
func (c *AdminProjectsLocationsSubscriptionsPatchCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsSubscriptionsPatchCall) UpdateMask ¶
func (c *AdminProjectsLocationsSubscriptionsPatchCall) UpdateMask(updateMask string) *AdminProjectsLocationsSubscriptionsPatchCall
UpdateMask sets the optional parameter "updateMask": Required. A mask specifying the subscription fields to change.
type AdminProjectsLocationsSubscriptionsService ¶
type AdminProjectsLocationsSubscriptionsService struct {
// contains filtered or unexported fields
}
func NewAdminProjectsLocationsSubscriptionsService ¶
func NewAdminProjectsLocationsSubscriptionsService(s *Service) *AdminProjectsLocationsSubscriptionsService
func (*AdminProjectsLocationsSubscriptionsService) Create ¶
func (r *AdminProjectsLocationsSubscriptionsService) Create(parent string, subscription *Subscription) *AdminProjectsLocationsSubscriptionsCreateCall
Create: Creates a new subscription.
func (*AdminProjectsLocationsSubscriptionsService) Delete ¶
func (r *AdminProjectsLocationsSubscriptionsService) Delete(name string) *AdminProjectsLocationsSubscriptionsDeleteCall
Delete: Deletes the specified subscription.
func (*AdminProjectsLocationsSubscriptionsService) Get ¶
func (r *AdminProjectsLocationsSubscriptionsService) Get(name string) *AdminProjectsLocationsSubscriptionsGetCall
Get: Returns the subscription configuration.
func (*AdminProjectsLocationsSubscriptionsService) List ¶
func (r *AdminProjectsLocationsSubscriptionsService) List(parent string) *AdminProjectsLocationsSubscriptionsListCall
List: Returns the list of subscriptions for the given project.
func (*AdminProjectsLocationsSubscriptionsService) Patch ¶
func (r *AdminProjectsLocationsSubscriptionsService) Patch(name string, subscription *Subscription) *AdminProjectsLocationsSubscriptionsPatchCall
Patch: Updates properties of the specified subscription.
type AdminProjectsLocationsTopicsCreateCall ¶
type AdminProjectsLocationsTopicsCreateCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsCreateCall) Context ¶
func (c *AdminProjectsLocationsTopicsCreateCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsCreateCall
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 (*AdminProjectsLocationsTopicsCreateCall) Do ¶
func (c *AdminProjectsLocationsTopicsCreateCall) Do(opts ...googleapi.CallOption) (*Topic, error)
Do executes the "pubsublite.admin.projects.locations.topics.create" call. Exactly one of *Topic or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Topic.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 (*AdminProjectsLocationsTopicsCreateCall) Fields ¶
func (c *AdminProjectsLocationsTopicsCreateCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsCreateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsCreateCall) Header ¶
func (c *AdminProjectsLocationsTopicsCreateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsCreateCall) TopicId ¶
func (c *AdminProjectsLocationsTopicsCreateCall) TopicId(topicId string) *AdminProjectsLocationsTopicsCreateCall
TopicId sets the optional parameter "topicId": Required. The ID to use for the topic, which will become the final component of the topic's name. This value is structured like: `my-topic-name`.
type AdminProjectsLocationsTopicsDeleteCall ¶
type AdminProjectsLocationsTopicsDeleteCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsDeleteCall) Context ¶
func (c *AdminProjectsLocationsTopicsDeleteCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsDeleteCall
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 (*AdminProjectsLocationsTopicsDeleteCall) Do ¶
func (c *AdminProjectsLocationsTopicsDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
Do executes the "pubsublite.admin.projects.locations.topics.delete" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.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 (*AdminProjectsLocationsTopicsDeleteCall) Fields ¶
func (c *AdminProjectsLocationsTopicsDeleteCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsDeleteCall) Header ¶
func (c *AdminProjectsLocationsTopicsDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AdminProjectsLocationsTopicsGetCall ¶
type AdminProjectsLocationsTopicsGetCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsGetCall) Context ¶
func (c *AdminProjectsLocationsTopicsGetCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsGetCall
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 (*AdminProjectsLocationsTopicsGetCall) Do ¶
func (c *AdminProjectsLocationsTopicsGetCall) Do(opts ...googleapi.CallOption) (*Topic, error)
Do executes the "pubsublite.admin.projects.locations.topics.get" call. Exactly one of *Topic or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Topic.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 (*AdminProjectsLocationsTopicsGetCall) Fields ¶
func (c *AdminProjectsLocationsTopicsGetCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsGetCall) Header ¶
func (c *AdminProjectsLocationsTopicsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsGetCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsTopicsGetCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsGetCall
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 AdminProjectsLocationsTopicsGetPartitionsCall ¶
type AdminProjectsLocationsTopicsGetPartitionsCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsGetPartitionsCall) Context ¶
func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsGetPartitionsCall
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 (*AdminProjectsLocationsTopicsGetPartitionsCall) Do ¶
func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Do(opts ...googleapi.CallOption) (*TopicPartitions, error)
Do executes the "pubsublite.admin.projects.locations.topics.getPartitions" call. Exactly one of *TopicPartitions or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *TopicPartitions.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 (*AdminProjectsLocationsTopicsGetPartitionsCall) Fields ¶
func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsGetPartitionsCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsGetPartitionsCall) Header ¶
func (c *AdminProjectsLocationsTopicsGetPartitionsCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsGetPartitionsCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsTopicsGetPartitionsCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsGetPartitionsCall
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 AdminProjectsLocationsTopicsListCall ¶
type AdminProjectsLocationsTopicsListCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsListCall) Context ¶
func (c *AdminProjectsLocationsTopicsListCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsListCall
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 (*AdminProjectsLocationsTopicsListCall) Do ¶
func (c *AdminProjectsLocationsTopicsListCall) Do(opts ...googleapi.CallOption) (*ListTopicsResponse, error)
Do executes the "pubsublite.admin.projects.locations.topics.list" call. Exactly one of *ListTopicsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListTopicsResponse.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 (*AdminProjectsLocationsTopicsListCall) Fields ¶
func (c *AdminProjectsLocationsTopicsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsListCall) Header ¶
func (c *AdminProjectsLocationsTopicsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsListCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsTopicsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsListCall
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 (*AdminProjectsLocationsTopicsListCall) PageSize ¶
func (c *AdminProjectsLocationsTopicsListCall) PageSize(pageSize int64) *AdminProjectsLocationsTopicsListCall
PageSize sets the optional parameter "pageSize": The maximum number of topics to return. The service may return fewer than this value. If unset or zero, all topics for the parent will be returned.
func (*AdminProjectsLocationsTopicsListCall) PageToken ¶
func (c *AdminProjectsLocationsTopicsListCall) PageToken(pageToken string) *AdminProjectsLocationsTopicsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListTopics` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTopics` must match the call that provided the page token.
func (*AdminProjectsLocationsTopicsListCall) Pages ¶
func (c *AdminProjectsLocationsTopicsListCall) Pages(ctx context.Context, f func(*ListTopicsResponse) 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.
type AdminProjectsLocationsTopicsPatchCall ¶
type AdminProjectsLocationsTopicsPatchCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsPatchCall) Context ¶
func (c *AdminProjectsLocationsTopicsPatchCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsPatchCall
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 (*AdminProjectsLocationsTopicsPatchCall) Do ¶
func (c *AdminProjectsLocationsTopicsPatchCall) Do(opts ...googleapi.CallOption) (*Topic, error)
Do executes the "pubsublite.admin.projects.locations.topics.patch" call. Exactly one of *Topic or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Topic.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 (*AdminProjectsLocationsTopicsPatchCall) Fields ¶
func (c *AdminProjectsLocationsTopicsPatchCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsPatchCall) Header ¶
func (c *AdminProjectsLocationsTopicsPatchCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsPatchCall) UpdateMask ¶
func (c *AdminProjectsLocationsTopicsPatchCall) UpdateMask(updateMask string) *AdminProjectsLocationsTopicsPatchCall
UpdateMask sets the optional parameter "updateMask": Required. A mask specifying the topic fields to change.
type AdminProjectsLocationsTopicsService ¶
type AdminProjectsLocationsTopicsService struct { Subscriptions *AdminProjectsLocationsTopicsSubscriptionsService // contains filtered or unexported fields }
func NewAdminProjectsLocationsTopicsService ¶
func NewAdminProjectsLocationsTopicsService(s *Service) *AdminProjectsLocationsTopicsService
func (*AdminProjectsLocationsTopicsService) Create ¶
func (r *AdminProjectsLocationsTopicsService) Create(parent string, topic *Topic) *AdminProjectsLocationsTopicsCreateCall
Create: Creates a new topic.
func (*AdminProjectsLocationsTopicsService) Delete ¶
func (r *AdminProjectsLocationsTopicsService) Delete(name string) *AdminProjectsLocationsTopicsDeleteCall
Delete: Deletes the specified topic.
func (*AdminProjectsLocationsTopicsService) Get ¶
func (r *AdminProjectsLocationsTopicsService) Get(name string) *AdminProjectsLocationsTopicsGetCall
Get: Returns the topic configuration.
func (*AdminProjectsLocationsTopicsService) GetPartitions ¶
func (r *AdminProjectsLocationsTopicsService) GetPartitions(name string) *AdminProjectsLocationsTopicsGetPartitionsCall
GetPartitions: Returns the partition information for the requested topic.
func (*AdminProjectsLocationsTopicsService) List ¶
func (r *AdminProjectsLocationsTopicsService) List(parent string) *AdminProjectsLocationsTopicsListCall
List: Returns the list of topics for the given project.
func (*AdminProjectsLocationsTopicsService) Patch ¶
func (r *AdminProjectsLocationsTopicsService) Patch(name string, topic *Topic) *AdminProjectsLocationsTopicsPatchCall
Patch: Updates properties of the specified topic.
type AdminProjectsLocationsTopicsSubscriptionsListCall ¶
type AdminProjectsLocationsTopicsSubscriptionsListCall struct {
// contains filtered or unexported fields
}
func (*AdminProjectsLocationsTopicsSubscriptionsListCall) Context ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Context(ctx context.Context) *AdminProjectsLocationsTopicsSubscriptionsListCall
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 (*AdminProjectsLocationsTopicsSubscriptionsListCall) Do ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Do(opts ...googleapi.CallOption) (*ListTopicSubscriptionsResponse, error)
Do executes the "pubsublite.admin.projects.locations.topics.subscriptions.list" call. Exactly one of *ListTopicSubscriptionsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListTopicSubscriptionsResponse.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 (*AdminProjectsLocationsTopicsSubscriptionsListCall) Fields ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Fields(s ...googleapi.Field) *AdminProjectsLocationsTopicsSubscriptionsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AdminProjectsLocationsTopicsSubscriptionsListCall) Header ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AdminProjectsLocationsTopicsSubscriptionsListCall) IfNoneMatch ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) IfNoneMatch(entityTag string) *AdminProjectsLocationsTopicsSubscriptionsListCall
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 (*AdminProjectsLocationsTopicsSubscriptionsListCall) PageSize ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) PageSize(pageSize int64) *AdminProjectsLocationsTopicsSubscriptionsListCall
PageSize sets the optional parameter "pageSize": The maximum number of subscriptions to return. The service may return fewer than this value. If unset or zero, all subscriptions for the given topic will be returned.
func (*AdminProjectsLocationsTopicsSubscriptionsListCall) PageToken ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) PageToken(pageToken string) *AdminProjectsLocationsTopicsSubscriptionsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListTopicSubscriptions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTopicSubscriptions` must match the call that provided the page token.
func (*AdminProjectsLocationsTopicsSubscriptionsListCall) Pages ¶
func (c *AdminProjectsLocationsTopicsSubscriptionsListCall) Pages(ctx context.Context, f func(*ListTopicSubscriptionsResponse) 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.
type AdminProjectsLocationsTopicsSubscriptionsService ¶
type AdminProjectsLocationsTopicsSubscriptionsService struct {
// contains filtered or unexported fields
}
func NewAdminProjectsLocationsTopicsSubscriptionsService ¶
func NewAdminProjectsLocationsTopicsSubscriptionsService(s *Service) *AdminProjectsLocationsTopicsSubscriptionsService
func (*AdminProjectsLocationsTopicsSubscriptionsService) List ¶
func (r *AdminProjectsLocationsTopicsSubscriptionsService) List(name string) *AdminProjectsLocationsTopicsSubscriptionsListCall
List: Lists the subscriptions attached to the specified topic.
type AdminProjectsService ¶
type AdminProjectsService struct { Locations *AdminProjectsLocationsService // contains filtered or unexported fields }
func NewAdminProjectsService ¶
func NewAdminProjectsService(s *Service) *AdminProjectsService
type AdminService ¶
type AdminService struct { Projects *AdminProjectsService // contains filtered or unexported fields }
func NewAdminService ¶
func NewAdminService(s *Service) *AdminService
type Capacity ¶
type Capacity struct { // PublishMibPerSec: Publish throughput capacity per partition in MiB/s. // Must be >= 4 and <= 16. PublishMibPerSec int64 `json:"publishMibPerSec,omitempty"` // SubscribeMibPerSec: Subscribe throughput capacity per partition in // MiB/s. Must be >= 4 and <= 32. SubscribeMibPerSec int64 `json:"subscribeMibPerSec,omitempty"` // ForceSendFields is a list of field names (e.g. "PublishMibPerSec") 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:"-"` // NullFields is a list of field names (e.g. "PublishMibPerSec") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
Capacity: The throughput capacity configuration for each partition.
func (*Capacity) MarshalJSON ¶
type ComputeHeadCursorRequest ¶ added in v0.40.0
type ComputeHeadCursorRequest struct { // Partition: Required. The partition for which we should compute the // head cursor. Partition int64 `json:"partition,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Partition") 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:"-"` // NullFields is a list of field names (e.g. "Partition") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ComputeHeadCursorRequest: Compute the current head cursor for a partition.
func (*ComputeHeadCursorRequest) MarshalJSON ¶ added in v0.40.0
func (s *ComputeHeadCursorRequest) MarshalJSON() ([]byte, error)
type ComputeHeadCursorResponse ¶ added in v0.40.0
type ComputeHeadCursorResponse struct { // HeadCursor: The head cursor. HeadCursor *Cursor `json:"headCursor,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "HeadCursor") 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:"-"` // NullFields is a list of field names (e.g. "HeadCursor") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ComputeHeadCursorResponse: Response containing the head cursor for the requested topic and partition.
func (*ComputeHeadCursorResponse) MarshalJSON ¶ added in v0.40.0
func (s *ComputeHeadCursorResponse) MarshalJSON() ([]byte, error)
type ComputeMessageStatsRequest ¶ added in v0.33.0
type ComputeMessageStatsRequest struct { // EndCursor: The exclusive end of the range. The range is empty if // end_cursor <= start_cursor. Specifying a start_cursor before the // first message and an end_cursor after the last message will retrieve // all messages. EndCursor *Cursor `json:"endCursor,omitempty"` // Partition: Required. The partition for which we should compute // message stats. Partition int64 `json:"partition,omitempty,string"` // StartCursor: The inclusive start of the range. StartCursor *Cursor `json:"startCursor,omitempty"` // ForceSendFields is a list of field names (e.g. "EndCursor") 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:"-"` // NullFields is a list of field names (e.g. "EndCursor") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ComputeMessageStatsRequest: Compute statistics about a range of messages in a given topic and partition.
func (*ComputeMessageStatsRequest) MarshalJSON ¶ added in v0.33.0
func (s *ComputeMessageStatsRequest) MarshalJSON() ([]byte, error)
type ComputeMessageStatsResponse ¶ added in v0.33.0
type ComputeMessageStatsResponse struct { // MessageBytes: The number of quota bytes accounted to these messages. MessageBytes int64 `json:"messageBytes,omitempty,string"` // MessageCount: The count of messages. MessageCount int64 `json:"messageCount,omitempty,string"` // MinimumEventTime: The minimum event timestamp across these messages. // For the purposes of this computation, if a message does not have an // event time, we use the publish time. The timestamp will be unset if // there are no messages. MinimumEventTime string `json:"minimumEventTime,omitempty"` // MinimumPublishTime: The minimum publish timestamp across these // messages. Note that publish timestamps within a partition are not // guaranteed to be non-decreasing. The timestamp will be unset if there // are no messages. MinimumPublishTime string `json:"minimumPublishTime,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "MessageBytes") 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:"-"` // NullFields is a list of field names (e.g. "MessageBytes") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ComputeMessageStatsResponse: Response containing stats for messages in the requested topic and partition.
func (*ComputeMessageStatsResponse) MarshalJSON ¶ added in v0.33.0
func (s *ComputeMessageStatsResponse) MarshalJSON() ([]byte, error)
type Cursor ¶
type Cursor struct { // Offset: The offset of a message within a topic partition. Must be // greater than or equal 0. Offset int64 `json:"offset,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Offset") 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:"-"` // NullFields is a list of field names (e.g. "Offset") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Cursor: A cursor that describes the position of a message within a topic partition.
func (*Cursor) MarshalJSON ¶
type CursorProjectsLocationsService ¶
type CursorProjectsLocationsService struct { Subscriptions *CursorProjectsLocationsSubscriptionsService // contains filtered or unexported fields }
func NewCursorProjectsLocationsService ¶
func NewCursorProjectsLocationsService(s *Service) *CursorProjectsLocationsService
type CursorProjectsLocationsSubscriptionsCursorsListCall ¶
type CursorProjectsLocationsSubscriptionsCursorsListCall struct {
// contains filtered or unexported fields
}
func (*CursorProjectsLocationsSubscriptionsCursorsListCall) Context ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Context(ctx context.Context) *CursorProjectsLocationsSubscriptionsCursorsListCall
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 (*CursorProjectsLocationsSubscriptionsCursorsListCall) Do ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Do(opts ...googleapi.CallOption) (*ListPartitionCursorsResponse, error)
Do executes the "pubsublite.cursor.projects.locations.subscriptions.cursors.list" call. Exactly one of *ListPartitionCursorsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListPartitionCursorsResponse.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 (*CursorProjectsLocationsSubscriptionsCursorsListCall) Fields ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Fields(s ...googleapi.Field) *CursorProjectsLocationsSubscriptionsCursorsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*CursorProjectsLocationsSubscriptionsCursorsListCall) Header ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*CursorProjectsLocationsSubscriptionsCursorsListCall) IfNoneMatch ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) IfNoneMatch(entityTag string) *CursorProjectsLocationsSubscriptionsCursorsListCall
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 (*CursorProjectsLocationsSubscriptionsCursorsListCall) PageSize ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) PageSize(pageSize int64) *CursorProjectsLocationsSubscriptionsCursorsListCall
PageSize sets the optional parameter "pageSize": The maximum number of cursors to return. The service may return fewer than this value. If unset or zero, all cursors for the parent will be returned.
func (*CursorProjectsLocationsSubscriptionsCursorsListCall) PageToken ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) PageToken(pageToken string) *CursorProjectsLocationsSubscriptionsCursorsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListPartitionCursors` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPartitionCursors` must match the call that provided the page token.
func (*CursorProjectsLocationsSubscriptionsCursorsListCall) Pages ¶
func (c *CursorProjectsLocationsSubscriptionsCursorsListCall) Pages(ctx context.Context, f func(*ListPartitionCursorsResponse) 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.
type CursorProjectsLocationsSubscriptionsCursorsService ¶
type CursorProjectsLocationsSubscriptionsCursorsService struct {
// contains filtered or unexported fields
}
func NewCursorProjectsLocationsSubscriptionsCursorsService ¶
func NewCursorProjectsLocationsSubscriptionsCursorsService(s *Service) *CursorProjectsLocationsSubscriptionsCursorsService
func (*CursorProjectsLocationsSubscriptionsCursorsService) List ¶
func (r *CursorProjectsLocationsSubscriptionsCursorsService) List(parent string) *CursorProjectsLocationsSubscriptionsCursorsListCall
List: Returns all committed cursor information for a subscription.
type CursorProjectsLocationsSubscriptionsService ¶
type CursorProjectsLocationsSubscriptionsService struct { Cursors *CursorProjectsLocationsSubscriptionsCursorsService // contains filtered or unexported fields }
func NewCursorProjectsLocationsSubscriptionsService ¶
func NewCursorProjectsLocationsSubscriptionsService(s *Service) *CursorProjectsLocationsSubscriptionsService
type CursorProjectsService ¶
type CursorProjectsService struct { Locations *CursorProjectsLocationsService // contains filtered or unexported fields }
func NewCursorProjectsService ¶
func NewCursorProjectsService(s *Service) *CursorProjectsService
type CursorService ¶
type CursorService struct { Projects *CursorProjectsService // contains filtered or unexported fields }
func NewCursorService ¶
func NewCursorService(s *Service) *CursorService
type DeliveryConfig ¶
type DeliveryConfig struct { // DeliveryRequirement: The DeliveryRequirement for this subscription. // // Possible values: // "DELIVERY_REQUIREMENT_UNSPECIFIED" - Default value. This value is // unused. // "DELIVER_IMMEDIATELY" - The server does not wait for a published // message to be successfully written to storage before delivering it to // subscribers. // "DELIVER_AFTER_STORED" - The server will not deliver a published // message to subscribers until the message has been successfully // written to storage. This will result in higher end-to-end latency, // but consistent delivery. DeliveryRequirement string `json:"deliveryRequirement,omitempty"` // ForceSendFields is a list of field names (e.g. "DeliveryRequirement") // 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:"-"` // NullFields is a list of field names (e.g. "DeliveryRequirement") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
DeliveryConfig: The settings for a subscription's message delivery.
func (*DeliveryConfig) MarshalJSON ¶
func (s *DeliveryConfig) MarshalJSON() ([]byte, error)
type Empty ¶
type Empty struct { // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` }
Empty: A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
type ListPartitionCursorsResponse ¶
type ListPartitionCursorsResponse 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. NextPageToken string `json:"nextPageToken,omitempty"` // PartitionCursors: The partition cursors from this request. PartitionCursors []*PartitionCursor `json:"partitionCursors,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 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:"-"` // 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. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListPartitionCursorsResponse: Response for ListPartitionCursors
func (*ListPartitionCursorsResponse) MarshalJSON ¶
func (s *ListPartitionCursorsResponse) MarshalJSON() ([]byte, error)
type ListSubscriptionsResponse ¶
type ListSubscriptionsResponse struct { // NextPageToken: A token that can be sent as `page_token` to retrieve // the next page of results. If this field is omitted, there are no more // results. NextPageToken string `json:"nextPageToken,omitempty"` // Subscriptions: The list of subscriptions in the requested parent. The // order of the subscriptions is unspecified. Subscriptions []*Subscription `json:"subscriptions,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 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:"-"` // 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. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListSubscriptionsResponse: Response for ListSubscriptions.
func (*ListSubscriptionsResponse) MarshalJSON ¶
func (s *ListSubscriptionsResponse) MarshalJSON() ([]byte, error)
type ListTopicSubscriptionsResponse ¶
type ListTopicSubscriptionsResponse struct { // NextPageToken: A token that can be sent as `page_token` to retrieve // the next page of results. If this field is omitted, there are no more // results. NextPageToken string `json:"nextPageToken,omitempty"` // Subscriptions: The names of subscriptions attached to the topic. The // order of the subscriptions is unspecified. Subscriptions []string `json:"subscriptions,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 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:"-"` // 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. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListTopicSubscriptionsResponse: Response for ListTopicSubscriptions.
func (*ListTopicSubscriptionsResponse) MarshalJSON ¶
func (s *ListTopicSubscriptionsResponse) MarshalJSON() ([]byte, error)
type ListTopicsResponse ¶
type ListTopicsResponse struct { // NextPageToken: A token that can be sent as `page_token` to retrieve // the next page of results. If this field is omitted, there are no more // results. NextPageToken string `json:"nextPageToken,omitempty"` // Topics: The list of topic in the requested parent. The order of the // topics is unspecified. Topics []*Topic `json:"topics,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 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:"-"` // 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. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListTopicsResponse: Response for ListTopics.
func (*ListTopicsResponse) MarshalJSON ¶
func (s *ListTopicsResponse) MarshalJSON() ([]byte, error)
type PartitionConfig ¶
type PartitionConfig struct { // Capacity: The capacity configuration. Capacity *Capacity `json:"capacity,omitempty"` // Count: The number of partitions in the topic. Must be at least 1. // Once a topic has been created the number of partitions can be // increased but not decreased. Message ordering is not guaranteed // across a topic resize. For more information see // https://cloud.google.com/pubsub/lite/docs/topics#scaling_capacity Count int64 `json:"count,omitempty,string"` // Scale: DEPRECATED: Use capacity instead which can express a superset // of configurations. Every partition in the topic is allocated // throughput equivalent to `scale` times the standard partition // throughput (4 MiB/s). This is also reflected in the cost of this // topic; a topic with `scale` of 2 and count of 10 is charged for 20 // partitions. This value must be in the range [1,4]. Scale int64 `json:"scale,omitempty"` // ForceSendFields is a list of field names (e.g. "Capacity") 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:"-"` // NullFields is a list of field names (e.g. "Capacity") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
PartitionConfig: The settings for a topic's partitions.
func (*PartitionConfig) MarshalJSON ¶
func (s *PartitionConfig) MarshalJSON() ([]byte, error)
type PartitionCursor ¶
type PartitionCursor struct { // Cursor: The value of the cursor. Cursor *Cursor `json:"cursor,omitempty"` // Partition: The partition this is for. Partition int64 `json:"partition,omitempty,string"` // ForceSendFields is a list of field names (e.g. "Cursor") 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:"-"` // NullFields is a list of field names (e.g. "Cursor") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
PartitionCursor: A pair of a Cursor and the partition it is for.
func (*PartitionCursor) MarshalJSON ¶
func (s *PartitionCursor) MarshalJSON() ([]byte, error)
type RetentionConfig ¶
type RetentionConfig struct { // PerPartitionBytes: The provisioned storage, in bytes, per partition. // If the number of bytes stored in any of the topic's partitions grows // beyond this value, older messages will be dropped to make room for // newer ones, regardless of the value of `period`. PerPartitionBytes int64 `json:"perPartitionBytes,omitempty,string"` // Period: How long a published message is retained. If unset, messages // will be retained as long as the bytes retained for each partition is // below `per_partition_bytes`. Period string `json:"period,omitempty"` // ForceSendFields is a list of field names (e.g. "PerPartitionBytes") // 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:"-"` // NullFields is a list of field names (e.g. "PerPartitionBytes") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
RetentionConfig: The settings for a topic's message retention.
func (*RetentionConfig) MarshalJSON ¶
func (s *RetentionConfig) MarshalJSON() ([]byte, error)
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Admin *AdminService Cursor *CursorService TopicStats *TopicStatsService // contains filtered or unexported fields }
func New
deprecated
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.
func NewService ¶
NewService creates a new Service.
type Subscription ¶
type Subscription struct { // DeliveryConfig: The settings for this subscription's message // delivery. DeliveryConfig *DeliveryConfig `json:"deliveryConfig,omitempty"` // Name: The name of the subscription. Structured like: // projects/{project_number}/locations/{location}/subscriptions/{subscrip // tion_id} Name string `json:"name,omitempty"` // Topic: The name of the topic this subscription is attached to. // Structured like: // projects/{project_number}/locations/{location}/topics/{topic_id} Topic string `json:"topic,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DeliveryConfig") 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:"-"` // NullFields is a list of field names (e.g. "DeliveryConfig") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
Subscription: Metadata about a subscription resource.
func (*Subscription) MarshalJSON ¶
func (s *Subscription) MarshalJSON() ([]byte, error)
type Topic ¶
type Topic struct { // Name: The name of the topic. Structured like: // projects/{project_number}/locations/{location}/topics/{topic_id} Name string `json:"name,omitempty"` // PartitionConfig: The settings for this topic's partitions. PartitionConfig *PartitionConfig `json:"partitionConfig,omitempty"` // RetentionConfig: The settings for this topic's message retention. RetentionConfig *RetentionConfig `json:"retentionConfig,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Name") 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:"-"` // 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. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Topic: Metadata about a topic resource.
func (*Topic) MarshalJSON ¶
type TopicPartitions ¶
type TopicPartitions struct { // PartitionCount: The number of partitions in the topic. PartitionCount int64 `json:"partitionCount,omitempty,string"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "PartitionCount") 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:"-"` // NullFields is a list of field names (e.g. "PartitionCount") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
TopicPartitions: Response for GetTopicPartitions.
func (*TopicPartitions) MarshalJSON ¶
func (s *TopicPartitions) MarshalJSON() ([]byte, error)
type TopicStatsProjectsLocationsService ¶ added in v0.33.0
type TopicStatsProjectsLocationsService struct { Topics *TopicStatsProjectsLocationsTopicsService // contains filtered or unexported fields }
func NewTopicStatsProjectsLocationsService ¶ added in v0.33.0
func NewTopicStatsProjectsLocationsService(s *Service) *TopicStatsProjectsLocationsService
type TopicStatsProjectsLocationsTopicsComputeHeadCursorCall ¶ added in v0.40.0
type TopicStatsProjectsLocationsTopicsComputeHeadCursorCall struct {
// contains filtered or unexported fields
}
func (*TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Context ¶ added in v0.40.0
func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Context(ctx context.Context) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
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 (*TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Do ¶ added in v0.40.0
func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Do(opts ...googleapi.CallOption) (*ComputeHeadCursorResponse, error)
Do executes the "pubsublite.topicStats.projects.locations.topics.computeHeadCursor" call. Exactly one of *ComputeHeadCursorResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ComputeHeadCursorResponse.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 (*TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Fields ¶ added in v0.40.0
func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Fields(s ...googleapi.Field) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Header ¶ added in v0.40.0
func (c *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type TopicStatsProjectsLocationsTopicsComputeMessageStatsCall ¶ added in v0.33.0
type TopicStatsProjectsLocationsTopicsComputeMessageStatsCall struct {
// contains filtered or unexported fields
}
func (*TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Context ¶ added in v0.33.0
func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Context(ctx context.Context) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
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 (*TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Do ¶ added in v0.33.0
func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Do(opts ...googleapi.CallOption) (*ComputeMessageStatsResponse, error)
Do executes the "pubsublite.topicStats.projects.locations.topics.computeMessageStats" call. Exactly one of *ComputeMessageStatsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ComputeMessageStatsResponse.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 (*TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Fields ¶ added in v0.33.0
func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Fields(s ...googleapi.Field) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Header ¶ added in v0.33.0
func (c *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type TopicStatsProjectsLocationsTopicsService ¶ added in v0.33.0
type TopicStatsProjectsLocationsTopicsService struct {
// contains filtered or unexported fields
}
func NewTopicStatsProjectsLocationsTopicsService ¶ added in v0.33.0
func NewTopicStatsProjectsLocationsTopicsService(s *Service) *TopicStatsProjectsLocationsTopicsService
func (*TopicStatsProjectsLocationsTopicsService) ComputeHeadCursor ¶ added in v0.40.0
func (r *TopicStatsProjectsLocationsTopicsService) ComputeHeadCursor(topic string, computeheadcursorrequest *ComputeHeadCursorRequest) *TopicStatsProjectsLocationsTopicsComputeHeadCursorCall
ComputeHeadCursor: Compute the head cursor for the partition. The head cursor's offset is guaranteed to be less than or equal to all messages which have not yet been acknowledged as published, and greater than the offset of any message whose publish has already been acknowledged. It is zero if there have never been messages in the partition.
func (*TopicStatsProjectsLocationsTopicsService) ComputeMessageStats ¶ added in v0.33.0
func (r *TopicStatsProjectsLocationsTopicsService) ComputeMessageStats(topic string, computemessagestatsrequest *ComputeMessageStatsRequest) *TopicStatsProjectsLocationsTopicsComputeMessageStatsCall
ComputeMessageStats: Compute statistics about a range of messages in a given topic and partition.
type TopicStatsProjectsService ¶ added in v0.33.0
type TopicStatsProjectsService struct { Locations *TopicStatsProjectsLocationsService // contains filtered or unexported fields }
func NewTopicStatsProjectsService ¶ added in v0.33.0
func NewTopicStatsProjectsService(s *Service) *TopicStatsProjectsService
type TopicStatsService ¶ added in v0.33.0
type TopicStatsService struct { Projects *TopicStatsProjectsService // contains filtered or unexported fields }
func NewTopicStatsService ¶ added in v0.33.0
func NewTopicStatsService(s *Service) *TopicStatsService