Movatterモバイル変換


[0]ホーム

URL:


gkehub

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:0

Details

Repository

github.com/googleapis/google-api-go-client

Links

Documentation

Overview

Package gkehub provides access to the GKE Hub API.

For product documentation, see:https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster

Library status

These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany 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/gkehub/v1alpha"...ctx := context.Background()gkehubService, err := gkehub.NewService(ctx)

In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

gkehubService, err := gkehub.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)gkehubService, err := gkehub.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
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

typeAppDevExperienceFeatureSpecadded inv0.61.0

type AppDevExperienceFeatureSpec struct {}

AppDevExperienceFeatureSpec: Spec for App Dev Experience Feature.

typeAppDevExperienceFeatureStateadded inv0.61.0

type AppDevExperienceFeatureState struct {// NetworkingInstallSucceeded: Status of subcomponent that detects configured// Service Mesh resources.NetworkingInstallSucceeded *Status `json:"networkingInstallSucceeded,omitempty"`// ForceSendFields is a list of field names (e.g. "NetworkingInstallSucceeded")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NetworkingInstallSucceeded") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AppDevExperienceFeatureState: State for App Dev Exp Feature.

func (AppDevExperienceFeatureState)MarshalJSONadded inv0.61.0

func (sAppDevExperienceFeatureState) MarshalJSON() ([]byte,error)

typeApplianceClusteradded inv0.84.0

type ApplianceCluster struct {// ResourceLink: Immutable. Self-link of the Google Cloud resource for the// Appliance Cluster. For example:// //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/a// ppliances/my-applianceResourceLinkstring `json:"resourceLink,omitempty"`// ForceSendFields is a list of field names (e.g. "ResourceLink") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ResourceLink") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ApplianceCluster: ApplianceCluster contains information specific to GDC EdgeAppliance Clusters.

func (ApplianceCluster)MarshalJSONadded inv0.84.0

func (sApplianceCluster) MarshalJSON() ([]byte,error)

typeAuditConfig

type AuditConfig struct {// AuditLogConfigs: The configuration for logging of each type of permission.AuditLogConfigs []*AuditLogConfig `json:"auditLogConfigs,omitempty"`// Service: Specifies a service that will be enabled for audit logging. For// example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices`// is a special value that covers all services.Servicestring `json:"service,omitempty"`// ForceSendFields is a list of field names (e.g. "AuditLogConfigs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditLogConfigs") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AuditConfig: Specifies the audit configuration for a service. Theconfiguration determines which permission types are logged, and whatidentities, if any, are exempted from logging. An AuditConfig must have oneor more AuditLogConfigs. If there are AuditConfigs for both `allServices`and a specific service, the union of the two AuditConfigs is used for thatservice: the log_types specified in each AuditConfig are enabled, and theexempted_members in each AuditLogConfig are exempted. Example Policy withmultiple AuditConfigs: { "audit_configs": [ { "service": "allServices","audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": ["user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type":"ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com","audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type":"DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } Forsampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READlogging. It also exempts `jose@example.com` from DATA_READ logging, and`aliya@example.com` from DATA_WRITE logging.

func (AuditConfig)MarshalJSON

func (sAuditConfig) MarshalJSON() ([]byte,error)

typeAuditLogConfig

type AuditLogConfig struct {// ExemptedMembers: Specifies the identities that do not cause logging for this// type of permission. Follows the same format of Binding.members.ExemptedMembers []string `json:"exemptedMembers,omitempty"`// LogType: The log type that this config enables.//// Possible values://   "LOG_TYPE_UNSPECIFIED" - Default case. Should never be this.//   "ADMIN_READ" - Admin reads. Example: CloudIAM getIamPolicy//   "DATA_WRITE" - Data writes. Example: CloudSQL Users create//   "DATA_READ" - Data reads. Example: CloudSQL Users listLogTypestring `json:"logType,omitempty"`// ForceSendFields is a list of field names (e.g. "ExemptedMembers") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExemptedMembers") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AuditLogConfig: Provides the configuration for logging a type ofpermissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ","exempted_members": [ "user:jose@example.com" ] }, { "log_type":"DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, whileexempting jose@example.com from DATA_READ logging.

func (AuditLogConfig)MarshalJSON

func (sAuditLogConfig) MarshalJSON() ([]byte,error)

typeAuthorityadded inv0.59.0

type Authority struct {// IdentityProvider: Output only. An identity provider that reflects the// `issuer` in the workload identity pool.IdentityProviderstring `json:"identityProvider,omitempty"`// Issuer: Optional. A JSON Web Token (JWT) issuer URI. `issuer` must start// with `https://` and be a valid URL with length <2000 characters, it must use// `location` rather than `zone` for GKE clusters. If set, then Google will// allow valid OIDC tokens from this issuer to authenticate within the// workload_identity_pool. OIDC discovery will be performed on this URI to// validate tokens from the issuer. Clearing `issuer` disables Workload// Identity. `issuer` cannot be directly modified; it must be cleared (and// Workload Identity disabled) before using a new issuer (and re-enabling// Workload Identity).Issuerstring `json:"issuer,omitempty"`// OidcJwks: Optional. OIDC verification keys for this Membership in JWKS// format (RFC 7517). When this field is set, OIDC discovery will NOT be// performed on `issuer`, and instead OIDC tokens will be validated using this// field.OidcJwksstring `json:"oidcJwks,omitempty"`// ScopeTenancyIdentityProvider: Optional. Output only. The identity provider// for the scope-tenancy workload identity pool.ScopeTenancyIdentityProviderstring `json:"scopeTenancyIdentityProvider,omitempty"`// ScopeTenancyWorkloadIdentityPool: Optional. Output only. The name of the// scope-tenancy workload identity pool. This pool is set in the fleet-level// feature.ScopeTenancyWorkloadIdentityPoolstring `json:"scopeTenancyWorkloadIdentityPool,omitempty"`// WorkloadIdentityPool: Output only. The name of the workload identity pool in// which `issuer` will be recognized. There is a single Workload Identity Pool// per Hub that is shared between all Memberships that belong to that Hub. For// a Hub hosted in {PROJECT_ID}, the workload pool format is// `{PROJECT_ID}.hub.id.goog`, although this is subject to change in newer// versions of this API.WorkloadIdentityPoolstring `json:"workloadIdentityPool,omitempty"`// ForceSendFields is a list of field names (e.g. "IdentityProvider") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IdentityProvider") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Authority: Authority encodes how Google will recognize identities from thisMembership. See the workload identity documentation for more details:https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity

func (Authority)MarshalJSONadded inv0.59.0

func (sAuthority) MarshalJSON() ([]byte,error)

typeBinaryAuthorizationConfigadded inv0.152.0

type BinaryAuthorizationConfig struct {// EvaluationMode: Optional. Mode of operation for binauthz policy evaluation.//// Possible values://   "EVALUATION_MODE_UNSPECIFIED" - Default value//   "DISABLED" - Disable BinaryAuthorization//   "POLICY_BINDINGS" - Use Binary Authorization with the policies specified// in policy_bindings.EvaluationModestring `json:"evaluationMode,omitempty"`// PolicyBindings: Optional. Binauthz policies that apply to this cluster.PolicyBindings []*PolicyBinding `json:"policyBindings,omitempty"`// ForceSendFields is a list of field names (e.g. "EvaluationMode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EvaluationMode") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

BinaryAuthorizationConfig: BinaryAuthorizationConfig defines the fleet levelconfiguration of binary authorization feature.

func (BinaryAuthorizationConfig)MarshalJSONadded inv0.152.0

func (sBinaryAuthorizationConfig) MarshalJSON() ([]byte,error)

typeBinding

type Binding struct {// Condition: The condition that is associated with this binding. If the// condition evaluates to `true`, then this binding applies to the current// request. If the condition evaluates to `false`, then this binding does not// apply to the current request. However, a different role binding might grant// the same role to one or more of the principals in this binding. To learn// which resources support conditions in their IAM policies, see the IAM// documentation// (https://cloud.google.com/iam/help/conditions/resource-policies).Condition *Expr `json:"condition,omitempty"`// Members: Specifies the principals requesting access for a Google Cloud// resource. `members` can have the following values: * `allUsers`: A special// identifier that represents anyone who is on the internet; with or without a// Google account. * `allAuthenticatedUsers`: A special identifier that// represents anyone who is authenticated with a Google account or a service// account. Does not include identities that come from external identity// providers (IdPs) through identity federation. * `user:{emailid}`: An email// address that represents a specific Google account. For example,// `alice@example.com` . * `serviceAccount:{emailid}`: An email address that// represents a Google service account. For example,// `my-other-app@appspot.gserviceaccount.com`. *// `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An// identifier for a Kubernetes service account// (https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts).// For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. *// `group:{emailid}`: An email address that represents a Google group. For// example, `admins@example.com`. * `domain:{domain}`: The G Suite domain// (primary) that represents all the users of that domain. For example,// `google.com` or `example.com`. *// `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/sub// ject/{subject_attribute_value}`: A single identity in a workforce identity// pool. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// group/{group_id}`: All workforce identities in a group. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// attribute.{attribute_name}/{attribute_value}`: All workforce identities with// a specific attribute value. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// *`: All identities in a workforce identity pool. *// `principal://iam.googleapis.com/projects/{project_number}/locations/global/wo// rkloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single// identity in a workload identity pool. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool// group. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}// `: All identities in a workload identity pool with a certain attribute. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/*`: All identities in a workload identity// pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus// unique identifier) representing a user that has been recently deleted. For// example, `alice@example.com?uid=123456789012345678901`. If the user is// recovered, this value reverts to `user:{emailid}` and the recovered user// retains the role in the binding. *// `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus// unique identifier) representing a service account that has been recently// deleted. For example,// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the// service account is undeleted, this value reverts to// `serviceAccount:{emailid}` and the undeleted service account retains the// role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email// address (plus unique identifier) representing a Google group that has been// recently deleted. For example,// `admins@example.com?uid=123456789012345678901`. If the group is recovered,// this value reverts to `group:{emailid}` and the recovered group retains the// role in the binding. *// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool// _id}/subject/{subject_attribute_value}`: Deleted single identity in a// workforce identity pool. For example,// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-po// ol-id/subject/my-subject-attribute-value`.Members []string `json:"members,omitempty"`// Role: Role that is assigned to the list of `members`, or principals. For// example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview// of the IAM roles and permissions, see the IAM documentation// (https://cloud.google.com/iam/docs/roles-overview). For a list of the// available pre-defined roles, see here// (https://cloud.google.com/iam/docs/understanding-roles).Rolestring `json:"role,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Binding: Associates `members`, or principals, with a `role`.

func (Binding)MarshalJSON

func (sBinding) MarshalJSON() ([]byte,error)

typeCancelOperationRequest

type CancelOperationRequest struct {}

CancelOperationRequest: The request message for Operations.CancelOperation.

typeCloudAuditLoggingFeatureSpec

type CloudAuditLoggingFeatureSpec struct {// AllowlistedServiceAccounts: Service account that should be allowlisted to// send the audit logs; eg// cloudauditlogging@gcp-project.iam.gserviceaccount.com. These accounts must// already exist, but do not need to have any permissions granted to them. The// customer's entitlements will be checked prior to allowlisting (i.e. the// customer must be an Anthos customer.)AllowlistedServiceAccounts []string `json:"allowlistedServiceAccounts,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowlistedServiceAccounts")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowlistedServiceAccounts") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CloudAuditLoggingFeatureSpec: **Cloud Audit Logging**: Spec for AuditLogging Allowlisting.

func (CloudAuditLoggingFeatureSpec)MarshalJSON

func (sCloudAuditLoggingFeatureSpec) MarshalJSON() ([]byte,error)

typeCloudBuildMembershipSpecadded inv0.67.0

type CloudBuildMembershipSpec struct {// SecurityPolicy: Whether it is allowed to run the privileged builds on the// cluster or not.//// Possible values://   "SECURITY_POLICY_UNSPECIFIED" - Unspecified policy//   "NON_PRIVILEGED" - Privileged build pods are disallowed//   "PRIVILEGED" - Privileged build pods are allowedSecurityPolicystring `json:"securityPolicy,omitempty"`// Version: Version of the cloud build software on the cluster.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "SecurityPolicy") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SecurityPolicy") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CloudBuildMembershipSpec: **Cloud Build**: Configurations for each CloudBuild enabled cluster.

func (CloudBuildMembershipSpec)MarshalJSONadded inv0.67.0

func (sCloudBuildMembershipSpec) MarshalJSON() ([]byte,error)

typeClusterSelectoradded inv0.256.0

type ClusterSelector struct {// LabelSelector: The label selector must be a valid CEL (go/cel) expression// which evaluates resource.labels.LabelSelectorstring `json:"labelSelector,omitempty"`// ForceSendFields is a list of field names (e.g. "LabelSelector") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LabelSelector") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterSelector: Selector for clusters.

func (ClusterSelector)MarshalJSONadded inv0.256.0

func (sClusterSelector) MarshalJSON() ([]byte,error)

typeClusterUpgradeFleetSpecadded inv0.139.0

type ClusterUpgradeFleetSpec struct {// GkeUpgradeOverrides: Allow users to override some properties of each GKE// upgrade.GkeUpgradeOverrides []*ClusterUpgradeGKEUpgradeOverride `json:"gkeUpgradeOverrides,omitempty"`// PostConditions: Required. Post conditions to evaluate to mark an upgrade// COMPLETE. Required.PostConditions *ClusterUpgradePostConditions `json:"postConditions,omitempty"`// UpstreamFleets: This fleet consumes upgrades that have COMPLETE status code// in the upstream fleets. See UpgradeStatus.Code for code definitions. The// fleet name should be either fleet project number or id. This is defined as// repeated for future proof reasons. Initial implementation will enforce at// most one upstream fleet.UpstreamFleets []string `json:"upstreamFleets,omitempty"`// ForceSendFields is a list of field names (e.g. "GkeUpgradeOverrides") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GkeUpgradeOverrides") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeFleetSpec: **ClusterUpgrade**: The configuration for thefleet-level ClusterUpgrade feature.

func (ClusterUpgradeFleetSpec)MarshalJSONadded inv0.139.0

func (sClusterUpgradeFleetSpec) MarshalJSON() ([]byte,error)

typeClusterUpgradeFleetStateadded inv0.139.0

type ClusterUpgradeFleetState struct {// DownstreamFleets: This fleets whose upstream_fleets contain the current// fleet. The fleet name should be either fleet project number or id.DownstreamFleets []string `json:"downstreamFleets,omitempty"`// GkeState: Feature state for GKE clusters.GkeState *ClusterUpgradeGKEUpgradeFeatureState `json:"gkeState,omitempty"`// Ignored: A list of memberships ignored by the feature. For example, manually// upgraded clusters can be ignored if they are newer than the default versions// of its release channel. The membership resource is in the format:// `projects/{p}/locations/{l}/membership/{m}`.Ignored map[string]ClusterUpgradeIgnoredMembership `json:"ignored,omitempty"`// ForceSendFields is a list of field names (e.g. "DownstreamFleets") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DownstreamFleets") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeFleetState: **ClusterUpgrade**: The state for the fleet-levelClusterUpgrade feature.

func (ClusterUpgradeFleetState)MarshalJSONadded inv0.139.0

func (sClusterUpgradeFleetState) MarshalJSON() ([]byte,error)

typeClusterUpgradeGKEUpgradeadded inv0.127.0

type ClusterUpgradeGKEUpgrade struct {// Name: Name of the upgrade, e.g., "k8s_control_plane". It should be a valid// upgrade name. It must not exceet 99 characters.Namestring `json:"name,omitempty"`// Version: Version of the upgrade, e.g., "1.22.1-gke.100". It should be a// valid version. It must not exceet 99 characters.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeGKEUpgrade: GKEUpgrade represents a GKE provided upgrade,e.g., control plane upgrade.

func (ClusterUpgradeGKEUpgrade)MarshalJSONadded inv0.127.0

func (sClusterUpgradeGKEUpgrade) MarshalJSON() ([]byte,error)

typeClusterUpgradeGKEUpgradeFeatureConditionadded inv0.127.0

type ClusterUpgradeGKEUpgradeFeatureCondition struct {// Reason: Reason why the feature is in this status.Reasonstring `json:"reason,omitempty"`// Status: Status of the condition, one of True, False, Unknown.Statusstring `json:"status,omitempty"`// Type: Type of the condition, for example, "ready".Typestring `json:"type,omitempty"`// UpdateTime: Last timestamp the condition was updated.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Reason") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Reason") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeGKEUpgradeFeatureCondition: GKEUpgradeFeatureConditiondescribes the condition of the feature for GKE clusters at a certain pointof time.

func (ClusterUpgradeGKEUpgradeFeatureCondition)MarshalJSONadded inv0.127.0

typeClusterUpgradeGKEUpgradeFeatureStateadded inv0.127.0

type ClusterUpgradeGKEUpgradeFeatureState struct {// Conditions: Current conditions of the feature.Conditions []*ClusterUpgradeGKEUpgradeFeatureCondition `json:"conditions,omitempty"`// UpgradeState: Upgrade state. It will eventually replace `state`.UpgradeState []*ClusterUpgradeGKEUpgradeState `json:"upgradeState,omitempty"`// ForceSendFields is a list of field names (e.g. "Conditions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conditions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeGKEUpgradeFeatureState: GKEUpgradeFeatureState containsfeature states for GKE clusters in the scope.

func (ClusterUpgradeGKEUpgradeFeatureState)MarshalJSONadded inv0.127.0

typeClusterUpgradeGKEUpgradeOverrideadded inv0.127.0

type ClusterUpgradeGKEUpgradeOverride struct {// PostConditions: Required. Post conditions to override for the specified// upgrade (name + version). Required.PostConditions *ClusterUpgradePostConditions `json:"postConditions,omitempty"`// Upgrade: Required. Which upgrade to override. Required.Upgrade *ClusterUpgradeGKEUpgrade `json:"upgrade,omitempty"`// ForceSendFields is a list of field names (e.g. "PostConditions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PostConditions") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeGKEUpgradeOverride: Properties of a GKE upgrade that can beoverridden by the user. For example, a user can skip soaking by overridingthe soaking to 0.

func (ClusterUpgradeGKEUpgradeOverride)MarshalJSONadded inv0.127.0

func (sClusterUpgradeGKEUpgradeOverride) MarshalJSON() ([]byte,error)

typeClusterUpgradeGKEUpgradeStateadded inv0.132.0

type ClusterUpgradeGKEUpgradeState struct {// Stats: Number of GKE clusters in each status code.Stats map[string]string `json:"stats,omitempty"`// Status: Status of the upgrade.Status *ClusterUpgradeUpgradeStatus `json:"status,omitempty"`// Upgrade: Which upgrade to track the state.Upgrade *ClusterUpgradeGKEUpgrade `json:"upgrade,omitempty"`// ForceSendFields is a list of field names (e.g. "Stats") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Stats") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeGKEUpgradeState: GKEUpgradeState is a GKEUpgrade and its stateat the scope and fleet level.

func (ClusterUpgradeGKEUpgradeState)MarshalJSONadded inv0.132.0

func (sClusterUpgradeGKEUpgradeState) MarshalJSON() ([]byte,error)

typeClusterUpgradeIgnoredMembershipadded inv0.127.0

type ClusterUpgradeIgnoredMembership struct {// IgnoredTime: Time when the membership was first set to ignored.IgnoredTimestring `json:"ignoredTime,omitempty"`// Reason: Reason why the membership is ignored.Reasonstring `json:"reason,omitempty"`// ForceSendFields is a list of field names (e.g. "IgnoredTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IgnoredTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeIgnoredMembership: IgnoredMembership represents a membershipignored by the feature. A membership can be ignored because it was manuallyupgraded to a newer version than RC default.

func (ClusterUpgradeIgnoredMembership)MarshalJSONadded inv0.127.0

func (sClusterUpgradeIgnoredMembership) MarshalJSON() ([]byte,error)

typeClusterUpgradeMembershipGKEUpgradeStateadded inv0.127.0

type ClusterUpgradeMembershipGKEUpgradeState struct {// Status: Status of the upgrade.Status *ClusterUpgradeUpgradeStatus `json:"status,omitempty"`// Upgrade: Which upgrade to track the state.Upgrade *ClusterUpgradeGKEUpgrade `json:"upgrade,omitempty"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeMembershipGKEUpgradeState: ScopeGKEUpgradeState is aGKEUpgrade and its state per-membership.

func (ClusterUpgradeMembershipGKEUpgradeState)MarshalJSONadded inv0.127.0

typeClusterUpgradeMembershipStateadded inv0.127.0

type ClusterUpgradeMembershipState struct {// Ignored: Whether this membership is ignored by the feature. For example,// manually upgraded clusters can be ignored if they are newer than the default// versions of its release channel.Ignored *ClusterUpgradeIgnoredMembership `json:"ignored,omitempty"`// Scopes: Fully qualified scope names that this clusters is bound to which// also have rollout sequencing enabled.Scopes []string `json:"scopes,omitempty"`// Upgrades: Actual upgrade state against desired.Upgrades []*ClusterUpgradeMembershipGKEUpgradeState `json:"upgrades,omitempty"`// ForceSendFields is a list of field names (e.g. "Ignored") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Ignored") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeMembershipState: Per-membership state for this feature.

func (ClusterUpgradeMembershipState)MarshalJSONadded inv0.127.0

func (sClusterUpgradeMembershipState) MarshalJSON() ([]byte,error)

typeClusterUpgradePostConditionsadded inv0.127.0

type ClusterUpgradePostConditions struct {// Soaking: Required. Amount of time to "soak" after a rollout has been// finished before marking it COMPLETE. Cannot exceed 30 days. Required.Soakingstring `json:"soaking,omitempty"`// ForceSendFields is a list of field names (e.g. "Soaking") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Soaking") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradePostConditions: Post conditional checks after an upgrade hasbeen applied on all eligible clusters.

func (ClusterUpgradePostConditions)MarshalJSONadded inv0.127.0

func (sClusterUpgradePostConditions) MarshalJSON() ([]byte,error)

typeClusterUpgradeScopeSpecadded inv0.127.0

type ClusterUpgradeScopeSpec struct {// GkeUpgradeOverrides: Allow users to override some properties of each GKE// upgrade.GkeUpgradeOverrides []*ClusterUpgradeGKEUpgradeOverride `json:"gkeUpgradeOverrides,omitempty"`// PostConditions: Required. Post conditions to evaluate to mark an upgrade// COMPLETE. Required.PostConditions *ClusterUpgradePostConditions `json:"postConditions,omitempty"`// UpstreamScopes: This scope consumes upgrades that have COMPLETE status code// in the upstream scopes. See UpgradeStatus.Code for code definitions. The// scope name should be in the form: `projects/{p}/locations/global/scopes/{s}`// Where {p} is the project, {s} is a valid Scope in this project. {p} WILL// match the Feature's project. This is defined as repeated for future proof// reasons. Initial implementation will enforce at most one upstream scope.UpstreamScopes []string `json:"upstreamScopes,omitempty"`// ForceSendFields is a list of field names (e.g. "GkeUpgradeOverrides") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GkeUpgradeOverrides") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeScopeSpec: **ClusterUpgrade**: The configuration for thescope-level ClusterUpgrade feature.

func (ClusterUpgradeScopeSpec)MarshalJSONadded inv0.127.0

func (sClusterUpgradeScopeSpec) MarshalJSON() ([]byte,error)

typeClusterUpgradeScopeStateadded inv0.127.0

type ClusterUpgradeScopeState struct {// DownstreamScopes: This scopes whose upstream_scopes contain the current// scope. The scope name should be in the form:// `projects/{p}/locations/gloobal/scopes/{s}` Where {p} is the project, {s} is// a valid Scope in this project. {p} WILL match the Feature's project.DownstreamScopes []string `json:"downstreamScopes,omitempty"`// GkeState: Feature state for GKE clusters.GkeState *ClusterUpgradeGKEUpgradeFeatureState `json:"gkeState,omitempty"`// Ignored: A list of memberships ignored by the feature. For example, manually// upgraded clusters can be ignored if they are newer than the default versions// of its release channel. The membership resource is in the format:// `projects/{p}/locations/{l}/membership/{m}`.Ignored map[string]ClusterUpgradeIgnoredMembership `json:"ignored,omitempty"`// ForceSendFields is a list of field names (e.g. "DownstreamScopes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DownstreamScopes") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeScopeState: **ClusterUpgrade**: The state for the scope-levelClusterUpgrade feature.

func (ClusterUpgradeScopeState)MarshalJSONadded inv0.127.0

func (sClusterUpgradeScopeState) MarshalJSON() ([]byte,error)

typeClusterUpgradeUpgradeStatusadded inv0.127.0

type ClusterUpgradeUpgradeStatus struct {// Code: Status code of the upgrade.//// Possible values://   "CODE_UNSPECIFIED" - Required byhttps://linter.aip.dev/126/unspecified.//   "INELIGIBLE" - The upgrade is ineligible. At the scope level, this means// the upgrade is ineligible for all the clusters in the scope.//   "PENDING" - The upgrade is pending. At the scope level, this means the// upgrade is pending for all the clusters in the scope.//   "IN_PROGRESS" - The upgrade is in progress. At the scope level, this means// the upgrade is in progress for at least one cluster in the scope.//   "SOAKING" - The upgrade has finished and is soaking until the soaking time// is up. At the scope level, this means at least one cluster is in soaking// while the rest are either soaking or complete.//   "FORCED_SOAKING" - A cluster will be forced to enter soaking if an upgrade// doesn't finish within a certain limit, despite it's actual status.//   "COMPLETE" - The upgrade has passed all post conditions (soaking). At the// scope level, this means all eligible clusters are in COMPLETE status.Codestring `json:"code,omitempty"`// Reason: Reason for this status.Reasonstring `json:"reason,omitempty"`// UpdateTime: Last timestamp the status was updated.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ClusterUpgradeUpgradeStatus: UpgradeStatus provides status information foreach upgrade.

func (ClusterUpgradeUpgradeStatus)MarshalJSONadded inv0.127.0

func (sClusterUpgradeUpgradeStatus) MarshalJSON() ([]byte,error)

typeCommonFeatureSpec

type CommonFeatureSpec struct {// Appdevexperience: Appdevexperience specific spec.Appdevexperience *AppDevExperienceFeatureSpec `json:"appdevexperience,omitempty"`// Cloudauditlogging: Cloud Audit Logging-specific spec.Cloudauditlogging *CloudAuditLoggingFeatureSpec `json:"cloudauditlogging,omitempty"`// Clusterupgrade: ClusterUpgrade (fleet-based) feature spec.Clusterupgrade *ClusterUpgradeFleetSpec `json:"clusterupgrade,omitempty"`// Dataplanev2: DataplaneV2 feature spec.Dataplanev2 *DataplaneV2FeatureSpec `json:"dataplanev2,omitempty"`// Fleetobservability: FleetObservability feature spec.Fleetobservability *FleetObservabilityFeatureSpec `json:"fleetobservability,omitempty"`// Multiclusteringress: Multicluster Ingress-specific spec.Multiclusteringress *MultiClusterIngressFeatureSpec `json:"multiclusteringress,omitempty"`// Namespaceactuation: Namespace Actuation feature specNamespaceactuation *NamespaceActuationFeatureSpec `json:"namespaceactuation,omitempty"`// Rbacrolebindingactuation: RBAC Role Binding Actuation feature specRbacrolebindingactuation *RBACRoleBindingActuationFeatureSpec `json:"rbacrolebindingactuation,omitempty"`// Workloadcertificate: Workload Certificate spec.Workloadcertificate *FeatureSpec `json:"workloadcertificate,omitempty"`// Workloadidentity: Workload Identity feature spec.Workloadidentity *WorkloadIdentityFeatureSpec `json:"workloadidentity,omitempty"`// ForceSendFields is a list of field names (e.g. "Appdevexperience") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Appdevexperience") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CommonFeatureSpec: CommonFeatureSpec contains Fleet-wide configurationinformation

func (CommonFeatureSpec)MarshalJSON

func (sCommonFeatureSpec) MarshalJSON() ([]byte,error)

typeCommonFeatureState

type CommonFeatureState struct {// Appdevexperience: Appdevexperience specific state.Appdevexperience *AppDevExperienceFeatureState `json:"appdevexperience,omitempty"`// Clusterupgrade: ClusterUpgrade fleet-level state.Clusterupgrade *ClusterUpgradeFleetState `json:"clusterupgrade,omitempty"`// Fleetobservability: FleetObservability feature state.Fleetobservability *FleetObservabilityFeatureState `json:"fleetobservability,omitempty"`// Namespaceactuation: Namespace Actuation feature state.Namespaceactuation *NamespaceActuationFeatureState `json:"namespaceactuation,omitempty"`// Rbacrolebindingactuation: RBAC Role Binding Actuation feature stateRbacrolebindingactuation *RBACRoleBindingActuationFeatureState `json:"rbacrolebindingactuation,omitempty"`// Servicemesh: Service Mesh-specific state.Servicemesh *ServiceMeshFeatureState `json:"servicemesh,omitempty"`// State: Output only. The "running state" of the Feature in this Fleet.State *FeatureState `json:"state,omitempty"`// Workloadidentity: WorkloadIdentity fleet-level state.Workloadidentity *WorkloadIdentityFeatureState `json:"workloadidentity,omitempty"`// ForceSendFields is a list of field names (e.g. "Appdevexperience") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Appdevexperience") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CommonFeatureState: CommonFeatureState contains Fleet-wide Feature statusinformation.

func (CommonFeatureState)MarshalJSON

func (sCommonFeatureState) MarshalJSON() ([]byte,error)

typeCommonFleetDefaultMemberConfigSpecadded inv0.109.0

type CommonFleetDefaultMemberConfigSpec struct {// Configmanagement: Config Management-specific spec.Configmanagement *ConfigManagementMembershipSpec `json:"configmanagement,omitempty"`// Identityservice: Identity Service-specific spec.Identityservice *IdentityServiceMembershipSpec `json:"identityservice,omitempty"`// Mesh: Anthos Service Mesh-specific specMesh *ServiceMeshMembershipSpec `json:"mesh,omitempty"`// Policycontroller: Policy Controller spec.Policycontroller *PolicyControllerMembershipSpec `json:"policycontroller,omitempty"`// ForceSendFields is a list of field names (e.g. "Configmanagement") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Configmanagement") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CommonFleetDefaultMemberConfigSpec: CommonFleetDefaultMemberConfigSpeccontains default configuration information for memberships of a fleet

func (CommonFleetDefaultMemberConfigSpec)MarshalJSONadded inv0.109.0

typeCompliancePostureConfigadded inv0.193.0

type CompliancePostureConfig struct {// ComplianceStandards: List of enabled compliance standards.ComplianceStandards []*ComplianceStandard `json:"complianceStandards,omitempty"`// Mode: Defines the enablement mode for Compliance Posture.//// Possible values://   "MODE_UNSPECIFIED" - Default value not specified.//   "DISABLED" - Disables Compliance Posture features on the cluster.//   "ENABLED" - Enables Compliance Posture features on the cluster.Modestring `json:"mode,omitempty"`// ForceSendFields is a list of field names (e.g. "ComplianceStandards") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ComplianceStandards") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

CompliancePostureConfig: CompliancePostureConfig defines the settings neededto enable/disable features for the Compliance Posture.

func (CompliancePostureConfig)MarshalJSONadded inv0.193.0

func (sCompliancePostureConfig) MarshalJSON() ([]byte,error)

typeComplianceStandardadded inv0.193.0

type ComplianceStandard struct {// Standard: Name of the compliance standard.Standardstring `json:"standard,omitempty"`// ForceSendFields is a list of field names (e.g. "Standard") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Standard") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (ComplianceStandard)MarshalJSONadded inv0.193.0

func (sComplianceStandard) MarshalJSON() ([]byte,error)

typeConfigManagementBinauthzConfig

type ConfigManagementBinauthzConfig struct {// Enabled: Whether binauthz is enabled in this cluster.Enabledbool `json:"enabled,omitempty"`// ForceSendFields is a list of field names (e.g. "Enabled") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Enabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementBinauthzConfig: Configuration for Binauthz

func (ConfigManagementBinauthzConfig)MarshalJSON

func (sConfigManagementBinauthzConfig) MarshalJSON() ([]byte,error)

typeConfigManagementBinauthzState

type ConfigManagementBinauthzState struct {// Version: The version of binauthz that is installed.Version *ConfigManagementBinauthzVersion `json:"version,omitempty"`// Webhook: The state of the binauthz webhook.//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingWebhookstring `json:"webhook,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementBinauthzState: State for Binauthz

func (ConfigManagementBinauthzState)MarshalJSON

func (sConfigManagementBinauthzState) MarshalJSON() ([]byte,error)

typeConfigManagementBinauthzVersion

type ConfigManagementBinauthzVersion struct {// WebhookVersion: The version of the binauthz webhook.WebhookVersionstring `json:"webhookVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "WebhookVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "WebhookVersion") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementBinauthzVersion: The version of binauthz.

func (ConfigManagementBinauthzVersion)MarshalJSON

func (sConfigManagementBinauthzVersion) MarshalJSON() ([]byte,error)

typeConfigManagementConfigSync

type ConfigManagementConfigSync struct {// DeploymentOverrides: Optional. Configuration for deployment overrides.DeploymentOverrides []*ConfigManagementDeploymentOverride `json:"deploymentOverrides,omitempty"`// Enabled: Optional. Enables the installation of ConfigSync. If set to true,// ConfigSync resources will be created and the other ConfigSync fields will be// applied if exist. If set to false, all other ConfigSync fields will be// ignored, ConfigSync resources will be deleted. If omitted, ConfigSync// resources will be managed depends on the presence of the git or oci field.Enabledbool `json:"enabled,omitempty"`// Git: Optional. Git repo configuration for the cluster.Git *ConfigManagementGitConfig `json:"git,omitempty"`// MetricsGcpServiceAccountEmail: Optional. The Email of the Google Cloud// Service Account (GSA) used for exporting Config Sync metrics to Cloud// Monitoring and Cloud Monarch when Workload Identity is enabled. The GSA// should have the Monitoring Metric Writer (roles/monitoring.metricWriter) IAM// role. The Kubernetes ServiceAccount `default` in the namespace// `config-management-monitoring` should be bound to the GSA. Deprecated: If// Workload Identity Federation for GKE is enabled, Google Cloud Service// Account is no longer needed for exporting Config Sync metrics://https://cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/monitor-config-sync-cloud-monitoring#custom-monitoring.MetricsGcpServiceAccountEmailstring `json:"metricsGcpServiceAccountEmail,omitempty"`// Oci: Optional. OCI repo configuration for the clusterOci *ConfigManagementOciConfig `json:"oci,omitempty"`// PreventDrift: Optional. Set to true to enable the Config Sync admission// webhook to prevent drifts. If set to `false`, disables the Config Sync// admission webhook and does not prevent drifts.PreventDriftbool `json:"preventDrift,omitempty"`// SourceFormat: Optional. Specifies whether the Config Sync Repo is in// "hierarchical" or "unstructured" mode.SourceFormatstring `json:"sourceFormat,omitempty"`// StopSyncing: Optional. Set to true to stop syncing configs for a single// cluster. Default to false.StopSyncingbool `json:"stopSyncing,omitempty"`// ForceSendFields is a list of field names (e.g. "DeploymentOverrides") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DeploymentOverrides") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementConfigSync: Configuration for Config Sync

func (ConfigManagementConfigSync)MarshalJSON

func (sConfigManagementConfigSync) MarshalJSON() ([]byte,error)

typeConfigManagementConfigSyncDeploymentState

type ConfigManagementConfigSyncDeploymentState struct {// AdmissionWebhook: Deployment state of admission-webhook//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingAdmissionWebhookstring `json:"admissionWebhook,omitempty"`// GitSync: Deployment state of the git-sync pod//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingGitSyncstring `json:"gitSync,omitempty"`// Importer: Deployment state of the importer pod//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingImporterstring `json:"importer,omitempty"`// Monitor: Deployment state of the monitor pod//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingMonitorstring `json:"monitor,omitempty"`// OtelCollector: Deployment state of otel-collector//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingOtelCollectorstring `json:"otelCollector,omitempty"`// ReconcilerManager: Deployment state of reconciler-manager pod//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingReconcilerManagerstring `json:"reconcilerManager,omitempty"`// ResourceGroupControllerManager: Deployment state of// resource-group-controller-manager//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingResourceGroupControllerManagerstring `json:"resourceGroupControllerManager,omitempty"`// RootReconciler: Deployment state of root-reconciler//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingRootReconcilerstring `json:"rootReconciler,omitempty"`// Syncer: Deployment state of the syncer pod//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingSyncerstring `json:"syncer,omitempty"`// ForceSendFields is a list of field names (e.g. "AdmissionWebhook") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdmissionWebhook") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementConfigSyncDeploymentState: The state of ConfigSync'sdeployment on a cluster

func (ConfigManagementConfigSyncDeploymentState)MarshalJSON

typeConfigManagementConfigSyncErroradded inv0.127.0

type ConfigManagementConfigSyncError struct {// ErrorMessage: A string representing the user facing error messageErrorMessagestring `json:"errorMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ErrorMessage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ErrorMessage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementConfigSyncError: Errors pertaining to the installation ofConfig Sync

func (ConfigManagementConfigSyncError)MarshalJSONadded inv0.127.0

func (sConfigManagementConfigSyncError) MarshalJSON() ([]byte,error)

typeConfigManagementConfigSyncState

type ConfigManagementConfigSyncState struct {// ClusterLevelStopSyncingState: Output only. Whether syncing resources to the// cluster is stopped at the cluster level.//// Possible values://   "STOP_SYNCING_STATE_UNSPECIFIED" - State cannot be determined//   "NOT_STOPPED" - Syncing resources to the cluster is not stopped at the// cluster level.//   "PENDING" - Some reconcilers stop syncing resources to the cluster, while// others are still syncing.//   "STOPPED" - Syncing resources to the cluster is stopped at the cluster// level.ClusterLevelStopSyncingStatestring `json:"clusterLevelStopSyncingState,omitempty"`// CrCount: Output only. The number of RootSync and RepoSync CRs in the// cluster.CrCountint64 `json:"crCount,omitempty"`// DeploymentState: Output only. Information about the deployment of// ConfigSync, including the version of the various Pods deployedDeploymentState *ConfigManagementConfigSyncDeploymentState `json:"deploymentState,omitempty"`// Errors: Output only. Errors pertaining to the installation of Config Sync.Errors []*ConfigManagementConfigSyncError `json:"errors,omitempty"`// ReposyncCrd: Output only. The state of the Reposync CRD//// Possible values://   "CRD_STATE_UNSPECIFIED" - CRD's state cannot be determined//   "NOT_INSTALLED" - CRD is not installed//   "INSTALLED" - CRD is installed//   "TERMINATING" - CRD is terminating (i.e., it has been deleted and is// cleaning up)//   "INSTALLING" - CRD is installingReposyncCrdstring `json:"reposyncCrd,omitempty"`// RootsyncCrd: Output only. The state of the RootSync CRD//// Possible values://   "CRD_STATE_UNSPECIFIED" - CRD's state cannot be determined//   "NOT_INSTALLED" - CRD is not installed//   "INSTALLED" - CRD is installed//   "TERMINATING" - CRD is terminating (i.e., it has been deleted and is// cleaning up)//   "INSTALLING" - CRD is installingRootsyncCrdstring `json:"rootsyncCrd,omitempty"`// State: Output only. The state of CS This field summarizes the other fields// in this message.//// Possible values://   "STATE_UNSPECIFIED" - CS's state cannot be determined.//   "CONFIG_SYNC_NOT_INSTALLED" - CS is not installed.//   "CONFIG_SYNC_INSTALLED" - The expected CS version is installed// successfully.//   "CONFIG_SYNC_ERROR" - CS encounters errors.//   "CONFIG_SYNC_PENDING" - CS is installing or terminating.Statestring `json:"state,omitempty"`// SyncState: Output only. The state of ConfigSync's process to sync configs to// a clusterSyncState *ConfigManagementSyncState `json:"syncState,omitempty"`// Version: Output only. The version of ConfigSync deployedVersion *ConfigManagementConfigSyncVersion `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g.// "ClusterLevelStopSyncingState") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClusterLevelStopSyncingState") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementConfigSyncState: State information for ConfigSync

func (ConfigManagementConfigSyncState)MarshalJSON

func (sConfigManagementConfigSyncState) MarshalJSON() ([]byte,error)

typeConfigManagementConfigSyncVersion

type ConfigManagementConfigSyncVersion struct {// AdmissionWebhook: Version of the deployed admission-webhook podAdmissionWebhookstring `json:"admissionWebhook,omitempty"`// GitSync: Version of the deployed git-sync podGitSyncstring `json:"gitSync,omitempty"`// Importer: Version of the deployed importer podImporterstring `json:"importer,omitempty"`// Monitor: Version of the deployed monitor podMonitorstring `json:"monitor,omitempty"`// OtelCollector: Version of the deployed otel-collector podOtelCollectorstring `json:"otelCollector,omitempty"`// ReconcilerManager: Version of the deployed reconciler-manager podReconcilerManagerstring `json:"reconcilerManager,omitempty"`// ResourceGroupControllerManager: Version of the deployed// resource-group-controller-manager podResourceGroupControllerManagerstring `json:"resourceGroupControllerManager,omitempty"`// RootReconciler: Version of the deployed reconciler container in// root-reconciler podRootReconcilerstring `json:"rootReconciler,omitempty"`// Syncer: Version of the deployed syncer podSyncerstring `json:"syncer,omitempty"`// ForceSendFields is a list of field names (e.g. "AdmissionWebhook") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdmissionWebhook") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementConfigSyncVersion: Specific versioning informationpertaining to ConfigSync's Pods

func (ConfigManagementConfigSyncVersion)MarshalJSON

func (sConfigManagementConfigSyncVersion) MarshalJSON() ([]byte,error)

typeConfigManagementContainerOverrideadded inv0.225.0

type ConfigManagementContainerOverride struct {// ContainerName: Required. The name of the container.ContainerNamestring `json:"containerName,omitempty"`// CpuLimit: Optional. The cpu limit of the container.CpuLimitstring `json:"cpuLimit,omitempty"`// CpuRequest: Optional. The cpu request of the container.CpuRequeststring `json:"cpuRequest,omitempty"`// MemoryLimit: Optional. The memory limit of the container.MemoryLimitstring `json:"memoryLimit,omitempty"`// MemoryRequest: Optional. The memory request of the container.MemoryRequeststring `json:"memoryRequest,omitempty"`// ForceSendFields is a list of field names (e.g. "ContainerName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContainerName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementContainerOverride: Configuration for a container override.

func (ConfigManagementContainerOverride)MarshalJSONadded inv0.225.0

func (sConfigManagementContainerOverride) MarshalJSON() ([]byte,error)

typeConfigManagementDeploymentOverrideadded inv0.225.0

type ConfigManagementDeploymentOverride struct {// Containers: Optional. The containers of the deployment resource to be// overridden.Containers []*ConfigManagementContainerOverride `json:"containers,omitempty"`// DeploymentName: Required. The name of the deployment resource to be// overridden.DeploymentNamestring `json:"deploymentName,omitempty"`// DeploymentNamespace: Required. The namespace of the deployment resource to// be overridden.DeploymentNamespacestring `json:"deploymentNamespace,omitempty"`// ForceSendFields is a list of field names (e.g. "Containers") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Containers") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementDeploymentOverride: Configuration for a deployment override.

func (ConfigManagementDeploymentOverride)MarshalJSONadded inv0.225.0

typeConfigManagementErrorResource

type ConfigManagementErrorResource struct {// ResourceGvk: Group/version/kind of the resource that is causing an errorResourceGvk *ConfigManagementGroupVersionKind `json:"resourceGvk,omitempty"`// ResourceName: Metadata name of the resource that is causing an errorResourceNamestring `json:"resourceName,omitempty"`// ResourceNamespace: Namespace of the resource that is causing an errorResourceNamespacestring `json:"resourceNamespace,omitempty"`// SourcePath: Path in the git repo of the erroneous configSourcePathstring `json:"sourcePath,omitempty"`// ForceSendFields is a list of field names (e.g. "ResourceGvk") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ResourceGvk") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementErrorResource: Model for a config file in the git repo withan associated Sync error

func (ConfigManagementErrorResource)MarshalJSON

func (sConfigManagementErrorResource) MarshalJSON() ([]byte,error)

typeConfigManagementGatekeeperDeploymentState

type ConfigManagementGatekeeperDeploymentState struct {// GatekeeperAudit: Status of gatekeeper-audit deployment.//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingGatekeeperAuditstring `json:"gatekeeperAudit,omitempty"`// GatekeeperControllerManagerState: Status of gatekeeper-controller-manager// pod.//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingGatekeeperControllerManagerStatestring `json:"gatekeeperControllerManagerState,omitempty"`// GatekeeperMutation: Status of the pod serving the mutation webhook.//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingGatekeeperMutationstring `json:"gatekeeperMutation,omitempty"`// ForceSendFields is a list of field names (e.g. "GatekeeperAudit") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GatekeeperAudit") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementGatekeeperDeploymentState: State of Policy Controllerinstallation.

func (ConfigManagementGatekeeperDeploymentState)MarshalJSON

typeConfigManagementGitConfig

type ConfigManagementGitConfig struct {// GcpServiceAccountEmail: Optional. The Google Cloud Service Account Email// used for auth when secret_type is gcpServiceAccount.GcpServiceAccountEmailstring `json:"gcpServiceAccountEmail,omitempty"`// HttpsProxy: Optional. URL for the HTTPS proxy to be used when communicating// with the Git repo.HttpsProxystring `json:"httpsProxy,omitempty"`// PolicyDir: Optional. The path within the Git repository that represents the// top level of the repo to sync. Default: the root directory of the// repository.PolicyDirstring `json:"policyDir,omitempty"`// SecretType: Required. Type of secret configured for access to the Git repo.// Must be one of ssh, cookiefile, gcenode, token, gcpserviceaccount, githubapp// or none. The validation of this is case-sensitive.SecretTypestring `json:"secretType,omitempty"`// SyncBranch: Optional. The branch of the repository to sync from. Default:// master.SyncBranchstring `json:"syncBranch,omitempty"`// SyncRepo: Required. The URL of the Git repository to use as the source of// truth.SyncRepostring `json:"syncRepo,omitempty"`// SyncRev: Optional. Git revision (tag or hash) to check out. Default HEAD.SyncRevstring `json:"syncRev,omitempty"`// SyncWaitSecs: Optional. Period in seconds between consecutive syncs.// Default: 15.SyncWaitSecsint64 `json:"syncWaitSecs,omitempty,string"`// ForceSendFields is a list of field names (e.g. "GcpServiceAccountEmail") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GcpServiceAccountEmail") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementGitConfig: Git repo configuration for a single cluster.

func (ConfigManagementGitConfig)MarshalJSON

func (sConfigManagementGitConfig) MarshalJSON() ([]byte,error)

typeConfigManagementGroupVersionKind

type ConfigManagementGroupVersionKind struct {// Group: Kubernetes GroupGroupstring `json:"group,omitempty"`// Kind: Kubernetes KindKindstring `json:"kind,omitempty"`// Version: Kubernetes VersionVersionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Group") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Group") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementGroupVersionKind: A Kubernetes object's GVK

func (ConfigManagementGroupVersionKind)MarshalJSON

func (sConfigManagementGroupVersionKind) MarshalJSON() ([]byte,error)

typeConfigManagementHierarchyControllerConfig

type ConfigManagementHierarchyControllerConfig struct {// EnableHierarchicalResourceQuota: Whether hierarchical resource quota is// enabled in this cluster.EnableHierarchicalResourceQuotabool `json:"enableHierarchicalResourceQuota,omitempty"`// EnablePodTreeLabels: Whether pod tree labels are enabled in this cluster.EnablePodTreeLabelsbool `json:"enablePodTreeLabels,omitempty"`// Enabled: Whether Hierarchy Controller is enabled in this cluster.Enabledbool `json:"enabled,omitempty"`// ForceSendFields is a list of field names (e.g.// "EnableHierarchicalResourceQuota") to unconditionally include in API// requests. By default, fields with empty or default values are omitted from// API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableHierarchicalResourceQuota")// to include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementHierarchyControllerConfig: Configuration for HierarchyController

func (ConfigManagementHierarchyControllerConfig)MarshalJSON

typeConfigManagementHierarchyControllerDeploymentState

type ConfigManagementHierarchyControllerDeploymentState struct {// Extension: The deployment state for Hierarchy Controller extension (e.g.// v0.7.0-hc.1)//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingExtensionstring `json:"extension,omitempty"`// Hnc: The deployment state for open source HNC (e.g. v0.7.0-hc.0)//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingHncstring `json:"hnc,omitempty"`// ForceSendFields is a list of field names (e.g. "Extension") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Extension") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementHierarchyControllerDeploymentState: Deployment state forHierarchy Controller

func (ConfigManagementHierarchyControllerDeploymentState)MarshalJSON

typeConfigManagementHierarchyControllerState

type ConfigManagementHierarchyControllerState struct {// State: The deployment state for Hierarchy ControllerState *ConfigManagementHierarchyControllerDeploymentState `json:"state,omitempty"`// Version: The version for Hierarchy ControllerVersion *ConfigManagementHierarchyControllerVersion `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "State") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "State") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementHierarchyControllerState: State for Hierarchy Controller

func (ConfigManagementHierarchyControllerState)MarshalJSON

typeConfigManagementHierarchyControllerVersion

type ConfigManagementHierarchyControllerVersion struct {// Extension: Version for Hierarchy Controller extensionExtensionstring `json:"extension,omitempty"`// Hnc: Version for open source HNCHncstring `json:"hnc,omitempty"`// ForceSendFields is a list of field names (e.g. "Extension") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Extension") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementHierarchyControllerVersion: Version for Hierarchy Controller

func (ConfigManagementHierarchyControllerVersion)MarshalJSON

typeConfigManagementInstallError

type ConfigManagementInstallError struct {// ErrorMessage: A string representing the user facing error messageErrorMessagestring `json:"errorMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ErrorMessage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ErrorMessage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementInstallError: Errors pertaining to the installation of ACM

func (ConfigManagementInstallError)MarshalJSON

func (sConfigManagementInstallError) MarshalJSON() ([]byte,error)

typeConfigManagementMembershipSpec

type ConfigManagementMembershipSpec struct {// Binauthz: Optional. Binauthz conifguration for the cluster. Deprecated: This// field will be ignored and should not be set.Binauthz *ConfigManagementBinauthzConfig `json:"binauthz,omitempty"`// Cluster: Optional. The user-specified cluster name used by Config Sync// cluster-name-selector annotation or ClusterSelector, for applying configs to// only a subset of clusters. Omit this field if the cluster's fleet membership// name is used by Config Sync cluster-name-selector annotation or// ClusterSelector. Set this field if a name different from the cluster's fleet// membership name is used by Config Sync cluster-name-selector annotation or// ClusterSelector.Clusterstring `json:"cluster,omitempty"`// ConfigSync: Optional. Config Sync configuration for the cluster.ConfigSync *ConfigManagementConfigSync `json:"configSync,omitempty"`// HierarchyController: Optional. Hierarchy Controller configuration for the// cluster. Deprecated: Configuring Hierarchy Controller through the// configmanagement feature is no longer recommended. Use//https://github.com/kubernetes-sigs/hierarchical-namespaces instead.HierarchyController *ConfigManagementHierarchyControllerConfig `json:"hierarchyController,omitempty"`// Management: Optional. Enables automatic Feature management.//// Possible values://   "MANAGEMENT_UNSPECIFIED" - Unspecified//   "MANAGEMENT_AUTOMATIC" - Google will manage the Feature for the cluster.//   "MANAGEMENT_MANUAL" - User will manually manage the Feature for the// cluster.Managementstring `json:"management,omitempty"`// PolicyController: Optional. Policy Controller configuration for the cluster.// Deprecated: Configuring Policy Controller through the configmanagement// feature is no longer recommended. Use the policycontroller feature instead.PolicyController *ConfigManagementPolicyController `json:"policyController,omitempty"`// Version: Optional. Version of ACM installed.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Binauthz") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Binauthz") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementMembershipSpec: **Anthos Config Management**: Configurationfor a single cluster. Intended to parallel the ConfigManagement CR.

func (ConfigManagementMembershipSpec)MarshalJSON

func (sConfigManagementMembershipSpec) MarshalJSON() ([]byte,error)

typeConfigManagementMembershipState

type ConfigManagementMembershipState struct {// BinauthzState: Output only. Binauthz statusBinauthzState *ConfigManagementBinauthzState `json:"binauthzState,omitempty"`// ClusterName: Output only. This field is set to the `cluster_name` field of// the Membership Spec if it is not empty. Otherwise, it is set to the// cluster's fleet membership name.ClusterNamestring `json:"clusterName,omitempty"`// ConfigSyncState: Output only. Current sync statusConfigSyncState *ConfigManagementConfigSyncState `json:"configSyncState,omitempty"`// HierarchyControllerState: Output only. Hierarchy Controller statusHierarchyControllerState *ConfigManagementHierarchyControllerState `json:"hierarchyControllerState,omitempty"`// KubernetesApiServerVersion: Output only. The Kubernetes API server version// of the cluster.KubernetesApiServerVersionstring `json:"kubernetesApiServerVersion,omitempty"`// MembershipSpec: Output only. Membership configuration in the cluster. This// represents the actual state in the cluster, while the MembershipSpec in the// FeatureSpec represents the intended stateMembershipSpec *ConfigManagementMembershipSpec `json:"membershipSpec,omitempty"`// OperatorState: Output only. Current install status of ACM's OperatorOperatorState *ConfigManagementOperatorState `json:"operatorState,omitempty"`// PolicyControllerState: Output only. PolicyController statusPolicyControllerState *ConfigManagementPolicyControllerState `json:"policyControllerState,omitempty"`// ForceSendFields is a list of field names (e.g. "BinauthzState") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BinauthzState") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementMembershipState: **Anthos Config Management**: State for asingle cluster.

func (ConfigManagementMembershipState)MarshalJSON

func (sConfigManagementMembershipState) MarshalJSON() ([]byte,error)

typeConfigManagementOciConfigadded inv0.84.0

type ConfigManagementOciConfig struct {// GcpServiceAccountEmail: Optional. The Google Cloud Service Account Email// used for auth when secret_type is gcpServiceAccount.GcpServiceAccountEmailstring `json:"gcpServiceAccountEmail,omitempty"`// PolicyDir: Optional. The absolute path of the directory that contains the// local resources. Default: the root directory of the image.PolicyDirstring `json:"policyDir,omitempty"`// SecretType: Required. Type of secret configured for access to the OCI repo.// Must be one of gcenode, gcpserviceaccount, k8sserviceaccount or none. The// validation of this is case-sensitive.SecretTypestring `json:"secretType,omitempty"`// SyncRepo: Required. The OCI image repository URL for the package to sync// from. e.g.// `LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.SyncRepostring `json:"syncRepo,omitempty"`// SyncWaitSecs: Optional. Period in seconds between consecutive syncs.// Default: 15.SyncWaitSecsint64 `json:"syncWaitSecs,omitempty,string"`// ForceSendFields is a list of field names (e.g. "GcpServiceAccountEmail") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GcpServiceAccountEmail") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementOciConfig: OCI repo configuration for a single cluster

func (ConfigManagementOciConfig)MarshalJSONadded inv0.84.0

func (sConfigManagementOciConfig) MarshalJSON() ([]byte,error)

typeConfigManagementOperatorState

type ConfigManagementOperatorState struct {// DeploymentState: The state of the Operator's deployment//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Deployment's state cannot be determined//   "NOT_INSTALLED" - Deployment is not installed//   "INSTALLED" - Deployment is installed//   "ERROR" - Deployment was attempted to be installed, but has errors//   "PENDING" - Deployment is installing or terminatingDeploymentStatestring `json:"deploymentState,omitempty"`// Errors: Install errors.Errors []*ConfigManagementInstallError `json:"errors,omitempty"`// Version: The semenatic version number of the operatorVersionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "DeploymentState") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DeploymentState") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementOperatorState: State information for an ACM's Operator

func (ConfigManagementOperatorState)MarshalJSON

func (sConfigManagementOperatorState) MarshalJSON() ([]byte,error)

typeConfigManagementPolicyController

type ConfigManagementPolicyController struct {// AuditIntervalSeconds: Sets the interval for Policy Controller Audit Scans// (in seconds). When set to 0, this disables audit functionality altogether.AuditIntervalSecondsint64 `json:"auditIntervalSeconds,omitempty,string"`// Enabled: Enables the installation of Policy Controller. If false, the rest// of PolicyController fields take no effect.Enabledbool `json:"enabled,omitempty"`// ExemptableNamespaces: The set of namespaces that are excluded from Policy// Controller checks. Namespaces do not need to currently exist on the cluster.ExemptableNamespaces []string `json:"exemptableNamespaces,omitempty"`// LogDeniesEnabled: Logs all denies and dry run failures.LogDeniesEnabledbool `json:"logDeniesEnabled,omitempty"`// Monitoring: Monitoring specifies the configuration of monitoring.Monitoring *ConfigManagementPolicyControllerMonitoring `json:"monitoring,omitempty"`// MutationEnabled: Enable or disable mutation in policy controller. If true,// mutation CRDs, webhook and controller deployment will be deployed to the// cluster.MutationEnabledbool `json:"mutationEnabled,omitempty"`// ReferentialRulesEnabled: Enables the ability to use Constraint Templates// that reference to objects other than the object currently being evaluated.ReferentialRulesEnabledbool `json:"referentialRulesEnabled,omitempty"`// TemplateLibraryInstalled: Installs the default template library along with// Policy Controller.TemplateLibraryInstalledbool `json:"templateLibraryInstalled,omitempty"`// UpdateTime: Output only. Last time this membership spec was updated.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "AuditIntervalSeconds") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditIntervalSeconds") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementPolicyController: Configuration for Policy Controller

func (ConfigManagementPolicyController)MarshalJSON

func (sConfigManagementPolicyController) MarshalJSON() ([]byte,error)

typeConfigManagementPolicyControllerMigrationadded inv0.110.0

type ConfigManagementPolicyControllerMigration struct {// CopyTime: Last time this membership spec was copied to PoCo feature.CopyTimestring `json:"copyTime,omitempty"`// Stage: Stage of the migration.//// Possible values://   "STAGE_UNSPECIFIED" - Unknown state of migration.//   "ACM_MANAGED" - ACM Hub/Operator manages policycontroller. No migration// yet completed.//   "POCO_MANAGED" - All migrations steps complete; Poco Hub now manages// policycontroller.Stagestring `json:"stage,omitempty"`// ForceSendFields is a list of field names (e.g. "CopyTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CopyTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementPolicyControllerMigration: State for the migration ofPolicyController from ACM -> PoCo Hub.

func (ConfigManagementPolicyControllerMigration)MarshalJSONadded inv0.110.0

typeConfigManagementPolicyControllerMonitoringadded inv0.84.0

type ConfigManagementPolicyControllerMonitoring struct {// Backends: Specifies the list of backends Policy Controller will export to.// An empty list would effectively disable metrics export.//// Possible values://   "MONITORING_BACKEND_UNSPECIFIED" - Backend cannot be determined//   "PROMETHEUS" - Prometheus backend for monitoring//   "CLOUD_MONITORING" - Stackdriver/Cloud Monitoring backend for monitoringBackends []string `json:"backends,omitempty"`// ForceSendFields is a list of field names (e.g. "Backends") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Backends") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementPolicyControllerMonitoring: PolicyControllerMonitoringspecifies the backends Policy Controller should export metrics to. Forexample, to specify metrics should be exported to Cloud Monitoring andPrometheus, specify backends: ["cloudmonitoring", "prometheus"]

func (ConfigManagementPolicyControllerMonitoring)MarshalJSONadded inv0.84.0

typeConfigManagementPolicyControllerState

type ConfigManagementPolicyControllerState struct {// DeploymentState: The state about the policy controller installation.DeploymentState *ConfigManagementGatekeeperDeploymentState `json:"deploymentState,omitempty"`// Migration: Record state of ACM -> PoCo Hub migration for this feature.Migration *ConfigManagementPolicyControllerMigration `json:"migration,omitempty"`// Version: The version of Gatekeeper Policy Controller deployed.Version *ConfigManagementPolicyControllerVersion `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "DeploymentState") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DeploymentState") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementPolicyControllerState: State for PolicyControllerState.

func (ConfigManagementPolicyControllerState)MarshalJSON

typeConfigManagementPolicyControllerVersion

type ConfigManagementPolicyControllerVersion struct {// Version: The gatekeeper image tag that is composed of ACM version, git tag,// build number.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementPolicyControllerVersion: The build version of GatekeeperPolicy Controller is using.

func (ConfigManagementPolicyControllerVersion)MarshalJSON

typeConfigManagementSyncError

type ConfigManagementSyncError struct {// Code: An ACM defined error codeCodestring `json:"code,omitempty"`// ErrorMessage: A description of the errorErrorMessagestring `json:"errorMessage,omitempty"`// ErrorResources: A list of config(s) associated with the error, if anyErrorResources []*ConfigManagementErrorResource `json:"errorResources,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementSyncError: An ACM created error representing a problemsyncing configurations

func (ConfigManagementSyncError)MarshalJSON

func (sConfigManagementSyncError) MarshalJSON() ([]byte,error)

typeConfigManagementSyncState

type ConfigManagementSyncState struct {// Code: Sync status code//// Possible values://   "SYNC_CODE_UNSPECIFIED" - Config Sync cannot determine a sync code//   "SYNCED" - Config Sync successfully synced the git Repo with the cluster//   "PENDING" - Config Sync is in the progress of syncing a new change//   "ERROR" - Indicates an error configuring Config Sync, and user action is// required//   "NOT_CONFIGURED" - Config Sync has been installed but not configured//   "NOT_INSTALLED" - Config Sync has not been installed//   "UNAUTHORIZED" - Error authorizing with the cluster//   "UNREACHABLE" - Cluster could not be reachedCodestring `json:"code,omitempty"`// Errors: A list of errors resulting from problematic configs. This list will// be truncated after 100 errors, although it is unlikely for that many errors// to simultaneously exist.Errors []*ConfigManagementSyncError `json:"errors,omitempty"`// ImportToken: Token indicating the state of the importer.ImportTokenstring `json:"importToken,omitempty"`// LastSync: Deprecated: use last_sync_time instead. Timestamp of when ACM last// successfully synced the repo The time format is specified in//https://golang.org/pkg/time/#Time.StringLastSyncstring `json:"lastSync,omitempty"`// LastSyncTime: Timestamp type of when ACM last successfully synced the repoLastSyncTimestring `json:"lastSyncTime,omitempty"`// SourceToken: Token indicating the state of the repo.SourceTokenstring `json:"sourceToken,omitempty"`// SyncToken: Token indicating the state of the syncer.SyncTokenstring `json:"syncToken,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConfigManagementSyncState: State indicating an ACM's progress syncingconfigurations to a cluster

func (ConfigManagementSyncState)MarshalJSON

func (sConfigManagementSyncState) MarshalJSON() ([]byte,error)

typeConnectAgentResourceadded inv0.60.0

type ConnectAgentResource struct {// Manifest: YAML manifest of the resource.Manifeststring `json:"manifest,omitempty"`// Type: Kubernetes type of the resource.Type *TypeMeta `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Manifest") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Manifest") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ConnectAgentResource: ConnectAgentResource represents a Kubernetes resourcemanifest for Connect Agent deployment.

func (ConnectAgentResource)MarshalJSONadded inv0.60.0

func (sConnectAgentResource) MarshalJSON() ([]byte,error)

typeDataplaneV2FeatureSpecadded inv0.158.0

type DataplaneV2FeatureSpec struct {// EnableEncryption: Enable dataplane-v2 based encryption for multiple// clusters.EnableEncryptionbool `json:"enableEncryption,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableEncryption") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableEncryption") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

DataplaneV2FeatureSpec: **Dataplane V2**: Spec

func (DataplaneV2FeatureSpec)MarshalJSONadded inv0.158.0

func (sDataplaneV2FeatureSpec) MarshalJSON() ([]byte,error)

typeDefaultClusterConfigadded inv0.151.0

type DefaultClusterConfig struct {// BinaryAuthorizationConfig: Optional. Enable/Disable binary authorization// features for the cluster.BinaryAuthorizationConfig *BinaryAuthorizationConfig `json:"binaryAuthorizationConfig,omitempty"`// CompliancePostureConfig: Optional. Enable/Disable Compliance Posture// features for the cluster. Note that on UpdateFleet, only full replacement of// this field is allowed. Users are not allowed for partial updates through// field mask.CompliancePostureConfig *CompliancePostureConfig `json:"compliancePostureConfig,omitempty"`// SecurityPostureConfig: Enable/Disable Security Posture features for the// cluster.SecurityPostureConfig *SecurityPostureConfig `json:"securityPostureConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "BinaryAuthorizationConfig")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BinaryAuthorizationConfig") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

DefaultClusterConfig: DefaultClusterConfig describes the default clusterconfigurations to be applied to all clusters born-in-fleet.

func (DefaultClusterConfig)MarshalJSONadded inv0.151.0

func (sDefaultClusterConfig) MarshalJSON() ([]byte,error)

typeEdgeClusteradded inv0.67.0

type EdgeCluster struct {// ResourceLink: Immutable. Self-link of the Google Cloud resource for the Edge// Cluster. For example:// //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clust// ers/my-clusterResourceLinkstring `json:"resourceLink,omitempty"`// ForceSendFields is a list of field names (e.g. "ResourceLink") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ResourceLink") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

EdgeCluster: EdgeCluster contains information specific to Google EdgeClusters.

func (EdgeCluster)MarshalJSONadded inv0.67.0

func (sEdgeCluster) MarshalJSON() ([]byte,error)

typeEmpty

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 definingduplicated empty messages in your APIs. A typical example is to use it asthe request or the response type of an API method. For instance: service Foo{ rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

typeExcludedClusteradded inv0.256.0

type ExcludedCluster struct {// Membership: Output only. The name of the fleet Membership resource// associated to the excluded cluster.Membershipstring `json:"membership,omitempty"`// Reason: Output only. The reason for excluding the cluster from the rollout.//// Possible values://   "REASON_UNSPECIFIED" - Default value.//   "EXCLUDED_BY_FILTER" - The cluster was excluded by the rollout filter.//   "ALREADY_UPGRADED" - The cluster was already upgraded.//   "VERSION_TOO_OLD" - The cluster version is too old.Reasonstring `json:"reason,omitempty"`// ForceSendFields is a list of field names (e.g. "Membership") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Membership") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ExcludedCluster: An excluded cluster from the rollout.

func (ExcludedCluster)MarshalJSONadded inv0.256.0

func (sExcludedCluster) MarshalJSON() ([]byte,error)

typeExpr

type Expr struct {// Description: Optional. Description of the expression. This is a longer text// which describes the expression, e.g. when hovered over it in a UI.Descriptionstring `json:"description,omitempty"`// Expression: Textual representation of an expression in Common Expression// Language syntax.Expressionstring `json:"expression,omitempty"`// Location: Optional. String indicating the location of the expression for// error reporting, e.g. a file name and a position in the file.Locationstring `json:"location,omitempty"`// Title: Optional. Title for the expression, i.e. a short string describing// its purpose. This can be used e.g. in UIs which allow to enter the// expression.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Expr: Represents a textual expression in the Common Expression Language(CEL) syntax. CEL is a C-like expression language. The syntax and semanticsof CEL are documented athttps://github.com/google/cel-spec. Example(Comparison): title: "Summary size limit" description: "Determines if asummary is less than 100 chars" expression: "document.summary.size() < 100"Example (Equality): title: "Requestor is owner" description: "Determines ifrequestor is the document owner" expression: "document.owner ==request.auth.claims.email" Example (Logic): title: "Public documents"description: "Determine whether the document should be publicly visible"expression: "document.type != 'private' && document.type != 'internal'"Example (Data Manipulation): title: "Notification string" description:"Create a notification string with a timestamp." expression: "'New messagereceived at ' + string(document.create_time)" The exact variables andfunctions that may be referenced within an expression are determined by theservice that evaluates it. See the service documentation for additionalinformation.

func (Expr)MarshalJSON

func (sExpr) MarshalJSON() ([]byte,error)

typeFeature

type Feature struct {// CreateTime: Output only. When the Feature resource was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the Feature resource was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// FleetDefaultMemberConfig: Optional. Feature configuration applicable to all// memberships of the fleet.FleetDefaultMemberConfig *CommonFleetDefaultMemberConfigSpec `json:"fleetDefaultMemberConfig,omitempty"`// Labels: Labels for this Feature.Labels map[string]string `json:"labels,omitempty"`// MembershipSpecs: Optional. Membership-specific configuration for this// Feature. If this Feature does not support any per-Membership configuration,// this field may be unused. The keys indicate which Membership the// configuration is for, in the form:// `projects/{p}/locations/{l}/memberships/{m}` Where {p} is the project, {l}// is a valid location and {m} is a valid Membership in this project at that// location. {p} WILL match the Feature's project. {p} will always be returned// as the project number, but the project ID is also accepted during input. If// the same Membership is specified in the map twice (using the project ID// form, and the project number form), exactly ONE of the entries will be// saved, with no guarantees as to which. For this reason, it is recommended// the same format be used for all entries when mutating a Feature.MembershipSpecs map[string]MembershipFeatureSpec `json:"membershipSpecs,omitempty"`// MembershipStates: Output only. Membership-specific Feature status. If this// Feature does report any per-Membership status, this field may be unused. The// keys indicate which Membership the state is for, in the form:// `projects/{p}/locations/{l}/memberships/{m}` Where {p} is the project// number, {l} is a valid location and {m} is a valid Membership in this// project at that location. {p} MUST match the Feature's project number.MembershipStates map[string]MembershipFeatureState `json:"membershipStates,omitempty"`// Name: Output only. The full, unique name of this Feature resource in the// format `projects/*/locations/*/features/*`.Namestring `json:"name,omitempty"`// ResourceState: Output only. State of the Feature resource itself.ResourceState *FeatureResourceState `json:"resourceState,omitempty"`// ScopeSpecs: Optional. Scope-specific configuration for this Feature. If this// Feature does not support any per-Scope configuration, this field may be// unused. The keys indicate which Scope the configuration is for, in the form:// `projects/{p}/locations/global/scopes/{s}` Where {p} is the project, {s} is// a valid Scope in this project. {p} WILL match the Feature's project. {p}// will always be returned as the project number, but the project ID is also// accepted during input. If the same Scope is specified in the map twice// (using the project ID form, and the project number form), exactly ONE of the// entries will be saved, with no guarantees as to which. For this reason, it// is recommended the same format be used for all entries when mutating a// Feature.ScopeSpecs map[string]ScopeFeatureSpec `json:"scopeSpecs,omitempty"`// ScopeStates: Output only. Scope-specific Feature status. If this Feature// does report any per-Scope status, this field may be unused. The keys// indicate which Scope the state is for, in the form:// `projects/{p}/locations/global/scopes/{s}` Where {p} is the project, {s} is// a valid Scope in this project. {p} WILL match the Feature's project.ScopeStates map[string]ScopeFeatureState `json:"scopeStates,omitempty"`// Spec: Optional. Fleet-wide Feature configuration. If this Feature does not// support any Fleet-wide configuration, this field may be unused.Spec *CommonFeatureSpec `json:"spec,omitempty"`// State: Output only. The Fleet-wide Feature state.State *CommonFeatureState `json:"state,omitempty"`// Unreachable: Output only. List of locations that could not be reached while// fetching this feature.Unreachable []string `json:"unreachable,omitempty"`// UpdateTime: Output only. When the Feature resource was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Feature: Feature represents the settings and status of any Fleet Feature.

func (Feature)MarshalJSON

func (sFeature) MarshalJSON() ([]byte,error)

typeFeatureResourceState

type FeatureResourceState struct {// State: The current state of the Feature resource in the Hub API.//// Possible values://   "STATE_UNSPECIFIED" - State is unknown or not set.//   "ENABLING" - The Feature is being enabled, and the Feature resource is// being created. Once complete, the corresponding Feature will be enabled in// this Fleet.//   "ACTIVE" - The Feature is enabled in this Fleet, and the Feature resource// is fully available.//   "DISABLING" - The Feature is being disabled in this Fleet, and the Feature// resource is being deleted.//   "UPDATING" - The Feature resource is being updated.//   "SERVICE_UPDATING" - The Feature resource is being updated by the Hub// Service.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "State") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "State") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FeatureResourceState: FeatureResourceState describes the state of a Feature*resource* in the GkeHub API. See `FeatureState` for the "running state" ofthe Feature in the Fleet and across Memberships.

func (FeatureResourceState)MarshalJSON

func (sFeatureResourceState) MarshalJSON() ([]byte,error)

typeFeatureSpecadded inv0.68.0

type FeatureSpec struct {// DefaultConfig: Specifies default membership spec. Users can override the// default in the member_configs for each member.DefaultConfig *MembershipSpec `json:"defaultConfig,omitempty"`// ProvisionGoogleCa: Immutable. Specifies CA configuration.//// Possible values://   "GOOGLE_CA_PROVISIONING_UNSPECIFIED" - Disable default Google managed CA.//   "DISABLED" - Disable default Google managed CA.//   "ENABLED" - Use default Google managed CA.//   "ENABLED_WITH_MANAGED_CA" - Workload certificate feature is enabled, and// the entire certificate provisioning process is managed by Google with// managed CAS which is more secure than the default CA.//   "ENABLED_WITH_DEFAULT_CA" - Workload certificate feature is enabled, and// the entire certificate provisioning process is using the default CA which is// free.ProvisionGoogleCastring `json:"provisionGoogleCa,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultConfig") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FeatureSpec: **Workload Certificate**: The Hub-wide input for theWorkloadCertificate feature.

func (FeatureSpec)MarshalJSONadded inv0.68.0

func (sFeatureSpec) MarshalJSON() ([]byte,error)

typeFeatureState

type FeatureState struct {// Code: The high-level, machine-readable status of this Feature.//// Possible values://   "CODE_UNSPECIFIED" - Unknown or not set.//   "OK" - The Feature is operating normally.//   "WARNING" - The Feature has encountered an issue, and is operating in a// degraded state. The Feature may need intervention to return to normal// operation. See the description and any associated Feature-specific details// for more information.//   "ERROR" - The Feature is not operating or is in a severely degraded state.// The Feature may need intervention to return to normal operation. See the// description and any associated Feature-specific details for more// information.Codestring `json:"code,omitempty"`// Description: A human-readable description of the current status.Descriptionstring `json:"description,omitempty"`// UpdateTime: The time this status and any related Feature-specific details// were updated.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FeatureState: FeatureState describes the high-level state of a Feature. Itmay be used to describe a Feature's state at the environ-level, orper-membershop, depending on the context.

func (FeatureState)MarshalJSON

func (sFeatureState) MarshalJSON() ([]byte,error)

typeFeatureUpdateadded inv0.256.0

type FeatureUpdate struct {// BinaryAuthorizationConfig: Optional. Configuration for Binary Authorization.BinaryAuthorizationConfig *BinaryAuthorizationConfig `json:"binaryAuthorizationConfig,omitempty"`// SecurityPostureConfig: Optional. Configuration for Security Posture.SecurityPostureConfig *SecurityPostureConfig `json:"securityPostureConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "BinaryAuthorizationConfig")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BinaryAuthorizationConfig") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FeatureUpdate: Feature config to use for Rollout.

func (FeatureUpdate)MarshalJSONadded inv0.256.0

func (sFeatureUpdate) MarshalJSON() ([]byte,error)

typeFleetadded inv0.61.0

type Fleet struct {// CreateTime: Output only. When the Fleet was created.CreateTimestring `json:"createTime,omitempty"`// DefaultClusterConfig: Optional. The default cluster configurations to apply// across the fleet.DefaultClusterConfig *DefaultClusterConfig `json:"defaultClusterConfig,omitempty"`// DeleteTime: Output only. When the Fleet was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// DisplayName: Optional. A user-assigned display name of the Fleet. When// present, it must be between 4 to 30 characters. Allowed characters are:// lowercase and uppercase letters, numbers, hyphen, single-quote,// double-quote, space, and exclamation point. Example: `Production Fleet`DisplayNamestring `json:"displayName,omitempty"`// Labels: Optional. Labels for this Fleet.Labels map[string]string `json:"labels,omitempty"`// Name: Output only. The full, unique resource name of this fleet in the// format of `projects/{project}/locations/{location}/fleets/{fleet}`. Each// Google Cloud project can have at most one fleet resource, named "default".Namestring `json:"name,omitempty"`// State: Output only. State of the namespace resource.State *FleetLifecycleState `json:"state,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all Fleet resources. If a Fleet resource is deleted and another// resource with the same name is created, it gets a different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. When the Fleet was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Fleet: Fleet contains the Fleet-wide metadata and configuration.

func (Fleet)MarshalJSONadded inv0.61.0

func (sFleet) MarshalJSON() ([]byte,error)

typeFleetLifecycleStateadded inv0.89.0

type FleetLifecycleState struct {// Code: Output only. The current state of the Fleet resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The fleet is being created.//   "READY" - The fleet active.//   "DELETING" - The fleet is being deleted.//   "UPDATING" - The fleet is being updated.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetLifecycleState: FleetLifecycleState describes the state of a Fleetresource.

func (FleetLifecycleState)MarshalJSONadded inv0.89.0

func (sFleetLifecycleState) MarshalJSON() ([]byte,error)

typeFleetObservabilityFeatureErroradded inv0.130.0

type FleetObservabilityFeatureError struct {// Code: The code of the error.Codestring `json:"code,omitempty"`// Description: A human-readable description of the current status.Descriptionstring `json:"description,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFeatureError: All error details of the fleet observabilityfeature.

func (FleetObservabilityFeatureError)MarshalJSONadded inv0.130.0

func (sFleetObservabilityFeatureError) MarshalJSON() ([]byte,error)

typeFleetObservabilityFeatureSpecadded inv0.102.0

type FleetObservabilityFeatureSpec struct {// LoggingConfig: Specified if fleet logging feature is enabled for the entire// fleet. If UNSPECIFIED, fleet logging feature is disabled for the entire// fleet.LoggingConfig *FleetObservabilityLoggingConfig `json:"loggingConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "LoggingConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LoggingConfig") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFeatureSpec: **Fleet Observability**: The Hub-wide inputfor the FleetObservability feature.

func (FleetObservabilityFeatureSpec)MarshalJSONadded inv0.122.0

func (sFleetObservabilityFeatureSpec) MarshalJSON() ([]byte,error)

typeFleetObservabilityFeatureStateadded inv0.102.0

type FleetObservabilityFeatureState struct {// Logging: The feature state of default logging.Logging *FleetObservabilityFleetObservabilityLoggingState `json:"logging,omitempty"`// Monitoring: The feature state of fleet monitoring.Monitoring *FleetObservabilityFleetObservabilityMonitoringState `json:"monitoring,omitempty"`// ForceSendFields is a list of field names (e.g. "Logging") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Logging") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFeatureState: **FleetObservability**: Hub-wide Feature forFleetObservability feature. state.

func (FleetObservabilityFeatureState)MarshalJSONadded inv0.130.0

func (sFleetObservabilityFeatureState) MarshalJSON() ([]byte,error)

typeFleetObservabilityFleetObservabilityBaseFeatureStateadded inv0.130.0

type FleetObservabilityFleetObservabilityBaseFeatureState struct {// Code: The high-level, machine-readable status of this Feature.//// Possible values://   "CODE_UNSPECIFIED" - Unknown or not set.//   "OK" - The Feature is operating normally.//   "ERROR" - The Feature is encountering errors in the reconciliation. The// Feature may need intervention to return to normal operation. See the// description and any associated Feature-specific details for more// information.Codestring `json:"code,omitempty"`// Errors: Errors after reconciling the monitoring and logging feature if the// code is not OK.Errors []*FleetObservabilityFeatureError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFleetObservabilityBaseFeatureState: Base state for fleetobservability feature.

func (FleetObservabilityFleetObservabilityBaseFeatureState)MarshalJSONadded inv0.130.0

typeFleetObservabilityFleetObservabilityLoggingStateadded inv0.130.0

type FleetObservabilityFleetObservabilityLoggingState struct {// DefaultLog: The base feature state of fleet default log.DefaultLog *FleetObservabilityFleetObservabilityBaseFeatureState `json:"defaultLog,omitempty"`// ScopeLog: The base feature state of fleet scope log.ScopeLog *FleetObservabilityFleetObservabilityBaseFeatureState `json:"scopeLog,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultLog") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultLog") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFleetObservabilityLoggingState: Feature state for loggingfeature.

func (FleetObservabilityFleetObservabilityLoggingState)MarshalJSONadded inv0.130.0

typeFleetObservabilityFleetObservabilityMonitoringStateadded inv0.130.0

type FleetObservabilityFleetObservabilityMonitoringState struct {// State: The base feature state of fleet monitoring feature.State *FleetObservabilityFleetObservabilityBaseFeatureState `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "State") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "State") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityFleetObservabilityMonitoringState: Feature state formonitoring feature.

func (FleetObservabilityFleetObservabilityMonitoringState)MarshalJSONadded inv0.130.0

typeFleetObservabilityLoggingConfigadded inv0.122.0

type FleetObservabilityLoggingConfig struct {// DefaultConfig: Specified if applying the default routing config to logs not// specified in other configs.DefaultConfig *FleetObservabilityRoutingConfig `json:"defaultConfig,omitempty"`// FleetScopeLogsConfig: Specified if applying the routing config to all logs// for all fleet scopes.FleetScopeLogsConfig *FleetObservabilityRoutingConfig `json:"fleetScopeLogsConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultConfig") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityLoggingConfig: LoggingConfig defines the configuration fordifferent types of logs.

func (FleetObservabilityLoggingConfig)MarshalJSONadded inv0.122.0

func (sFleetObservabilityLoggingConfig) MarshalJSON() ([]byte,error)

typeFleetObservabilityMembershipSpecadded inv0.102.0

type FleetObservabilityMembershipSpec struct {}

FleetObservabilityMembershipSpec: **FleetObservability**: Themembership-specific input for FleetObservability feature.

typeFleetObservabilityMembershipStateadded inv0.102.0

type FleetObservabilityMembershipState struct {}

FleetObservabilityMembershipState: **FleetObservability**:Membership-specific Feature state for fleetobservability.

typeFleetObservabilityRoutingConfigadded inv0.122.0

type FleetObservabilityRoutingConfig struct {// Mode: mode configures the logs routing mode.//// Possible values://   "MODE_UNSPECIFIED" - If UNSPECIFIED, fleet logging feature is disabled.//   "COPY" - logs will be copied to the destination project.//   "MOVE" - logs will be moved to the destination project.Modestring `json:"mode,omitempty"`// ForceSendFields is a list of field names (e.g. "Mode") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Mode") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

FleetObservabilityRoutingConfig: RoutingConfig configures the behaviour offleet logging feature.

func (FleetObservabilityRoutingConfig)MarshalJSONadded inv0.122.0

func (sFleetObservabilityRoutingConfig) MarshalJSON() ([]byte,error)

typeGenerateConnectManifestResponseadded inv0.60.0

type GenerateConnectManifestResponse struct {// Manifest: The ordered list of Kubernetes resources that need to be applied// to the cluster for GKE Connect agent installation/upgrade.Manifest []*ConnectAgentResource `json:"manifest,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Manifest") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Manifest") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GenerateConnectManifestResponse: GenerateConnectManifestResponse containsmanifest information for installing/upgrading a Connect agent.

func (GenerateConnectManifestResponse)MarshalJSONadded inv0.60.0

func (sGenerateConnectManifestResponse) MarshalJSON() ([]byte,error)

typeGenerateExclusivityManifestResponseadded inv0.198.0

type GenerateExclusivityManifestResponse struct {// CrManifest: The YAML manifest of the membership CR to apply if a new version// of the CR is available. Empty if no update needs to be applied.CrManifeststring `json:"crManifest,omitempty"`// CrdManifest: The YAML manifest of the membership CRD to apply if a newer// version of the CRD is available. Empty if no update needs to be applied.CrdManifeststring `json:"crdManifest,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CrManifest") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CrManifest") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GenerateExclusivityManifestResponse: The response of the exclusivityartifacts manifests for the client to apply.

func (GenerateExclusivityManifestResponse)MarshalJSONadded inv0.198.0

typeGenerateMembershipRBACRoleBindingYAMLResponseadded inv0.129.0

type GenerateMembershipRBACRoleBindingYAMLResponse struct {// RoleBindingsYaml: a yaml text blob including the RBAC policies.RoleBindingsYamlstring `json:"roleBindingsYaml,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "RoleBindingsYaml") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "RoleBindingsYaml") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GenerateMembershipRBACRoleBindingYAMLResponse: Response forGenerateRBACRoleBindingYAML.

func (GenerateMembershipRBACRoleBindingYAMLResponse)MarshalJSONadded inv0.129.0

typeGkeClusteradded inv0.59.0

type GkeCluster struct {// ClusterMissing: Output only. If cluster_missing is set then it denotes that// the GKE cluster no longer exists in the GKE Control Plane.ClusterMissingbool `json:"clusterMissing,omitempty"`// ResourceLink: Immutable. Self-link of the Google Cloud resource for the GKE// cluster. For example:// //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/// my-cluster Zonal clusters are also supported.ResourceLinkstring `json:"resourceLink,omitempty"`// ForceSendFields is a list of field names (e.g. "ClusterMissing") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClusterMissing") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GkeCluster: GkeCluster contains information specific to GKE clusters.

func (GkeCluster)MarshalJSONadded inv0.59.0

func (sGkeCluster) MarshalJSON() ([]byte,error)

typeGoogleRpcStatus

type GoogleRpcStatus struct {// Code: The status code, which should be an enum value of google.rpc.Code.Codeint64 `json:"code,omitempty"`// Details: A list of messages that carry the error details. There is a common// set of message types for APIs to use.Details []googleapi.RawMessage `json:"details,omitempty"`// Message: A developer-facing error message, which should be in English. Any// user-facing error message should be localized and sent in the// google.rpc.Status.details field, or localized by the client.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleRpcStatus: The `Status` type defines a logical error model that issuitable for different programming environments, including REST APIs and RPCAPIs. It is used by gRPC (https://github.com/grpc). Each `Status` messagecontains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in theAPI Design Guide (https://cloud.google.com/apis/design/errors).

func (GoogleRpcStatus)MarshalJSON

func (sGoogleRpcStatus) MarshalJSON() ([]byte,error)

typeIdentityServiceAuthMethodadded inv0.55.0

type IdentityServiceAuthMethod struct {// AzureadConfig: AzureAD specific Configuration.AzureadConfig *IdentityServiceAzureADConfig `json:"azureadConfig,omitempty"`// GoogleConfig: GoogleConfig specific configuration.GoogleConfig *IdentityServiceGoogleConfig `json:"googleConfig,omitempty"`// LdapConfig: LDAP specific configuration.LdapConfig *IdentityServiceLdapConfig `json:"ldapConfig,omitempty"`// Name: Identifier for auth config.Namestring `json:"name,omitempty"`// OidcConfig: OIDC specific configuration.OidcConfig *IdentityServiceOidcConfig `json:"oidcConfig,omitempty"`// Proxy: Proxy server address to use for auth method.Proxystring `json:"proxy,omitempty"`// SamlConfig: SAML specific configuration.SamlConfig *IdentityServiceSamlConfig `json:"samlConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "AzureadConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AzureadConfig") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceAuthMethod: Configuration of an auth method for amember/cluster. Only one authentication method (e.g., OIDC and LDAP) can beset per AuthMethod.

func (IdentityServiceAuthMethod)MarshalJSONadded inv0.55.0

func (sIdentityServiceAuthMethod) MarshalJSON() ([]byte,error)

typeIdentityServiceAzureADConfigadded inv0.88.0

type IdentityServiceAzureADConfig struct {// ClientId: ID for the registered client application that makes authentication// requests to the Azure AD identity provider.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Input only. Unencrypted AzureAD client secret will be passed// to the GKE Hub CLH.ClientSecretstring `json:"clientSecret,omitempty"`// EncryptedClientSecret: Output only. Encrypted AzureAD client secret.EncryptedClientSecretstring `json:"encryptedClientSecret,omitempty"`// GroupFormat: Optional. Format of the AzureAD groups that the client wants// for auth.GroupFormatstring `json:"groupFormat,omitempty"`// KubectlRedirectUri: The redirect URL that kubectl uses for authorization.KubectlRedirectUristring `json:"kubectlRedirectUri,omitempty"`// Tenant: Kind of Azure AD account to be authenticated. Supported values are// or for accounts belonging to a specific tenant.Tenantstring `json:"tenant,omitempty"`// UserClaim: Optional. Claim in the AzureAD ID Token that holds the user// details.UserClaimstring `json:"userClaim,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClientId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceAzureADConfig: Configuration for the AzureAD Auth flow.

func (IdentityServiceAzureADConfig)MarshalJSONadded inv0.88.0

func (sIdentityServiceAzureADConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceDiagnosticInterfaceadded inv0.197.0

type IdentityServiceDiagnosticInterface struct {// Enabled: Determines whether to enable the diagnostic interface.Enabledbool `json:"enabled,omitempty"`// ExpirationTime: Determines the expiration time of the diagnostic interface// enablement. When reached, requests to the interface would be automatically// rejected.ExpirationTimestring `json:"expirationTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Enabled") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Enabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceDiagnosticInterface: Configuration options for the AISdiagnostic interface.

func (IdentityServiceDiagnosticInterface)MarshalJSONadded inv0.197.0

typeIdentityServiceGoogleConfigadded inv0.89.0

type IdentityServiceGoogleConfig struct {// Disable: Disable automatic configuration of Google Plugin on supported// platforms.Disablebool `json:"disable,omitempty"`// ForceSendFields is a list of field names (e.g. "Disable") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Disable") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceGoogleConfig: Configuration for the Google Plugin Auth flow.

func (IdentityServiceGoogleConfig)MarshalJSONadded inv0.89.0

func (sIdentityServiceGoogleConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceGroupConfigadded inv0.172.0

type IdentityServiceGroupConfig struct {// BaseDn: Required. The location of the subtree in the LDAP directory to// search for group entries.BaseDnstring `json:"baseDn,omitempty"`// Filter: Optional. Optional filter to be used when searching for groups a// user belongs to. This can be used to explicitly match only certain groups in// order to reduce the amount of groups returned for each user. This defaults// to "(objectClass=Group)".Filterstring `json:"filter,omitempty"`// IdAttribute: Optional. The identifying name of each group a user belongs to.// For example, if this is set to "distinguishedName" then RBACs and other// group expectations should be written as full DNs. This defaults to// "distinguishedName".IdAttributestring `json:"idAttribute,omitempty"`// ForceSendFields is a list of field names (e.g. "BaseDn") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BaseDn") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceGroupConfig: Contains the properties for locating andauthenticating groups in the directory.

func (IdentityServiceGroupConfig)MarshalJSONadded inv0.172.0

func (sIdentityServiceGroupConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceIdentityServiceOptionsadded inv0.178.0

type IdentityServiceIdentityServiceOptions struct {// DiagnosticInterface: Configuration options for the AIS diagnostic interface.DiagnosticInterface *IdentityServiceDiagnosticInterface `json:"diagnosticInterface,omitempty"`// SessionDuration: Determines the lifespan of STS tokens issued by Anthos// Identity Service.SessionDurationstring `json:"sessionDuration,omitempty"`// ForceSendFields is a list of field names (e.g. "DiagnosticInterface") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DiagnosticInterface") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceIdentityServiceOptions: Holds non-protocol-relatedconfiguration options.

func (IdentityServiceIdentityServiceOptions)MarshalJSONadded inv0.178.0

typeIdentityServiceLdapConfigadded inv0.172.0

type IdentityServiceLdapConfig struct {// Group: Optional. Contains the properties for locating and authenticating// groups in the directory.Group *IdentityServiceGroupConfig `json:"group,omitempty"`// Server: Required. Server settings for the external LDAP server.Server *IdentityServiceServerConfig `json:"server,omitempty"`// ServiceAccount: Required. Contains the credentials of the service account// which is authorized to perform the LDAP search in the directory. The// credentials can be supplied by the combination of the DN and password or the// client certificate.ServiceAccount *IdentityServiceServiceAccountConfig `json:"serviceAccount,omitempty"`// User: Required. Defines where users exist in the LDAP directory.User *IdentityServiceUserConfig `json:"user,omitempty"`// ForceSendFields is a list of field names (e.g. "Group") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Group") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceLdapConfig: Configuration for the LDAP Auth flow.

func (IdentityServiceLdapConfig)MarshalJSONadded inv0.172.0

func (sIdentityServiceLdapConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceMembershipSpecadded inv0.55.0

type IdentityServiceMembershipSpec struct {// AuthMethods: A member may support multiple auth methods.AuthMethods []*IdentityServiceAuthMethod `json:"authMethods,omitempty"`// IdentityServiceOptions: Optional. non-protocol-related configuration// options.IdentityServiceOptions *IdentityServiceIdentityServiceOptions `json:"identityServiceOptions,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthMethods") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuthMethods") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceMembershipSpec: **Anthos Identity Service**: Configurationfor a single Membership.

func (IdentityServiceMembershipSpec)MarshalJSONadded inv0.55.0

func (sIdentityServiceMembershipSpec) MarshalJSON() ([]byte,error)

typeIdentityServiceMembershipStateadded inv0.55.0

type IdentityServiceMembershipState struct {// FailureReason: The reason of the failure.FailureReasonstring `json:"failureReason,omitempty"`// InstalledVersion: Installed AIS version. This is the AIS version installed// on this member. The values makes sense iff state is OK.InstalledVersionstring `json:"installedVersion,omitempty"`// MemberConfig: Last reconciled membership configurationMemberConfig *IdentityServiceMembershipSpec `json:"memberConfig,omitempty"`// State: Deployment state on this member//// Possible values://   "DEPLOYMENT_STATE_UNSPECIFIED" - Unspecified state//   "OK" - deployment succeeds//   "ERROR" - Failure with error.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "FailureReason") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FailureReason") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceMembershipState: **Anthos Identity Service**: State for asingle Membership.

func (IdentityServiceMembershipState)MarshalJSONadded inv0.55.0

func (sIdentityServiceMembershipState) MarshalJSON() ([]byte,error)

typeIdentityServiceOidcConfigadded inv0.55.0

type IdentityServiceOidcConfig struct {// CertificateAuthorityData: PEM-encoded CA for OIDC provider.CertificateAuthorityDatastring `json:"certificateAuthorityData,omitempty"`// ClientId: ID for OIDC client application.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Input only. Unencrypted OIDC client secret will be passed to// the GKE Hub CLH.ClientSecretstring `json:"clientSecret,omitempty"`// DeployCloudConsoleProxy: Flag to denote if reverse proxy is used to connect// to auth provider. This flag should be set to true when provider is not// reachable by Google Cloud Console.DeployCloudConsoleProxybool `json:"deployCloudConsoleProxy,omitempty"`// EnableAccessToken: Enable access token.EnableAccessTokenbool `json:"enableAccessToken,omitempty"`// EncryptedClientSecret: Output only. Encrypted OIDC Client secretEncryptedClientSecretstring `json:"encryptedClientSecret,omitempty"`// ExtraParams: Comma-separated list of key-value pairs.ExtraParamsstring `json:"extraParams,omitempty"`// GroupPrefix: Prefix to prepend to group name.GroupPrefixstring `json:"groupPrefix,omitempty"`// GroupsClaim: Claim in OIDC ID token that holds group information.GroupsClaimstring `json:"groupsClaim,omitempty"`// IssuerUri: URI for the OIDC provider. This should point to the level below// .well-known/openid-configuration.IssuerUristring `json:"issuerUri,omitempty"`// KubectlRedirectUri: Registered redirect uri to redirect users going through// OAuth flow using kubectl plugin.KubectlRedirectUristring `json:"kubectlRedirectUri,omitempty"`// Scopes: Comma-separated list of identifiers.Scopesstring `json:"scopes,omitempty"`// UserClaim: Claim in OIDC ID token that holds username.UserClaimstring `json:"userClaim,omitempty"`// UserPrefix: Prefix to prepend to user name.UserPrefixstring `json:"userPrefix,omitempty"`// ForceSendFields is a list of field names (e.g. "CertificateAuthorityData")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CertificateAuthorityData") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceOidcConfig: Configuration for OIDC Auth flow.

func (IdentityServiceOidcConfig)MarshalJSONadded inv0.55.0

func (sIdentityServiceOidcConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceSamlConfigadded inv0.170.0

type IdentityServiceSamlConfig struct {// AttributeMapping: Optional. The mapping of additional user attributes like// nickname, birthday and address etc.. `key` is the name of this additional// attribute. `value` is a string presenting as CEL(common expression language,// go/cel) used for getting the value from the resources. Take nickname as an// example, in this case, `key` is "attribute.nickname" and `value` is// "assertion.nickname".AttributeMapping map[string]string `json:"attributeMapping,omitempty"`// GroupPrefix: Optional. Prefix to prepend to group name.GroupPrefixstring `json:"groupPrefix,omitempty"`// GroupsAttribute: Optional. The SAML attribute to read groups from. This// value is expected to be a string and will be passed along as-is (with the// option of being prefixed by the `group_prefix`).GroupsAttributestring `json:"groupsAttribute,omitempty"`// IdentityProviderCertificates: Required. The list of IdP certificates to// validate the SAML response against.IdentityProviderCertificates []string `json:"identityProviderCertificates,omitempty"`// IdentityProviderId: Required. The entity ID of the SAML IdP.IdentityProviderIdstring `json:"identityProviderId,omitempty"`// IdentityProviderSsoUri: Required. The URI where the SAML IdP exposes the SSO// service.IdentityProviderSsoUristring `json:"identityProviderSsoUri,omitempty"`// UserAttribute: Optional. The SAML attribute to read username from. If// unspecified, the username will be read from the NameID element of the// assertion in SAML response. This value is expected to be a string and will// be passed along as-is (with the option of being prefixed by the// `user_prefix`).UserAttributestring `json:"userAttribute,omitempty"`// UserPrefix: Optional. Prefix to prepend to user name.UserPrefixstring `json:"userPrefix,omitempty"`// ForceSendFields is a list of field names (e.g. "AttributeMapping") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AttributeMapping") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceSamlConfig: Configuration for the SAML Auth flow.

func (IdentityServiceSamlConfig)MarshalJSONadded inv0.170.0

func (sIdentityServiceSamlConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceServerConfigadded inv0.172.0

type IdentityServiceServerConfig struct {// CertificateAuthorityData: Optional. Contains a Base64 encoded, PEM formatted// certificate authority certificate for the LDAP server. This must be provided// for the "ldaps" and "startTLS" connections.CertificateAuthorityDatastring `json:"certificateAuthorityData,omitempty"`// ConnectionType: Optional. Defines the connection type to communicate with// the LDAP server. If `starttls` or `ldaps` is specified, the// certificate_authority_data should not be empty.ConnectionTypestring `json:"connectionType,omitempty"`// Host: Required. Defines the hostname or IP of the LDAP server. Port is// optional and will default to 389, if unspecified. For example,// "ldap.server.example" or "10.10.10.10:389".Hoststring `json:"host,omitempty"`// ForceSendFields is a list of field names (e.g. "CertificateAuthorityData")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CertificateAuthorityData") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceServerConfig: Server settings for the external LDAP server.

func (IdentityServiceServerConfig)MarshalJSONadded inv0.172.0

func (sIdentityServiceServerConfig) MarshalJSON() ([]byte,error)

typeIdentityServiceServiceAccountConfigadded inv0.172.0

type IdentityServiceServiceAccountConfig struct {// SimpleBindCredentials: Credentials for basic auth.SimpleBindCredentials *IdentityServiceSimpleBindCredentials `json:"simpleBindCredentials,omitempty"`// ForceSendFields is a list of field names (e.g. "SimpleBindCredentials") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SimpleBindCredentials") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceServiceAccountConfig: Contains the credentials of the serviceaccount which is authorized to perform the LDAP search in the directory. Thecredentials can be supplied by the combination of the DN and password or theclient certificate.

func (IdentityServiceServiceAccountConfig)MarshalJSONadded inv0.172.0

typeIdentityServiceSimpleBindCredentialsadded inv0.172.0

type IdentityServiceSimpleBindCredentials struct {// Dn: Required. The distinguished name(DN) of the service account object/user.Dnstring `json:"dn,omitempty"`// EncryptedPassword: Output only. The encrypted password of the service// account object/user.EncryptedPasswordstring `json:"encryptedPassword,omitempty"`// Password: Required. Input only. The password of the service account// object/user.Passwordstring `json:"password,omitempty"`// ForceSendFields is a list of field names (e.g. "Dn") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Dn") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceSimpleBindCredentials: The structure holds the LDAP simplebinding credential.

func (IdentityServiceSimpleBindCredentials)MarshalJSONadded inv0.172.0

typeIdentityServiceUserConfigadded inv0.172.0

type IdentityServiceUserConfig struct {// BaseDn: Required. The location of the subtree in the LDAP directory to// search for user entries.BaseDnstring `json:"baseDn,omitempty"`// Filter: Optional. Filter to apply when searching for the user. This can be// used to further restrict the user accounts which are allowed to login. This// defaults to "(objectClass=User)".Filterstring `json:"filter,omitempty"`// IdAttribute: Optional. Determines which attribute to use as the user's// identity after they are authenticated. This is distinct from the// loginAttribute field to allow users to login with a username, but then have// their actual identifier be an email address or full Distinguished Name (DN).// For example, setting loginAttribute to "sAMAccountName" and// identifierAttribute to "userPrincipalName" would allow a user to login as// "bsmith", but actual RBAC policies for the user would be written as// "bsmith@example.com". Using "userPrincipalName" is recommended since this// will be unique for each user. This defaults to "userPrincipalName".IdAttributestring `json:"idAttribute,omitempty"`// LoginAttribute: Optional. The name of the attribute which matches against// the input username. This is used to find the user in the LDAP database e.g.// "(=)" and is combined with the optional filter field. This defaults to// "userPrincipalName".LoginAttributestring `json:"loginAttribute,omitempty"`// ForceSendFields is a list of field names (e.g. "BaseDn") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BaseDn") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

IdentityServiceUserConfig: Defines where users exist in the LDAP directory.

func (IdentityServiceUserConfig)MarshalJSONadded inv0.172.0

func (sIdentityServiceUserConfig) MarshalJSON() ([]byte,error)

typeKubernetesMetadataadded inv0.59.0

type KubernetesMetadata struct {// KubernetesApiServerVersion: Output only. Kubernetes API server version// string as reported by `/version`.KubernetesApiServerVersionstring `json:"kubernetesApiServerVersion,omitempty"`// MemoryMb: Output only. The total memory capacity as reported by the sum of// all Kubernetes nodes resources, defined in MB.MemoryMbint64 `json:"memoryMb,omitempty"`// NodeCount: Output only. Node count as reported by Kubernetes nodes// resources.NodeCountint64 `json:"nodeCount,omitempty"`// NodeProviderId: Output only. Node providerID as reported by the first node// in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms// that support zero-node clusters (like GKE-on-GCP), the node_count will be// zero and the node_provider_id will be empty.NodeProviderIdstring `json:"nodeProviderId,omitempty"`// UpdateTime: Output only. The time at which these details were last updated.// This update_time is different from the Membership-level update_time since// EndpointDetails are updated internally for API consumers.UpdateTimestring `json:"updateTime,omitempty"`// VcpuCount: Output only. vCPU count as reported by Kubernetes nodes// resources.VcpuCountint64 `json:"vcpuCount,omitempty"`// ForceSendFields is a list of field names (e.g. "KubernetesApiServerVersion")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "KubernetesApiServerVersion") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

KubernetesMetadata: KubernetesMetadata provides informational metadata forMemberships representing Kubernetes clusters.

func (KubernetesMetadata)MarshalJSONadded inv0.59.0

func (sKubernetesMetadata) MarshalJSON() ([]byte,error)

typeKubernetesResourceadded inv0.61.0

type KubernetesResource struct {// ConnectResources: Output only. The Kubernetes resources for installing the// GKE Connect agent This field is only populated in the Membership returned// from a successful long-running operation from CreateMembership or// UpdateMembership. It is not populated during normal GetMembership or// ListMemberships requests. To get the resource manifest after the initial// registration, the caller should make a UpdateMembership call with an empty// field mask.ConnectResources []*ResourceManifest `json:"connectResources,omitempty"`// MembershipCrManifest: Input only. The YAML representation of the Membership// CR. This field is ignored for GKE clusters where Hub can read the CR// directly. Callers should provide the CR that is currently present in the// cluster during CreateMembership or UpdateMembership, or leave this field// empty if none exists. The CR manifest is used to validate the cluster has// not been registered with another Membership.MembershipCrManifeststring `json:"membershipCrManifest,omitempty"`// MembershipResources: Output only. Additional Kubernetes resources that need// to be applied to the cluster after Membership creation, and after every// update. This field is only populated in the Membership returned from a// successful long-running operation from CreateMembership or UpdateMembership.// It is not populated during normal GetMembership or ListMemberships requests.// To get the resource manifest after the initial registration, the caller// should make a UpdateMembership call with an empty field mask.MembershipResources []*ResourceManifest `json:"membershipResources,omitempty"`// ResourceOptions: Optional. Options for Kubernetes resource generation.ResourceOptions *ResourceOptions `json:"resourceOptions,omitempty"`// ForceSendFields is a list of field names (e.g. "ConnectResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConnectResources") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

KubernetesResource: KubernetesResource contains the YAML manifests andconfiguration for Membership Kubernetes resources in the cluster. AfterCreateMembership or UpdateMembership, these resources should be re-appliedin the cluster.

func (KubernetesResource)MarshalJSONadded inv0.61.0

func (sKubernetesResource) MarshalJSON() ([]byte,error)

typeListAdminClusterMembershipsResponseadded inv0.59.0

type ListAdminClusterMembershipsResponse struct {// AdminClusterMemberships: The list of matching Memberships of admin clusters.AdminClusterMemberships []*Membership `json:"adminClusterMemberships,omitempty"`// NextPageToken: A token to request the next page of resources from the// `ListAdminClusterMemberships` method. The value of an empty string means// that there are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: List of locations that could not be reached while fetching this// list.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AdminClusterMemberships") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdminClusterMemberships") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListAdminClusterMembershipsResponse: Response message for the`GkeHub.ListAdminClusterMemberships` method.

func (ListAdminClusterMembershipsResponse)MarshalJSONadded inv0.59.0

typeListBoundMembershipsResponseadded inv0.168.0

type ListBoundMembershipsResponse struct {// Memberships: The list of Memberships bound to the given Scope.Memberships []*Membership `json:"memberships,omitempty"`// NextPageToken: A token to request the next page of resources from the// `ListBoundMemberships` method. The value of an empty string means that there// are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: List of locations that could not be reached while fetching this// list.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Memberships") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Memberships") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListBoundMembershipsResponse: List of Memberships bound to a Scope.

func (ListBoundMembershipsResponse)MarshalJSONadded inv0.168.0

func (sListBoundMembershipsResponse) MarshalJSON() ([]byte,error)

typeListFeaturesResponse

type ListFeaturesResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListFeatures` method. The value of an empty string means that there are no// more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Resources: The list of matching FeaturesResources []*Feature `json:"resources,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListFeaturesResponse: Response message for the `GkeHub.ListFeatures` method.

func (ListFeaturesResponse)MarshalJSON

func (sListFeaturesResponse) MarshalJSON() ([]byte,error)

typeListFleetsResponseadded inv0.73.0

type ListFleetsResponse struct {// Fleets: The list of matching fleets.Fleets []*Fleet `json:"fleets,omitempty"`// 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. The// token is only valid for 1h.NextPageTokenstring `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. "Fleets") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Fleets") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListFleetsResponse: Response message for the `GkeHub.ListFleetsResponse`method.

func (ListFleetsResponse)MarshalJSONadded inv0.73.0

func (sListFleetsResponse) MarshalJSON() ([]byte,error)

typeListLocationsResponse

type ListLocationsResponse struct {// Locations: A list of locations that matches the specified filter in the// request.Locations []*Location `json:"locations,omitempty"`// NextPageToken: The standard List next-page token.NextPageTokenstring `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. "Locations") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Locations") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListLocationsResponse: The response message for Locations.ListLocations.

func (ListLocationsResponse)MarshalJSON

func (sListLocationsResponse) MarshalJSON() ([]byte,error)

typeListMembershipBindingsResponseadded inv0.112.0

type ListMembershipBindingsResponse struct {// MembershipBindings: The list of membership_bindingsMembershipBindings []*MembershipBinding `json:"membershipBindings,omitempty"`// NextPageToken: A token to request the next page of resources from the// `ListMembershipBindings` method. The value of an empty string means that// there are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: List of locations that could not be reached while fetching this// list.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "MembershipBindings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MembershipBindings") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListMembershipBindingsResponse: List of MembershipBindings.

func (ListMembershipBindingsResponse)MarshalJSONadded inv0.112.0

func (sListMembershipBindingsResponse) MarshalJSON() ([]byte,error)

typeListMembershipRBACRoleBindingsResponseadded inv0.129.0

type ListMembershipRBACRoleBindingsResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListMembershipRBACRoleBindings` method. The value of an empty string means// that there are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Rbacrolebindings: The list of Membership RBACRoleBindings.Rbacrolebindings []*RBACRoleBinding `json:"rbacrolebindings,omitempty"`// Unreachable: List of locations that could not be reached while fetching this// list.Unreachable []string `json:"unreachable,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListMembershipRBACRoleBindingsResponse: List of Membership RBACRoleBindings.

func (ListMembershipRBACRoleBindingsResponse)MarshalJSONadded inv0.129.0

typeListMembershipsResponseadded inv0.60.0

type ListMembershipsResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListMemberships` method. The value of an empty string means that there are// no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Resources: The list of matching Memberships.Resources []*Membership `json:"resources,omitempty"`// Unreachable: List of locations that could not be reached while fetching this// list.Unreachable []string `json:"unreachable,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListMembershipsResponse: Response message for the `GkeHub.ListMemberships`method.

func (ListMembershipsResponse)MarshalJSONadded inv0.60.0

func (sListMembershipsResponse) MarshalJSON() ([]byte,error)

typeListOperationsResponse

type ListOperationsResponse struct {// NextPageToken: The standard List next-page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Operations: A list of operations that matches the specified filter in the// request.Operations []*Operation `json:"operations,omitempty"`// Unreachable: Unordered list. Unreachable resources. Populated when the// request sets `ListOperationsRequest.return_partial_success` and reads across// collections e.g. when attempting to list all resources across all supported// locations.Unreachable []string `json:"unreachable,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListOperationsResponse: The response message for Operations.ListOperations.

func (ListOperationsResponse)MarshalJSON

func (sListOperationsResponse) MarshalJSON() ([]byte,error)

typeListPermittedScopesResponseadded inv0.166.0

type ListPermittedScopesResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListPermittedScopes` method. The value of an empty string means that there// are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Scopes: The list of permitted ScopesScopes []*Scope `json:"scopes,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListPermittedScopesResponse: List of permitted Scopes.

func (ListPermittedScopesResponse)MarshalJSONadded inv0.166.0

func (sListPermittedScopesResponse) MarshalJSON() ([]byte,error)

typeListRolloutSequencesResponseadded inv0.256.0

type ListRolloutSequencesResponse 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.NextPageTokenstring `json:"nextPageToken,omitempty"`// RolloutSequences: The rollout sequences from the specified parent resource.RolloutSequences []*RolloutSequence `json:"rolloutSequences,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListRolloutSequencesResponse: Response message for listing rolloutsequences.

func (ListRolloutSequencesResponse)MarshalJSONadded inv0.256.0

func (sListRolloutSequencesResponse) MarshalJSON() ([]byte,error)

typeListRolloutsResponseadded inv0.256.0

type ListRolloutsResponse 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.NextPageTokenstring `json:"nextPageToken,omitempty"`// Rollouts: The rollouts from the specified parent resource.Rollouts []*Rollout `json:"rollouts,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListRolloutsResponse: Response message for listing rollouts.

func (ListRolloutsResponse)MarshalJSONadded inv0.256.0

func (sListRolloutsResponse) MarshalJSON() ([]byte,error)

typeListScopeNamespacesResponseadded inv0.135.0

type ListScopeNamespacesResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListNamespaces` method. The value of an empty string means that there are// no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// ScopeNamespaces: The list of fleet namespacesScopeNamespaces []*Namespace `json:"scopeNamespaces,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListScopeNamespacesResponse: List of fleet namespaces.

func (ListScopeNamespacesResponse)MarshalJSONadded inv0.135.0

func (sListScopeNamespacesResponse) MarshalJSON() ([]byte,error)

typeListScopeRBACRoleBindingsResponseadded inv0.135.0

type ListScopeRBACRoleBindingsResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListScopeRBACRoleBindings` method. The value of an empty string means that// there are no more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Rbacrolebindings: The list of Scope RBACRoleBindings.Rbacrolebindings []*RBACRoleBinding `json:"rbacrolebindings,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListScopeRBACRoleBindingsResponse: List of Scope RBACRoleBindings.

func (ListScopeRBACRoleBindingsResponse)MarshalJSONadded inv0.135.0

func (sListScopeRBACRoleBindingsResponse) MarshalJSON() ([]byte,error)

typeListScopesResponseadded inv0.112.0

type ListScopesResponse struct {// NextPageToken: A token to request the next page of resources from the// `ListScopes` method. The value of an empty string means that there are no// more resources to return.NextPageTokenstring `json:"nextPageToken,omitempty"`// Scopes: The list of ScopesScopes []*Scope `json:"scopes,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 or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListScopesResponse: List of Scopes.

func (ListScopesResponse)MarshalJSONadded inv0.112.0

func (sListScopesResponse) MarshalJSON() ([]byte,error)

typeLocation

type Location struct {// DisplayName: The friendly name for this location, typically a nearby city// name. For example, "Tokyo".DisplayNamestring `json:"displayName,omitempty"`// Labels: Cross-service attributes for the location. For example// {"cloud.googleapis.com/region": "us-east1"}Labels map[string]string `json:"labels,omitempty"`// LocationId: The canonical id for this location. For example: "us-east1".LocationIdstring `json:"locationId,omitempty"`// Metadata: Service-specific metadata. For example the available capacity at// the given location.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: Resource name for the location, which may vary between// implementations. For example:// "projects/example-project/locations/us-east1"Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Location: A resource that represents a Google Cloud location.

func (Location)MarshalJSON

func (sLocation) MarshalJSON() ([]byte,error)

typeMembershipadded inv0.59.0

type Membership struct {// Authority: Optional. How to identify workloads from this Membership. See the// documentation on Workload Identity for more details://https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identityAuthority *Authority `json:"authority,omitempty"`// ClusterTier: Output only. The tier of the cluster.//// Possible values://   "CLUSTER_TIER_UNSPECIFIED" - The ClusterTier is not set.//   "STANDARD" - The ClusterTier is standard.//   "ENTERPRISE" - The ClusterTier is enterprise.ClusterTierstring `json:"clusterTier,omitempty"`// CreateTime: Output only. When the Membership was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the Membership was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// Description: Output only. Description of this membership, limited to 63// characters. Must match the regex: `a-zA-Z0-9*` This field is present for// legacy purposes.Descriptionstring `json:"description,omitempty"`// Endpoint: Optional. Endpoint information to reach this member.Endpoint *MembershipEndpoint `json:"endpoint,omitempty"`// ExternalId: Optional. An externally-generated and managed ID for this// Membership. This ID may be modified after creation, but this is not// recommended. The ID must match the regex: `a-zA-Z0-9*` If this Membership// represents a Kubernetes cluster, this value should be set to the UID of the// `kube-system` namespace object.ExternalIdstring `json:"externalId,omitempty"`// Labels: Optional. Labels for this membership. These labels are not leveraged// by multi-cluster features, instead, we prefer cluster labels, which can be// set on GKE cluster or other cluster types.Labels map[string]string `json:"labels,omitempty"`// LastConnectionTime: Output only. For clusters using Connect, the timestamp// of the most recent connection established with Google Cloud. This time is// updated every several minutes, not continuously. For clusters that do not// use GKE Connect, or that have never connected successfully, this field will// be unset.LastConnectionTimestring `json:"lastConnectionTime,omitempty"`// MembershipType: Output only. The type of the membership.//// Possible values://   "MEMBERSHIP_TYPE_UNSPECIFIED" - The MembershipType is not set.//   "LIGHTWEIGHT" - The membership supports only lightweight compatible// features.MembershipTypestring `json:"membershipType,omitempty"`// MonitoringConfig: Optional. The monitoring config information for this// membership.MonitoringConfig *MonitoringConfig `json:"monitoringConfig,omitempty"`// Name: Output only. The full, unique name of this Membership resource in the// format `projects/*/locations/*/memberships/{membership_id}`, set during// creation. `membership_id` must be a validRFC 1123 compliant DNS label: 1.// At most 63 characters in length 2. It must consist of lower case// alphanumeric characters or `-` 3. It must start and end with an alphanumeric// character Which can be expressed as the regex:// `[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.Namestring `json:"name,omitempty"`// State: Output only. State of the Membership resource.State *MembershipState `json:"state,omitempty"`// UniqueId: Output only. Google-generated UUID for this resource. This is// unique across all Membership resources. If a Membership resource is deleted// and another resource with the same name is created, it gets a different// unique_id.UniqueIdstring `json:"uniqueId,omitempty"`// UpdateTime: Output only. When the Membership was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Authority") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Authority") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Membership: Membership contains information about a member cluster.

func (Membership)MarshalJSONadded inv0.59.0

func (sMembership) MarshalJSON() ([]byte,error)

typeMembershipBindingadded inv0.112.0

type MembershipBinding struct {// CreateTime: Output only. When the membership binding was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the membership binding was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// Labels: Optional. Labels for this MembershipBinding.Labels map[string]string `json:"labels,omitempty"`// Name: The resource name for the membershipbinding itself// `projects/{project}/locations/{location}/memberships/{membership}/bindings/{m// embershipbinding}`Namestring `json:"name,omitempty"`// Scope: A Scope resource name in the format// `projects/*/locations/*/scopes/*`.Scopestring `json:"scope,omitempty"`// State: Output only. State of the membership binding resource.State *MembershipBindingLifecycleState `json:"state,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all membershipbinding resources. If a membershipbinding resource is// deleted and another resource with the same name is created, it gets a// different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. When the membership binding was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipBinding: MembershipBinding is a subresource of a Membership,representing what Fleet Scopes (or other, future Fleet resources) aMembership is bound to.

func (MembershipBinding)MarshalJSONadded inv0.112.0

func (sMembershipBinding) MarshalJSON() ([]byte,error)

typeMembershipBindingLifecycleStateadded inv0.112.0

type MembershipBindingLifecycleState struct {// Code: Output only. The current state of the MembershipBinding resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The membershipbinding is being created.//   "READY" - The membershipbinding active.//   "DELETING" - The membershipbinding is being deleted.//   "UPDATING" - The membershipbinding is being updated.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipBindingLifecycleState: MembershipBindingLifecycleState describesthe state of a Binding resource.

func (MembershipBindingLifecycleState)MarshalJSONadded inv0.112.0

func (sMembershipBindingLifecycleState) MarshalJSON() ([]byte,error)

typeMembershipEndpointadded inv0.59.0

type MembershipEndpoint struct {// ApplianceCluster: Optional. Specific information for a GDC Edge Appliance// cluster.ApplianceCluster *ApplianceCluster `json:"applianceCluster,omitempty"`// EdgeCluster: Optional. Specific information for a Google Edge cluster.EdgeCluster *EdgeCluster `json:"edgeCluster,omitempty"`// GkeCluster: Optional. Specific information for a GKE-on-GCP cluster.GkeCluster *GkeCluster `json:"gkeCluster,omitempty"`// GoogleManaged: Output only. Whether the lifecycle of this membership is// managed by a google cluster platform service.GoogleManagedbool `json:"googleManaged,omitempty"`// KubernetesMetadata: Output only. Useful Kubernetes-specific metadata.KubernetesMetadata *KubernetesMetadata `json:"kubernetesMetadata,omitempty"`// KubernetesResource: Optional. The in-cluster Kubernetes Resources that// should be applied for a correctly registered cluster, in the steady state.// These resources: * Ensure that the cluster is exclusively registered to one// and only one Hub Membership. * Propagate Workload Pool Information available// in the Membership Authority field. * Ensure proper initial configuration of// default Hub Features.KubernetesResource *KubernetesResource `json:"kubernetesResource,omitempty"`// MultiCloudCluster: Optional. Specific information for a GKE Multi-Cloud// cluster.MultiCloudCluster *MultiCloudCluster `json:"multiCloudCluster,omitempty"`// OnPremCluster: Optional. Specific information for a GKE On-Prem cluster. An// onprem user-cluster who has no resourceLink is not allowed to use this// field, it should have a nil "type" instead.OnPremCluster *OnPremCluster `json:"onPremCluster,omitempty"`// ForceSendFields is a list of field names (e.g. "ApplianceCluster") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ApplianceCluster") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipEndpoint: MembershipEndpoint contains information needed tocontact a Kubernetes API, endpoint and any additional Kubernetes metadata.

func (MembershipEndpoint)MarshalJSONadded inv0.59.0

func (sMembershipEndpoint) MarshalJSON() ([]byte,error)

typeMembershipFeatureSpec

type MembershipFeatureSpec struct {// Cloudbuild: Cloud Build-specific specCloudbuild *CloudBuildMembershipSpec `json:"cloudbuild,omitempty"`// Configmanagement: Config Management-specific spec.Configmanagement *ConfigManagementMembershipSpec `json:"configmanagement,omitempty"`// Fleetobservability: Fleet observability membership specFleetobservability *FleetObservabilityMembershipSpec `json:"fleetobservability,omitempty"`// Identityservice: Identity Service-specific spec.Identityservice *IdentityServiceMembershipSpec `json:"identityservice,omitempty"`// Mesh: Anthos Service Mesh-specific specMesh *ServiceMeshMembershipSpec `json:"mesh,omitempty"`// Namespaceactuation: FNS Actuation membership specNamespaceactuation *NamespaceActuationMembershipSpec `json:"namespaceactuation,omitempty"`// Origin: Whether this per-Membership spec was inherited from a fleet-level// default. This field can be updated by users by either overriding a// Membership config (updated to USER implicitly) or setting to FLEET// explicitly.Origin *Origin `json:"origin,omitempty"`// Policycontroller: Policy Controller spec.Policycontroller *PolicyControllerMembershipSpec `json:"policycontroller,omitempty"`// Workloadcertificate: Workload Certificate spec.Workloadcertificate *MembershipSpec `json:"workloadcertificate,omitempty"`// ForceSendFields is a list of field names (e.g. "Cloudbuild") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cloudbuild") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipFeatureSpec: MembershipFeatureSpec contains configurationinformation for a single Membership.

func (MembershipFeatureSpec)MarshalJSON

func (sMembershipFeatureSpec) MarshalJSON() ([]byte,error)

typeMembershipFeatureState

type MembershipFeatureState struct {// Appdevexperience: Appdevexperience specific state.Appdevexperience *AppDevExperienceFeatureState `json:"appdevexperience,omitempty"`// Clusterupgrade: ClusterUpgrade state.Clusterupgrade *ClusterUpgradeMembershipState `json:"clusterupgrade,omitempty"`// Configmanagement: Config Management-specific state.Configmanagement *ConfigManagementMembershipState `json:"configmanagement,omitempty"`// Fleetobservability: Fleet observability membership state.Fleetobservability *FleetObservabilityMembershipState `json:"fleetobservability,omitempty"`// Identityservice: Identity Service-specific state.Identityservice *IdentityServiceMembershipState `json:"identityservice,omitempty"`// Metering: Metering-specific state.Metering *MeteringMembershipState `json:"metering,omitempty"`// Namespaceactuation: FNS Actuation membership stateNamespaceactuation *NamespaceActuationMembershipState `json:"namespaceactuation,omitempty"`// Policycontroller: Policycontroller-specific state.Policycontroller *PolicyControllerMembershipState `json:"policycontroller,omitempty"`// Servicemesh: Service Mesh-specific state.Servicemesh *ServiceMeshMembershipState `json:"servicemesh,omitempty"`// State: The high-level state of this Feature for a single membership.State *FeatureState `json:"state,omitempty"`// Workloadidentity: Workload Identity membership specific state.Workloadidentity *WorkloadIdentityMembershipState `json:"workloadidentity,omitempty"`// ForceSendFields is a list of field names (e.g. "Appdevexperience") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Appdevexperience") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipFeatureState: MembershipFeatureState contains Feature statusinformation for a single Membership.

func (MembershipFeatureState)MarshalJSON

func (sMembershipFeatureState) MarshalJSON() ([]byte,error)

typeMembershipSpecadded inv0.68.0

type MembershipSpec struct {// CertificateManagement: Specifies workload certificate management.//// Possible values://   "CERTIFICATE_MANAGEMENT_UNSPECIFIED" - Disable workload certificate// feature.//   "DISABLED" - Disable workload certificate feature.//   "ENABLED" - Enable workload certificate feature.CertificateManagementstring `json:"certificateManagement,omitempty"`// ForceSendFields is a list of field names (e.g. "CertificateManagement") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CertificateManagement") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipSpec: **Workload Certificate**: The membership-specific input forWorkloadCertificate feature.

func (MembershipSpec)MarshalJSONadded inv0.68.0

func (sMembershipSpec) MarshalJSON() ([]byte,error)

typeMembershipStateadded inv0.59.0

type MembershipState struct {// Code: Output only. The current state of the Membership resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The cluster is being registered.//   "READY" - The cluster is registered.//   "DELETING" - The cluster is being unregistered.//   "UPDATING" - The Membership is being updated.//   "SERVICE_UPDATING" - The Membership is being updated by the Hub Service.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MembershipState: MembershipState describes the state of a Membershipresource.

func (MembershipState)MarshalJSONadded inv0.59.0

func (sMembershipState) MarshalJSON() ([]byte,error)

typeMeteringMembershipState

type MeteringMembershipState struct {// LastMeasurementTime: The time stamp of the most recent measurement of the// number of vCPUs in the cluster.LastMeasurementTimestring `json:"lastMeasurementTime,omitempty"`// PreciseLastMeasuredClusterVcpuCapacity: The vCPUs capacity in the cluster// according to the most recent measurement (1/1000 precision).PreciseLastMeasuredClusterVcpuCapacityfloat64 `json:"preciseLastMeasuredClusterVcpuCapacity,omitempty"`// ForceSendFields is a list of field names (e.g. "LastMeasurementTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LastMeasurementTime") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MeteringMembershipState: **Metering**: Per-Membership Feature State.

func (MeteringMembershipState)MarshalJSON

func (sMeteringMembershipState) MarshalJSON() ([]byte,error)

func (*MeteringMembershipState)UnmarshalJSON

func (s *MeteringMembershipState) UnmarshalJSON(data []byte)error

typeMonitoringConfigadded inv0.119.0

type MonitoringConfig struct {// Cluster: Optional. Cluster name used to report metrics. For Anthos on// VMWare/Baremetal/MultiCloud clusters, it would be in format// {cluster_type}/{cluster_name}, e.g., "awsClusters/cluster_1".Clusterstring `json:"cluster,omitempty"`// ClusterHash: Optional. For GKE and Multicloud clusters, this is the UUID of// the cluster resource. For VMWare and Baremetal clusters, this is the// kube-system UID.ClusterHashstring `json:"clusterHash,omitempty"`// KubernetesMetricsPrefix: Optional. Kubernetes system metrics, if available,// are written to this prefix. This defaults to kubernetes.io for GKE, and// kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud will// have kubernetes.io prefix today but will migration to be under// kubernetes.io/anthos.KubernetesMetricsPrefixstring `json:"kubernetesMetricsPrefix,omitempty"`// Location: Optional. Location used to report MetricsLocationstring `json:"location,omitempty"`// ProjectId: Optional. Project used to report MetricsProjectIdstring `json:"projectId,omitempty"`// ForceSendFields is a list of field names (e.g. "Cluster") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cluster") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MonitoringConfig: MonitoringConfig informs Fleet-basedapplications/services/UIs how the metrics for the underlying cluster isreported to cloud monitoring services. It can be set from empty tonon-empty, but can't be mutated directly to prevent accidentally breakingthe constinousty of metrics.

func (MonitoringConfig)MarshalJSONadded inv0.119.0

func (sMonitoringConfig) MarshalJSON() ([]byte,error)

typeMultiCloudClusteradded inv0.59.0

type MultiCloudCluster struct {// ClusterMissing: Output only. If cluster_missing is set then it denotes that// API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster// no longer exists.ClusterMissingbool `json:"clusterMissing,omitempty"`// ResourceLink: Immutable. Self-link of the Google Cloud resource for the GKE// Multi-Cloud cluster. For example:// //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsCl// usters/my-cluster// //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azure// Clusters/my-cluster// //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attac// hedClusters/my-clusterResourceLinkstring `json:"resourceLink,omitempty"`// ForceSendFields is a list of field names (e.g. "ClusterMissing") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClusterMissing") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MultiCloudCluster: MultiCloudCluster contains information specific to GKEMulti-Cloud clusters.

func (MultiCloudCluster)MarshalJSONadded inv0.59.0

func (sMultiCloudCluster) MarshalJSON() ([]byte,error)

typeMultiClusterIngressFeatureSpec

type MultiClusterIngressFeatureSpec struct {// Billing: Deprecated: This field will be ignored and should not be set.// Customer's billing structure.//// Possible values://   "BILLING_UNSPECIFIED" - Unknown//   "PAY_AS_YOU_GO" - User pays a fee per-endpoint.//   "ANTHOS_LICENSE" - User is paying for Anthos as a whole.Billingstring `json:"billing,omitempty"`// ConfigMembership: Fully-qualified Membership name which hosts the// MultiClusterIngress CRD. Example:// `projects/foo-proj/locations/global/memberships/bar`ConfigMembershipstring `json:"configMembership,omitempty"`// ForceSendFields is a list of field names (e.g. "Billing") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Billing") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

MultiClusterIngressFeatureSpec: **Multi-cluster Ingress**: The configurationfor the MultiClusterIngress feature.

func (MultiClusterIngressFeatureSpec)MarshalJSON

func (sMultiClusterIngressFeatureSpec) MarshalJSON() ([]byte,error)

typeNamespaceadded inv0.112.0

type Namespace struct {// CreateTime: Output only. When the namespace was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the namespace was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// Labels: Optional. Labels for this Namespace.Labels map[string]string `json:"labels,omitempty"`// Name: The resource name for the namespace// `projects/{project}/locations/{location}/namespaces/{namespace}`Namestring `json:"name,omitempty"`// NamespaceLabels: Optional. Namespace-level cluster namespace labels. These// labels are applied to the related namespace of the member clusters bound to// the parent Scope. Scope-level labels (`namespace_labels` in the Fleet Scope// resource) take precedence over Namespace-level labels if they share a key.// Keys and values must be Kubernetes-conformant.NamespaceLabels map[string]string `json:"namespaceLabels,omitempty"`// Scope: Required. Scope associated with the namespaceScopestring `json:"scope,omitempty"`// State: Output only. State of the namespace resource.State *NamespaceLifecycleState `json:"state,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all namespace resources. If a namespace resource is deleted and// another resource with the same name is created, it gets a different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. When the namespace was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Namespace: Namespace represents a namespace across the Fleet

func (Namespace)MarshalJSONadded inv0.112.0

func (sNamespace) MarshalJSON() ([]byte,error)

typeNamespaceActuationFeatureSpecadded inv0.151.0

type NamespaceActuationFeatureSpec struct {// ActuationMode: actuation_mode controls the behavior of the controller//// Possible values://   "ACTUATION_MODE_UNSPECIFIED" - ACTUATION_MODE_UNSPECIFIED is similar to// CREATE_AND_DELETE_IF_CREATED in the default controller behavior.//   "ACTUATION_MODE_CREATE_AND_DELETE_IF_CREATED" -// ACTUATION_MODE_CREATE_AND_DELETE_IF_CREATED has the controller create// cluster namespaces for each fleet namespace and it deletes only the ones it// created, which are identified by a label.//   "ACTUATION_MODE_ADD_AND_REMOVE_FLEET_LABELS" -// ACTUATION_MODE_ADD_AND_REMOVE_FLEET_LABELS has the controller only apply// labels to cluster namespaces to signal fleet namespace enablement. It// doesn't create or delete cluster namespaces.ActuationModestring `json:"actuationMode,omitempty"`// ForceSendFields is a list of field names (e.g. "ActuationMode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ActuationMode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

NamespaceActuationFeatureSpec: An empty spec for actuation feature. This isrequired since Feature proto requires a spec.

func (NamespaceActuationFeatureSpec)MarshalJSONadded inv0.151.0

func (sNamespaceActuationFeatureSpec) MarshalJSON() ([]byte,error)

typeNamespaceActuationFeatureStateadded inv0.151.0

type NamespaceActuationFeatureState struct {}

NamespaceActuationFeatureState: NamespaceActuation Feature State.

typeNamespaceActuationMembershipSpecadded inv0.151.0

type NamespaceActuationMembershipSpec struct {}

NamespaceActuationMembershipSpec: **Namespace Actuation**: Themembership-specific input for NamespaceActuation feature.

typeNamespaceActuationMembershipStateadded inv0.151.0

type NamespaceActuationMembershipState struct {}

NamespaceActuationMembershipState: **Namespace Actuation**: An empty stateleft as an example membership-specific Feature state.

typeNamespaceLifecycleStateadded inv0.112.0

type NamespaceLifecycleState struct {// Code: Output only. The current state of the Namespace resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The namespace is being created.//   "READY" - The namespace active.//   "DELETING" - The namespace is being deleted.//   "UPDATING" - The namespace is being updated.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

NamespaceLifecycleState: NamespaceLifecycleState describes the state of aNamespace resource.

func (NamespaceLifecycleState)MarshalJSONadded inv0.112.0

func (sNamespaceLifecycleState) MarshalJSON() ([]byte,error)

typeOnPremClusteradded inv0.59.0

type OnPremCluster struct {// AdminCluster: Immutable. Whether the cluster is an admin cluster.AdminClusterbool `json:"adminCluster,omitempty"`// ClusterMissing: Output only. If cluster_missing is set then it denotes that// API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no// longer exists.ClusterMissingbool `json:"clusterMissing,omitempty"`// ClusterType: Immutable. The on prem cluster's type.//// Possible values://   "CLUSTERTYPE_UNSPECIFIED" - The ClusterType is not set.//   "BOOTSTRAP" - The ClusterType is bootstrap cluster.//   "HYBRID" - The ClusterType is baremetal hybrid cluster.//   "STANDALONE" - The ClusterType is baremetal standalone cluster.//   "USER" - The ClusterType is user cluster.ClusterTypestring `json:"clusterType,omitempty"`// ResourceLink: Immutable. Self-link of the Google Cloud resource for the GKE// On-Prem cluster. For example:// //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClu// sters/my-cluster// //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetal// Clusters/my-clusterResourceLinkstring `json:"resourceLink,omitempty"`// ForceSendFields is a list of field names (e.g. "AdminCluster") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdminCluster") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

OnPremCluster: OnPremCluster contains information specific to GKE On-Premclusters.

func (OnPremCluster)MarshalJSONadded inv0.59.0

func (sOnPremCluster) MarshalJSON() ([]byte,error)

typeOperation

type Operation struct {// Done: If the value is `false`, it means the operation is still in progress.// If `true`, the operation is completed, and either `error` or `response` is// available.Donebool `json:"done,omitempty"`// Error: The error result of the operation in case of failure or cancellation.Error *GoogleRpcStatus `json:"error,omitempty"`// Metadata: Service-specific metadata associated with the operation. It// typically contains progress information and common metadata such as create// time. Some services might not provide such metadata. Any method that returns// a long-running operation should document the metadata type, if any.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: The server-assigned name, which is only unique within the same service// that originally returns it. If you use the default HTTP mapping, the `name`// should be a resource name ending with `operations/{unique_id}`.Namestring `json:"name,omitempty"`// Response: The normal, successful response of the operation. If the original// method returns no data on success, such as `Delete`, the response is// `google.protobuf.Empty`. If the original method is standard// `Get`/`Create`/`Update`, the response should be the resource. For other// methods, the response should have the type `XxxResponse`, where `Xxx` is the// original method name. For example, if the original method name is// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.Responsegoogleapi.RawMessage `json:"response,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Done") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Done") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Operation: This resource represents a long-running operation that is theresult of a network API call.

func (Operation)MarshalJSON

func (sOperation) MarshalJSON() ([]byte,error)

typeOperationMetadata

type OperationMetadata struct {// ApiVersion: Output only. API version used to start the operation.ApiVersionstring `json:"apiVersion,omitempty"`// CancelRequested: Output only. Identifies whether the user has requested// cancellation of the operation. Operations that have successfully been// cancelled have google.longrunning.Operation.error value with a// google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.CancelRequestedbool `json:"cancelRequested,omitempty"`// CreateTime: Output only. The time the operation was created.CreateTimestring `json:"createTime,omitempty"`// EndTime: Output only. The time the operation finished running.EndTimestring `json:"endTime,omitempty"`// StatusDetail: Output only. Human-readable status of the operation, if any.StatusDetailstring `json:"statusDetail,omitempty"`// Target: Output only. Server-defined resource path for the target of the// operation.Targetstring `json:"target,omitempty"`// Verb: Output only. Name of the verb executed by the operation.Verbstring `json:"verb,omitempty"`// ForceSendFields is a list of field names (e.g. "ApiVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ApiVersion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

OperationMetadata: Represents the metadata of the long-running operation.

func (OperationMetadata)MarshalJSON

func (sOperationMetadata) MarshalJSON() ([]byte,error)

typeOrganizationsLocationsFleetsListCalladded inv0.73.0

type OrganizationsLocationsFleetsListCall struct {// contains filtered or unexported fields}

func (*OrganizationsLocationsFleetsListCall)Contextadded inv0.73.0

Context sets the context to be used in this call's Do method.

func (*OrganizationsLocationsFleetsListCall)Doadded inv0.73.0

Do executes the "gkehub.organizations.locations.fleets.list" call.Any non-2xx status code is an error. Response headers are in either*ListFleetsResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*OrganizationsLocationsFleetsListCall)Fieldsadded inv0.73.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*OrganizationsLocationsFleetsListCall)Headeradded inv0.73.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*OrganizationsLocationsFleetsListCall)IfNoneMatchadded inv0.73.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*OrganizationsLocationsFleetsListCall)PageSizeadded inv0.78.0

PageSize sets the optional parameter "pageSize": The maximum number offleets to return. The service may return fewer than this value. Ifunspecified, at most 200 fleets will be returned. The maximum value is 1000;values above 1000 will be coerced to 1000.

func (*OrganizationsLocationsFleetsListCall)PageTokenadded inv0.73.0

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListFleets` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListFleets` mustmatch the call that provided the page token.

func (*OrganizationsLocationsFleetsListCall)Pagesadded inv0.73.0

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.

typeOrganizationsLocationsFleetsServiceadded inv0.73.0

type OrganizationsLocationsFleetsService struct {// contains filtered or unexported fields}

funcNewOrganizationsLocationsFleetsServiceadded inv0.73.0

func NewOrganizationsLocationsFleetsService(s *Service) *OrganizationsLocationsFleetsService

func (*OrganizationsLocationsFleetsService)Listadded inv0.73.0

List: Returns all fleets within an organization or a project that the callerhas access to.

  • parent: The organization or project to list for Fleets under, in theformat `organizations/*/locations/*` or `projects/*/locations/*`.

typeOrganizationsLocationsServiceadded inv0.73.0

type OrganizationsLocationsService struct {Fleets *OrganizationsLocationsFleetsService// contains filtered or unexported fields}

funcNewOrganizationsLocationsServiceadded inv0.73.0

func NewOrganizationsLocationsService(s *Service) *OrganizationsLocationsService

typeOrganizationsServiceadded inv0.73.0

type OrganizationsService struct {Locations *OrganizationsLocationsService// contains filtered or unexported fields}

funcNewOrganizationsServiceadded inv0.73.0

func NewOrganizationsService(s *Service) *OrganizationsService

typeOriginadded inv0.129.0

type Origin struct {// Type: Type specifies which type of origin is set.//// Possible values://   "TYPE_UNSPECIFIED" - Type is unknown or not set.//   "FLEET" - Per-Membership spec was inherited from the fleet-level default.//   "FLEET_OUT_OF_SYNC" - Per-Membership spec was inherited from the// fleet-level default but is now out of sync with the current default.//   "USER" - Per-Membership spec was inherited from a user specification.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Type") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Type") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Origin: Origin defines where this MembershipFeatureSpec originated from.

func (Origin)MarshalJSONadded inv0.129.0

func (sOrigin) MarshalJSON() ([]byte,error)

typePolicy

type Policy struct {// AuditConfigs: Specifies cloud audit logging configuration for this policy.AuditConfigs []*AuditConfig `json:"auditConfigs,omitempty"`// Bindings: Associates a list of `members`, or principals, with a `role`.// Optionally, may specify a `condition` that determines how and when the// `bindings` are applied. Each of the `bindings` must contain at least one// principal. The `bindings` in a `Policy` can refer to up to 1,500 principals;// up to 250 of these principals can be Google groups. Each occurrence of a// principal counts towards these limits. For example, if the `bindings` grant// 50 different roles to `user:alice@example.com`, and not to any other// principal, then you can add another 1,450 principals to the `bindings` in// the `Policy`.Bindings []*Binding `json:"bindings,omitempty"`// Etag: `etag` is used for optimistic concurrency control as a way to help// prevent simultaneous updates of a policy from overwriting each other. It is// strongly suggested that systems make use of the `etag` in the// read-modify-write cycle to perform policy updates in order to avoid race// conditions: An `etag` is returned in the response to `getIamPolicy`, and// systems are expected to put that etag in the request to `setIamPolicy` to// ensure that their change will be applied to the same version of the policy.// **Important:** If you use IAM Conditions, you must include the `etag` field// whenever you call `setIamPolicy`. If you omit this field, then IAM allows// you to overwrite a version `3` policy with a version `1` policy, and all of// the conditions in the version `3` policy are lost.Etagstring `json:"etag,omitempty"`// Version: Specifies the format of the policy. Valid values are `0`, `1`, and// `3`. Requests that specify an invalid value are rejected. Any operation that// affects conditional role bindings must specify version `3`. This requirement// applies to the following operations: * Getting a policy that includes a// conditional role binding * Adding a conditional role binding to a policy *// Changing a conditional role binding in a policy * Removing any role binding,// with or without a condition, from a policy that includes conditions// **Important:** If you use IAM Conditions, you must include the `etag` field// whenever you call `setIamPolicy`. If you omit this field, then IAM allows// you to overwrite a version `3` policy with a version `1` policy, and all of// the conditions in the version `3` policy are lost. If a policy does not// include any conditions, operations on that policy may specify any valid// version or leave the field unset. To learn which resources support// conditions in their IAM policies, see the IAM documentation// (https://cloud.google.com/iam/help/conditions/resource-policies).Versionint64 `json:"version,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AuditConfigs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditConfigs") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Policy: An Identity and Access Management (IAM) policy, which specifiesaccess controls for Google Cloud resources. A `Policy` is a collection of`bindings`. A `binding` binds one or more `members`, or principals, to asingle `role`. Principals can be user accounts, service accounts, Googlegroups, and domains (such as G Suite). A `role` is a named list ofpermissions; each `role` can be an IAM predefined role or a user-createdcustom role. For some types of Google Cloud resources, a `binding` can alsospecify a `condition`, which is a logical expression that allows access to aresource only if the expression evaluates to `true`. A condition can addconstraints based on attributes of the request, the resource, or both. Tolearn which resources support conditions in their IAM policies, see the IAMdocumentation(https://cloud.google.com/iam/help/conditions/resource-policies). **JSONexample:** ``` { "bindings": [ { "role":"roles/resourcemanager.organizationAdmin", "members": ["user:mike@example.com", "group:admins@example.com", "domain:google.com","serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role":"roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com" ], "condition": { "title": "expirable access","description": "Does not grant access after Sep 2020", "expression":"request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag":"BwWWja0YfJA=", "version": 3 } ``` **YAML example:** ``` bindings: -members: - user:mike@example.com - group:admins@example.com -domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.comrole: roles/resourcemanager.organizationAdmin - members: -user:eve@example.com role: roles/resourcemanager.organizationViewercondition: title: expirable access description: Does not grant access afterSep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z')etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features,see the IAM documentation (https://cloud.google.com/iam/docs/).

func (Policy)MarshalJSON

func (sPolicy) MarshalJSON() ([]byte,error)

typePolicyBindingadded inv0.152.0

type PolicyBinding struct {// Name: The relative resource name of the binauthz platform policy to audit.// GKE platform policies have the following format:// `projects/{project_number}/platforms/gke/policies/{policy_id}`.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyBinding: Binauthz policy that applies to this cluster.

func (PolicyBinding)MarshalJSONadded inv0.152.0

func (sPolicyBinding) MarshalJSON() ([]byte,error)

typePolicyControllerBundleInstallSpecadded inv0.109.0

type PolicyControllerBundleInstallSpec struct {// ExemptedNamespaces: The set of namespaces to be exempted from the bundle.ExemptedNamespaces []string `json:"exemptedNamespaces,omitempty"`// ForceSendFields is a list of field names (e.g. "ExemptedNamespaces") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExemptedNamespaces") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerBundleInstallSpec: BundleInstallSpec is the specificationconfiguration for a single managed bundle.

func (PolicyControllerBundleInstallSpec)MarshalJSONadded inv0.109.0

func (sPolicyControllerBundleInstallSpec) MarshalJSON() ([]byte,error)

typePolicyControllerHubConfigadded inv0.73.0

type PolicyControllerHubConfig struct {// AuditIntervalSeconds: Sets the interval for Policy Controller Audit Scans// (in seconds). When set to 0, this disables audit functionality altogether.AuditIntervalSecondsint64 `json:"auditIntervalSeconds,omitempty,string"`// ConstraintViolationLimit: The maximum number of audit violations to be// stored in a constraint. If not set, the internal default (currently 20) will// be used.ConstraintViolationLimitint64 `json:"constraintViolationLimit,omitempty,string"`// DeploymentConfigs: Map of deployment configs to deployments ("admission",// "audit", "mutation').DeploymentConfigs map[string]PolicyControllerPolicyControllerDeploymentConfig `json:"deploymentConfigs,omitempty"`// ExemptableNamespaces: The set of namespaces that are excluded from Policy// Controller checks. Namespaces do not need to currently exist on the cluster.ExemptableNamespaces []string `json:"exemptableNamespaces,omitempty"`// InstallSpec: The install_spec represents the intended state specified by the// latest request that mutated install_spec in the feature spec, not the// lifecycle state of the feature observed by the Hub feature controller that// is reported in the feature state.//// Possible values://   "INSTALL_SPEC_UNSPECIFIED" - Spec is unknown.//   "INSTALL_SPEC_NOT_INSTALLED" - Request to uninstall Policy Controller.//   "INSTALL_SPEC_ENABLED" - Request to install and enable Policy Controller.//   "INSTALL_SPEC_SUSPENDED" - Request to suspend Policy Controller i.e. its// webhooks. If Policy Controller is not installed, it will be installed but// suspended.//   "INSTALL_SPEC_DETACHED" - Request to stop all reconciliation actions by// PoCo Hub controller. This is a breakglass mechanism to stop PoCo Hub from// affecting cluster resources.InstallSpecstring `json:"installSpec,omitempty"`// LogDeniesEnabled: Logs all denies and dry run failures.LogDeniesEnabledbool `json:"logDeniesEnabled,omitempty"`// Monitoring: Monitoring specifies the configuration of monitoring.Monitoring *PolicyControllerMonitoringConfig `json:"monitoring,omitempty"`// MutationEnabled: Enables the ability to mutate resources using Policy// Controller.MutationEnabledbool `json:"mutationEnabled,omitempty"`// PolicyContent: Specifies the desired policy content on the clusterPolicyContent *PolicyControllerPolicyContentSpec `json:"policyContent,omitempty"`// ReferentialRulesEnabled: Enables the ability to use Constraint Templates// that reference to objects other than the object currently being evaluated.ReferentialRulesEnabledbool `json:"referentialRulesEnabled,omitempty"`// ForceSendFields is a list of field names (e.g. "AuditIntervalSeconds") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditIntervalSeconds") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerHubConfig: Configuration for Policy Controller

func (PolicyControllerHubConfig)MarshalJSONadded inv0.73.0

func (sPolicyControllerHubConfig) MarshalJSON() ([]byte,error)

typePolicyControllerMembershipSpecadded inv0.69.0

type PolicyControllerMembershipSpec struct {// PolicyControllerHubConfig: Policy Controller configuration for the cluster.PolicyControllerHubConfig *PolicyControllerHubConfig `json:"policyControllerHubConfig,omitempty"`// Version: Version of Policy Controller installed.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "PolicyControllerHubConfig")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PolicyControllerHubConfig") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerMembershipSpec: **Policy Controller**: Configuration for asingle cluster. Intended to parallel the PolicyController CR.

func (PolicyControllerMembershipSpec)MarshalJSONadded inv0.69.0

func (sPolicyControllerMembershipSpec) MarshalJSON() ([]byte,error)

typePolicyControllerMembershipStateadded inv0.69.0

type PolicyControllerMembershipState struct {// ComponentStates: Currently these include (also serving as map keys): 1.// "admission" 2. "audit" 3. "mutation"ComponentStates map[string]PolicyControllerOnClusterState `json:"componentStates,omitempty"`// PolicyContentState: The overall content state observed by the Hub Feature// controller.PolicyContentState *PolicyControllerPolicyContentState `json:"policyContentState,omitempty"`// State: The overall Policy Controller lifecycle state observed by the Hub// Feature controller.//// Possible values://   "LIFECYCLE_STATE_UNSPECIFIED" - The lifecycle state is unspecified.//   "NOT_INSTALLED" - The PC does not exist on the given cluster, and no k8s// resources of any type that are associated with the PC should exist there.// The cluster does not possess a membership with the PCH.//   "INSTALLING" - The PCH possesses a Membership, however the PC is not fully// installed on the cluster. In this state the hub can be expected to be taking// actions to install the PC on the cluster.//   "ACTIVE" - The PC is fully installed on the cluster and in an operational// mode. In this state PCH will be reconciling state with the PC, and the PC// will be performing it's operational tasks per that software. Entering a// READY state requires that the hub has confirmed the PC is installed and its// pods are operational with the version of the PC the PCH expects.//   "UPDATING" - The PC is fully installed, but in the process of changing the// configuration (including changing the version of PC either up and down, or// modifying the manifests of PC) of the resources running on the cluster. The// PCH has a Membership, is aware of the version the cluster should be running// in, but has not confirmed for itself that the PC is running with that// version.//   "DECOMMISSIONING" - The PC may have resources on the cluster, but the PCH// wishes to remove the Membership. The Membership still exists.//   "CLUSTER_ERROR" - The PC is not operational, and the PCH is unable to act// to make it operational. Entering a CLUSTER_ERROR state happens automatically// when the PCH determines that a PC installed on the cluster is non-operative// or that the cluster does not meet requirements set for the PCH to administer// the cluster but has nevertheless been given an instruction to do so (such as// 'install').//   "HUB_ERROR" - In this state, the PC may still be operational, and only the// PCH is unable to act. The hub should not issue instructions to change the PC// state, or otherwise interfere with the on-cluster resources. Entering a// HUB_ERROR state happens automatically when the PCH determines the hub is in// an unhealthy state and it wishes to 'take hands off' to avoid corrupting the// PC or other data.//   "SUSPENDED" - Policy Controller (PC) is installed but suspended. This// means that the policies are not enforced, but violations are still recorded// (through audit).//   "DETACHED" - PoCo Hub is not taking any action to reconcile cluster// objects. Changes to those objects will not be overwritten by PoCo Hub.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "ComponentStates") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ComponentStates") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerMembershipState: **Policy Controller**: State for a singlecluster.

func (PolicyControllerMembershipState)MarshalJSONadded inv0.69.0

func (sPolicyControllerMembershipState) MarshalJSON() ([]byte,error)

typePolicyControllerMonitoringConfigadded inv0.86.0

type PolicyControllerMonitoringConfig struct {// Backends: Specifies the list of backends Policy Controller will export to.// An empty list would effectively disable metrics export.//// Possible values://   "MONITORING_BACKEND_UNSPECIFIED" - Backend cannot be determined//   "PROMETHEUS" - Prometheus backend for monitoring//   "CLOUD_MONITORING" - Stackdriver/Cloud Monitoring backend for monitoringBackends []string `json:"backends,omitempty"`// ForceSendFields is a list of field names (e.g. "Backends") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Backends") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerMonitoringConfig: MonitoringConfig specifies the backendsPolicy Controller should export metrics to. For example, to specify metricsshould be exported to Cloud Monitoring and Prometheus, specify backends:["cloudmonitoring", "prometheus"]

func (PolicyControllerMonitoringConfig)MarshalJSONadded inv0.86.0

func (sPolicyControllerMonitoringConfig) MarshalJSON() ([]byte,error)

typePolicyControllerOnClusterStateadded inv0.93.0

type PolicyControllerOnClusterState struct {// Details: Surface potential errors or information logs.Detailsstring `json:"details,omitempty"`// State: The lifecycle state of this component.//// Possible values://   "LIFECYCLE_STATE_UNSPECIFIED" - The lifecycle state is unspecified.//   "NOT_INSTALLED" - The PC does not exist on the given cluster, and no k8s// resources of any type that are associated with the PC should exist there.// The cluster does not possess a membership with the PCH.//   "INSTALLING" - The PCH possesses a Membership, however the PC is not fully// installed on the cluster. In this state the hub can be expected to be taking// actions to install the PC on the cluster.//   "ACTIVE" - The PC is fully installed on the cluster and in an operational// mode. In this state PCH will be reconciling state with the PC, and the PC// will be performing it's operational tasks per that software. Entering a// READY state requires that the hub has confirmed the PC is installed and its// pods are operational with the version of the PC the PCH expects.//   "UPDATING" - The PC is fully installed, but in the process of changing the// configuration (including changing the version of PC either up and down, or// modifying the manifests of PC) of the resources running on the cluster. The// PCH has a Membership, is aware of the version the cluster should be running// in, but has not confirmed for itself that the PC is running with that// version.//   "DECOMMISSIONING" - The PC may have resources on the cluster, but the PCH// wishes to remove the Membership. The Membership still exists.//   "CLUSTER_ERROR" - The PC is not operational, and the PCH is unable to act// to make it operational. Entering a CLUSTER_ERROR state happens automatically// when the PCH determines that a PC installed on the cluster is non-operative// or that the cluster does not meet requirements set for the PCH to administer// the cluster but has nevertheless been given an instruction to do so (such as// 'install').//   "HUB_ERROR" - In this state, the PC may still be operational, and only the// PCH is unable to act. The hub should not issue instructions to change the PC// state, or otherwise interfere with the on-cluster resources. Entering a// HUB_ERROR state happens automatically when the PCH determines the hub is in// an unhealthy state and it wishes to 'take hands off' to avoid corrupting the// PC or other data.//   "SUSPENDED" - Policy Controller (PC) is installed but suspended. This// means that the policies are not enforced, but violations are still recorded// (through audit).//   "DETACHED" - PoCo Hub is not taking any action to reconcile cluster// objects. Changes to those objects will not be overwritten by PoCo Hub.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "Details") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Details") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerOnClusterState: OnClusterState represents the state of asub-component of Policy Controller.

func (PolicyControllerOnClusterState)MarshalJSONadded inv0.93.0

func (sPolicyControllerOnClusterState) MarshalJSON() ([]byte,error)

typePolicyControllerPolicyContentSpecadded inv0.109.0

type PolicyControllerPolicyContentSpec struct {// Bundles: map of bundle name to BundleInstallSpec. The bundle name maps to// the `bundleName` key in the `policycontroller.gke.io/constraintData`// annotation on a constraint.Bundles map[string]PolicyControllerBundleInstallSpec `json:"bundles,omitempty"`// TemplateLibrary: Configures the installation of the Template Library.TemplateLibrary *PolicyControllerTemplateLibraryConfig `json:"templateLibrary,omitempty"`// ForceSendFields is a list of field names (e.g. "Bundles") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Bundles") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerPolicyContentSpec: PolicyContentSpec defines the user'sdesired content configuration on the cluster.

func (PolicyControllerPolicyContentSpec)MarshalJSONadded inv0.109.0

func (sPolicyControllerPolicyContentSpec) MarshalJSON() ([]byte,error)

typePolicyControllerPolicyContentStateadded inv0.115.0

type PolicyControllerPolicyContentState struct {// BundleStates: The state of the any bundles included in the chosen version of// the manifestBundleStates map[string]PolicyControllerOnClusterState `json:"bundleStates,omitempty"`// ReferentialSyncConfigState: The state of the referential data sync// configuration. This could represent the state of either the syncSet// object(s) or the config object, depending on the version of PoCo configured// by the user.ReferentialSyncConfigState *PolicyControllerOnClusterState `json:"referentialSyncConfigState,omitempty"`// TemplateLibraryState: The state of the template libraryTemplateLibraryState *PolicyControllerOnClusterState `json:"templateLibraryState,omitempty"`// ForceSendFields is a list of field names (e.g. "BundleStates") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BundleStates") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerPolicyContentState: The state of the policy controllerpolicy content

func (PolicyControllerPolicyContentState)MarshalJSONadded inv0.115.0

typePolicyControllerPolicyControllerDeploymentConfigadded inv0.110.0

type PolicyControllerPolicyControllerDeploymentConfig struct {// ContainerResources: Container resource requirements.ContainerResources *PolicyControllerResourceRequirements `json:"containerResources,omitempty"`// PodAffinity: Pod affinity configuration.//// Possible values://   "AFFINITY_UNSPECIFIED" - No affinity configuration has been specified.//   "NO_AFFINITY" - Affinity configurations will be removed from the// deployment.//   "ANTI_AFFINITY" - Anti-affinity configuration will be applied to this// deployment. Default for admissions deployment.PodAffinitystring `json:"podAffinity,omitempty"`// PodAntiAffinity: Pod anti-affinity enablement. Deprecated: use// `pod_affinity` instead.PodAntiAffinitybool `json:"podAntiAffinity,omitempty"`// PodTolerations: Pod tolerations of node taints.PodTolerations []*PolicyControllerToleration `json:"podTolerations,omitempty"`// ReplicaCount: Pod replica count.ReplicaCountint64 `json:"replicaCount,omitempty,string"`// ForceSendFields is a list of field names (e.g. "ContainerResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContainerResources") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerPolicyControllerDeploymentConfig: Deployment-specificconfiguration.

func (PolicyControllerPolicyControllerDeploymentConfig)MarshalJSONadded inv0.110.0

typePolicyControllerResourceListadded inv0.110.0

type PolicyControllerResourceList struct {// Cpu: CPU requirement expressed in Kubernetes resource units.Cpustring `json:"cpu,omitempty"`// Memory: Memory requirement expressed in Kubernetes resource units.Memorystring `json:"memory,omitempty"`// ForceSendFields is a list of field names (e.g. "Cpu") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cpu") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerResourceList: ResourceList contains container resourcerequirements.

func (PolicyControllerResourceList)MarshalJSONadded inv0.110.0

func (sPolicyControllerResourceList) MarshalJSON() ([]byte,error)

typePolicyControllerResourceRequirementsadded inv0.110.0

type PolicyControllerResourceRequirements struct {// Limits: Limits describes the maximum amount of compute resources allowed for// use by the running container.Limits *PolicyControllerResourceList `json:"limits,omitempty"`// Requests: Requests describes the amount of compute resources reserved for// the container by the kube-scheduler.Requests *PolicyControllerResourceList `json:"requests,omitempty"`// ForceSendFields is a list of field names (e.g. "Limits") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Limits") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerResourceRequirements: ResourceRequirements describes thecompute resource requirements.

func (PolicyControllerResourceRequirements)MarshalJSONadded inv0.110.0

typePolicyControllerTemplateLibraryConfigadded inv0.69.0

type PolicyControllerTemplateLibraryConfig struct {// Installation: Configures the manner in which the template library is// installed on the cluster.//// Possible values://   "INSTALLATION_UNSPECIFIED" - No installation strategy has been specified.//   "NOT_INSTALLED" - Do not install the template library.//   "ALL" - Install the entire template library.Installationstring `json:"installation,omitempty"`// ForceSendFields is a list of field names (e.g. "Installation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Installation") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerTemplateLibraryConfig: The config specifying which defaultlibrary templates to install.

func (PolicyControllerTemplateLibraryConfig)MarshalJSONadded inv0.69.0

typePolicyControllerTolerationadded inv0.112.0

type PolicyControllerToleration struct {// Effect: Matches a taint effect.Effectstring `json:"effect,omitempty"`// Key: Matches a taint key (not necessarily unique).Keystring `json:"key,omitempty"`// Operator: Matches a taint operator.Operatorstring `json:"operator,omitempty"`// Value: Matches a taint value.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Effect") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Effect") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

PolicyControllerToleration: Toleration of a node taint.

func (PolicyControllerToleration)MarshalJSONadded inv0.112.0

func (sPolicyControllerToleration) MarshalJSON() ([]byte,error)

typeProjectsLocationsFeaturesCreateCalladded inv0.46.0

type ProjectsLocationsFeaturesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesCreateCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesCreateCall)Doadded inv0.46.0

Do executes the "gkehub.projects.locations.features.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesCreateCall)FeatureIdadded inv0.46.0

FeatureId sets the optional parameter "featureId": The ID of the feature tocreate.

func (*ProjectsLocationsFeaturesCreateCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesCreateCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesCreateCall)RequestIdadded inv0.46.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

typeProjectsLocationsFeaturesDeleteCalladded inv0.46.0

type ProjectsLocationsFeaturesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesDeleteCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesDeleteCall)Doadded inv0.46.0

Do executes the "gkehub.projects.locations.features.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesDeleteCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesDeleteCall)Forceadded inv0.46.0

Force sets the optional parameter "force": If set to true, the delete willignore any outstanding resources for this Feature (that is,`FeatureState.has_resources` is set to true). These resources will NOT becleaned up or modified in any way.

func (*ProjectsLocationsFeaturesDeleteCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesDeleteCall)RequestIdadded inv0.46.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

typeProjectsLocationsFeaturesGetCalladded inv0.46.0

type ProjectsLocationsFeaturesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesGetCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesGetCall)Doadded inv0.46.0

Do executes the "gkehub.projects.locations.features.get" call.Any non-2xx status code is an error. Response headers are in either*Feature.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesGetCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesGetCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesGetCall)IfNoneMatchadded inv0.46.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsFeaturesGetCall)ReturnPartialSuccessadded inv0.191.0

func (c *ProjectsLocationsFeaturesGetCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsLocationsFeaturesGetCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess": Ifset to true, the response will return partial results when some regions areunreachable and the unreachable field in Feature proto will be populated. Ifset to false, the request will fail when some regions are unreachable.

typeProjectsLocationsFeaturesGetIamPolicyCall

type ProjectsLocationsFeaturesGetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesGetIamPolicyCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesGetIamPolicyCall)Do

Do executes the "gkehub.projects.locations.features.getIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesGetIamPolicyCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesGetIamPolicyCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesGetIamPolicyCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsFeaturesGetIamPolicyCall)OptionsRequestedPolicyVersion

func (c *ProjectsLocationsFeaturesGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsLocationsFeaturesGetIamPolicyCall

OptionsRequestedPolicyVersion sets the optional parameter"options.requestedPolicyVersion": The maximum policy version that will beused to format the policy. Valid values are 0, 1, and 3. Requests specifyingan invalid value will be rejected. Requests for policies with anyconditional role bindings must specify version 3. Policies with noconditional role bindings may specify any valid value or leave the fieldunset. The policy in the response might use the policy version that youspecified, or it might use a lower policy version. For example, if youspecify version 3, but the policy has no conditional role bindings, theresponse uses version 1. To learn which resources support conditions intheir IAM policies, see the IAM documentation(https://cloud.google.com/iam/help/conditions/resource-policies).

typeProjectsLocationsFeaturesListCalladded inv0.46.0

type ProjectsLocationsFeaturesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesListCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesListCall)Doadded inv0.46.0

Do executes the "gkehub.projects.locations.features.list" call.Any non-2xx status code is an error. Response headers are in either*ListFeaturesResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsFeaturesListCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesListCall)Filteradded inv0.46.0

Filter sets the optional parameter "filter": Lists Features that match thefilter expression, following the syntax outlined inhttps://google.aip.dev/160. Examples: - Feature with the name "servicemesh"in project "foo-proj": name ="projects/foo-proj/locations/global/features/servicemesh" - Features thathave a label called `foo`: labels.foo:* - Features that have a label called`foo` whose value is `bar`: labels.foo = bar

func (*ProjectsLocationsFeaturesListCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesListCall)IfNoneMatchadded inv0.46.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsFeaturesListCall)OrderByadded inv0.46.0

OrderBy sets the optional parameter "orderBy": One or more fields to compareand use to sort the output. Seehttps://google.aip.dev/132#ordering.

func (*ProjectsLocationsFeaturesListCall)PageSizeadded inv0.46.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsFeaturesListCall)PageTokenadded inv0.46.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListFeatures` which specifies the position in the listfrom where to continue listing the resources.

func (*ProjectsLocationsFeaturesListCall)Pagesadded inv0.46.0

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.

func (*ProjectsLocationsFeaturesListCall)ReturnPartialSuccessadded inv0.191.0

func (c *ProjectsLocationsFeaturesListCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsLocationsFeaturesListCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess": Ifset to true, the response will return partial results when some regions areunreachable and the unreachable field in Feature proto will be populated. Ifset to false, the request will fail when some regions are unreachable.

typeProjectsLocationsFeaturesPatchCalladded inv0.46.0

type ProjectsLocationsFeaturesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesPatchCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesPatchCall)Doadded inv0.46.0

Do executes the "gkehub.projects.locations.features.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesPatchCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesPatchCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFeaturesPatchCall)RequestIdadded inv0.46.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsFeaturesPatchCall)UpdateMaskadded inv0.46.0

UpdateMask sets the optional parameter "updateMask": Mask of fields toupdate.

typeProjectsLocationsFeaturesService

type ProjectsLocationsFeaturesService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsFeaturesService

func NewProjectsLocationsFeaturesService(s *Service) *ProjectsLocationsFeaturesService

func (*ProjectsLocationsFeaturesService)Createadded inv0.46.0

Create: Adds a new Feature.

  • parent: The parent (project and location) where the Feature will becreated. Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsFeaturesService)Deleteadded inv0.46.0

Delete: Removes a Feature.

  • name: The Feature resource name in the format`projects/*/locations/*/features/*`.

func (*ProjectsLocationsFeaturesService)Getadded inv0.46.0

Get: Gets details of a single Feature.

  • name: The Feature resource name in the format`projects/*/locations/*/features/*`.

func (*ProjectsLocationsFeaturesService)GetIamPolicy

GetIamPolicy: Gets the access control policy for a resource. Returns anempty policy if the resource exists and does not have a policy set.

func (*ProjectsLocationsFeaturesService)Listadded inv0.46.0

List: Lists Features in a given project and location.

  • parent: The parent (project and location) where the Features will belisted. Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsFeaturesService)Patchadded inv0.46.0

Patch: Updates an existing Feature.

  • name: The Feature resource name in the format`projects/*/locations/*/features/*`.

func (*ProjectsLocationsFeaturesService)SetIamPolicy

SetIamPolicy: Sets the access control policy on the specified resource.Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`,and `PERMISSION_DENIED` errors.

func (*ProjectsLocationsFeaturesService)TestIamPermissions

TestIamPermissions: Returns permissions that a caller has on the specifiedresource. If the resource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to beused for building permission-aware UIs and command-line tools, not forauthorization checking. This operation may "fail open" without warning.

typeProjectsLocationsFeaturesSetIamPolicyCall

type ProjectsLocationsFeaturesSetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesSetIamPolicyCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesSetIamPolicyCall)Do

Do executes the "gkehub.projects.locations.features.setIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesSetIamPolicyCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesSetIamPolicyCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsFeaturesTestIamPermissionsCall

type ProjectsLocationsFeaturesTestIamPermissionsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFeaturesTestIamPermissionsCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFeaturesTestIamPermissionsCall)Do

Do executes the "gkehub.projects.locations.features.testIamPermissions" call.Any non-2xx status code is an error. Response headers are in either*TestIamPermissionsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsFeaturesTestIamPermissionsCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFeaturesTestIamPermissionsCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsFleetsCreateCalladded inv0.61.0

type ProjectsLocationsFleetsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFleetsCreateCall)Contextadded inv0.61.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFleetsCreateCall)Doadded inv0.61.0

Do executes the "gkehub.projects.locations.fleets.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFleetsCreateCall)Fieldsadded inv0.61.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFleetsCreateCall)Headeradded inv0.61.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsFleetsDeleteCalladded inv0.61.0

type ProjectsLocationsFleetsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFleetsDeleteCall)Contextadded inv0.61.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFleetsDeleteCall)Doadded inv0.61.0

Do executes the "gkehub.projects.locations.fleets.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFleetsDeleteCall)Fieldsadded inv0.61.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFleetsDeleteCall)Headeradded inv0.61.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsFleetsGetCalladded inv0.61.0

type ProjectsLocationsFleetsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFleetsGetCall)Contextadded inv0.61.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFleetsGetCall)Doadded inv0.61.0

Do executes the "gkehub.projects.locations.fleets.get" call.Any non-2xx status code is an error. Response headers are in either*Fleet.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFleetsGetCall)Fieldsadded inv0.61.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFleetsGetCall)Headeradded inv0.61.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFleetsGetCall)IfNoneMatchadded inv0.61.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsFleetsListCalladded inv0.73.0

type ProjectsLocationsFleetsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFleetsListCall)Contextadded inv0.73.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFleetsListCall)Doadded inv0.73.0

Do executes the "gkehub.projects.locations.fleets.list" call.Any non-2xx status code is an error. Response headers are in either*ListFleetsResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsFleetsListCall)Fieldsadded inv0.73.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFleetsListCall)Headeradded inv0.73.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFleetsListCall)IfNoneMatchadded inv0.73.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsFleetsListCall)PageSizeadded inv0.78.0

PageSize sets the optional parameter "pageSize": The maximum number offleets to return. The service may return fewer than this value. Ifunspecified, at most 200 fleets will be returned. The maximum value is 1000;values above 1000 will be coerced to 1000.

func (*ProjectsLocationsFleetsListCall)PageTokenadded inv0.73.0

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListFleets` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListFleets` mustmatch the call that provided the page token.

func (*ProjectsLocationsFleetsListCall)Pagesadded inv0.73.0

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.

typeProjectsLocationsFleetsPatchCalladded inv0.61.0

type ProjectsLocationsFleetsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsFleetsPatchCall)Contextadded inv0.61.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsFleetsPatchCall)Doadded inv0.61.0

Do executes the "gkehub.projects.locations.fleets.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsFleetsPatchCall)Fieldsadded inv0.61.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsFleetsPatchCall)Headeradded inv0.61.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsFleetsPatchCall)UpdateMaskadded inv0.61.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated;

typeProjectsLocationsFleetsServiceadded inv0.61.0

type ProjectsLocationsFleetsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsFleetsServiceadded inv0.61.0

func NewProjectsLocationsFleetsService(s *Service) *ProjectsLocationsFleetsService

func (*ProjectsLocationsFleetsService)Createadded inv0.61.0

Create: Creates a fleet.

  • parent: The parent (project and location) where the Fleet will be created.Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsFleetsService)Deleteadded inv0.61.0

Delete: Removes a Fleet. There must be no memberships remaining in theFleet.

  • name: The Fleet resource name in the format`projects/*/locations/*/fleets/*`.

func (*ProjectsLocationsFleetsService)Getadded inv0.61.0

Get: Returns the details of a fleet.

  • name: The Fleet resource name in the format`projects/*/locations/*/fleets/*`.

func (*ProjectsLocationsFleetsService)Listadded inv0.73.0

List: Returns all fleets within an organization or a project that the callerhas access to.

  • parent: The organization or project to list for Fleets under, in theformat `organizations/*/locations/*` or `projects/*/locations/*`.

func (*ProjectsLocationsFleetsService)Patchadded inv0.61.0

Patch: Updates a fleet.

  • name: Output only. The full, unique resource name of this fleet in theformat of `projects/{project}/locations/{location}/fleets/{fleet}`. EachGoogle Cloud project can have at most one fleet resource, named "default".

typeProjectsLocationsGetCall

type ProjectsLocationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsGetCall)Do

Do executes the "gkehub.projects.locations.get" call.Any non-2xx status code is an error. Response headers are in either*Location.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsListCall

type ProjectsLocationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsListCall)Do

Do executes the "gkehub.projects.locations.list" call.Any non-2xx status code is an error. Response headers are in either*ListLocationsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsListCall)ExtraLocationTypesadded inv0.229.0

func (c *ProjectsLocationsListCall) ExtraLocationTypes(extraLocationTypes ...string) *ProjectsLocationsListCall

ExtraLocationTypes sets the optional parameter "extraLocationTypes": Do notuse this field. It is unsupported and is ignored unless explicitlydocumented otherwise. This is primarily for internal usage.

func (*ProjectsLocationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsListCall)Filter

Filter sets the optional parameter "filter": A filter to narrow down resultsto a preferred subset. The filtering language accepts strings like"displayName=tokyo", and is documented in more detail in AIP-160(https://google.aip.dev/160).

func (*ProjectsLocationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number ofresults to return. If not set, the service selects a default.

func (*ProjectsLocationsListCall)PageToken

PageToken sets the optional parameter "pageToken": A page token receivedfrom the `next_page_token` field in the response. Send that page token toreceive the subsequent page.

func (*ProjectsLocationsListCall)Pages

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.

typeProjectsLocationsMembershipsBindingsCreateCalladded inv0.112.0

type ProjectsLocationsMembershipsBindingsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsBindingsCreateCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsBindingsCreateCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.memberships.bindings.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsBindingsCreateCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsBindingsCreateCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsBindingsCreateCall)MembershipBindingIdadded inv0.112.0

MembershipBindingId sets the optional parameter "membershipBindingId":Required. The ID to use for the MembershipBinding.

typeProjectsLocationsMembershipsBindingsDeleteCalladded inv0.112.0

type ProjectsLocationsMembershipsBindingsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsBindingsDeleteCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsBindingsDeleteCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.memberships.bindings.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsBindingsDeleteCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsBindingsDeleteCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsMembershipsBindingsGetCalladded inv0.112.0

type ProjectsLocationsMembershipsBindingsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsBindingsGetCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsBindingsGetCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.memberships.bindings.get" call.Any non-2xx status code is an error. Response headers are in either*MembershipBinding.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsMembershipsBindingsGetCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsBindingsGetCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsBindingsGetCall)IfNoneMatchadded inv0.112.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsMembershipsBindingsListCalladded inv0.112.0

type ProjectsLocationsMembershipsBindingsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsBindingsListCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsBindingsListCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.memberships.bindings.list" call.Any non-2xx status code is an error. Response headers are in either*ListMembershipBindingsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsBindingsListCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsBindingsListCall)Filteradded inv0.125.0

Filter sets the optional parameter "filter": Lists MembershipBindings thatmatch the filter expression, following the syntax outlined inhttps://google.aip.dev/160.

func (*ProjectsLocationsMembershipsBindingsListCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsBindingsListCall)IfNoneMatchadded inv0.112.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsBindingsListCall)PageSizeadded inv0.112.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsMembershipsBindingsListCall)PageTokenadded inv0.112.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListMembershipBindings` which specifies the position inthe list from where to continue listing the resources.

func (*ProjectsLocationsMembershipsBindingsListCall)Pagesadded inv0.112.0

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.

typeProjectsLocationsMembershipsBindingsPatchCalladded inv0.112.0

type ProjectsLocationsMembershipsBindingsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsBindingsPatchCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsBindingsPatchCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.memberships.bindings.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsBindingsPatchCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsBindingsPatchCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsBindingsPatchCall)UpdateMaskadded inv0.112.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated.

typeProjectsLocationsMembershipsBindingsServiceadded inv0.112.0

type ProjectsLocationsMembershipsBindingsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsMembershipsBindingsServiceadded inv0.112.0

func NewProjectsLocationsMembershipsBindingsService(s *Service) *ProjectsLocationsMembershipsBindingsService

func (*ProjectsLocationsMembershipsBindingsService)Createadded inv0.112.0

Create: Creates a MembershipBinding.

  • parent: The parent (project and location) where the MembershipBinding willbe created. Specified in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsBindingsService)Deleteadded inv0.112.0

Delete: Deletes a MembershipBinding.

  • name: The MembershipBinding resource name in the format`projects/*/locations/*/memberships/*/bindings/*`.

func (*ProjectsLocationsMembershipsBindingsService)Getadded inv0.112.0

Get: Returns the details of a MembershipBinding.

  • name: The MembershipBinding resource name in the format`projects/*/locations/*/memberships/*/bindings/*`.

func (*ProjectsLocationsMembershipsBindingsService)Listadded inv0.112.0

List: Lists MembershipBindings.

  • parent: The parent Membership for which the MembershipBindings will belisted. Specified in the format `projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsBindingsService)Patchadded inv0.112.0

Patch: Updates a MembershipBinding.

  • name: The resource name for the membershipbinding itself`projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}`.

typeProjectsLocationsMembershipsCreateCalladded inv0.60.0

type ProjectsLocationsMembershipsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsCreateCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsCreateCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsCreateCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsCreateCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsCreateCall)MembershipIdadded inv0.60.0

MembershipId sets the optional parameter "membershipId": Required. Clientchosen ID for the membership. `membership_id` must be a validRFC 1123compliant DNS label: 1. At most 63 characters in length 2. It must consistof lower case alphanumeric characters or `-` 3. It must start and end withan alphanumeric character Which can be expressed as the regex:`[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.

func (*ProjectsLocationsMembershipsCreateCall)RequestIdadded inv0.60.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

typeProjectsLocationsMembershipsDeleteCalladded inv0.60.0

type ProjectsLocationsMembershipsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsDeleteCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsDeleteCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsDeleteCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsDeleteCall)Forceadded inv0.112.0

Force sets the optional parameter "force": If set to true, any subresourcefrom this Membership will also be deleted. Otherwise, the request will onlywork if the Membership has no subresource.

func (*ProjectsLocationsMembershipsDeleteCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsDeleteCall)RequestIdadded inv0.60.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

typeProjectsLocationsMembershipsGenerateConnectManifestCalladded inv0.60.0

type ProjectsLocationsMembershipsGenerateConnectManifestCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.generateConnectManifest" call.Any non-2xx status code is an error. Response headers are in either*GenerateConnectManifestResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)IfNoneMatchadded inv0.60.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)ImagePullSecretContentadded inv0.60.0

ImagePullSecretContent sets the optional parameter "imagePullSecretContent":The image pull secret content for the registry, if not public.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)IsUpgradeadded inv0.60.0

IsUpgrade sets the optional parameter "isUpgrade": If true, generate theresources for upgrade only. Some resources generated only for installation(e.g. secrets) will be excluded.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Namespaceadded inv0.60.0

Namespace sets the optional parameter "namespace": Namespace for GKE Connectagent resources. Defaults to `gke-connect`. The Connect Agent is authorizedautomatically when run in the default namespace. Otherwise, explicitauthorization must be granted with an additional IAM binding.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Proxyadded inv0.60.0

Proxy sets the optional parameter "proxy": URI of a proxy if connectivityfrom the agent to gkeconnect.googleapis.com requires the use of a proxy.Format must be in the form `http(s)://{proxy_address}`, depending on theHTTP/HTTPS protocol supported by the proxy. This will direct the connectagent's outbound traffic through a HTTP(S) proxy.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Registryadded inv0.60.0

Registry sets the optional parameter "registry": The registry to fetch theconnect agent image from. Defaults to gcr.io/gkeconnect.

func (*ProjectsLocationsMembershipsGenerateConnectManifestCall)Versionadded inv0.60.0

Version sets the optional parameter "version": The Connect agent version touse. Defaults to the most current version.

typeProjectsLocationsMembershipsGenerateExclusivityManifestCalladded inv0.198.0

type ProjectsLocationsMembershipsGenerateExclusivityManifestCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)Contextadded inv0.198.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)CrManifestadded inv0.198.0

CrManifest sets the optional parameter "crManifest": The YAML manifest ofthe membership CR retrieved by `kubectl get memberships membership`. Leaveempty if the resource does not exist.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)CrdManifestadded inv0.198.0

CrdManifest sets the optional parameter "crdManifest": The YAML manifest ofthe membership CRD retrieved by `kubectl get customresourcedefinitionsmembership`. Leave empty if the resource does not exist.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)Doadded inv0.198.0

Do executes the "gkehub.projects.locations.memberships.generateExclusivityManifest" call.Any non-2xx status code is an error. Response headers are in either*GenerateExclusivityManifestResponse.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)Fieldsadded inv0.198.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)Headeradded inv0.198.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsGenerateExclusivityManifestCall)IfNoneMatchadded inv0.198.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsMembershipsGetCalladded inv0.60.0

type ProjectsLocationsMembershipsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsGetCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsGetCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.get" call.Any non-2xx status code is an error. Response headers are in either*Membership.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsGetCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsGetCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsGetCall)IfNoneMatchadded inv0.60.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsMembershipsGetIamPolicyCall

type ProjectsLocationsMembershipsGetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsGetIamPolicyCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsGetIamPolicyCall)Do

Do executes the "gkehub.projects.locations.memberships.getIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsGetIamPolicyCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsGetIamPolicyCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsGetIamPolicyCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsGetIamPolicyCall)OptionsRequestedPolicyVersion

func (c *ProjectsLocationsMembershipsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsLocationsMembershipsGetIamPolicyCall

OptionsRequestedPolicyVersion sets the optional parameter"options.requestedPolicyVersion": The maximum policy version that will beused to format the policy. Valid values are 0, 1, and 3. Requests specifyingan invalid value will be rejected. Requests for policies with anyconditional role bindings must specify version 3. Policies with noconditional role bindings may specify any valid value or leave the fieldunset. The policy in the response might use the policy version that youspecified, or it might use a lower policy version. For example, if youspecify version 3, but the policy has no conditional role bindings, theresponse uses version 1. To learn which resources support conditions intheir IAM policies, see the IAM documentation(https://cloud.google.com/iam/help/conditions/resource-policies).

typeProjectsLocationsMembershipsListAdminCalladded inv0.59.0

type ProjectsLocationsMembershipsListAdminCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsListAdminCall)Contextadded inv0.59.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsListAdminCall)Doadded inv0.59.0

Do executes the "gkehub.projects.locations.memberships.listAdmin" call.Any non-2xx status code is an error. Response headers are in either*ListAdminClusterMembershipsResponse.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsListAdminCall)Fieldsadded inv0.59.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsListAdminCall)Filteradded inv0.59.0

Filter sets the optional parameter "filter": Lists Memberships of adminclusters that match the filter expression.

func (*ProjectsLocationsMembershipsListAdminCall)Headeradded inv0.59.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsListAdminCall)IfNoneMatchadded inv0.59.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsListAdminCall)OrderByadded inv0.59.0

OrderBy sets the optional parameter "orderBy": One or more fields to compareand use to sort the output. Seehttps://google.aip.dev/132#ordering.

func (*ProjectsLocationsMembershipsListAdminCall)PageSizeadded inv0.59.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsMembershipsListAdminCall)PageTokenadded inv0.59.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListAdminClusterMemberships` which specifies the positionin the list from where to continue listing the resources.

func (*ProjectsLocationsMembershipsListAdminCall)Pagesadded inv0.59.0

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.

typeProjectsLocationsMembershipsListCalladded inv0.60.0

type ProjectsLocationsMembershipsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsListCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsListCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.list" call.Any non-2xx status code is an error. Response headers are in either*ListMembershipsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsListCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsListCall)Filteradded inv0.60.0

Filter sets the optional parameter "filter": Lists Memberships that matchthe filter expression, following the syntax outlined inhttps://google.aip.dev/160. Examples: - Name is `bar` in project `foo-proj`and location `global`: name ="projects/foo-proj/locations/global/membership/bar" - Memberships that havea label called `foo`: labels.foo:* - Memberships that have a label called`foo` whose value is `bar`: labels.foo = bar - Memberships in the CREATINGstate: state = CREATING

func (*ProjectsLocationsMembershipsListCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsListCall)IfNoneMatchadded inv0.60.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsListCall)OrderByadded inv0.60.0

OrderBy sets the optional parameter "orderBy": One or more fields to compareand use to sort the output. Seehttps://google.aip.dev/132#ordering.

func (*ProjectsLocationsMembershipsListCall)PageSizeadded inv0.60.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsMembershipsListCall)PageTokenadded inv0.60.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListMemberships` which specifies the position in the listfrom where to continue listing the resources.

func (*ProjectsLocationsMembershipsListCall)Pagesadded inv0.60.0

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.

typeProjectsLocationsMembershipsPatchCalladded inv0.60.0

type ProjectsLocationsMembershipsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsPatchCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsPatchCall)Doadded inv0.60.0

Do executes the "gkehub.projects.locations.memberships.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsPatchCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsPatchCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsPatchCall)RequestIdadded inv0.60.0

RequestId sets the optional parameter "requestId": A request ID to identifyrequests. Specify a unique request ID so that if you must retry yourrequest, the server will know to ignore the request if it has already beencompleted. The server will guarantee that for at least 60 minutes after thefirst request. For example, consider a situation where you make an initialrequest and the request times out. If you make the request again with thesame request ID, the server can check if original operation with the samerequest ID was received, and if so, will ignore the second request. Thisprevents clients from accidentally creating duplicate commitments. Therequest ID must be a valid UUID with the exception that zero UUID is notsupported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsMembershipsPatchCall)UpdateMaskadded inv0.60.0

UpdateMask sets the optional parameter "updateMask": Required. Mask offields to update.

typeProjectsLocationsMembershipsRbacrolebindingsCreateCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsCreateCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsCreateCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsCreateCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsCreateCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsRbacrolebindingsCreateCall)RbacrolebindingIdadded inv0.129.0

RbacrolebindingId sets the optional parameter "rbacrolebindingId": Required.Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be avalidRFC 1123 compliant DNS label: 1. At most 63 characters in length 2. Itmust consist of lower case alphanumeric characters or `-` 3. It must startand end with an alphanumeric character Which can be expressed as the regex:`[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.

typeProjectsLocationsMembershipsRbacrolebindingsDeleteCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsDeleteCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsDeleteCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsDeleteCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsDeleteCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.generateMembershipRBACRoleBindingYAML" call.Any non-2xx status code is an error. Response headers are in either*GenerateMembershipRBACRoleBindingYAMLResponse.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsRbacrolebindingsGenerateMembershipRBACRoleBindingYAMLCall)RbacrolebindingIdadded inv0.129.0

RbacrolebindingId sets the optional parameter "rbacrolebindingId": Required.Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be avalidRFC 1123 compliant DNS label: 1. At most 63 characters in length 2. Itmust consist of lower case alphanumeric characters or `-` 3. It must startand end with an alphanumeric character Which can be expressed as the regex:`[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.

typeProjectsLocationsMembershipsRbacrolebindingsGetCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsGetCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsGetCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.get" call.Any non-2xx status code is an error. Response headers are in either*RBACRoleBinding.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsMembershipsRbacrolebindingsGetCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsGetCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsRbacrolebindingsGetCall)IfNoneMatchadded inv0.129.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsMembershipsRbacrolebindingsListCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.list" call.Any non-2xx status code is an error. Response headers are in either*ListMembershipRBACRoleBindingsResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)IfNoneMatchadded inv0.129.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)PageSizeadded inv0.129.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)PageTokenadded inv0.129.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListMembershipRBACRoleBindings` which specifies theposition in the list from where to continue listing the resources.

func (*ProjectsLocationsMembershipsRbacrolebindingsListCall)Pagesadded inv0.129.0

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.

typeProjectsLocationsMembershipsRbacrolebindingsPatchCalladded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsRbacrolebindingsPatchCall)Contextadded inv0.129.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsRbacrolebindingsPatchCall)Doadded inv0.129.0

Do executes the "gkehub.projects.locations.memberships.rbacrolebindings.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsRbacrolebindingsPatchCall)Fieldsadded inv0.129.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsRbacrolebindingsPatchCall)Headeradded inv0.129.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsRbacrolebindingsPatchCall)UpdateMaskadded inv0.129.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated.

typeProjectsLocationsMembershipsRbacrolebindingsServiceadded inv0.129.0

type ProjectsLocationsMembershipsRbacrolebindingsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsMembershipsRbacrolebindingsServiceadded inv0.129.0

func NewProjectsLocationsMembershipsRbacrolebindingsService(s *Service) *ProjectsLocationsMembershipsRbacrolebindingsService

func (*ProjectsLocationsMembershipsRbacrolebindingsService)Createadded inv0.129.0

Create: Creates a Membership RBACRoleBinding.

  • parent: The parent (project and location) where the RBACRoleBinding willbe created. Specified in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsRbacrolebindingsService)Deleteadded inv0.129.0

Delete: Deletes a Membership RBACRoleBinding.

  • name: The RBACRoleBinding resource name in the format`projects/*/locations/*/memberships/*/rbacrolebindings/*`.

func (*ProjectsLocationsMembershipsRbacrolebindingsService)GenerateMembershipRBACRoleBindingYAMLadded inv0.129.0

GenerateMembershipRBACRoleBindingYAML: Generates a YAML of the RBAC policiesfor the specified RoleBinding and its associated impersonation resources.

  • parent: The parent (project and location) where the RBACRoleBinding willbe created. Specified in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsRbacrolebindingsService)Getadded inv0.129.0

Get: Returns the details of a Membership RBACRoleBinding.

  • name: The RBACRoleBinding resource name in the format`projects/*/locations/*/memberships/*/rbacrolebindings/*`.

func (*ProjectsLocationsMembershipsRbacrolebindingsService)Listadded inv0.129.0

List: Lists all Membership RBACRoleBindings.

  • parent: The parent (project and location) where the Features will belisted. Specified in the format `projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsRbacrolebindingsService)Patchadded inv0.129.0

Patch: Updates a Membership RBACRoleBinding.

  • name: The resource name for the rbacrolebinding`projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or`projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`.

typeProjectsLocationsMembershipsService

type ProjectsLocationsMembershipsService struct {Bindings *ProjectsLocationsMembershipsBindingsServiceRbacrolebindings *ProjectsLocationsMembershipsRbacrolebindingsService// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsService)Createadded inv0.60.0

Create: Creates a new Membership. **This is currently only supported for GKEclusters on Google Cloud**. To register other clusters, follow theinstructions athttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster.

  • parent: The parent (project and location) where the Memberships will becreated. Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsMembershipsService)Deleteadded inv0.60.0

Delete: Removes a Membership. **This is currently only supported for GKEclusters on Google Cloud**. To unregister other clusters, follow theinstructions athttps://cloud.google.com/anthos/multicluster-management/connect/unregistering-a-cluster.

  • name: The Membership resource name in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsService)GenerateConnectManifestadded inv0.60.0

GenerateConnectManifest: Generates the manifest for deployment of the GKEconnect agent. **This method is used internally by Google-providedlibraries.** Most clients should not need to call this method directly.

  • name: The Membership resource name the Agent will associate with, in theformat `projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsService)GenerateExclusivityManifestadded inv0.198.0

GenerateExclusivityManifest: GenerateExclusivityManifest generates themanifests to update the exclusivity artifacts in the cluster if needed.Exclusivity artifacts include the Membership custom resource definition(CRD) and the singleton Membership custom resource (CR). Combined withValidateExclusivity, exclusivity artifacts guarantee that a Kubernetescluster is only registered to a single GKE Hub. The Membership CRD isversioned, and may require conversion when the GKE Hub API server beginsserving a newer version of the CRD and corresponding CR. The response willbe the converted CRD and CR if there are any differences between theversions.

  • name: The Membership resource name in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsService)Getadded inv0.60.0

Get: Gets the details of a Membership.

  • name: The Membership resource name in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsService)GetIamPolicy

GetIamPolicy: Gets the access control policy for a resource. Returns anempty policy if the resource exists and does not have a policy set.

func (*ProjectsLocationsMembershipsService)Listadded inv0.60.0

List: Lists Memberships in a given project and location.

  • parent: The parent (project and location) where the Memberships will belisted. Specified in the format `projects/*/locations/*`.`projects/*/locations/-` list memberships in all the regions.

func (*ProjectsLocationsMembershipsService)ListAdminadded inv0.59.0

ListAdmin: Lists Memberships of admin clusters in a given project andlocation. **This method is only used internally**.

  • parent: The parent (project and location) where the Memberships of admincluster will be listed. Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsMembershipsService)Patchadded inv0.60.0

Patch: Updates an existing Membership.

  • name: The Membership resource name in the format`projects/*/locations/*/memberships/*`.

func (*ProjectsLocationsMembershipsService)SetIamPolicy

SetIamPolicy: Sets the access control policy on the specified resource.Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`,and `PERMISSION_DENIED` errors.

func (*ProjectsLocationsMembershipsService)TestIamPermissions

TestIamPermissions: Returns permissions that a caller has on the specifiedresource. If the resource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to beused for building permission-aware UIs and command-line tools, not forauthorization checking. This operation may "fail open" without warning.

func (*ProjectsLocationsMembershipsService)ValidateCreateadded inv0.97.0

ValidateCreate: ValidateCreateMembership is a preflight check forCreateMembership. It checks the following: 1. Caller has the required`gkehub.memberships.create` permission. 2. The membership_id is stillavailable.

  • parent: The parent (project and location) where the Memberships will becreated. Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsMembershipsService)ValidateExclusivityadded inv0.198.0

ValidateExclusivity: ValidateExclusivity validates the state of exclusivityin the cluster. The validation does not depend on an existing Hub membershipresource.

  • parent: The parent (project and location) where the Memberships will becreated. Specified in the format `projects/*/locations/*`.

typeProjectsLocationsMembershipsSetIamPolicyCall

type ProjectsLocationsMembershipsSetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsSetIamPolicyCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsSetIamPolicyCall)Do

Do executes the "gkehub.projects.locations.memberships.setIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsSetIamPolicyCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsSetIamPolicyCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsMembershipsTestIamPermissionsCall

type ProjectsLocationsMembershipsTestIamPermissionsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsTestIamPermissionsCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsTestIamPermissionsCall)Do

Do executes the "gkehub.projects.locations.memberships.testIamPermissions" call.Any non-2xx status code is an error. Response headers are in either*TestIamPermissionsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsTestIamPermissionsCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsTestIamPermissionsCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsMembershipsValidateCreateCalladded inv0.97.0

type ProjectsLocationsMembershipsValidateCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsValidateCreateCall)Contextadded inv0.97.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsValidateCreateCall)Doadded inv0.97.0

Do executes the "gkehub.projects.locations.memberships.validateCreate" call.Any non-2xx status code is an error. Response headers are in either*ValidateCreateMembershipResponse.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsValidateCreateCall)Fieldsadded inv0.97.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsValidateCreateCall)Headeradded inv0.97.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsMembershipsValidateExclusivityCalladded inv0.198.0

type ProjectsLocationsMembershipsValidateExclusivityCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsMembershipsValidateExclusivityCall)Contextadded inv0.198.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)CrManifestadded inv0.198.0

CrManifest sets the optional parameter "crManifest": The YAML of themembership CR in the cluster. Empty if the membership CR does not exist.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)Doadded inv0.198.0

Do executes the "gkehub.projects.locations.memberships.validateExclusivity" call.Any non-2xx status code is an error. Response headers are in either*ValidateExclusivityResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)Fieldsadded inv0.198.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)Headeradded inv0.198.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)IfNoneMatchadded inv0.198.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsMembershipsValidateExclusivityCall)IntendedMembershipadded inv0.198.0

IntendedMembership sets the optional parameter "intendedMembership":Required. The intended membership name under the `parent`. This method onlydoes validation in anticipation of a CreateMembership call with the samename.

typeProjectsLocationsOperationsCancelCall

type ProjectsLocationsOperationsCancelCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsCancelCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsCancelCall)Do

Do executes the "gkehub.projects.locations.operations.cancel" call.Any non-2xx status code is an error. Response headers are in either*Empty.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsCancelCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsCancelCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsOperationsDeleteCall

type ProjectsLocationsOperationsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsDeleteCall)Do

Do executes the "gkehub.projects.locations.operations.delete" call.Any non-2xx status code is an error. Response headers are in either*Empty.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsOperationsGetCall

type ProjectsLocationsOperationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsGetCall)Do

Do executes the "gkehub.projects.locations.operations.get" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsOperationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsOperationsListCall

type ProjectsLocationsOperationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsListCall)Do

Do executes the "gkehub.projects.locations.operations.list" call.Any non-2xx status code is an error. Response headers are in either*ListOperationsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsOperationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsListCall)Filter

Filter sets the optional parameter "filter": The standard list filter.

func (*ProjectsLocationsOperationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsOperationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsOperationsListCall)PageSize

PageSize sets the optional parameter "pageSize": The standard list pagesize.

func (*ProjectsLocationsOperationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The standard list pagetoken.

func (*ProjectsLocationsOperationsListCall)Pages

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.

func (*ProjectsLocationsOperationsListCall)ReturnPartialSuccessadded inv0.252.0

func (c *ProjectsLocationsOperationsListCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsLocationsOperationsListCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess":When set to `true`, operations that are reachable are returned as normal,and those that are unreachable are returned in the[ListOperationsResponse.unreachable] field. This can only be `true` whenreading across collections e.g. when `parent` is set to"projects/example/locations/-". This field is not by default supported andwill result in an `UNIMPLEMENTED` error if set unless explicitly documentedotherwise in service or product specific documentation.

typeProjectsLocationsOperationsService

type ProjectsLocationsOperationsService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsService)Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. Theserver makes a best effort to cancel the operation, but success is notguaranteed. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation orother methods to check whether the cancellation succeeded or whether theoperation completed despite cancellation. On successful cancellation, theoperation is not deleted; instead, it becomes an operation with anOperation.error value with a google.rpc.Status.code of `1`, corresponding to`Code.CANCELLED`.

- name: The name of the operation resource to be cancelled.

func (*ProjectsLocationsOperationsService)Delete

Delete: Deletes a long-running operation. This method indicates that theclient is no longer interested in the operation result. It does not cancelthe operation. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`.

- name: The name of the operation resource to be deleted.

func (*ProjectsLocationsOperationsService)Get

Get: Gets the latest state of a long-running operation. Clients can use thismethod to poll the operation result at intervals as recommended by the APIservice.

- name: The name of the operation resource.

func (*ProjectsLocationsOperationsService)List

List: Lists operations that match the specified filter in the request. Ifthe server doesn't support this method, it returns `UNIMPLEMENTED`.

- name: The name of the operation's parent resource.

typeProjectsLocationsRolloutSequencesCreateCalladded inv0.256.0

type ProjectsLocationsRolloutSequencesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutSequencesCreateCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutSequencesCreateCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rolloutSequences.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsRolloutSequencesCreateCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutSequencesCreateCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutSequencesCreateCall)RolloutSequenceIdadded inv0.256.0

RolloutSequenceId sets the optional parameter "rolloutSequenceId": Required.User provided identifier that is used as part of the resource name; mustconform to RFC-1034 and additionally restrict to lower-cased letters. Thiscomes out roughly to: /^a-z+[a-z0-9]$/

typeProjectsLocationsRolloutSequencesDeleteCalladded inv0.256.0

type ProjectsLocationsRolloutSequencesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutSequencesDeleteCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutSequencesDeleteCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rolloutSequences.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsRolloutSequencesDeleteCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutSequencesDeleteCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsRolloutSequencesGetCalladded inv0.256.0

type ProjectsLocationsRolloutSequencesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutSequencesGetCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutSequencesGetCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rolloutSequences.get" call.Any non-2xx status code is an error. Response headers are in either*RolloutSequence.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsRolloutSequencesGetCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutSequencesGetCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutSequencesGetCall)IfNoneMatchadded inv0.256.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsRolloutSequencesListCalladded inv0.256.0

type ProjectsLocationsRolloutSequencesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutSequencesListCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutSequencesListCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rolloutSequences.list" call.Any non-2xx status code is an error. Response headers are in either*ListRolloutSequencesResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsRolloutSequencesListCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutSequencesListCall)Filteradded inv0.256.0

Filter sets the optional parameter "filter": Lists Rollout Sequences thatmatch the filter expression, following the syntax outlined inhttps://google.aip.dev/160.

func (*ProjectsLocationsRolloutSequencesListCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutSequencesListCall)IfNoneMatchadded inv0.256.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsRolloutSequencesListCall)PageSizeadded inv0.256.0

PageSize sets the optional parameter "pageSize": The maximum number ofrollout sequences to return. The service may return fewer than this value.If unspecified, at most 50 rollout sequences will be returned. The maximumvalue is 1000; values above 1000 will be coerced to 1000.

func (*ProjectsLocationsRolloutSequencesListCall)PageTokenadded inv0.256.0

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListRolloutSequences` call. Provide this to retrieve thesubsequent page. When paginating, all other parameters provided to`ListRolloutSequences` must match the call that provided the page token.

func (*ProjectsLocationsRolloutSequencesListCall)Pagesadded inv0.256.0

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.

typeProjectsLocationsRolloutSequencesPatchCalladded inv0.256.0

type ProjectsLocationsRolloutSequencesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutSequencesPatchCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutSequencesPatchCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rolloutSequences.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsRolloutSequencesPatchCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutSequencesPatchCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutSequencesPatchCall)UpdateMaskadded inv0.256.0

UpdateMask sets the optional parameter "updateMask": The list of fields toupdate.

typeProjectsLocationsRolloutSequencesServiceadded inv0.256.0

type ProjectsLocationsRolloutSequencesService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsRolloutSequencesServiceadded inv0.256.0

func NewProjectsLocationsRolloutSequencesService(s *Service) *ProjectsLocationsRolloutSequencesService

func (*ProjectsLocationsRolloutSequencesService)Createadded inv0.256.0

Create: Create a new rollout sequence resource.

  • parent: The parent resource where this rollout sequence will be created.projects/{project}/locations/{location}.

func (*ProjectsLocationsRolloutSequencesService)Deleteadded inv0.256.0

Delete: Remove a RolloutSequence.

  • name: The name of the rollout sequence to delete.projects/{project}/locations/{location}/rolloutSequences/{rollout_sequence}.

func (*ProjectsLocationsRolloutSequencesService)Getadded inv0.256.0

Get: Retrieve a single rollout sequence.

  • name: The name of the rollout sequence to retrieve.projects/{project}/locations/{location}/rolloutSequences/{rollout_sequence}.

func (*ProjectsLocationsRolloutSequencesService)Listadded inv0.256.0

List: Retrieve the list of all rollout sequences.

  • parent: The parent, which owns this collection of rollout sequences.Format: projects/{project}/locations/{location}.

func (*ProjectsLocationsRolloutSequencesService)Patchadded inv0.256.0

Patch: Update a rollout sequence.

  • name: Identifier. Name of the rollout sequence in the format of:projects/{PROJECT_ID}/locations/global/rolloutSequences/{NAME}.

typeProjectsLocationsRolloutsGetCalladded inv0.256.0

type ProjectsLocationsRolloutsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutsGetCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutsGetCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rollouts.get" call.Any non-2xx status code is an error. Response headers are in either*Rollout.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsRolloutsGetCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutsGetCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutsGetCall)IfNoneMatchadded inv0.256.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsRolloutsListCalladded inv0.256.0

type ProjectsLocationsRolloutsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsRolloutsListCall)Contextadded inv0.256.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsRolloutsListCall)Doadded inv0.256.0

Do executes the "gkehub.projects.locations.rollouts.list" call.Any non-2xx status code is an error. Response headers are in either*ListRolloutsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsRolloutsListCall)Fieldsadded inv0.256.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsRolloutsListCall)Filteradded inv0.256.0

Filter sets the optional parameter "filter": Lists Rollouts that match thefilter expression, following the syntax outlined inhttps://google.aip.dev/160.

func (*ProjectsLocationsRolloutsListCall)Headeradded inv0.256.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsRolloutsListCall)IfNoneMatchadded inv0.256.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsRolloutsListCall)PageSizeadded inv0.256.0

PageSize sets the optional parameter "pageSize": The maximum number ofrollout to return. The service may return fewer than this value. Ifunspecified, at most 50 rollouts will be returned. The maximum value is1000; values above 1000 will be coerced to 1000.

func (*ProjectsLocationsRolloutsListCall)PageTokenadded inv0.256.0

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListRollouts` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListRollouts` mustmatch the call that provided the page token.

func (*ProjectsLocationsRolloutsListCall)Pagesadded inv0.256.0

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.

typeProjectsLocationsRolloutsServiceadded inv0.256.0

type ProjectsLocationsRolloutsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsRolloutsServiceadded inv0.256.0

func NewProjectsLocationsRolloutsService(s *Service) *ProjectsLocationsRolloutsService

func (*ProjectsLocationsRolloutsService)Getadded inv0.256.0

Get: Retrieve a single rollout.

  • name: The name of the rollout to retrieve.projects/{project}/locations/{location}/rollouts/{rollout}.

func (*ProjectsLocationsRolloutsService)Listadded inv0.256.0

List: Retrieve the list of all rollouts.

  • parent: The parent, which owns this collection of rollout. Format:projects/{project}/locations/{location}.

typeProjectsLocationsScopesCreateCalladded inv0.112.0

type ProjectsLocationsScopesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesCreateCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesCreateCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.scopes.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesCreateCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesCreateCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesCreateCall)ScopeIdadded inv0.112.0

ScopeId sets the optional parameter "scopeId": Required. Client chosen IDfor the Scope. `scope_id` must be a ????

typeProjectsLocationsScopesDeleteCalladded inv0.112.0

type ProjectsLocationsScopesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesDeleteCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesDeleteCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.scopes.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesDeleteCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesDeleteCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsScopesGetCalladded inv0.112.0

type ProjectsLocationsScopesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesGetCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesGetCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.scopes.get" call.Any non-2xx status code is an error. Response headers are in either*Scope.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesGetCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesGetCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesGetCall)IfNoneMatchadded inv0.112.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsScopesGetIamPolicyCalladded inv0.125.0

type ProjectsLocationsScopesGetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesGetIamPolicyCall)Contextadded inv0.125.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesGetIamPolicyCall)Doadded inv0.125.0

Do executes the "gkehub.projects.locations.scopes.getIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesGetIamPolicyCall)Fieldsadded inv0.125.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesGetIamPolicyCall)Headeradded inv0.125.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesGetIamPolicyCall)IfNoneMatchadded inv0.125.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesGetIamPolicyCall)OptionsRequestedPolicyVersionadded inv0.125.0

func (c *ProjectsLocationsScopesGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsLocationsScopesGetIamPolicyCall

OptionsRequestedPolicyVersion sets the optional parameter"options.requestedPolicyVersion": The maximum policy version that will beused to format the policy. Valid values are 0, 1, and 3. Requests specifyingan invalid value will be rejected. Requests for policies with anyconditional role bindings must specify version 3. Policies with noconditional role bindings may specify any valid value or leave the fieldunset. The policy in the response might use the policy version that youspecified, or it might use a lower policy version. For example, if youspecify version 3, but the policy has no conditional role bindings, theresponse uses version 1. To learn which resources support conditions intheir IAM policies, see the IAM documentation(https://cloud.google.com/iam/help/conditions/resource-policies).

typeProjectsLocationsScopesListCalladded inv0.112.0

type ProjectsLocationsScopesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesListCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesListCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.scopes.list" call.Any non-2xx status code is an error. Response headers are in either*ListScopesResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsScopesListCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesListCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesListCall)IfNoneMatchadded inv0.112.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesListCall)PageSizeadded inv0.112.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsScopesListCall)PageTokenadded inv0.112.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListScopes` which specifies the position in the list fromwhere to continue listing the resources.

func (*ProjectsLocationsScopesListCall)Pagesadded inv0.112.0

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.

typeProjectsLocationsScopesListMembershipsCalladded inv0.168.0

type ProjectsLocationsScopesListMembershipsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesListMembershipsCall)Contextadded inv0.168.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesListMembershipsCall)Doadded inv0.168.0

Do executes the "gkehub.projects.locations.scopes.listMemberships" call.Any non-2xx status code is an error. Response headers are in either*ListBoundMembershipsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsScopesListMembershipsCall)Fieldsadded inv0.168.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesListMembershipsCall)Filteradded inv0.168.0

Filter sets the optional parameter "filter": Lists Memberships that matchthe filter expression, following the syntax outlined inhttps://google.aip.dev/160. Currently, filtering can be done only based onMemberships's `name`, `labels`, `create_time`, `update_time`, and`unique_id`.

func (*ProjectsLocationsScopesListMembershipsCall)Headeradded inv0.168.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesListMembershipsCall)IfNoneMatchadded inv0.168.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesListMembershipsCall)PageSizeadded inv0.168.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned. Pagination iscurrently not supported; therefore, setting this field does not have anyimpact for now.

func (*ProjectsLocationsScopesListMembershipsCall)PageTokenadded inv0.168.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListBoundMemberships` which specifies the position in thelist from where to continue listing the resources.

func (*ProjectsLocationsScopesListMembershipsCall)Pagesadded inv0.168.0

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.

typeProjectsLocationsScopesListPermittedCalladded inv0.166.0

type ProjectsLocationsScopesListPermittedCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesListPermittedCall)Contextadded inv0.166.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesListPermittedCall)Doadded inv0.166.0

Do executes the "gkehub.projects.locations.scopes.listPermitted" call.Any non-2xx status code is an error. Response headers are in either*ListPermittedScopesResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsScopesListPermittedCall)Fieldsadded inv0.166.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesListPermittedCall)Headeradded inv0.166.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesListPermittedCall)IfNoneMatchadded inv0.166.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesListPermittedCall)PageSizeadded inv0.166.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsScopesListPermittedCall)PageTokenadded inv0.166.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListPermittedScopes` which specifies the position in thelist from where to continue listing the resources.

func (*ProjectsLocationsScopesListPermittedCall)Pagesadded inv0.166.0

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.

typeProjectsLocationsScopesNamespacesCreateCalladded inv0.135.0

type ProjectsLocationsScopesNamespacesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesNamespacesCreateCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesNamespacesCreateCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.namespaces.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesNamespacesCreateCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesNamespacesCreateCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesNamespacesCreateCall)ScopeNamespaceIdadded inv0.135.0

ScopeNamespaceId sets the optional parameter "scopeNamespaceId": Required.Client chosen ID for the Namespace. `namespace_id` must be a validRFC 1123compliant DNS label: 1. At most 63 characters in length 2. It must consistof lower case alphanumeric characters or `-` 3. It must start and end withan alphanumeric character Which can be expressed as the regex:`[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.

typeProjectsLocationsScopesNamespacesDeleteCalladded inv0.135.0

type ProjectsLocationsScopesNamespacesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesNamespacesDeleteCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesNamespacesDeleteCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.namespaces.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesNamespacesDeleteCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesNamespacesDeleteCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsScopesNamespacesGetCalladded inv0.135.0

type ProjectsLocationsScopesNamespacesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesNamespacesGetCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesNamespacesGetCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.namespaces.get" call.Any non-2xx status code is an error. Response headers are in either*Namespace.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesNamespacesGetCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesNamespacesGetCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesNamespacesGetCall)IfNoneMatchadded inv0.135.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsScopesNamespacesListCalladded inv0.135.0

type ProjectsLocationsScopesNamespacesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesNamespacesListCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesNamespacesListCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.namespaces.list" call.Any non-2xx status code is an error. Response headers are in either*ListScopeNamespacesResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsScopesNamespacesListCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesNamespacesListCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesNamespacesListCall)IfNoneMatchadded inv0.135.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesNamespacesListCall)PageSizeadded inv0.135.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsScopesNamespacesListCall)PageTokenadded inv0.135.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListFeatures` which specifies the position in the listfrom where to continue listing the resources.

func (*ProjectsLocationsScopesNamespacesListCall)Pagesadded inv0.135.0

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.

typeProjectsLocationsScopesNamespacesPatchCalladded inv0.135.0

type ProjectsLocationsScopesNamespacesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesNamespacesPatchCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesNamespacesPatchCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.namespaces.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesNamespacesPatchCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesNamespacesPatchCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesNamespacesPatchCall)UpdateMaskadded inv0.135.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated.

typeProjectsLocationsScopesNamespacesServiceadded inv0.135.0

type ProjectsLocationsScopesNamespacesService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsScopesNamespacesServiceadded inv0.135.0

func NewProjectsLocationsScopesNamespacesService(s *Service) *ProjectsLocationsScopesNamespacesService

func (*ProjectsLocationsScopesNamespacesService)Createadded inv0.135.0

Create: Creates a fleet namespace.

  • parent: The parent (project and location) where the Namespace will becreated. Specified in the format `projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesNamespacesService)Deleteadded inv0.135.0

Delete: Deletes a fleet namespace.

  • name: The Namespace resource name in the format`projects/*/locations/*/scopes/*/namespaces/*`.

func (*ProjectsLocationsScopesNamespacesService)Getadded inv0.135.0

Get: Returns the details of a fleet namespace.

  • name: The Namespace resource name in the format`projects/*/locations/*/scopes/*/namespaces/*`.

func (*ProjectsLocationsScopesNamespacesService)Listadded inv0.135.0

List: Lists fleet namespaces.

  • parent: The parent (project and location) where the Features will belisted. Specified in the format `projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesNamespacesService)Patchadded inv0.135.0

Patch: Updates a fleet namespace.

  • name: The resource name for the namespace`projects/{project}/locations/{location}/namespaces/{namespace}`.

typeProjectsLocationsScopesPatchCalladded inv0.112.0

type ProjectsLocationsScopesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesPatchCall)Contextadded inv0.112.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesPatchCall)Doadded inv0.112.0

Do executes the "gkehub.projects.locations.scopes.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesPatchCall)Fieldsadded inv0.112.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesPatchCall)Headeradded inv0.112.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesPatchCall)UpdateMaskadded inv0.112.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated.

typeProjectsLocationsScopesRbacrolebindingsCreateCalladded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesRbacrolebindingsCreateCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesRbacrolebindingsCreateCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.rbacrolebindings.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesRbacrolebindingsCreateCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesRbacrolebindingsCreateCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesRbacrolebindingsCreateCall)RbacrolebindingIdadded inv0.135.0

RbacrolebindingId sets the optional parameter "rbacrolebindingId": Required.Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be avalidRFC 1123 compliant DNS label: 1. At most 63 characters in length 2. Itmust consist of lower case alphanumeric characters or `-` 3. It must startand end with an alphanumeric character Which can be expressed as the regex:`[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.

typeProjectsLocationsScopesRbacrolebindingsDeleteCalladded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesRbacrolebindingsDeleteCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesRbacrolebindingsDeleteCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.rbacrolebindings.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesRbacrolebindingsDeleteCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesRbacrolebindingsDeleteCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsScopesRbacrolebindingsGetCalladded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesRbacrolebindingsGetCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesRbacrolebindingsGetCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.rbacrolebindings.get" call.Any non-2xx status code is an error. Response headers are in either*RBACRoleBinding.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsScopesRbacrolebindingsGetCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesRbacrolebindingsGetCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesRbacrolebindingsGetCall)IfNoneMatchadded inv0.135.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsScopesRbacrolebindingsListCalladded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesRbacrolebindingsListCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.rbacrolebindings.list" call.Any non-2xx status code is an error. Response headers are in either*ListScopeRBACRoleBindingsResponse.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)IfNoneMatchadded inv0.135.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)PageSizeadded inv0.135.0

PageSize sets the optional parameter "pageSize": When requesting a 'page' ofresources, `page_size` specifies number of resources to return. Ifunspecified or set to 0, all resources will be returned.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)PageTokenadded inv0.135.0

PageToken sets the optional parameter "pageToken": Token returned byprevious call to `ListScopeRBACRoleBindings` which specifies the position inthe list from where to continue listing the resources.

func (*ProjectsLocationsScopesRbacrolebindingsListCall)Pagesadded inv0.135.0

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.

typeProjectsLocationsScopesRbacrolebindingsPatchCalladded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesRbacrolebindingsPatchCall)Contextadded inv0.135.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesRbacrolebindingsPatchCall)Doadded inv0.135.0

Do executes the "gkehub.projects.locations.scopes.rbacrolebindings.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesRbacrolebindingsPatchCall)Fieldsadded inv0.135.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesRbacrolebindingsPatchCall)Headeradded inv0.135.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsScopesRbacrolebindingsPatchCall)UpdateMaskadded inv0.135.0

UpdateMask sets the optional parameter "updateMask": Required. The fields tobe updated.

typeProjectsLocationsScopesRbacrolebindingsServiceadded inv0.135.0

type ProjectsLocationsScopesRbacrolebindingsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsScopesRbacrolebindingsServiceadded inv0.135.0

func NewProjectsLocationsScopesRbacrolebindingsService(s *Service) *ProjectsLocationsScopesRbacrolebindingsService

func (*ProjectsLocationsScopesRbacrolebindingsService)Createadded inv0.135.0

Create: Creates a Scope RBACRoleBinding.

  • parent: The parent (project and location) where the RBACRoleBinding willbe created. Specified in the format `projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesRbacrolebindingsService)Deleteadded inv0.135.0

Delete: Deletes a Scope RBACRoleBinding.

  • name: The RBACRoleBinding resource name in the format`projects/*/locations/*/scopes/*/rbacrolebindings/*`.

func (*ProjectsLocationsScopesRbacrolebindingsService)Getadded inv0.135.0

Get: Returns the details of a Scope RBACRoleBinding.

  • name: The RBACRoleBinding resource name in the format`projects/*/locations/*/scopes/*/rbacrolebindings/*`.

func (*ProjectsLocationsScopesRbacrolebindingsService)Listadded inv0.135.0

List: Lists all Scope RBACRoleBindings.

  • parent: The parent (project and location) where the Features will belisted. Specified in the format `projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesRbacrolebindingsService)Patchadded inv0.135.0

Patch: Updates a Scope RBACRoleBinding.

  • name: The resource name for the rbacrolebinding`projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or`projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`.

typeProjectsLocationsScopesServiceadded inv0.112.0

type ProjectsLocationsScopesService struct {Namespaces *ProjectsLocationsScopesNamespacesServiceRbacrolebindings *ProjectsLocationsScopesRbacrolebindingsService// contains filtered or unexported fields}

funcNewProjectsLocationsScopesServiceadded inv0.112.0

func NewProjectsLocationsScopesService(s *Service) *ProjectsLocationsScopesService

func (*ProjectsLocationsScopesService)Createadded inv0.112.0

Create: Creates a Scope.

  • parent: The parent (project and location) where the Scope will be created.Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsScopesService)Deleteadded inv0.112.0

Delete: Deletes a Scope.

  • name: The Scope resource name in the format`projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesService)Getadded inv0.112.0

Get: Returns the details of a Scope.

  • name: The Scope resource name in the format`projects/*/locations/*/scopes/*`.

func (*ProjectsLocationsScopesService)GetIamPolicyadded inv0.125.0

GetIamPolicy: Gets the access control policy for a resource. Returns anempty policy if the resource exists and does not have a policy set.

func (*ProjectsLocationsScopesService)Listadded inv0.112.0

List: Lists Scopes.

  • parent: The parent (project and location) where the Scope will be listed.Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsScopesService)ListMembershipsadded inv0.168.0

ListMemberships: Lists Memberships bound to a Scope. The response includesrelevant Memberships from all regions.

  • scopeName: Name of the Scope, in the format`projects/*/locations/global/scopes/*`, to which the Memberships arebound.

func (*ProjectsLocationsScopesService)ListPermittedadded inv0.166.0

ListPermitted: Lists permitted Scopes.

  • parent: The parent (project and location) where the Scope will be listed.Specified in the format `projects/*/locations/*`.

func (*ProjectsLocationsScopesService)Patchadded inv0.112.0

Patch: Updates a scopes.

  • name: The resource name for the scope`projects/{project}/locations/{location}/scopes/{scope}`.

func (*ProjectsLocationsScopesService)SetIamPolicyadded inv0.125.0

SetIamPolicy: Sets the access control policy on the specified resource.Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`,and `PERMISSION_DENIED` errors.

func (*ProjectsLocationsScopesService)TestIamPermissionsadded inv0.125.0

TestIamPermissions: Returns permissions that a caller has on the specifiedresource. If the resource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to beused for building permission-aware UIs and command-line tools, not forauthorization checking. This operation may "fail open" without warning.

typeProjectsLocationsScopesSetIamPolicyCalladded inv0.125.0

type ProjectsLocationsScopesSetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesSetIamPolicyCall)Contextadded inv0.125.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesSetIamPolicyCall)Doadded inv0.125.0

Do executes the "gkehub.projects.locations.scopes.setIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsScopesSetIamPolicyCall)Fieldsadded inv0.125.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesSetIamPolicyCall)Headeradded inv0.125.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsScopesTestIamPermissionsCalladded inv0.125.0

type ProjectsLocationsScopesTestIamPermissionsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsScopesTestIamPermissionsCall)Contextadded inv0.125.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsScopesTestIamPermissionsCall)Doadded inv0.125.0

Do executes the "gkehub.projects.locations.scopes.testIamPermissions" call.Any non-2xx status code is an error. Response headers are in either*TestIamPermissionsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsScopesTestIamPermissionsCall)Fieldsadded inv0.125.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsScopesTestIamPermissionsCall)Headeradded inv0.125.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsService

type ProjectsLocationsService struct {Features *ProjectsLocationsFeaturesServiceFleets *ProjectsLocationsFleetsServiceMemberships *ProjectsLocationsMembershipsServiceOperations *ProjectsLocationsOperationsServiceRolloutSequences *ProjectsLocationsRolloutSequencesServiceRollouts *ProjectsLocationsRolloutsServiceScopes *ProjectsLocationsScopesService// contains filtered or unexported fields}

funcNewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

func (*ProjectsLocationsService)Get

Get: Gets information about a location.

- name: Resource name for the location.

func (*ProjectsLocationsService)List

List: Lists information about the supported locations for this service.

- name: The resource that owns the locations collection, if applicable.

typeProjectsService

type ProjectsService struct {Locations *ProjectsLocationsService// contains filtered or unexported fields}

funcNewProjectsService

func NewProjectsService(s *Service) *ProjectsService

typeRBACRoleBindingadded inv0.112.0

type RBACRoleBinding struct {// CreateTime: Output only. When the rbacrolebinding was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the rbacrolebinding was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// Group: group is the group, as seen by the kubernetes cluster.Groupstring `json:"group,omitempty"`// Labels: Optional. Labels for this RBACRolebinding.Labels map[string]string `json:"labels,omitempty"`// Name: The resource name for the rbacrolebinding// `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rba// crolebinding}` or// `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebin// dings/{rbacrolebinding}`Namestring `json:"name,omitempty"`// Role: Required. Role to bind to the principalRole *Role `json:"role,omitempty"`// State: Output only. State of the rbacrolebinding resource.State *RBACRoleBindingLifecycleState `json:"state,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all rbacrolebinding resources. If a rbacrolebinding resource is// deleted and another resource with the same name is created, it gets a// different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. When the rbacrolebinding was last updated.UpdateTimestring `json:"updateTime,omitempty"`// User: user is the name of the user as seen by the kubernetes cluster,// example "alice" or "alice@domain.tld"Userstring `json:"user,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RBACRoleBinding: RBACRoleBinding represents a rbacrolebinding across theFleet

func (RBACRoleBinding)MarshalJSONadded inv0.112.0

func (sRBACRoleBinding) MarshalJSON() ([]byte,error)

typeRBACRoleBindingActuationFeatureSpecadded inv0.230.0

type RBACRoleBindingActuationFeatureSpec struct {// AllowedCustomRoles: The list of allowed custom roles (ClusterRoles). If a// ClusterRole is not part of this list, it cannot be used in a Scope// RBACRoleBinding. If a ClusterRole in this list is in use, it cannot be// removed from the list.AllowedCustomRoles []string `json:"allowedCustomRoles,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowedCustomRoles") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowedCustomRoles") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RBACRoleBindingActuationFeatureSpec: **RBAC RoleBinding Actuation**: TheHub-wide input for the RBACRoleBindingActuation feature.

func (RBACRoleBindingActuationFeatureSpec)MarshalJSONadded inv0.230.0

typeRBACRoleBindingActuationFeatureStateadded inv0.230.0

type RBACRoleBindingActuationFeatureState struct {}

RBACRoleBindingActuationFeatureState: **RBAC RoleBinding Actuation**: Anempty state left as an example Hub-wide Feature state.

typeRBACRoleBindingLifecycleStateadded inv0.112.0

type RBACRoleBindingLifecycleState struct {// Code: Output only. The current state of the rbacrolebinding resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The rbacrolebinding is being created.//   "READY" - The rbacrolebinding active.//   "DELETING" - The rbacrolebinding is being deleted.//   "UPDATING" - The rbacrolebinding is being updated.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RBACRoleBindingLifecycleState: RBACRoleBindingLifecycleState describes thestate of a RbacRoleBinding resource.

func (RBACRoleBindingLifecycleState)MarshalJSONadded inv0.112.0

func (sRBACRoleBindingLifecycleState) MarshalJSON() ([]byte,error)

typeResourceManifestadded inv0.61.0

type ResourceManifest struct {// ClusterScoped: Output only. Whether the resource provided in the manifest is// `cluster_scoped`. If unset, the manifest is assumed to be namespace scoped.// This field is used for REST mapping when applying the resource in a cluster.ClusterScopedbool `json:"clusterScoped,omitempty"`// Manifest: Output only. YAML manifest of the resource.Manifeststring `json:"manifest,omitempty"`// ForceSendFields is a list of field names (e.g. "ClusterScoped") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClusterScoped") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ResourceManifest: ResourceManifest represents a single Kubernetes resourceto be applied to the cluster.

func (ResourceManifest)MarshalJSONadded inv0.61.0

func (sResourceManifest) MarshalJSON() ([]byte,error)

typeResourceOptionsadded inv0.61.0

type ResourceOptions struct {// ConnectVersion: Optional. The Connect agent version to use for// connect_resources. Defaults to the latest GKE Connect version. The version// must be a currently supported version, obsolete versions will be rejected.ConnectVersionstring `json:"connectVersion,omitempty"`// K8sGitVersion: Optional. Git version of the Kubernetes cluster. This is only// used to gate the Connect Agent migration to svc.id.goog on GDC-SO 1.33.100// patch and above.K8sGitVersionstring `json:"k8sGitVersion,omitempty"`// K8sVersion: Optional. Major and minor version of the Kubernetes cluster.// This is only used to determine which version to use for the// CustomResourceDefinition resources, `apiextensions/v1beta1`// or`apiextensions/v1`.K8sVersionstring `json:"k8sVersion,omitempty"`// V1beta1Crd: Optional. Use `apiextensions/v1beta1` instead of// `apiextensions/v1` for CustomResourceDefinition resources. This option// should be set for clusters with Kubernetes apiserver versions <1.16.V1beta1Crdbool `json:"v1beta1Crd,omitempty"`// ForceSendFields is a list of field names (e.g. "ConnectVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConnectVersion") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ResourceOptions: ResourceOptions represent options for Kubernetes resourcegeneration.

func (ResourceOptions)MarshalJSONadded inv0.61.0

func (sResourceOptions) MarshalJSON() ([]byte,error)

typeRoleadded inv0.112.0

type Role struct {// CustomRole: Optional. custom_role is the name of a custom// KubernetesClusterRole to use.CustomRolestring `json:"customRole,omitempty"`// PredefinedRole: predefined_role is the Kubernetes default role to use//// Possible values://   "UNKNOWN" - UNKNOWN//   "ADMIN" - ADMIN has EDIT and RBAC permissions//   "EDIT" - EDIT can edit all resources except RBAC//   "VIEW" - VIEW can only read resources//   "ANTHOS_SUPPORT" - ANTHOS_SUPPORT gives Google Support read-only access to// a number of cluster resources.PredefinedRolestring `json:"predefinedRole,omitempty"`// ForceSendFields is a list of field names (e.g. "CustomRole") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CustomRole") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Role: Role is the type for Kubernetes roles

func (Role)MarshalJSONadded inv0.112.0

func (sRole) MarshalJSON() ([]byte,error)

typeRolloutadded inv0.256.0

type Rollout struct {// CompleteTime: Output only. The timestamp at which the Rollout was completed.CompleteTimestring `json:"completeTime,omitempty"`// CreateTime: Output only. The timestamp at which the Rollout was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. The timestamp at the Rollout was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// DisplayName: Optional. Human readable display name of the Rollout.DisplayNamestring `json:"displayName,omitempty"`// Etag: Output only. etag of the Rollout Ex. abc1234Etagstring `json:"etag,omitempty"`// ExcludedClusters: Optional. Output only. The excluded clusters from the// rollout.ExcludedClusters []*ExcludedCluster `json:"excludedClusters,omitempty"`// Feature: Optional. Feature config to use for Rollout.Feature *FeatureUpdate `json:"feature,omitempty"`// Labels: Optional. Labels for this Rollout.Labels map[string]string `json:"labels,omitempty"`// MembershipStates: Output only. States of upgrading control plane or node// pool targets of a single cluster (GKE Hub membership) that's part of this// Rollout. The key is the membership name of the cluster. The value is the// state of the cluster.MembershipStates map[string]RolloutMembershipState `json:"membershipStates,omitempty"`// Name: Identifier. The full, unique resource name of this Rollout in the// format of `projects/{project}/locations/global/rollouts/{rollout}`.Namestring `json:"name,omitempty"`// RolloutSequence: Optional. Immutable. The full, unique resource name of the// rollout sequence that initiatied this Rollout. In the format of// `projects/{project}/locations/global/rolloutSequences/{rollout_sequence}`.// Empty for user initiated rollouts.RolloutSequencestring `json:"rolloutSequence,omitempty"`// Schedule: Output only. The schedule of the Rollout.Schedule *Schedule `json:"schedule,omitempty"`// Stages: Output only. The stages of the Rollout. Note: this is only populated// for google-initiated rollouts.Stages []*RolloutStage `json:"stages,omitempty"`// State: Output only. State specifies various states of the Rollout.//// Possible values://   "STATE_UNSPECIFIED" - Unspecified state.//   "RUNNING" - The Rollout is running.//   "PAUSED" - The Rollout is paused.//   "CANCELLED" - The Rollout is in a failure terminal state.//   "COMPLETED" - The Rollout is in a terminal state.//   "SCHEDULED" - The Rollout is scheduled to start.Statestring `json:"state,omitempty"`// StateReason: Output only. A human-readable description explaining the reason// for the current state.StateReasonstring `json:"stateReason,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all Rollout resources. If a Rollout resource is deleted and another// resource with the same name is created, it gets a different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. The timestamp at which the Rollout was last// updated.UpdateTimestring `json:"updateTime,omitempty"`// VersionUpgrade: Optional. Config for version upgrade of clusters. Note:// Currently for GDCE clusters only.VersionUpgrade *VersionUpgrade `json:"versionUpgrade,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CompleteTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CompleteTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Rollout: Rollout contains the Rollout metadata and configuration.

func (Rollout)MarshalJSONadded inv0.256.0

func (sRollout) MarshalJSON() ([]byte,error)

typeRolloutMembershipStateadded inv0.256.0

type RolloutMembershipState struct {// LastUpdateTime: Optional. Output only. The time this status and any related// Rollout-specific details for the membership were updated.LastUpdateTimestring `json:"lastUpdateTime,omitempty"`// StageAssignment: Output only. The stage assignment of this cluster in this// rollout.StageAssignmentint64 `json:"stageAssignment,omitempty"`// Targets: Output only. The targets of the rollout - clusters or node pools// that are being upgraded. All targets belongs to the same cluster, identified// by the membership name (key of membership_states map).Targets []*RolloutTarget `json:"targets,omitempty"`// ForceSendFields is a list of field names (e.g. "LastUpdateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LastUpdateTime") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RolloutMembershipState: Metadata about single cluster (GKE Hub membership)that's part of this Rollout.

func (RolloutMembershipState)MarshalJSONadded inv0.256.0

func (sRolloutMembershipState) MarshalJSON() ([]byte,error)

typeRolloutSequenceadded inv0.256.0

type RolloutSequence struct {// CreateTime: Output only. The timestamp at which the Rollout Sequence was// created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. The timestamp at the Rollout Sequence was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// DisplayName: Optional. Human readable display name of the Rollout Sequence.DisplayNamestring `json:"displayName,omitempty"`// Etag: Output only. etag of the Rollout Sequence Ex. abc1234Etagstring `json:"etag,omitempty"`// Labels: Optional. Labels for this Rollout Sequence.Labels map[string]string `json:"labels,omitempty"`// Name: Identifier. Name of the rollout sequence in the format of:// projects/{PROJECT_ID}/locations/global/rolloutSequences/{NAME}Namestring `json:"name,omitempty"`// Stages: Required. Ordered list of stages that constitutes this Rollout.Stages []*Stage `json:"stages,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all Rollout Sequence resources. If a Rollout Sequence resource is// deleted and another resource with the same name is created, it gets a// different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. The timestamp at which the Rollout Sequence was// last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RolloutSequence: RolloutSequence defines the desired order of upgrades.

func (RolloutSequence)MarshalJSONadded inv0.256.0

func (sRolloutSequence) MarshalJSON() ([]byte,error)

typeRolloutStageadded inv0.256.0

type RolloutStage struct {// EndTime: Optional. Output only. The time at which the wave ended.EndTimestring `json:"endTime,omitempty"`// SoakDuration: Optional. Duration to soak after this wave before starting the// next wave.SoakDurationstring `json:"soakDuration,omitempty"`// StageNumber: Output only. The wave number to which this status applies.StageNumberint64 `json:"stageNumber,omitempty"`// StartTime: Optional. Output only. The time at which the wave started.StartTimestring `json:"startTime,omitempty"`// State: Output only. The state of the wave.//// Possible values://   "STATE_UNSPECIFIED" - Default value.//   "PENDING" - The wave is pending.//   "RUNNING" - The wave is running.//   "SOAKING" - The wave is soaking.//   "COMPLETED" - The wave is completed.//   "FORCED_SOAKING" - The wave is force soaking.Statestring `json:"state,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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RolloutStage: Stage represents a single stage in the Rollout.

func (RolloutStage)MarshalJSONadded inv0.256.0

func (sRolloutStage) MarshalJSON() ([]byte,error)

typeRolloutTargetadded inv0.256.0

type RolloutTarget struct {// Cluster: Optional. Output only. The resource link of the Cluster resource// upgraded in this Rollout. It is formatted as:// ///projects//locations//clusters/. I.e. for GKE clusters, it is formatted// as: //container.googleapis.com/projects//locations//clusters/. For GDCE, it// is formatted as:// //edgecontainer.googleapis.com/projects//locations//clusters/.Clusterstring `json:"cluster,omitempty"`// NodePool: Optional. Output only. The resource link of the NodePool resource// upgraded in this Rollout. It is formatted as:// ///projects//locations//clusters//nodePools/.NodePoolstring `json:"nodePool,omitempty"`// Operation: Optional. Output only. The operation resource name performing the// mutation.Operationstring `json:"operation,omitempty"`// Reason: Optional. Output only. A human-readable description of the current// status.Reasonstring `json:"reason,omitempty"`// State: Output only. The high-level, machine-readable status of this Rollout// for the target.//// Possible values://   "STATE_UNSPECIFIED" - Unspecified state.//   "PENDING" - The Rollout is pending for the target.//   "RUNNING" - The Rollout is running for the target.//   "FAILED" - The Rollout failed for the target.//   "SUCCEEDED" - The Rollout succeeded for the target.//   "PAUSED" - The Rollout is paused for the target.//   "REMOVED" - The target was removed from the Rollout.//   "INELIGIBLE" - The target is ineligible for the Rollout.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "Cluster") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cluster") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RolloutTarget: Metadata about the status of targets (clusters or node pools)involved in the Rollout.

func (RolloutTarget)MarshalJSONadded inv0.256.0

func (sRolloutTarget) MarshalJSON() ([]byte,error)

typeScheduleadded inv0.256.0

type Schedule struct {// Waves: Output only. The schedule of each wave in the Rollout.Waves []*WaveSchedule `json:"waves,omitempty"`// ForceSendFields is a list of field names (e.g. "Waves") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Waves") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Schedule: Schedule represents the schedule of the Rollout.

func (Schedule)MarshalJSONadded inv0.256.0

func (sSchedule) MarshalJSON() ([]byte,error)

typeScopeadded inv0.112.0

type Scope struct {// CreateTime: Output only. When the scope was created.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. When the scope was deleted.DeleteTimestring `json:"deleteTime,omitempty"`// Labels: Optional. Labels for this Scope.Labels map[string]string `json:"labels,omitempty"`// Name: The resource name for the scope// `projects/{project}/locations/{location}/scopes/{scope}`Namestring `json:"name,omitempty"`// NamespaceLabels: Optional. Scope-level cluster namespace labels. For the// member clusters bound to the Scope, these labels are applied to each// namespace under the Scope. Scope-level labels take precedence over// Namespace-level labels (`namespace_labels` in the Fleet Namespace resource)// if they share a key. Keys and values must be Kubernetes-conformant.NamespaceLabels map[string]string `json:"namespaceLabels,omitempty"`// State: Output only. State of the scope resource.State *ScopeLifecycleState `json:"state,omitempty"`// Uid: Output only. Google-generated UUID for this resource. This is unique// across all scope resources. If a scope resource is deleted and another// resource with the same name is created, it gets a different uid.Uidstring `json:"uid,omitempty"`// UpdateTime: Output only. When the scope was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Scope: Scope represents a Scope in a Fleet.

func (Scope)MarshalJSONadded inv0.112.0

func (sScope) MarshalJSON() ([]byte,error)

typeScopeFeatureSpecadded inv0.102.0

type ScopeFeatureSpec struct {// Clusterupgrade: Spec for the ClusterUpgrade feature at the scope levelClusterupgrade *ClusterUpgradeScopeSpec `json:"clusterupgrade,omitempty"`// ForceSendFields is a list of field names (e.g. "Clusterupgrade") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Clusterupgrade") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ScopeFeatureSpec: ScopeFeatureSpec contains feature specs for a fleet scope.

func (ScopeFeatureSpec)MarshalJSONadded inv0.127.0

func (sScopeFeatureSpec) MarshalJSON() ([]byte,error)

typeScopeFeatureStateadded inv0.102.0

type ScopeFeatureState struct {// Clusterupgrade: State for the ClusterUpgrade feature at the scope levelClusterupgrade *ClusterUpgradeScopeState `json:"clusterupgrade,omitempty"`// State: Output only. The "running state" of the Feature in this Scope.State *FeatureState `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "Clusterupgrade") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Clusterupgrade") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ScopeFeatureState: ScopeFeatureState contains Scope-wide Feature statusinformation.

func (ScopeFeatureState)MarshalJSONadded inv0.102.0

func (sScopeFeatureState) MarshalJSON() ([]byte,error)

typeScopeLifecycleStateadded inv0.112.0

type ScopeLifecycleState struct {// Code: Output only. The current state of the scope resource.//// Possible values://   "CODE_UNSPECIFIED" - The code is not set.//   "CREATING" - The scope is being created.//   "READY" - The scope active.//   "DELETING" - The scope is being deleted.//   "UPDATING" - The scope is being updated.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ScopeLifecycleState: ScopeLifecycleState describes the state of a Scoperesource.

func (ScopeLifecycleState)MarshalJSONadded inv0.112.0

func (sScopeLifecycleState) MarshalJSON() ([]byte,error)

typeSecurityPostureConfigadded inv0.151.0

type SecurityPostureConfig struct {// Mode: Sets which mode to use for Security Posture features.//// Possible values://   "MODE_UNSPECIFIED" - Default value not specified.//   "DISABLED" - Disables Security Posture features on the cluster.//   "BASIC" - Applies Security Posture features on the cluster.//   "ENTERPRISE" - Applies the Security Posture off cluster Enterprise level// features.Modestring `json:"mode,omitempty"`// VulnerabilityMode: Sets which mode to use for vulnerability scanning.//// Possible values://   "VULNERABILITY_MODE_UNSPECIFIED" - Default value not specified.//   "VULNERABILITY_DISABLED" - Disables vulnerability scanning on the cluster.//   "VULNERABILITY_BASIC" - Applies basic vulnerability scanning on the// cluster.//   "VULNERABILITY_ENTERPRISE" - Applies the Security Posture's vulnerability// on cluster Enterprise level features.VulnerabilityModestring `json:"vulnerabilityMode,omitempty"`// ForceSendFields is a list of field names (e.g. "Mode") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Mode") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

SecurityPostureConfig: SecurityPostureConfig defines the flags needed toenable/disable features for the Security Posture API.

func (SecurityPostureConfig)MarshalJSONadded inv0.151.0

func (sSecurityPostureConfig) MarshalJSON() ([]byte,error)

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentOrganizations *OrganizationsServiceProjects *ProjectsService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

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.

funcNewService

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

typeServiceMeshAnalysisMessage

type ServiceMeshAnalysisMessage struct {// Args: A UI can combine these args with a template (based on// message_base.type) to produce an internationalized message.Argsgoogleapi.RawMessage `json:"args,omitempty"`// Description: A human readable description of what the error means. It is// suitable for non-internationalize display purposes.Descriptionstring `json:"description,omitempty"`// MessageBase: Details common to all types of Istio and ServiceMesh analysis// messages.MessageBase *ServiceMeshAnalysisMessageBase `json:"messageBase,omitempty"`// ResourcePaths: A list of strings specifying the resource identifiers that// were the cause of message generation. A "path" here may be: * MEMBERSHIP_ID// if the cause is a specific member cluster *// MEMBERSHIP_ID/(NAMESPACE\/)?RESOURCETYPE/NAME if the cause is a resource in// a clusterResourcePaths []string `json:"resourcePaths,omitempty"`// ForceSendFields is a list of field names (e.g. "Args") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Args") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshAnalysisMessage: AnalysisMessage is a single message produced byan analyzer, and it used to communicate to the end user about the state oftheir Service Mesh configuration.

func (ServiceMeshAnalysisMessage)MarshalJSON

func (sServiceMeshAnalysisMessage) MarshalJSON() ([]byte,error)

typeServiceMeshAnalysisMessageBase

type ServiceMeshAnalysisMessageBase struct {// DocumentationUrl: A url pointing to the Service Mesh or Istio documentation// for this specific error type.DocumentationUrlstring `json:"documentationUrl,omitempty"`// Level: Represents how severe a message is.//// Possible values://   "LEVEL_UNSPECIFIED" - Illegal. Same// istio.analysis.v1alpha1.AnalysisMessageBase.Level.UNKNOWN.//   "ERROR" - ERROR represents a misconfiguration that must be fixed.//   "WARNING" - WARNING represents a misconfiguration that should be fixed.//   "INFO" - INFO represents an informational finding.Levelstring `json:"level,omitempty"`// Type: Represents the specific type of a message.Type *ServiceMeshType `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "DocumentationUrl") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DocumentationUrl") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshAnalysisMessageBase: AnalysisMessageBase describes some commoninformation that is needed for all messages.

func (ServiceMeshAnalysisMessageBase)MarshalJSON

func (sServiceMeshAnalysisMessageBase) MarshalJSON() ([]byte,error)

typeServiceMeshConditionadded inv0.173.0

type ServiceMeshCondition struct {// Code: Unique identifier of the condition which describes the condition// recognizable to the user.//// Possible values://   "CODE_UNSPECIFIED" - Default Unspecified code//   "MESH_IAM_PERMISSION_DENIED" - Mesh IAM permission denied error code//   "MESH_IAM_CROSS_PROJECT_PERMISSION_DENIED" - Permission denied error code// for cross-project//   "CNI_CONFIG_UNSUPPORTED" - CNI config unsupported error code//   "GKE_SANDBOX_UNSUPPORTED" - GKE sandbox unsupported error code//   "NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED" - Nodepool workload// identity federation required error code//   "CNI_INSTALLATION_FAILED" - CNI installation failed error code//   "CNI_POD_UNSCHEDULABLE" - CNI pod unschedulable error code//   "CLUSTER_HAS_ZERO_NODES" - Cluster has zero node code//   "CANONICAL_SERVICE_ERROR" - Failure to reconcile CanonicalServices//   "UNSUPPORTED_MULTIPLE_CONTROL_PLANES" - Multiple control planes// unsupported error code//   "VPCSC_GA_SUPPORTED" - VPC-SC GA is supported for this control plane.//   "DEPRECATED_SPEC_CONTROL_PLANE_MANAGEMENT" - User is using deprecated// ControlPlaneManagement and they have not yet set Management.//   "DEPRECATED_SPEC_CONTROL_PLANE_MANAGEMENT_SAFE" - User is using deprecated// ControlPlaneManagement and they have already set Management.//   "CONFIG_APPLY_INTERNAL_ERROR" - Configuration (Istio/k8s resources) failed// to apply due to internal error.//   "CONFIG_VALIDATION_ERROR" - Configuration failed to be applied due to// being invalid.//   "CONFIG_VALIDATION_WARNING" - Encountered configuration(s) with possible// unintended behavior or invalid configuration. These configs may not have// been applied.//   "QUOTA_EXCEEDED_BACKEND_SERVICES" - BackendService quota exceeded error// code.//   "QUOTA_EXCEEDED_HEALTH_CHECKS" - HealthCheck quota exceeded error code.//   "QUOTA_EXCEEDED_HTTP_ROUTES" - HTTPRoute quota exceeded error code.//   "QUOTA_EXCEEDED_TCP_ROUTES" - TCPRoute quota exceeded error code.//   "QUOTA_EXCEEDED_TLS_ROUTES" - TLS routes quota exceeded error code.//   "QUOTA_EXCEEDED_TRAFFIC_POLICIES" - TrafficPolicy quota exceeded error// code.//   "QUOTA_EXCEEDED_ENDPOINT_POLICIES" - EndpointPolicy quota exceeded error// code.//   "QUOTA_EXCEEDED_GATEWAYS" - Gateway quota exceeded error code.//   "QUOTA_EXCEEDED_MESHES" - Mesh quota exceeded error code.//   "QUOTA_EXCEEDED_SERVER_TLS_POLICIES" - ServerTLSPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_CLIENT_TLS_POLICIES" - ClientTLSPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_SERVICE_LB_POLICIES" - ServiceLBPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_HTTP_FILTERS" - HTTPFilter quota exceeded error code.//   "QUOTA_EXCEEDED_TCP_FILTERS" - TCPFilter quota exceeded error code.//   "QUOTA_EXCEEDED_NETWORK_ENDPOINT_GROUPS" - NetworkEndpointGroup quota// exceeded error code.//   "LEGACY_MC_SECRETS" - Legacy istio secrets found for multicluster error// code//   "WORKLOAD_IDENTITY_REQUIRED" - Workload identity required error code//   "NON_STANDARD_BINARY_USAGE" - Non-standard binary usage error code//   "UNSUPPORTED_GATEWAY_CLASS" - Unsupported gateway class error code//   "MANAGED_CNI_NOT_ENABLED" - Managed CNI not enabled error code//   "MODERNIZATION_SCHEDULED" - Modernization is scheduled for a cluster.//   "MODERNIZATION_IN_PROGRESS" - Modernization is in progress for a cluster.//   "MODERNIZATION_COMPLETED" - Modernization is completed for a cluster.//   "MODERNIZATION_ABORTED" - Modernization is aborted for a cluster.//   "MODERNIZATION_PREPARING" - Preparing cluster so that its workloads can be// migrated.//   "MODERNIZATION_STALLED" - Modernization is stalled for a cluster.//   "MODERNIZATION_PREPARED" - Cluster has been prepared for its workloads to// be migrated.//   "MODERNIZATION_MIGRATING_WORKLOADS" - Migrating the cluster's workloads to// the new implementation.//   "MODERNIZATION_ROLLING_BACK_CLUSTER" - Rollback is in progress for// modernization of a cluster.//   "MODERNIZATION_WILL_BE_SCHEDULED" - Modernization will be scheduled for a// fleet.//   "MODERNIZATION_MANUAL" - Fleet is opted out from automated modernization.//   "MODERNIZATION_ELIGIBLE" - Fleet is eligible for modernization.//   "MODERNIZATION_MODERNIZING" - Modernization of one or more clusters in a// fleet is in progress.//   "MODERNIZATION_MODERNIZED_SOAKING" - Modernization of all the fleet's// clusters is complete. Soaking before finalizing the modernization.//   "MODERNIZATION_FINALIZED" - Modernization is finalized for all clusters in// a fleet. Rollback is no longer allowed.//   "MODERNIZATION_ROLLING_BACK_FLEET" - Rollback is in progress for// modernization of all clusters in a fleet.Codestring `json:"code,omitempty"`// Details: A short summary about the issue.Detailsstring `json:"details,omitempty"`// DocumentationLink: Links contains actionable information.DocumentationLinkstring `json:"documentationLink,omitempty"`// Severity: Severity level of the condition.//// Possible values://   "SEVERITY_UNSPECIFIED" - Unspecified severity//   "ERROR" - Indicates an issue that prevents the mesh from operating// correctly//   "WARNING" - Indicates a setting is likely wrong, but the mesh is still// able to operate//   "INFO" - An informational message, not requiring any actionSeveritystring `json:"severity,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshCondition: Condition being reported.

func (ServiceMeshCondition)MarshalJSONadded inv0.173.0

func (sServiceMeshCondition) MarshalJSON() ([]byte,error)

typeServiceMeshControlPlaneManagementadded inv0.67.0

type ServiceMeshControlPlaneManagement struct {// Details: Explanation of state.Details []*ServiceMeshStatusDetails `json:"details,omitempty"`// Implementation: Output only. Implementation of managed control plane.//// Possible values://   "IMPLEMENTATION_UNSPECIFIED" - Unspecified//   "ISTIOD" - A Google build of istiod is used for the managed control plane.//   "TRAFFIC_DIRECTOR" - Traffic director is used for the managed control// plane.//   "UPDATING" - The control plane implementation is being updated.Implementationstring `json:"implementation,omitempty"`// State: LifecycleState of control plane management.//// Possible values://   "LIFECYCLE_STATE_UNSPECIFIED" - Unspecified//   "DISABLED" - DISABLED means that the component is not enabled.//   "FAILED_PRECONDITION" - FAILED_PRECONDITION means that provisioning cannot// proceed because of some characteristic of the member cluster.//   "PROVISIONING" - PROVISIONING means that provisioning is in progress.//   "ACTIVE" - ACTIVE means that the component is ready for use.//   "STALLED" - STALLED means that provisioning could not be done.//   "NEEDS_ATTENTION" - NEEDS_ATTENTION means that the component is ready, but// some user intervention is required. (For example that the user should// migrate workloads to a new control plane revision.)//   "DEGRADED" - DEGRADED means that the component is ready, but operating in// a degraded state.//   "DEPROVISIONING" - DEPROVISIONING means that deprovisioning is in// progress.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "Details") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Details") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshControlPlaneManagement: Status of control plane management.

func (ServiceMeshControlPlaneManagement)MarshalJSONadded inv0.67.0

func (sServiceMeshControlPlaneManagement) MarshalJSON() ([]byte,error)

typeServiceMeshDataPlaneManagementadded inv0.84.0

type ServiceMeshDataPlaneManagement struct {// Details: Explanation of the status.Details []*ServiceMeshStatusDetails `json:"details,omitempty"`// State: Lifecycle status of data plane management.//// Possible values://   "LIFECYCLE_STATE_UNSPECIFIED" - Unspecified//   "DISABLED" - DISABLED means that the component is not enabled.//   "FAILED_PRECONDITION" - FAILED_PRECONDITION means that provisioning cannot// proceed because of some characteristic of the member cluster.//   "PROVISIONING" - PROVISIONING means that provisioning is in progress.//   "ACTIVE" - ACTIVE means that the component is ready for use.//   "STALLED" - STALLED means that provisioning could not be done.//   "NEEDS_ATTENTION" - NEEDS_ATTENTION means that the component is ready, but// some user intervention is required. (For example that the user should// migrate workloads to a new control plane revision.)//   "DEGRADED" - DEGRADED means that the component is ready, but operating in// a degraded state.//   "DEPROVISIONING" - DEPROVISIONING means that deprovisioning is in// progress.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "Details") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Details") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshDataPlaneManagement: Status of data plane management. Onlyreported per-member.

func (ServiceMeshDataPlaneManagement)MarshalJSONadded inv0.84.0

func (sServiceMeshDataPlaneManagement) MarshalJSON() ([]byte,error)

typeServiceMeshFeatureConditionadded inv0.222.0

type ServiceMeshFeatureCondition struct {// Code: Unique identifier of the condition which describes the condition// recognizable to the user.//// Possible values://   "CODE_UNSPECIFIED" - Default Unspecified code//   "MESH_IAM_PERMISSION_DENIED" - Mesh IAM permission denied error code//   "MESH_IAM_CROSS_PROJECT_PERMISSION_DENIED" - Permission denied error code// for cross-project//   "CNI_CONFIG_UNSUPPORTED" - CNI config unsupported error code//   "GKE_SANDBOX_UNSUPPORTED" - GKE sandbox unsupported error code//   "NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED" - Nodepool workload// identity federation required error code//   "CNI_INSTALLATION_FAILED" - CNI installation failed error code//   "CNI_POD_UNSCHEDULABLE" - CNI pod unschedulable error code//   "CLUSTER_HAS_ZERO_NODES" - Cluster has zero node code//   "CANONICAL_SERVICE_ERROR" - Failure to reconcile CanonicalServices//   "UNSUPPORTED_MULTIPLE_CONTROL_PLANES" - Multiple control planes// unsupported error code//   "VPCSC_GA_SUPPORTED" - VPC-SC GA is supported for this control plane.//   "DEPRECATED_SPEC_CONTROL_PLANE_MANAGEMENT" - User is using deprecated// ControlPlaneManagement and they have not yet set Management.//   "DEPRECATED_SPEC_CONTROL_PLANE_MANAGEMENT_SAFE" - User is using deprecated// ControlPlaneManagement and they have already set Management.//   "CONFIG_APPLY_INTERNAL_ERROR" - Configuration (Istio/k8s resources) failed// to apply due to internal error.//   "CONFIG_VALIDATION_ERROR" - Configuration failed to be applied due to// being invalid.//   "CONFIG_VALIDATION_WARNING" - Encountered configuration(s) with possible// unintended behavior or invalid configuration. These configs may not have// been applied.//   "QUOTA_EXCEEDED_BACKEND_SERVICES" - BackendService quota exceeded error// code.//   "QUOTA_EXCEEDED_HEALTH_CHECKS" - HealthCheck quota exceeded error code.//   "QUOTA_EXCEEDED_HTTP_ROUTES" - HTTPRoute quota exceeded error code.//   "QUOTA_EXCEEDED_TCP_ROUTES" - TCPRoute quota exceeded error code.//   "QUOTA_EXCEEDED_TLS_ROUTES" - TLS routes quota exceeded error code.//   "QUOTA_EXCEEDED_TRAFFIC_POLICIES" - TrafficPolicy quota exceeded error// code.//   "QUOTA_EXCEEDED_ENDPOINT_POLICIES" - EndpointPolicy quota exceeded error// code.//   "QUOTA_EXCEEDED_GATEWAYS" - Gateway quota exceeded error code.//   "QUOTA_EXCEEDED_MESHES" - Mesh quota exceeded error code.//   "QUOTA_EXCEEDED_SERVER_TLS_POLICIES" - ServerTLSPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_CLIENT_TLS_POLICIES" - ClientTLSPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_SERVICE_LB_POLICIES" - ServiceLBPolicy quota exceeded// error code.//   "QUOTA_EXCEEDED_HTTP_FILTERS" - HTTPFilter quota exceeded error code.//   "QUOTA_EXCEEDED_TCP_FILTERS" - TCPFilter quota exceeded error code.//   "QUOTA_EXCEEDED_NETWORK_ENDPOINT_GROUPS" - NetworkEndpointGroup quota// exceeded error code.//   "LEGACY_MC_SECRETS" - Legacy istio secrets found for multicluster error// code.//   "WORKLOAD_IDENTITY_REQUIRED" - Workload identity required error code.//   "NON_STANDARD_BINARY_USAGE" - Non-standard binary usage error code.//   "UNSUPPORTED_GATEWAY_CLASS" - Unsupported gateway class error code.//   "MANAGED_CNI_NOT_ENABLED" - Managed CNI not enabled error code.//   "MODERNIZATION_SCHEDULED" - Modernization is scheduled for a cluster.//   "MODERNIZATION_IN_PROGRESS" - Modernization is in progress for a cluster.//   "MODERNIZATION_COMPLETED" - Modernization is completed for a cluster.//   "MODERNIZATION_ABORTED" - Modernization is aborted for a cluster.//   "MODERNIZATION_PREPARING" - Preparing cluster so that its workloads can be// migrated.//   "MODERNIZATION_STALLED" - Modernization is stalled for a cluster.//   "MODERNIZATION_PREPARED" - Cluster has been prepared for its workloads to// be migrated.//   "MODERNIZATION_MIGRATING_WORKLOADS" - Migrating the cluster's workloads to// the new implementation.//   "MODERNIZATION_ROLLING_BACK_CLUSTER" - Rollback is in progress for// modernization of a cluster.//   "MODERNIZATION_WILL_BE_SCHEDULED" - Modernization will be scheduled for a// fleet.//   "MODERNIZATION_MANUAL" - Fleet is opted out from automated modernization.//   "MODERNIZATION_ELIGIBLE" - Fleet is eligible for modernization.//   "MODERNIZATION_MODERNIZING" - Modernization of one or more clusters in a// fleet is in progress.//   "MODERNIZATION_MODERNIZED_SOAKING" - Modernization of all the fleet's// clusters is complete. Soaking before finalizing the modernization.//   "MODERNIZATION_FINALIZED" - Modernization is finalized for all clusters in// a fleet. Rollback is no longer allowed.//   "MODERNIZATION_ROLLING_BACK_FLEET" - Rollback is in progress for// modernization of all clusters in a fleet.Codestring `json:"code,omitempty"`// Details: A short summary about the issue.Detailsstring `json:"details,omitempty"`// DocumentationLink: Links contains actionable information.DocumentationLinkstring `json:"documentationLink,omitempty"`// Severity: Severity level of the condition.//// Possible values://   "SEVERITY_UNSPECIFIED" - Unspecified severity//   "ERROR" - Indicates an issue that prevents the mesh from operating// correctly//   "WARNING" - Indicates a setting is likely wrong, but the mesh is still// able to operate//   "INFO" - An informational message, not requiring any actionSeveritystring `json:"severity,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshFeatureCondition: Condition being reported.

func (ServiceMeshFeatureCondition)MarshalJSONadded inv0.222.0

func (sServiceMeshFeatureCondition) MarshalJSON() ([]byte,error)

typeServiceMeshFeatureState

type ServiceMeshFeatureState struct {// AnalysisMessages: Output only. Results of running Service Mesh analyzers.AnalysisMessages []*ServiceMeshAnalysisMessage `json:"analysisMessages,omitempty"`// Conditions: Output only. List of conditions reported for this feature.Conditions []*ServiceMeshFeatureCondition `json:"conditions,omitempty"`// ForceSendFields is a list of field names (e.g. "AnalysisMessages") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnalysisMessages") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshFeatureState: **Service Mesh**: State for the whole Hub, asanalyzed by the Service Mesh Hub Controller.

func (ServiceMeshFeatureState)MarshalJSON

func (sServiceMeshFeatureState) MarshalJSON() ([]byte,error)

typeServiceMeshMembershipSpecadded inv0.60.0

type ServiceMeshMembershipSpec struct {// ConfigApi: Optional. Specifies the API that will be used for configuring the// mesh workloads.//// Possible values://   "CONFIG_API_UNSPECIFIED" - Unspecified//   "CONFIG_API_ISTIO" - Use the Istio API for configuration.//   "CONFIG_API_GATEWAY" - Use the K8s Gateway API for configuration.ConfigApistring `json:"configApi,omitempty"`// ControlPlane: Deprecated: use `management` instead Enables automatic control// plane management.//// Possible values://   "CONTROL_PLANE_MANAGEMENT_UNSPECIFIED" - Unspecified//   "AUTOMATIC" - Google should provision a control plane revision and make it// available in the cluster. Google will enroll this revision in a release// channel and keep it up to date. The control plane revision may be a managed// service, or a managed install.//   "MANUAL" - User will manually configure the control plane (e.g. via CLI,// or via the ControlPlaneRevision KRM API)ControlPlanestring `json:"controlPlane,omitempty"`// DefaultChannel: Determines which release channel to use for default// injection and service mesh APIs.//// Possible values://   "CHANNEL_UNSPECIFIED" - Unspecified//   "RAPID" - RAPID channel is offered on an early access basis for customers// who want to test new releases.//   "REGULAR" - REGULAR channel is intended for production users who want to// take advantage of new features.//   "STABLE" - STABLE channel includes versions that are known to be stable// and reliable in production.DefaultChannelstring `json:"defaultChannel,omitempty"`// Management: Optional. Enables automatic Service Mesh management.//// Possible values://   "MANAGEMENT_UNSPECIFIED" - Unspecified//   "MANAGEMENT_AUTOMATIC" - Google should manage my Service Mesh for the// cluster.//   "MANAGEMENT_MANUAL" - User will manually configure their service mesh// components.//   "MANAGEMENT_NOT_INSTALLED" - Google should remove any managed Service Mesh// components from this cluster and deprovision any resources.Managementstring `json:"management,omitempty"`// ForceSendFields is a list of field names (e.g. "ConfigApi") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConfigApi") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshMembershipSpec: **Service Mesh**: Spec for a single Membershipfor the servicemesh feature

func (ServiceMeshMembershipSpec)MarshalJSONadded inv0.67.0

func (sServiceMeshMembershipSpec) MarshalJSON() ([]byte,error)

typeServiceMeshMembershipState

type ServiceMeshMembershipState struct {// AnalysisMessages: Output only. Results of running Service Mesh analyzers.AnalysisMessages []*ServiceMeshAnalysisMessage `json:"analysisMessages,omitempty"`// Conditions: Output only. List of conditions reported for this membership.Conditions []*ServiceMeshCondition `json:"conditions,omitempty"`// ConfigApiVersion: The API version (i.e. Istio CRD version) for configuring// service mesh in this cluster. This version is influenced by the// `default_channel` field.ConfigApiVersionstring `json:"configApiVersion,omitempty"`// ControlPlaneManagement: Output only. Status of control plane managementControlPlaneManagement *ServiceMeshControlPlaneManagement `json:"controlPlaneManagement,omitempty"`// DataPlaneManagement: Output only. Status of data plane management.DataPlaneManagement *ServiceMeshDataPlaneManagement `json:"dataPlaneManagement,omitempty"`// ForceSendFields is a list of field names (e.g. "AnalysisMessages") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnalysisMessages") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshMembershipState: **Service Mesh**: State for a single Membership,as analyzed by the Service Mesh Hub Controller.

func (ServiceMeshMembershipState)MarshalJSON

func (sServiceMeshMembershipState) MarshalJSON() ([]byte,error)

typeServiceMeshStatusDetailsadded inv0.67.0

type ServiceMeshStatusDetails struct {// Code: A machine-readable code that further describes a broad status.Codestring `json:"code,omitempty"`// Details: Human-readable explanation of code.Detailsstring `json:"details,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshStatusDetails: Structured and human-readable details for astatus.

func (ServiceMeshStatusDetails)MarshalJSONadded inv0.67.0

func (sServiceMeshStatusDetails) MarshalJSON() ([]byte,error)

typeServiceMeshType

type ServiceMeshType struct {// Code: A 7 character code matching `^IST[0-9]{4}$` or `^ASM[0-9]{4}$`,// intended to uniquely identify the message type. (e.g. "IST0001" is mapped to// the "InternalError" message type.)Codestring `json:"code,omitempty"`// DisplayName: A human-readable name for the message type. e.g.// "InternalError", "PodMissingProxy". This should be the same for all messages// of the same type. (This corresponds to the `name` field in open-source// Istio.)DisplayNamestring `json:"displayName,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ServiceMeshType: A unique identifier for the type of message. Display_nameis intended to be human-readable, code is intended to be machine readable.There should be a one-to-one mapping between display_name and code. (i.e. donot re-use display_names or codes between message types.) Seeistio.analysis.v1alpha1.AnalysisMessageBase.Type

func (ServiceMeshType)MarshalJSON

func (sServiceMeshType) MarshalJSON() ([]byte,error)

typeSetIamPolicyRequest

type SetIamPolicyRequest struct {// Policy: REQUIRED: The complete policy to be applied to the `resource`. The// size of the policy is limited to a few 10s of KB. An empty policy is a valid// policy but certain Google Cloud services (such as Projects) might reject// them.Policy *Policy `json:"policy,omitempty"`// UpdateMask: OPTIONAL: A FieldMask specifying which fields of the policy to// modify. Only the fields in the mask will be modified. If no mask is// provided, the following default mask is used: `paths: "bindings, etag"UpdateMaskstring `json:"updateMask,omitempty"`// ForceSendFields is a list of field names (e.g. "Policy") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Policy") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

SetIamPolicyRequest: Request message for `SetIamPolicy` method.

func (SetIamPolicyRequest)MarshalJSON

func (sSetIamPolicyRequest) MarshalJSON() ([]byte,error)

typeStageadded inv0.256.0

type Stage struct {// ClusterSelector: Optional. Filter members of fleets (above) to a subset of// clusters. If not specified, all clusters in the fleets are selected.ClusterSelector *ClusterSelector `json:"clusterSelector,omitempty"`// FleetProjects: Required. List of Fleet projects to select the clusters from.// Expected format: projects/{project}FleetProjects []string `json:"fleetProjects,omitempty"`// SoakDuration: Optional. Soak time after upgrading all the clusters in the// stage.SoakDurationstring `json:"soakDuration,omitempty"`// ForceSendFields is a list of field names (e.g. "ClusterSelector") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClusterSelector") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Stage: Rollout stage.

func (Stage)MarshalJSONadded inv0.256.0

func (sStage) MarshalJSON() ([]byte,error)

typeStatusadded inv0.61.0

type Status struct {// Code: Code specifies AppDevExperienceFeature's subcomponent ready state.//// Possible values://   "CODE_UNSPECIFIED" - Not set.//   "OK" - AppDevExperienceFeature's specified subcomponent is ready.//   "FAILED" - AppDevExperienceFeature's specified subcomponent ready state is// false. This means AppDevExperienceFeature has encountered an issue that// blocks all, or a portion, of its normal operation. See the `description` for// more details.//   "UNKNOWN" - AppDevExperienceFeature's specified subcomponent has a pending// or unknown state.Codestring `json:"code,omitempty"`// Description: Description is populated if Code is Failed, explaining why it// has failed.Descriptionstring `json:"description,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Status: Status specifies state for the subcomponent.

func (Status)MarshalJSONadded inv0.61.0

func (sStatus) MarshalJSON() ([]byte,error)

typeTestIamPermissionsRequest

type TestIamPermissionsRequest struct {// Permissions: The set of permissions to check for the `resource`. Permissions// with wildcards (such as `*` or `storage.*`) are not allowed. For more// information see IAM Overview// (https://cloud.google.com/iam/docs/overview#permissions).Permissions []string `json:"permissions,omitempty"`// ForceSendFields is a list of field names (e.g. "Permissions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Permissions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

TestIamPermissionsRequest: Request message for `TestIamPermissions` method.

func (TestIamPermissionsRequest)MarshalJSON

func (sTestIamPermissionsRequest) MarshalJSON() ([]byte,error)

typeTestIamPermissionsResponse

type TestIamPermissionsResponse struct {// Permissions: A subset of `TestPermissionsRequest.permissions` that the// caller is allowed.Permissions []string `json:"permissions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Permissions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Permissions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

TestIamPermissionsResponse: Response message for `TestIamPermissions`method.

func (TestIamPermissionsResponse)MarshalJSON

func (sTestIamPermissionsResponse) MarshalJSON() ([]byte,error)

typeTypeMetaadded inv0.60.0

type TypeMeta struct {// ApiVersion: APIVersion of the resource (e.g. v1).ApiVersionstring `json:"apiVersion,omitempty"`// Kind: Kind of the resource (e.g. Deployment).Kindstring `json:"kind,omitempty"`// ForceSendFields is a list of field names (e.g. "ApiVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ApiVersion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

TypeMeta: TypeMeta is the type information needed for content unmarshallingof Kubernetes resources in the manifest.

func (TypeMeta)MarshalJSONadded inv0.60.0

func (sTypeMeta) MarshalJSON() ([]byte,error)

typeValidateCreateMembershipRequestadded inv0.97.0

type ValidateCreateMembershipRequest struct {// Membership: Required. Membership resource to be created.Membership *Membership `json:"membership,omitempty"`// MembershipId: Required. Client chosen membership id.MembershipIdstring `json:"membershipId,omitempty"`// ForceSendFields is a list of field names (e.g. "Membership") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Membership") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ValidateCreateMembershipRequest: Request message for the`GkeHub.ValidateCreateMembership` method.

func (ValidateCreateMembershipRequest)MarshalJSONadded inv0.97.0

func (sValidateCreateMembershipRequest) MarshalJSON() ([]byte,error)

typeValidateCreateMembershipResponseadded inv0.97.0

type ValidateCreateMembershipResponse struct {// ValidationResults: Wraps all the validator results.ValidationResults []*ValidationResult `json:"validationResults,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ValidationResults") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ValidationResults") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ValidateCreateMembershipResponse: Response message for the`GkeHub.ValidateCreateMembership` method.

func (ValidateCreateMembershipResponse)MarshalJSONadded inv0.97.0

func (sValidateCreateMembershipResponse) MarshalJSON() ([]byte,error)

typeValidateExclusivityResponseadded inv0.198.0

type ValidateExclusivityResponse struct {// Status: The validation result. * `OK` means that exclusivity is validated,// assuming the manifest produced by GenerateExclusivityManifest is// successfully applied. * `ALREADY_EXISTS` means that the Membership CRD is// already owned by another Hub. See `status.message` for more information.Status *GoogleRpcStatus `json:"status,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ValidateExclusivityResponse: The response of exclusivity artifactsvalidation result status.

func (ValidateExclusivityResponse)MarshalJSONadded inv0.198.0

func (sValidateExclusivityResponse) MarshalJSON() ([]byte,error)

typeValidationResultadded inv0.97.0

type ValidationResult struct {// Result: Additional information for the validation.Resultstring `json:"result,omitempty"`// Success: Whether the validation is passed or not.Successbool `json:"success,omitempty"`// Validator: Validator type to validate membership with.//// Possible values://   "VALIDATOR_TYPE_UNSPECIFIED" - UNSPECIFIED validator.//   "MEMBERSHIP_ID" - MEMBERSHIP_ID validator validates that the membership_id// is still available.//   "CROSS_PROJECT_PERMISSION" - CROSS_PROJECT_PERMISSION validator validates// that the cross-project role binding for the service agent is in place.//   "FLEET_ALLOWED_FOR_PROJECT_GUARDRAIL" -// FLEET_ALLOWED_FOR_PROJECT_GUARDRAIL validator validates that the fleet// project is allowed for the project guardrail.Validatorstring `json:"validator,omitempty"`// ForceSendFields is a list of field names (e.g. "Result") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Result") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ValidationResult: ValidationResults are results set by each validatorrunning during ValidateCreateMembership.

func (ValidationResult)MarshalJSONadded inv0.97.0

func (sValidationResult) MarshalJSON() ([]byte,error)

typeVersionUpgradeadded inv0.256.0

type VersionUpgrade struct {// DesiredVersion: Optional. Desired version of the component.DesiredVersionstring `json:"desiredVersion,omitempty"`// Type: Optional. Type of version upgrade specifies which component should be// upgraded.//// Possible values://   "TYPE_UNSPECIFIED" - Default value.//   "TYPE_CONTROL_PLANE" - Control plane upgrade.//   "TYPE_NODE_POOL" - Node pool upgrade.//   "TYPE_CONFIG_SYNC" - Config Sync upgrade.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "DesiredVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DesiredVersion") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

VersionUpgrade: Config for version upgrade of clusters.

func (VersionUpgrade)MarshalJSONadded inv0.256.0

func (sVersionUpgrade) MarshalJSON() ([]byte,error)

typeWaveScheduleadded inv0.256.0

type WaveSchedule struct {// WaveEndTime: Output only. The time at which the wave ends.WaveEndTimestring `json:"waveEndTime,omitempty"`// WaveNumber: Output only. The wave number to which this schedule applies.WaveNumberint64 `json:"waveNumber,omitempty"`// WaveStartTime: Output only. The time at which the wave starts.WaveStartTimestring `json:"waveStartTime,omitempty"`// ForceSendFields is a list of field names (e.g. "WaveEndTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "WaveEndTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WaveSchedule: WaveSchedule represents the schedule of a single rollout wave.

func (WaveSchedule)MarshalJSONadded inv0.256.0

func (sWaveSchedule) MarshalJSON() ([]byte,error)

typeWorkloadIdentityFeatureSpecadded inv0.231.0

type WorkloadIdentityFeatureSpec struct {// ScopeTenancyPool: Pool to be used for Workload Identity. This pool in// trust-domain mode is used with Fleet Tenancy, so that sameness can be// enforced. ex:// projects/example/locations/global/workloadidentitypools/custompoolScopeTenancyPoolstring `json:"scopeTenancyPool,omitempty"`// ForceSendFields is a list of field names (e.g. "ScopeTenancyPool") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ScopeTenancyPool") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WorkloadIdentityFeatureSpec: **WorkloadIdentity**: Global featurespecification.

func (WorkloadIdentityFeatureSpec)MarshalJSONadded inv0.231.0

func (sWorkloadIdentityFeatureSpec) MarshalJSON() ([]byte,error)

typeWorkloadIdentityFeatureStateadded inv0.231.0

type WorkloadIdentityFeatureState struct {// NamespaceStateDetails: The state of the IAM namespaces for the fleet.NamespaceStateDetails map[string]WorkloadIdentityNamespaceStateDetail `json:"namespaceStateDetails,omitempty"`// NamespaceStates: Deprecated, this field will be erased after code is changed// to use the new field.NamespaceStates map[string]string `json:"namespaceStates,omitempty"`// ScopeTenancyWorkloadIdentityPool: The full name of the scope-tenancy pool// for the fleet.ScopeTenancyWorkloadIdentityPoolstring `json:"scopeTenancyWorkloadIdentityPool,omitempty"`// WorkloadIdentityPool: The full name of the svc.id.goog pool for the fleet.WorkloadIdentityPoolstring `json:"workloadIdentityPool,omitempty"`// WorkloadIdentityPoolStateDetails: The state of the Workload Identity Pools// for the fleet.WorkloadIdentityPoolStateDetails map[string]WorkloadIdentityWorkloadIdentityPoolStateDetail `json:"workloadIdentityPoolStateDetails,omitempty"`// ForceSendFields is a list of field names (e.g. "NamespaceStateDetails") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NamespaceStateDetails") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WorkloadIdentityFeatureState: **WorkloadIdentity**: Global feature state.

func (WorkloadIdentityFeatureState)MarshalJSONadded inv0.231.0

func (sWorkloadIdentityFeatureState) MarshalJSON() ([]byte,error)

typeWorkloadIdentityMembershipStateadded inv0.231.0

type WorkloadIdentityMembershipState struct {// Description: Deprecated, this field will be erased after code is changed to// use the new field.Descriptionstring `json:"description,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WorkloadIdentityMembershipState: **WorkloadIdentity**: Themembership-specific state for WorkloadIdentity feature.

func (WorkloadIdentityMembershipState)MarshalJSONadded inv0.231.0

func (sWorkloadIdentityMembershipState) MarshalJSON() ([]byte,error)

typeWorkloadIdentityNamespaceStateDetailadded inv0.231.0

type WorkloadIdentityNamespaceStateDetail struct {// Code: The state of the IAM namespace.//// Possible values://   "NAMESPACE_STATE_UNSPECIFIED" - Unknown state.//   "NAMESPACE_STATE_OK" - The Namespace was created/updated successfully.//   "NAMESPACE_STATE_ERROR" - The Namespace was not created/updated// successfully. The error message is in the description field.Codestring `json:"code,omitempty"`// Description: A human-readable description of the current state or returned// error.Descriptionstring `json:"description,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WorkloadIdentityNamespaceStateDetail: NamespaceStateDetail represents thestate of a IAM namespace.

func (WorkloadIdentityNamespaceStateDetail)MarshalJSONadded inv0.231.0

typeWorkloadIdentityWorkloadIdentityPoolStateDetailadded inv0.231.0

type WorkloadIdentityWorkloadIdentityPoolStateDetail struct {// Code: The state of the Workload Identity Pool.//// Possible values://   "WORKLOAD_IDENTITY_POOL_STATE_UNSPECIFIED" - Unknown state.//   "WORKLOAD_IDENTITY_POOL_STATE_OK" - The Workload Identity Pool was// created/updated successfully.//   "WORKLOAD_IDENTITY_POOL_STATE_ERROR" - The Workload Identity Pool was not// created/updated successfully. The error message is in the description field.Codestring `json:"code,omitempty"`// Description: A human-readable description of the current state or returned// error.Descriptionstring `json:"description,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

WorkloadIdentityWorkloadIdentityPoolStateDetail:WorkloadIdentityPoolStateDetail represents the state of the WorkloadIdentity Pools for the fleet.

func (WorkloadIdentityWorkloadIdentityPoolStateDetail)MarshalJSONadded inv0.231.0

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp