package binaryauthorization
import "cloud.google.com/go/binaryauthorization/apiv1beta1"
Package binaryauthorization is an auto-generated package for the Binary Authorization API.
The management interface for Binary Authorization, a system providing policy control for images deployed to Kubernetes Engine clusters.
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 pkg.go.dev/cloud.google.com/go.
Index ¶
- func DefaultAuthScopes() []string
- type AttestorIterator
- func (it *AttestorIterator) Next() (*binaryauthorizationpb.Attestor, error)
- func (it *AttestorIterator) PageInfo() *iterator.PageInfo
- type BinauthzManagementServiceV1Beta1CallOptions
- type BinauthzManagementServiceV1Beta1Client
- func NewBinauthzManagementServiceV1Beta1Client(ctx context.Context, opts ...option.ClientOption) (*BinauthzManagementServiceV1Beta1Client, error)
- func (c *BinauthzManagementServiceV1Beta1Client) Close() error
- func (c *BinauthzManagementServiceV1Beta1Client) Connection() *grpc.ClientConn
- func (c *BinauthzManagementServiceV1Beta1Client) CreateAttestor(ctx context.Context, req *binaryauthorizationpb.CreateAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
- func (c *BinauthzManagementServiceV1Beta1Client) DeleteAttestor(ctx context.Context, req *binaryauthorizationpb.DeleteAttestorRequest, opts ...gax.CallOption) error
- func (c *BinauthzManagementServiceV1Beta1Client) GetAttestor(ctx context.Context, req *binaryauthorizationpb.GetAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
- func (c *BinauthzManagementServiceV1Beta1Client) GetPolicy(ctx context.Context, req *binaryauthorizationpb.GetPolicyRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Policy, error)
- func (c *BinauthzManagementServiceV1Beta1Client) ListAttestors(ctx context.Context, req *binaryauthorizationpb.ListAttestorsRequest, opts ...gax.CallOption) *AttestorIterator
- func (c *BinauthzManagementServiceV1Beta1Client) UpdateAttestor(ctx context.Context, req *binaryauthorizationpb.UpdateAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
- func (c *BinauthzManagementServiceV1Beta1Client) UpdatePolicy(ctx context.Context, req *binaryauthorizationpb.UpdatePolicyRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Policy, error)
Examples ¶
- BinauthzManagementServiceV1Beta1Client.CreateAttestor
- BinauthzManagementServiceV1Beta1Client.DeleteAttestor
- BinauthzManagementServiceV1Beta1Client.GetAttestor
- BinauthzManagementServiceV1Beta1Client.GetPolicy
- BinauthzManagementServiceV1Beta1Client.ListAttestors
- BinauthzManagementServiceV1Beta1Client.UpdateAttestor
- BinauthzManagementServiceV1Beta1Client.UpdatePolicy
- NewBinauthzManagementServiceV1Beta1Client
Functions ¶
func DefaultAuthScopes ¶
func DefaultAuthScopes() []string
DefaultAuthScopes reports the default set of authentication scopes to use with this package.
Types ¶
type AttestorIterator ¶
type AttestorIterator 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 []*binaryauthorizationpb.Attestor, nextPageToken string, err error) // contains filtered or unexported fields }
AttestorIterator manages a stream of *binaryauthorizationpb.Attestor.
func (*AttestorIterator) Next ¶
func (it *AttestorIterator) Next() (*binaryauthorizationpb.Attestor, 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 (*AttestorIterator) PageInfo ¶
func (it *AttestorIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type BinauthzManagementServiceV1Beta1CallOptions ¶
type BinauthzManagementServiceV1Beta1CallOptions struct { GetPolicy []gax.CallOption UpdatePolicy []gax.CallOption CreateAttestor []gax.CallOption GetAttestor []gax.CallOption UpdateAttestor []gax.CallOption ListAttestors []gax.CallOption DeleteAttestor []gax.CallOption }
BinauthzManagementServiceV1Beta1CallOptions contains the retry settings for each method of BinauthzManagementServiceV1Beta1Client.
type BinauthzManagementServiceV1Beta1Client ¶
type BinauthzManagementServiceV1Beta1Client struct { // The call options for this service. CallOptions *BinauthzManagementServiceV1Beta1CallOptions // contains filtered or unexported fields }
BinauthzManagementServiceV1Beta1Client is a client for interacting with Binary Authorization API.
Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
func NewBinauthzManagementServiceV1Beta1Client ¶
func NewBinauthzManagementServiceV1Beta1Client(ctx context.Context, opts ...option.ClientOption) (*BinauthzManagementServiceV1Beta1Client, error)
NewBinauthzManagementServiceV1Beta1Client creates a new binauthz management service v1 beta1 client.
Google Cloud Management Service for Binary Authorization admission policies and attestation authorities.
This API implements a REST model with the following objects:
Policy Attestor
Example¶
Code:play
package main import ( "context" binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1" ) func main() { ctx := context.Background() c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx) if err != nil { // TODO: Handle error. } // TODO: Use client. _ = c }
func (*BinauthzManagementServiceV1Beta1Client) Close ¶
func (c *BinauthzManagementServiceV1Beta1Client) Close() error
Close closes the connection to the API service. The user should invoke this when the client is no longer required.
func (*BinauthzManagementServiceV1Beta1Client) Connection ¶
func (c *BinauthzManagementServiceV1Beta1Client) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated.
func (*BinauthzManagementServiceV1Beta1Client) CreateAttestor ¶
func (c *BinauthzManagementServiceV1Beta1Client) CreateAttestor(ctx context.Context, req *binaryauthorizationpb.CreateAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
CreateAttestor creates an attestor, and returns a copy of the new
attestor. Returns NOT_FOUND if the project does not exist,
INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the
attestor already exists.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.CreateAttestorRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateAttestor(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*BinauthzManagementServiceV1Beta1Client) DeleteAttestor ¶
func (c *BinauthzManagementServiceV1Beta1Client) DeleteAttestor(ctx context.Context, req *binaryauthorizationpb.DeleteAttestorRequest, opts ...gax.CallOption) error
DeleteAttestor deletes an attestor. Returns NOT_FOUND if the
attestor does not exist.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.DeleteAttestorRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteAttestor(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func (*BinauthzManagementServiceV1Beta1Client) GetAttestor ¶
func (c *BinauthzManagementServiceV1Beta1Client) GetAttestor(ctx context.Context, req *binaryauthorizationpb.GetAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
GetAttestor gets an attestor.
Returns NOT_FOUND if the attestor does not exist.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.GetAttestorRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetAttestor(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*BinauthzManagementServiceV1Beta1Client) GetPolicy ¶
func (c *BinauthzManagementServiceV1Beta1Client) GetPolicy(ctx context.Context, req *binaryauthorizationpb.GetPolicyRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Policy, error)
GetPolicy a policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.
Gets the policy for this project. Returns a default
policy if the project does not have one.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.GetPolicyRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetPolicy(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*BinauthzManagementServiceV1Beta1Client) ListAttestors ¶
func (c *BinauthzManagementServiceV1Beta1Client) ListAttestors(ctx context.Context, req *binaryauthorizationpb.ListAttestorsRequest, opts ...gax.CallOption) *AttestorIterator
ListAttestors lists attestors.
Returns INVALID_ARGUMENT if the project does not exist.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
"google.golang.org/api/iterator"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.ListAttestorsRequest{
// TODO: Fill request struct fields.
}
it := c.ListAttestors(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func (*BinauthzManagementServiceV1Beta1Client) UpdateAttestor ¶
func (c *BinauthzManagementServiceV1Beta1Client) UpdateAttestor(ctx context.Context, req *binaryauthorizationpb.UpdateAttestorRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Attestor, error)
UpdateAttestor updates an attestor.
Returns NOT_FOUND if the attestor does not exist.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.UpdateAttestorRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateAttestor(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*BinauthzManagementServiceV1Beta1Client) UpdatePolicy ¶
func (c *BinauthzManagementServiceV1Beta1Client) UpdatePolicy(ctx context.Context, req *binaryauthorizationpb.UpdatePolicyRequest, opts ...gax.CallOption) (*binaryauthorizationpb.Policy, error)
UpdatePolicy creates or updates a project’s policy, and returns a copy of the
new policy. A policy is always updated as a whole, to avoid race
conditions with concurrent policy enforcement (or management!)
requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT
if the request is malformed.
Code:play
Example¶
package main
import (
"context"
binaryauthorization "cloud.google.com/go/binaryauthorization/apiv1beta1"
binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
)
func main() {
// import binaryauthorizationpb "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1"
ctx := context.Background()
c, err := binaryauthorization.NewBinauthzManagementServiceV1Beta1Client(ctx)
if err != nil {
// TODO: Handle error.
}
req := &binaryauthorizationpb.UpdatePolicyRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdatePolicy(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
Source Files ¶
binauthz_management_service_v1_beta1_client.go doc.go
- Version
- v0.80.0
- Published
- Mar 23, 2021
- Platform
- js/wasm
- Imports
- 20 packages
- Last checked
- 15 minutes ago –
Tools for package owners.