Documentation ¶
Overview ¶
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.
General documentation ¶
For information that is relevant for all client libraries please reference https://pkg.go.dev/cloud.google.com/go#pkg-overview. Some information on this page includes:
- Authentication and Authorization
- Timeouts and Cancellation
- Testing against Client Libraries
- Debugging Client Libraries
- Inspecting errors
Example usage ¶
To get started with this package, create a client.
// go get cloud.google.com/go/privatecatalog/apiv1beta1@latest ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close()
The client will use your default application credentials. Clients should be reused instead of created as needed. The methods of Client are safe for concurrent use by multiple goroutines. The returned client must be Closed when it is done being used.
Using the Client ¶
The following is an example of making an API call with the newly created client, mentioned above.
req := &privatecatalogpb.SearchCatalogsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchCatalogsRequest. } 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 // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*privatecatalogpb.SearchCatalogsResponse) }
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.
Index ¶
- func DefaultAuthScopes() []string
- type CallOptions
- type CatalogIterator
- type Client
- func (c *Client) Close() error
- func (c *Client) Connection() *grpc.ClientConndeprecated
- func (c *Client) SearchCatalogs(ctx context.Context, req *privatecatalogpb.SearchCatalogsRequest, ...) *CatalogIterator
- func (c *Client) SearchProducts(ctx context.Context, req *privatecatalogpb.SearchProductsRequest, ...) *ProductIterator
- func (c *Client) SearchVersions(ctx context.Context, req *privatecatalogpb.SearchVersionsRequest, ...) *VersionIterator
- type ProductIterator
- type VersionIterator
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultAuthScopes ¶
func DefaultAuthScopes() []string
DefaultAuthScopes reports the default set of authentication scopes to use with this package.
Types ¶
type CallOptions ¶
type CallOptions struct { SearchCatalogs []gax.CallOption SearchProducts []gax.CallOption SearchVersions []gax.CallOption }
CallOptions contains the retry settings for each method of Client.
type 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) All ¶ added in v0.10.1
func (it *CatalogIterator) All() iter.Seq2[*privatecatalogpb.Catalog, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*CatalogIterator) Next ¶
func (it *CatalogIterator) Next() (*privatecatalogpb.Catalog, error)
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.
type 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 ¶
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() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func NewRESTClient ¶ added in v0.4.0
NewRESTClient creates a new private catalog rest client.
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() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewRESTClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func (*Client) Close ¶
Close closes the connection to the API service. The user should invoke this when the client is no longer required.
func (*Client) Connection
deprecated
func (c *Client) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated: Connections are now pooled so this method does not always return the same resource.
func (*Client) SearchCatalogs ¶
func (c *Client) SearchCatalogs(ctx context.Context, req *privatecatalogpb.SearchCatalogsRequest, opts ...gax.CallOption) *CatalogIterator
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" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchCatalogsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchCatalogsRequest. } 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 // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*privatecatalogpb.SearchCatalogsResponse) } }
Output:
Example (All) ¶
package main import ( "context" privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchCatalogsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchCatalogsRequest. } for resp, err := range c.SearchCatalogs(ctx, req).All() { if err != nil { // TODO: Handle error and break/return/continue. Iteration will stop after any error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) SearchProducts ¶
func (c *Client) SearchProducts(ctx context.Context, req *privatecatalogpb.SearchProductsRequest, opts ...gax.CallOption) *ProductIterator
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" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchProductsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchProductsRequest. } 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 // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*privatecatalogpb.SearchProductsResponse) } }
Output:
Example (All) ¶
package main import ( "context" privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchProductsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchProductsRequest. } for resp, err := range c.SearchProducts(ctx, req).All() { if err != nil { // TODO: Handle error and break/return/continue. Iteration will stop after any error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) SearchVersions ¶
func (c *Client) SearchVersions(ctx context.Context, req *privatecatalogpb.SearchVersionsRequest, opts ...gax.CallOption) *VersionIterator
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" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchVersionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchVersionsRequest. } 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 // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*privatecatalogpb.SearchVersionsResponse) } }
Output:
Example (All) ¶
package main import ( "context" privatecatalog "cloud.google.com/go/privatecatalog/apiv1beta1" privatecatalogpb "cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := privatecatalog.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &privatecatalogpb.SearchVersionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/privatecatalog/apiv1beta1/privatecatalogpb#SearchVersionsRequest. } for resp, err := range c.SearchVersions(ctx, req).All() { if err != nil { // TODO: Handle error and break/return/continue. Iteration will stop after any error. } // TODO: Use resp. _ = resp } }
Output:
type 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) All ¶ added in v0.10.1
func (it *ProductIterator) All() iter.Seq2[*privatecatalogpb.Product, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*ProductIterator) Next ¶
func (it *ProductIterator) Next() (*privatecatalogpb.Product, error)
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.
type 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) All ¶ added in v0.10.1
func (it *VersionIterator) All() iter.Seq2[*privatecatalogpb.Version, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*VersionIterator) Next ¶
func (it *VersionIterator) Next() (*privatecatalogpb.Version, error)
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.