Documentation ¶
Overview ¶
Package policyanalyzer provides access to the Policy Analyzer API.
For product documentation, see: https://www.google.com
Library status ¶
These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.
When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.
Creating a client ¶
Usage example:
import "google.golang.org/api/policyanalyzer/v1beta1" ... ctx := context.Background() policyanalyzerService, err := policyanalyzer.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 google.golang.org/api/option.WithAPIKey:
policyanalyzerService, err := policyanalyzer.NewService(ctx, option.WithAPIKey("AIza..."))
To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...} // ... token, err := config.Exchange(ctx, ...) policyanalyzerService, err := policyanalyzer.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
See google.golang.org/api/option.ClientOption for details on options.
Index ¶
- Constants
- type GoogleCloudPolicyanalyzerV1beta1Activity
- type GoogleCloudPolicyanalyzerV1beta1ObservationPeriod
- type GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse
- type ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Context(ctx context.Context) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Do(opts ...googleapi.CallOption) (*GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse, error)
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Fields(s ...googleapi.Field) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Filter(filter string) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Header() http.Header
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) IfNoneMatch(entityTag string) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) PageSize(pageSize int64) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) PageToken(pageToken string) *ProjectsLocationsActivityTypesActivitiesQueryCall
- func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Pages(ctx context.Context, ...) error
- type ProjectsLocationsActivityTypesActivitiesService
- type ProjectsLocationsActivityTypesService
- type ProjectsLocationsService
- type ProjectsService
- type Service
Constants ¶
const ( // See, edit, configure, and delete your Google Cloud data and see the // email address for your Google Account. 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 GoogleCloudPolicyanalyzerV1beta1Activity ¶
type GoogleCloudPolicyanalyzerV1beta1Activity struct { // Activity: A struct of custom fields to explain the activity. Activity googleapi.RawMessage `json:"activity,omitempty"` // ActivityType: The type of the activity. ActivityType string `json:"activityType,omitempty"` // FullResourceName: The full resource name that identifies the // resource. For examples of full resource names for Google Cloud // services, see // https://cloud.google.com/iam/help/troubleshooter/full-resource-names. FullResourceName string `json:"fullResourceName,omitempty"` // ObservationPeriod: The data observation period to build the activity. ObservationPeriod *GoogleCloudPolicyanalyzerV1beta1ObservationPeriod `json:"observationPeriod,omitempty"` // ForceSendFields is a list of field names (e.g. "Activity") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Activity") 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:"-"` }
func (*GoogleCloudPolicyanalyzerV1beta1Activity) MarshalJSON ¶
func (s *GoogleCloudPolicyanalyzerV1beta1Activity) MarshalJSON() ([]byte, error)
type GoogleCloudPolicyanalyzerV1beta1ObservationPeriod ¶
type GoogleCloudPolicyanalyzerV1beta1ObservationPeriod struct { // EndTime: The observation end time. EndTime string `json:"endTime,omitempty"` // StartTime: The observation start time. StartTime string `json:"startTime,omitempty"` // ForceSendFields is a list of field names (e.g. "EndTime") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. 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. "EndTime") 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:"-"` }
GoogleCloudPolicyanalyzerV1beta1ObservationPeriod: Represents data observation period.
func (*GoogleCloudPolicyanalyzerV1beta1ObservationPeriod) MarshalJSON ¶
func (s *GoogleCloudPolicyanalyzerV1beta1ObservationPeriod) MarshalJSON() ([]byte, error)
type GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse ¶
type GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse struct { // Activities: The set of activities that match the filter included in // the request. Activities []*GoogleCloudPolicyanalyzerV1beta1Activity `json:"activities,omitempty"` // NextPageToken: If there might be more results than those appearing in // this response, then `nextPageToken` is included. To get the next set // of results, call this method again using the value of `nextPageToken` // as `pageToken`. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Activities") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Activities") 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:"-"` }
GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse: Response to the `QueryActivity` method.
func (*GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse) MarshalJSON ¶
func (s *GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse) MarshalJSON() ([]byte, error)
type ProjectsLocationsActivityTypesActivitiesQueryCall ¶
type ProjectsLocationsActivityTypesActivitiesQueryCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) Context ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Context(ctx context.Context) *ProjectsLocationsActivityTypesActivitiesQueryCall
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 (*ProjectsLocationsActivityTypesActivitiesQueryCall) Do ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Do(opts ...googleapi.CallOption) (*GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse, error)
Do executes the "policyanalyzer.projects.locations.activityTypes.activities.query" call. Exactly one of *GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse.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 (*ProjectsLocationsActivityTypesActivitiesQueryCall) Fields ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Fields(s ...googleapi.Field) *ProjectsLocationsActivityTypesActivitiesQueryCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) Filter ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Filter(filter string) *ProjectsLocationsActivityTypesActivitiesQueryCall
Filter sets the optional parameter "filter": Optional filter expression to restrict the activities returned. Supported filters are: - service_account_last_authn.full_resource_name {=} - service_account_key_last_authn.full_resource_name {=}
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) Header ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) IfNoneMatch ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) IfNoneMatch(entityTag string) *ProjectsLocationsActivityTypesActivitiesQueryCall
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 (*ProjectsLocationsActivityTypesActivitiesQueryCall) PageSize ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) PageSize(pageSize int64) *ProjectsLocationsActivityTypesActivitiesQueryCall
PageSize sets the optional parameter "pageSize": The maximum number of results to return from this request. Max limit is 1000. Non-positive values are ignored. The presence of `nextPageToken` in the response indicates that more results might be available.
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) PageToken ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) PageToken(pageToken string) *ProjectsLocationsActivityTypesActivitiesQueryCall
PageToken sets the optional parameter "pageToken": If present, then retrieve the next batch of results from the preceding call to this method. `pageToken` must be the value of `nextPageToken` from the previous response. The values of other method parameters should be identical to those in the previous call.
func (*ProjectsLocationsActivityTypesActivitiesQueryCall) Pages ¶
func (c *ProjectsLocationsActivityTypesActivitiesQueryCall) Pages(ctx context.Context, f func(*GoogleCloudPolicyanalyzerV1beta1QueryActivityResponse) 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 ProjectsLocationsActivityTypesActivitiesService ¶
type ProjectsLocationsActivityTypesActivitiesService struct {
// contains filtered or unexported fields
}
func NewProjectsLocationsActivityTypesActivitiesService ¶
func NewProjectsLocationsActivityTypesActivitiesService(s *Service) *ProjectsLocationsActivityTypesActivitiesService
func (*ProjectsLocationsActivityTypesActivitiesService) Query ¶
func (r *ProjectsLocationsActivityTypesActivitiesService) Query(parent string) *ProjectsLocationsActivityTypesActivitiesQueryCall
Query: Queries policy activities on GCP resources.
- parent: The container resource on which to execute the request. Acceptable formats: `projects/[PROJECT_ID|PROJECT_NUMBER]/locations/[LOCATION]/activityT ypes/[ACTIVITY_TYPE]` LOCATION here refers to GCP Locations: https://cloud.google.com/about/locations/.
type ProjectsLocationsActivityTypesService ¶
type ProjectsLocationsActivityTypesService struct { Activities *ProjectsLocationsActivityTypesActivitiesService // contains filtered or unexported fields }
func NewProjectsLocationsActivityTypesService ¶
func NewProjectsLocationsActivityTypesService(s *Service) *ProjectsLocationsActivityTypesService
type ProjectsLocationsService ¶
type ProjectsLocationsService struct { ActivityTypes *ProjectsLocationsActivityTypesService // contains filtered or unexported fields }
func NewProjectsLocationsService ¶
func NewProjectsLocationsService(s *Service) *ProjectsLocationsService
type ProjectsService ¶
type ProjectsService struct { Locations *ProjectsLocationsService // contains filtered or unexported fields }
func NewProjectsService ¶
func NewProjectsService(s *Service) *ProjectsService
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Projects *ProjectsService // 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.