Cloud Private Catalog API v1beta1 - Package cloud.google.com/go/privatecatalog/apiv1beta1 (v0.88.0)

Package privatecatalog is an auto-generated package for the Cloud Private Catalog API.

Enable cloud users to discover private catalogs and products in their organizations.

NOTE: This package is in beta. It is not stable, and may be subject to changes.

Use of Context

The ctx passed to NewClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.

To close the open connection, use the Close() method.

For information about setting deadlines, reusing contexts, and more please visit https://pkg.go.dev/cloud.google.com/go.

Functions

func DefaultAuthScopes

func DefaultAuthScopes() []string

DefaultAuthScopes reports the default set of authentication scopes to use with this package.

CallOptions

type CallOptions struct {
	SearchCatalogs []gax.CallOption
	SearchProducts []gax.CallOption
	SearchVersions []gax.CallOption
}

CallOptions contains the retry settings for each method of Client.

CatalogIterator

type CatalogIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*privatecatalogpb.Catalog, nextPageToken string, err error)
	// contains filtered or unexported fields
}

CatalogIterator manages a stream of *privatecatalogpb.Catalog.

func (*CatalogIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*CatalogIterator) PageInfo

func (it *CatalogIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

Client

type Client struct {

	// The call options for this service.
	CallOptions *CallOptions
	// contains filtered or unexported fields
}

Client is a client for interacting with Cloud Private Catalog API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.

PrivateCatalog allows catalog consumers to retrieve Catalog, Product and Version resources under a target resource context.

Catalog is computed based on the Associations linked to the target resource and its ancestors. Each association’s google.cloud.privatecatalogproducer.v1beta.Catalog is transformed into a Catalog. If multiple associations have the same parent google.cloud.privatecatalogproducer.v1beta.Catalog, they are de-duplicated into one Catalog. Users must have cloudprivatecatalog.catalogTargets.get IAM permission on the resource context in order to access catalogs. Catalog contains the resource name and a subset of data of the original google.cloud.privatecatalogproducer.v1beta.Catalog.

Product is child resource of the catalog. A Product contains the resource name and a subset of the data of the original google.cloud.privatecatalogproducer.v1beta.Product.

Version is child resource of the product. A Version contains the resource name and a subset of the data of the original google.cloud.privatecatalogproducer.v1beta.Version.

func NewClient

func NewClient(ctx context.Context, opts ...option.ClientOption) (*Client, error)

NewClient creates a new private catalog client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.

PrivateCatalog allows catalog consumers to retrieve Catalog, Product and Version resources under a target resource context.

Catalog is computed based on the Associations linked to the target resource and its ancestors. Each association’s google.cloud.privatecatalogproducer.v1beta.Catalog is transformed into a Catalog. If multiple associations have the same parent google.cloud.privatecatalogproducer.v1beta.Catalog, they are de-duplicated into one Catalog. Users must have cloudprivatecatalog.catalogTargets.get IAM permission on the resource context in order to access catalogs. Catalog contains the resource name and a subset of data of the original google.cloud.privatecatalogproducer.v1beta.Catalog.

Product is child resource of the catalog. A Product contains the resource name and a subset of the data of the original google.cloud.privatecatalogproducer.v1beta.Product.

Version is child resource of the product. A Version contains the resource name and a subset of the data of the original google.cloud.privatecatalogproducer.v1beta.Version.

Example

package main

import (
	"context"

	privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1"
)

func main() {
	ctx := context.Background()
	c, err := privatecatalog.NewClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}

func (*Client) Close

func (c *Client) Close() error

Close closes the connection to the API service. The user should invoke this when the client is no longer required.

func (*Client) Connection

func (c *Client) Connection() *grpc.ClientConn

Connection returns a connection to the API service.

Deprecated.

func (*Client) SearchCatalogs

SearchCatalogs search Catalog resources that consumers have access to, within the scope of the consumer cloud resource hierarchy context.

Example

package main

import (
	"context"

	privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1"
	"google.golang.org/api/iterator"

	privatecatalogpb "google.golang.org/genproto/googleapis/cloud/privatecatalog/v1beta1"
)

func main() {
	ctx := context.Background()
	c, err := privatecatalog.NewClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &privatecatalogpb.SearchCatalogsRequest{
		// TODO: Fill request struct fields.
	}
	it := c.SearchCatalogs(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}

func (*Client) SearchProducts

SearchProducts search Product resources that consumers have access to, within the scope of the consumer cloud resource hierarchy context.

Example

package main

import (
	"context"

	privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1"
	"google.golang.org/api/iterator"

	privatecatalogpb "google.golang.org/genproto/googleapis/cloud/privatecatalog/v1beta1"
)

func main() {
	ctx := context.Background()
	c, err := privatecatalog.NewClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &privatecatalogpb.SearchProductsRequest{
		// TODO: Fill request struct fields.
	}
	it := c.SearchProducts(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}

func (*Client) SearchVersions

SearchVersions search Version resources that consumers have access to, within the scope of the consumer cloud resource hierarchy context.

Example

package main

import (
	"context"

	privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1"
	"google.golang.org/api/iterator"

	privatecatalogpb "google.golang.org/genproto/googleapis/cloud/privatecatalog/v1beta1"
)

func main() {
	ctx := context.Background()
	c, err := privatecatalog.NewClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &privatecatalogpb.SearchVersionsRequest{
		// TODO: Fill request struct fields.
	}
	it := c.SearchVersions(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}

ProductIterator

type ProductIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*privatecatalogpb.Product, nextPageToken string, err error)
	// contains filtered or unexported fields
}

ProductIterator manages a stream of *privatecatalogpb.Product.

func (*ProductIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*ProductIterator) PageInfo

func (it *ProductIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

VersionIterator

type VersionIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*privatecatalogpb.Version, nextPageToken string, err error)
	// contains filtered or unexported fields
}

VersionIterator manages a stream of *privatecatalogpb.Version.

func (*VersionIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*VersionIterator) PageInfo

func (it *VersionIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.