networkconnectivity

package
v0.181.0 Latest Latest
Warning

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

Go to latest
Published: May 16, 2024 License: BSD-3-Clause Imports: 16 Imported by: 0

Documentation

Overview

Package networkconnectivity provides access to the Network Connectivity API.

For product documentation, see: https://cloud.google.com/network-connectivity/docs/reference/networkconnectivity/rest

Library status

These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.

When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/networkconnectivity/v1"
...
ctx := context.Background()
networkconnectivityService, err := networkconnectivity.NewService(ctx)

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

Other authentication options

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

networkconnectivityService, err := networkconnectivity.NewService(ctx, option.WithAPIKey("AIza..."))

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

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

See google.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

type AcceptHubSpokeRequest added in v0.140.0

type AcceptHubSpokeRequest struct {
	// RequestId: Optional. A request ID to identify requests. Specify a unique
	// request ID so that if you must retry your request, the server knows to
	// ignore the request if it has already been completed. The server guarantees
	// that a request doesn't result in creation of duplicate commitments for at
	// least 60 minutes. For example, consider a situation where you make an
	// initial request and the request times out. If you make the request again
	// with the same request ID, the server can check to see whether the original
	// operation was received. If it was, the server ignores the second request.
	// This behavior prevents clients from mistakenly creating duplicate
	// commitments. The request ID must be a valid UUID, with the exception that
	// zero UUID is not supported (00000000-0000-0000-0000-000000000000).
	RequestId string `json:"requestId,omitempty"`
	// SpokeUri: Required. The URI of the spoke to accept into the hub.
	SpokeUri string `json:"spokeUri,omitempty"`
	// ForceSendFields is a list of field names (e.g. "RequestId") 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. "RequestId") 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:"-"`
}

AcceptHubSpokeRequest: The request for HubService.AcceptHubSpoke.

func (*AcceptHubSpokeRequest) MarshalJSON added in v0.140.0

func (s *AcceptHubSpokeRequest) MarshalJSON() ([]byte, error)

type AcceptHubSpokeResponse added in v0.142.0

type AcceptHubSpokeResponse struct {
	// Spoke: The spoke that was operated on.
	Spoke *Spoke `json:"spoke,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Spoke") 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. "Spoke") 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:"-"`
}

AcceptHubSpokeResponse: The response for HubService.AcceptHubSpoke.

func (*AcceptHubSpokeResponse) MarshalJSON added in v0.142.0

func (s *AcceptHubSpokeResponse) MarshalJSON() ([]byte, error)

type AuditConfig

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.
	Service string `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. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:[email protected]" ] }, { "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:[email protected]" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `[email protected]` from DATA_READ logging, and `[email protected]` from DATA_WRITE logging.

func (*AuditConfig) MarshalJSON

func (s *AuditConfig) MarshalJSON() ([]byte, error)

type AuditLogConfig

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 list
	LogType string `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 of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:[email protected]" ] }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from DATA_READ logging.

func (*AuditLogConfig) MarshalJSON

func (s *AuditLogConfig) MarshalJSON() ([]byte, error)

type AutoAccept added in v0.181.0

type AutoAccept struct {
	// AutoAcceptProjects: A list of project ids or project numbers for which you
	// want to enable auto-accept. The auto-accept setting is applied to spokes
	// being created or updated in these projects.
	AutoAcceptProjects []string `json:"autoAcceptProjects,omitempty"`
	// ForceSendFields is a list of field names (e.g. "AutoAcceptProjects") 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. "AutoAcceptProjects") 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:"-"`
}

AutoAccept: The auto-accept setting for a group controls whether proposed spokes are automatically attached to the hub. If auto-accept is enabled, the spoke immediately is attached to the hub and becomes part of the group. In this case, the new spoke is in the ACTIVE state. If auto-accept is disabled, the spoke goes to the INACTIVE state, and it must be reviewed and accepted by a hub administrator.

func (*AutoAccept) MarshalJSON added in v0.181.0

func (s *AutoAccept) MarshalJSON() ([]byte, error)

type Binding

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,
	// `[email protected]` . * `serviceAccount:{emailid}`: An email address that
	// represents a Google service account. For example,
	// `[email protected]`. *
	// `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, `[email protected]`. * `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, `[email protected]?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,
	// `[email protected]?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,
	// `[email protected]?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).
	Role string `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 (s *Binding) MarshalJSON() ([]byte, error)

type ConsumerPscConfig added in v0.123.0

type ConsumerPscConfig struct {
	// DisableGlobalAccess: This is used in PSC consumer ForwardingRule to control
	// whether the PSC endpoint can be accessed from another region.
	DisableGlobalAccess bool `json:"disableGlobalAccess,omitempty"`
	// Network: The resource path of the consumer network where PSC connections are
	// allowed to be created in. Note, this network does not need be in the
	// ConsumerPscConfig.project in the case of SharedVPC. Example:
	// projects/{projectNumOrId}/global/networks/{networkId}.
	Network string `json:"network,omitempty"`
	// ProducerInstanceId: Immutable. An immutable identifier for the producer
	// instance.
	ProducerInstanceId string `json:"producerInstanceId,omitempty"`
	// Project: The consumer project where PSC connections are allowed to be
	// created in.
	Project string `json:"project,omitempty"`
	// State: Output only. Overall state of PSC Connections management for this
	// consumer psc config.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - Default state, when Connection Map is created
	// initially.
	//   "VALID" - Set when policy and map configuration is valid, and their
	// matching can lead to allowing creation of PSC Connections subject to other
	// constraints like connections limit.
	//   "CONNECTION_POLICY_MISSING" - No Service Connection Policy found for this
	// network and Service Class
	//   "POLICY_LIMIT_REACHED" - Service Connection Policy limit reached for this
	// network and Service Class
	State string `json:"state,omitempty"`
	// ForceSendFields is a list of field names (e.g. "DisableGlobalAccess") 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. "DisableGlobalAccess") 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:"-"`
}

ConsumerPscConfig: Allow the producer to specify which consumers can connect to it.

func (*ConsumerPscConfig) MarshalJSON added in v0.123.0

func (s *ConsumerPscConfig) MarshalJSON() ([]byte, error)

type ConsumerPscConnection added in v0.123.0

type ConsumerPscConnection struct {
	// Error: The most recent error during operating this connection.
	Error *GoogleRpcStatus `json:"error,omitempty"`
	// ErrorInfo: Output only. The error info for the latest error during operating
	// this connection.
	ErrorInfo *GoogleRpcErrorInfo `json:"errorInfo,omitempty"`
	// ErrorType: The error type indicates whether the error is consumer facing,
	// producer facing or system internal.
	//
	// Possible values:
	//   "CONNECTION_ERROR_TYPE_UNSPECIFIED" - An invalid error type as the default
	// case.
	//   "ERROR_INTERNAL" - The error is due to Service Automation system internal.
	//   "ERROR_CONSUMER_SIDE" - The error is due to the setup on consumer side.
	//   "ERROR_PRODUCER_SIDE" - The error is due to the setup on producer side.
	ErrorType string `json:"errorType,omitempty"`
	// ForwardingRule: The URI of the consumer forwarding rule created. Example:
	// projects/{projectNumOrId}/regions/us-east1/networks/{resourceId}.
	ForwardingRule string `json:"forwardingRule,omitempty"`
	// GceOperation: The last Compute Engine operation to setup PSC connection.
	GceOperation string `json:"gceOperation,omitempty"`
	// Ip: The IP literal allocated on the consumer network for the PSC forwarding
	// rule that is created to connect to the producer service attachment in this
	// service connection map.
	Ip string `json:"ip,omitempty"`
	// Network: The consumer network whose PSC forwarding rule is connected to the
	// service attachments in this service connection map. Note that the network
	// could be on a different project (shared VPC).
	Network string `json:"network,omitempty"`
	// ProducerInstanceId: Immutable. An immutable identifier for the producer
	// instance.
	ProducerInstanceId string `json:"producerInstanceId,omitempty"`
	// Project: The consumer project whose PSC forwarding rule is connected to the
	// service attachments in this service connection map.
	Project string `json:"project,omitempty"`
	// PscConnectionId: The PSC connection id of the PSC forwarding rule connected
	// to the service attachments in this service connection map.
	PscConnectionId string `json:"pscConnectionId,omitempty"`
	// SelectedSubnetwork: Output only. The URI of the selected subnetwork selected
	// to allocate IP address for this connection.
	SelectedSubnetwork string `json:"selectedSubnetwork,omitempty"`
	// ServiceAttachmentUri: The URI of a service attachment which is the target of
	// the PSC connection.
	ServiceAttachmentUri string `json:"serviceAttachmentUri,omitempty"`
	// State: The state of the PSC connection.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - An invalid state as the default case.
	//   "ACTIVE" - The connection is fully established and ready to use.
	//   "FAILED" - The connection is not functional since some resources on the
	// connection fail to be created.
	//   "CREATING" - The connection is being created.
	//   "DELETING" - The connection is being deleted.
	State string `json:"state,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Error") 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. "Error") 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:"-"`
}

ConsumerPscConnection: PSC connection details on consumer side.

func (*ConsumerPscConnection) MarshalJSON added in v0.123.0

func (s *ConsumerPscConnection) MarshalJSON() ([]byte, error)

type Empty

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

type Expr

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.
	Description string `json:"description,omitempty"`
	// Expression: Textual representation of an expression in Common Expression
	// Language syntax.
	Expression string `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.
	Location string `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.
	Title string `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 semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor 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 message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (*Expr) MarshalJSON

func (s *Expr) MarshalJSON() ([]byte, error)

type Filter added in v0.139.0

type Filter struct {
	// DestRange: Optional. The destination IP range of outgoing packets that this
	// policy-based route applies to. Default is "0.0.0.0/0" if protocol version is
	// IPv4.
	DestRange string `json:"destRange,omitempty"`
	// IpProtocol: Optional. The IP protocol that this policy-based route applies
	// to. Valid values are 'TCP', 'UDP', and 'ALL'. Default is 'ALL'.
	IpProtocol string `json:"ipProtocol,omitempty"`
	// ProtocolVersion: Required. Internet protocol versions this policy-based
	// route applies to. For this version, only IPV4 is supported.
	//
	// Possible values:
	//   "PROTOCOL_VERSION_UNSPECIFIED" - Default value.
	//   "IPV4" - The PBR is for IPv4 internet protocol traffic.
	ProtocolVersion string `json:"protocolVersion,omitempty"`
	// SrcRange: Optional. The source IP range of outgoing packets that this
	// policy-based route applies to. Default is "0.0.0.0/0" if protocol version is
	// IPv4.
	SrcRange string `json:"srcRange,omitempty"`
	// ForceSendFields is a list of field names (e.g. "DestRange") 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. "DestRange") 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:"-"`
}

Filter: Filter matches L4 traffic.

func (*Filter) MarshalJSON added in v0.139.0

func (s *Filter) MarshalJSON() ([]byte, error)

type GoogleLongrunningCancelOperationRequest

type GoogleLongrunningCancelOperationRequest struct {
}

GoogleLongrunningCancelOperationRequest: The request message for Operations.CancelOperation.

type GoogleLongrunningListOperationsResponse

type GoogleLongrunningListOperationsResponse struct {
	// NextPageToken: The standard List next-page token.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Operations: A list of operations that matches the specified filter in the
	// request.
	Operations []*GoogleLongrunningOperation `json:"operations,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:"-"`
}

GoogleLongrunningListOperationsResponse: The response message for Operations.ListOperations.

func (*GoogleLongrunningListOperationsResponse) MarshalJSON

func (s *GoogleLongrunningListOperationsResponse) MarshalJSON() ([]byte, error)

type GoogleLongrunningOperation

type GoogleLongrunningOperation 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.
	Done bool `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.
	Metadata googleapi.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}`.
	Name string `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`.
	Response googleapi.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:"-"`
}

GoogleLongrunningOperation: This resource represents a long-running operation that is the result of a network API call.

func (*GoogleLongrunningOperation) MarshalJSON

func (s *GoogleLongrunningOperation) MarshalJSON() ([]byte, error)

type GoogleRpcErrorInfo added in v0.135.0

type GoogleRpcErrorInfo struct {
	// Domain: The logical grouping to which the "reason" belongs. The error domain
	// is typically the registered service name of the tool or product that
	// generates the error. Example: "pubsub.googleapis.com". If the error is
	// generated by some common infrastructure, the error domain must be a globally
	// unique value that identifies the infrastructure. For Google API
	// infrastructure, the error domain is "googleapis.com".
	Domain string `json:"domain,omitempty"`
	// Metadata: Additional structured details about this error. Keys must match
	// /a-z+/ but should ideally be lowerCamelCase. Also they must be limited to 64
	// characters in length. When identifying the current value of an exceeded
	// limit, the units should be contained in the key, not the value. For example,
	// rather than {"instanceLimit": "100/request"}, should be returned as,
	// {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
	// instances that can be created in a single (batch) request.
	Metadata map[string]string `json:"metadata,omitempty"`
	// Reason: The reason of the error. This is a constant value that identifies
	// the proximate cause of the error. Error reasons are unique within a
	// particular domain of errors. This should be at most 63 characters and match
	// a regular expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
	Reason string `json:"reason,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Domain") 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. "Domain") 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:"-"`
}

GoogleRpcErrorInfo: Describes the cause of the error with structured details. Example of an error when contacting the "pubsub.googleapis.com" API when it is not enabled: { "reason": "API_DISABLED" "domain": "googleapis.com" "metadata": { "resource": "projects/123", "service": "pubsub.googleapis.com" } } This response indicates that the pubsub.googleapis.com API is not enabled. Example of an error that is returned when attempting to create a Spanner instance in a region that is out of stock: { "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata": { "availableRegions": "us-central1,us-east2" } }

func (*GoogleRpcErrorInfo) MarshalJSON added in v0.135.0

func (s *GoogleRpcErrorInfo) MarshalJSON() ([]byte, error)

type GoogleRpcStatus

type GoogleRpcStatus struct {
	// Code: The status code, which should be an enum value of google.rpc.Code.
	Code int64 `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.
	Message string `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 is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each `Status` message contains 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 the API Design Guide (https://cloud.google.com/apis/design/errors).

func (*GoogleRpcStatus) MarshalJSON

func (s *GoogleRpcStatus) MarshalJSON() ([]byte, error)

type Group added in v0.135.0

type Group struct {
	// AutoAccept: Optional. The auto-accept setting for this group.
	AutoAccept *AutoAccept `json:"autoAccept,omitempty"`
	// CreateTime: Output only. The time the group was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: Optional. The description of the group.
	Description string `json:"description,omitempty"`
	// Labels: Optional. Labels in key-value pair format. For more information
	// about labels, see Requirements for labels
	// (https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements).
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of the group. Group names must be unique. They use
	// the following form:
	// `projects/{project_number}/locations/global/hubs/{hub}/groups/{group_id}`
	Name string `json:"name,omitempty"`
	// RouteTable: Output only. The name of the route table that corresponds to
	// this group. They use the following form:
	// `projects/{project_number}/locations/global/hubs/{hub_id}/routeTables/{route_
	// table_id}`
	RouteTable string `json:"routeTable,omitempty"`
	// State: Output only. The current lifecycle state of this group.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// Uid: Output only. The Google-generated UUID for the group. This value is
	// unique across all group resources. If a group is deleted and another with
	// the same name is created, the new route table is assigned a different
	// unique_id.
	Uid string `json:"uid,omitempty"`
	// UpdateTime: Output only. The time the group was last updated.
	UpdateTime string `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. "AutoAccept") 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. "AutoAccept") 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:"-"`
}

Group: A group represents a subset of spokes attached to a hub.

func (*Group) MarshalJSON added in v0.135.0

func (s *Group) MarshalJSON() ([]byte, error)

type Hub

type Hub struct {
	// CreateTime: Output only. The time the hub was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: An optional description of the hub.
	Description string `json:"description,omitempty"`
	// ExportPsc: Optional. Whether Private Service Connect transitivity is enabled
	// for the hub. If true, Private Service Connect endpoints in VPC spokes
	// attached to the hub are made accessible to other VPC spokes attached to the
	// hub. The default value is false.
	ExportPsc bool `json:"exportPsc,omitempty"`
	// Labels: Optional labels in key-value pair format. For more information about
	// labels, see Requirements for labels
	// (https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements).
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of the hub. Hub names must be unique. They use the
	// following form: `projects/{project_number}/locations/global/hubs/{hub_id}`
	Name string `json:"name,omitempty"`
	// PolicyMode: Optional. The policy mode of this hub. This field can be either
	// PRESET or CUSTOM. If unspecified, the policy_mode defaults to PRESET.
	//
	// Possible values:
	//   "POLICY_MODE_UNSPECIFIED" - Policy mode is unspecified. It defaults to
	// PRESET with preset_topology = MESH.
	//   "PRESET" - Hub uses one of the preset topologies.
	PolicyMode string `json:"policyMode,omitempty"`
	// PresetTopology: Optional. The topology implemented in this hub. Currently,
	// this field is only used when policy_mode = PRESET. The available preset
	// topologies are MESH and STAR. If preset_topology is unspecified and
	// policy_mode = PRESET, the preset_topology defaults to MESH. When policy_mode
	// = CUSTOM, the preset_topology is set to PRESET_TOPOLOGY_UNSPECIFIED.
	//
	// Possible values:
	//   "PRESET_TOPOLOGY_UNSPECIFIED" - Preset topology is unspecified. When
	// policy_mode = PRESET, it defaults to MESH.
	//   "MESH" - Mesh topology is implemented. Group `default` is automatically
	// created. All spokes in the hub are added to group `default`.
	//   "STAR" - Star topology is implemented. Two groups, `center` and `edge`,
	// are automatically created along with hub creation. Spokes have to join one
	// of the groups during creation.
	PresetTopology string `json:"presetTopology,omitempty"`
	// RouteTables: Output only. The route tables that belong to this hub. They use
	// the following form:
	// `projects/{project_number}/locations/global/hubs/{hub_id}/routeTables/{route_
	// table_id}` This field is read-only. Network Connectivity Center
	// automatically populates it based on the route tables nested under the hub.
	RouteTables []string `json:"routeTables,omitempty"`
	// RoutingVpcs: The VPC networks associated with this hub's spokes. This field
	// is read-only. Network Connectivity Center automatically populates it based
	// on the set of spokes attached to the hub.
	RoutingVpcs []*RoutingVPC `json:"routingVpcs,omitempty"`
	// SpokeSummary: Output only. A summary of the spokes associated with a hub.
	// The summary includes a count of spokes according to type and according to
	// state. If any spokes are inactive, the summary also lists the reasons they
	// are inactive, including a count for each reason.
	SpokeSummary *SpokeSummary `json:"spokeSummary,omitempty"`
	// State: Output only. The current lifecycle state of this hub.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// UniqueId: Output only. The Google-generated UUID for the hub. This value is
	// unique across all hub resources. If a hub is deleted and another with the
	// same name is created, the new hub is assigned a different unique_id.
	UniqueId string `json:"uniqueId,omitempty"`
	// UpdateTime: Output only. The time the hub was last updated.
	UpdateTime string `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:"-"`
}

Hub: A Network Connectivity Center hub is a global management resource to which you attach spokes. A single hub can contain spokes from multiple regions. However, if any of a hub's spokes use the site-to-site data transfer feature, the resources associated with those spokes must all be in the same VPC network. Spokes that do not use site-to-site data transfer can be associated with any VPC network in your project.

func (*Hub) MarshalJSON

func (s *Hub) MarshalJSON() ([]byte, error)

type InterconnectAttachment added in v0.139.0

type InterconnectAttachment struct {
	// Region: Optional. Cloud region to install this policy-based route on
	// interconnect attachment. Use `all` to install it on all interconnect
	// attachments.
	Region string `json:"region,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Region") 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. "Region") 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:"-"`
}

InterconnectAttachment: InterconnectAttachment that this route applies to.

func (*InterconnectAttachment) MarshalJSON added in v0.139.0

func (s *InterconnectAttachment) MarshalJSON() ([]byte, error)

type InternalRange added in v0.101.0

type InternalRange struct {
	// CreateTime: Time when the internal range was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: A description of this resource.
	Description string `json:"description,omitempty"`
	// IpCidrRange: The IP range that this internal range defines.
	IpCidrRange string `json:"ipCidrRange,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of an internal range. Format:
	// projects/{project}/locations/{location}/internalRanges/{internal_range} See:
	// https://google.aip.dev/122#fields-representing-resource-names
	Name string `json:"name,omitempty"`
	// Network: The URL or resource ID of the network in which to reserve the
	// internal range. The network cannot be deleted if there are any reserved
	// internal ranges referring to it. Legacy networks are not supported. For
	// example:
	// https://www.googleapis.com/compute/v1/projects/{project}/locations/global/networks/{network}
	// projects/{project}/locations/global/networks/{network} {network}
	Network string `json:"network,omitempty"`
	// Overlaps: Optional. Types of resources that are allowed to overlap with the
	// current internal range.
	//
	// Possible values:
	//   "OVERLAP_UNSPECIFIED" - No overlap overrides.
	//   "OVERLAP_ROUTE_RANGE" - Allow creation of static routes more specific that
	// the current internal range.
	//   "OVERLAP_EXISTING_SUBNET_RANGE" - Allow creation of internal ranges that
	// overlap with existing subnets.
	Overlaps []string `json:"overlaps,omitempty"`
	// Peering: The type of peering set for this internal range.
	//
	// Possible values:
	//   "PEERING_UNSPECIFIED" - If Peering is left unspecified in
	// CreateInternalRange or UpdateInternalRange, it will be defaulted to
	// FOR_SELF.
	//   "FOR_SELF" - This is the default behavior and represents the case that
	// this internal range is intended to be used in the VPC in which it is created
	// and is accessible from its peers. This implies that peers or peers-of-peers
	// cannot use this range.
	//   "FOR_PEER" - This behavior can be set when the internal range is being
	// reserved for usage by peers. This means that no resource within the VPC in
	// which it is being created can use this to associate with a VPC resource, but
	// one of the peers can. This represents donating a range for peers to use.
	//   "NOT_SHARED" - This behavior can be set when the internal range is being
	// reserved for usage by the VPC in which it is created, but not shared with
	// peers. In a sense, it is local to the VPC. This can be used to create
	// internal ranges for various purposes like HTTP_INTERNAL_LOAD_BALANCER or for
	// Interconnect routes that are not shared with peers. This also implies that
	// peers cannot use this range in a way that is visible to this VPC, but can
	// re-use this range as long as it is NOT_SHARED from the peer VPC, too.
	Peering string `json:"peering,omitempty"`
	// PrefixLength: An alternate to ip_cidr_range. Can be set when trying to
	// create a reservation that automatically finds a free range of the given
	// size. If both ip_cidr_range and prefix_length are set, there is an error if
	// the range sizes do not match. Can also be used during updates to change the
	// range size.
	PrefixLength int64 `json:"prefixLength,omitempty"`
	// TargetCidrRange: Optional. Can be set to narrow down or pick a different
	// address space while searching for a free range. If not set, defaults to the
	// "10.0.0.0/8" address space. This can be used to search in other rfc-1918
	// address spaces like "172.16.0.0/12" and "192.168.0.0/16" or non-rfc-1918
	// address spaces used in the VPC.
	TargetCidrRange []string `json:"targetCidrRange,omitempty"`
	// UpdateTime: Time when the internal range was updated.
	UpdateTime string `json:"updateTime,omitempty"`
	// Usage: The type of usage set for this InternalRange.
	//
	// Possible values:
	//   "USAGE_UNSPECIFIED" - Unspecified usage is allowed in calls which identify
	// the resource by other fields and do not need Usage set to complete. These
	// are, i.e.: GetInternalRange and DeleteInternalRange. Usage needs to be
	// specified explicitly in CreateInternalRange or UpdateInternalRange calls.
	//   "FOR_VPC" - A VPC resource can use the reserved CIDR block by associating
	// it with the internal range resource if usage is set to FOR_VPC.
	//   "EXTERNAL_TO_VPC" - Ranges created with EXTERNAL_TO_VPC cannot be
	// associated with VPC resources and are meant to block out address ranges for
	// various use cases, like for example, usage on-prem, with dynamic route
	// announcements via interconnect.
	Usage string `json:"usage,omitempty"`
	// Users: Output only. The list of resources that refer to this internal range.
	// Resources that use the internal range for their range allocation are
	// referred to as users of the range. Other resources mark themselves as users
	// while doing so by creating a reference to this internal range. Having a
	// user, based on this reference, prevents deletion of the internal range
	// referred to. Can be empty.
	Users []string `json:"users,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:"-"`
}

InternalRange: The internal range resource for IPAM operations within a VPC network. Used to represent a private address range along with behavioral characterstics of that range (its usage and peering behavior). Networking resources can link to this range if they are created as belonging to it.

func (*InternalRange) MarshalJSON added in v0.101.0

func (s *InternalRange) MarshalJSON() ([]byte, error)

type LinkedInterconnectAttachments

type LinkedInterconnectAttachments struct {
	// SiteToSiteDataTransfer: A value that controls whether site-to-site data
	// transfer is enabled for these resources. Data transfer is available only in
	// supported locations
	// (https://cloud.google.com/network-connectivity/docs/network-connectivity-center/concepts/locations).
	SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer,omitempty"`
	// Uris: The URIs of linked interconnect attachment resources
	Uris []string `json:"uris,omitempty"`
	// VpcNetwork: Output only. The VPC network where these VLAN attachments are
	// located.
	VpcNetwork string `json:"vpcNetwork,omitempty"`
	// ForceSendFields is a list of field names (e.g. "SiteToSiteDataTransfer") 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. "SiteToSiteDataTransfer") 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:"-"`
}

LinkedInterconnectAttachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.

func (*LinkedInterconnectAttachments) MarshalJSON

func (s *LinkedInterconnectAttachments) MarshalJSON() ([]byte, error)

type LinkedRouterApplianceInstances

type LinkedRouterApplianceInstances struct {
	// Instances: The list of router appliance instances.
	Instances []*RouterApplianceInstance `json:"instances,omitempty"`
	// SiteToSiteDataTransfer: A value that controls whether site-to-site data
	// transfer is enabled for these resources. Data transfer is available only in
	// supported locations
	// (https://cloud.google.com/network-connectivity/docs/network-connectivity-center/concepts/locations).
	SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer,omitempty"`
	// VpcNetwork: Output only. The VPC network where these router appliance
	// instances are located.
	VpcNetwork string `json:"vpcNetwork,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Instances") 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. "Instances") 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:"-"`
}

LinkedRouterApplianceInstances: A collection of router appliance instances. If you configure multiple router appliance instances to receive data from the same set of sites outside of Google Cloud, we recommend that you associate those instances with the same spoke.

func (*LinkedRouterApplianceInstances) MarshalJSON

func (s *LinkedRouterApplianceInstances) MarshalJSON() ([]byte, error)

type LinkedVpcNetwork added in v0.129.0

type LinkedVpcNetwork struct {
	// ExcludeExportRanges: Optional. IP ranges encompassing the subnets to be
	// excluded from peering.
	ExcludeExportRanges []string `json:"excludeExportRanges,omitempty"`
	// Uri: Required. The URI of the VPC network resource.
	Uri string `json:"uri,omitempty"`
	// ForceSendFields is a list of field names (e.g. "ExcludeExportRanges") 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. "ExcludeExportRanges") 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:"-"`
}

LinkedVpcNetwork: An existing VPC network.

func (*LinkedVpcNetwork) MarshalJSON added in v0.129.0

func (s *LinkedVpcNetwork) MarshalJSON() ([]byte, error)

type LinkedVpnTunnels

type LinkedVpnTunnels struct {
	// SiteToSiteDataTransfer: A value that controls whether site-to-site data
	// transfer is enabled for these resources. Data transfer is available only in
	// supported locations
	// (https://cloud.google.com/network-connectivity/docs/network-connectivity-center/concepts/locations).
	SiteToSiteDataTransfer bool `json:"siteToSiteDataTransfer,omitempty"`
	// Uris: The URIs of linked VPN tunnel resources.
	Uris []string `json:"uris,omitempty"`
	// VpcNetwork: Output only. The VPC network where these VPN tunnels are
	// located.
	VpcNetwork string `json:"vpcNetwork,omitempty"`
	// ForceSendFields is a list of field names (e.g. "SiteToSiteDataTransfer") 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. "SiteToSiteDataTransfer") 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:"-"`
}

LinkedVpnTunnels: A collection of Cloud VPN tunnel resources. These resources should be redundant HA VPN tunnels that all advertise the same prefixes to Google Cloud. Alternatively, in a passive/active configuration, all tunnels should be capable of advertising the same prefixes.

func (*LinkedVpnTunnels) MarshalJSON

func (s *LinkedVpnTunnels) MarshalJSON() ([]byte, error)

type ListGroupsResponse added in v0.135.0

type ListGroupsResponse struct {
	// Groups: The requested groups.
	Groups []*Group `json:"groups,omitempty"`
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Unreachable: Hubs that could not be reached.
	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. "Groups") 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. "Groups") 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:"-"`
}

ListGroupsResponse: Response for HubService.ListGroups method.

func (*ListGroupsResponse) MarshalJSON added in v0.135.0

func (s *ListGroupsResponse) MarshalJSON() ([]byte, error)

type ListHubSpokesResponse added in v0.129.0

type ListHubSpokesResponse struct {
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Spokes: The requested spokes. The spoke fields can be partially populated
	// based on the `view` field in the request message.
	Spokes []*Spoke `json:"spokes,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListHubSpokesResponse: The response for HubService.ListHubSpokes.

func (*ListHubSpokesResponse) MarshalJSON added in v0.129.0

func (s *ListHubSpokesResponse) MarshalJSON() ([]byte, error)

type ListHubsResponse

type ListHubsResponse struct {
	// Hubs: The requested hubs.
	Hubs []*Hub `json:"hubs,omitempty"`
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Unreachable: Locations that could not be reached.
	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. "Hubs") 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. "Hubs") 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:"-"`
}

ListHubsResponse: Response for HubService.ListHubs method.

func (*ListHubsResponse) MarshalJSON

func (s *ListHubsResponse) MarshalJSON() ([]byte, error)

type ListInternalRangesResponse added in v0.101.0

type ListInternalRangesResponse struct {
	// InternalRanges: Internal ranges to be returned.
	InternalRanges []*InternalRange `json:"internalRanges,omitempty"`
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Unreachable: Locations that could not be reached.
	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. "InternalRanges") 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. "InternalRanges") 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:"-"`
}

ListInternalRangesResponse: Response for InternalRange.ListInternalRanges

func (*ListInternalRangesResponse) MarshalJSON added in v0.101.0

func (s *ListInternalRangesResponse) MarshalJSON() ([]byte, error)

type ListLocationsResponse

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.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the server.
	googleapi.ServerResponse `json:"-"`
	// ForceSendFields is a list of field names (e.g. "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 (s *ListLocationsResponse) MarshalJSON() ([]byte, error)

type ListPolicyBasedRoutesResponse added in v0.139.0

type ListPolicyBasedRoutesResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// PolicyBasedRoutes: Policy-based routes to be returned.
	PolicyBasedRoutes []*PolicyBasedRoute `json:"policyBasedRoutes,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListPolicyBasedRoutesResponse: Response for PolicyBasedRouting.ListPolicyBasedRoutes method.

func (*ListPolicyBasedRoutesResponse) MarshalJSON added in v0.139.0

func (s *ListPolicyBasedRoutesResponse) MarshalJSON() ([]byte, error)

type ListRegionalEndpointsResponse added in v0.177.0

type ListRegionalEndpointsResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// RegionalEndpoints: Regional endpoints to be returned.
	RegionalEndpoints []*RegionalEndpoint `json:"regionalEndpoints,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListRegionalEndpointsResponse: Response for ListRegionalEndpoints.

func (*ListRegionalEndpointsResponse) MarshalJSON added in v0.177.0

func (s *ListRegionalEndpointsResponse) MarshalJSON() ([]byte, error)

type ListRouteTablesResponse added in v0.129.0

type ListRouteTablesResponse struct {
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// RouteTables: The requested route tables.
	RouteTables []*RouteTable `json:"routeTables,omitempty"`
	// Unreachable: Hubs that could not be reached.
	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:"-"`
}

ListRouteTablesResponse: Response for HubService.ListRouteTables method.

func (*ListRouteTablesResponse) MarshalJSON added in v0.129.0

func (s *ListRouteTablesResponse) MarshalJSON() ([]byte, error)

type ListRoutesResponse added in v0.129.0

type ListRoutesResponse struct {
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Routes: The requested routes.
	Routes []*Route `json:"routes,omitempty"`
	// Unreachable: RouteTables that could not be reached.
	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:"-"`
}

ListRoutesResponse: Response for HubService.ListRoutes method.

func (*ListRoutesResponse) MarshalJSON added in v0.129.0

func (s *ListRoutesResponse) MarshalJSON() ([]byte, error)

type ListServiceClassesResponse added in v0.123.0

type ListServiceClassesResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// ServiceClasses: ServiceClasses to be returned.
	ServiceClasses []*ServiceClass `json:"serviceClasses,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListServiceClassesResponse: Response for ListServiceClasses.

func (*ListServiceClassesResponse) MarshalJSON added in v0.123.0

func (s *ListServiceClassesResponse) MarshalJSON() ([]byte, error)

type ListServiceConnectionMapsResponse added in v0.123.0

type ListServiceConnectionMapsResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// ServiceConnectionMaps: ServiceConnectionMaps to be returned.
	ServiceConnectionMaps []*ServiceConnectionMap `json:"serviceConnectionMaps,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListServiceConnectionMapsResponse: Response for ListServiceConnectionMaps.

func (*ListServiceConnectionMapsResponse) MarshalJSON added in v0.123.0

func (s *ListServiceConnectionMapsResponse) MarshalJSON() ([]byte, error)

type ListServiceConnectionPoliciesResponse added in v0.123.0

type ListServiceConnectionPoliciesResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// ServiceConnectionPolicies: ServiceConnectionPolicies to be returned.
	ServiceConnectionPolicies []*ServiceConnectionPolicy `json:"serviceConnectionPolicies,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListServiceConnectionPoliciesResponse: Response for ListServiceConnectionPolicies.

func (*ListServiceConnectionPoliciesResponse) MarshalJSON added in v0.123.0

func (s *ListServiceConnectionPoliciesResponse) MarshalJSON() ([]byte, error)

type ListServiceConnectionTokensResponse added in v0.123.0

type ListServiceConnectionTokensResponse struct {
	// NextPageToken: The next pagination token in the List response. It should be
	// used as page_token for the following request. An empty value means no more
	// result.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// ServiceConnectionTokens: ServiceConnectionTokens to be returned.
	ServiceConnectionTokens []*ServiceConnectionToken `json:"serviceConnectionTokens,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListServiceConnectionTokensResponse: Response for ListServiceConnectionTokens.

func (*ListServiceConnectionTokensResponse) MarshalJSON added in v0.123.0

func (s *ListServiceConnectionTokensResponse) MarshalJSON() ([]byte, error)

type ListSpokesResponse

type ListSpokesResponse struct {
	// NextPageToken: The token for the next page of the response. To see more
	// results, use this value as the page_token for your next request. If this
	// value is empty, there are no more results.
	NextPageToken string `json:"nextPageToken,omitempty"`
	// Spokes: The requested spokes.
	Spokes []*Spoke `json:"spokes,omitempty"`
	// Unreachable: Locations that could not be reached.
	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:"-"`
}

ListSpokesResponse: The response for HubService.ListSpokes.

func (*ListSpokesResponse) MarshalJSON

func (s *ListSpokesResponse) MarshalJSON() ([]byte, error)

type Location

type Location struct {
	// DisplayName: The friendly name for this location, typically a nearby city
	// name. For example, "Tokyo".
	DisplayName string `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".
	LocationId string `json:"locationId,omitempty"`
	// Metadata: Service-specific metadata. For example the available capacity at
	// the given location.
	Metadata googleapi.RawMessage `json:"metadata,omitempty"`
	// Name: Resource name for the location, which may vary between
	// implementations. For example:
	// "projects/example-project/locations/us-east1"
	Name string `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 (s *Location) MarshalJSON() ([]byte, error)

type LocationMetadata added in v0.61.0

type LocationMetadata struct {
	// LocationFeatures: List of supported features
	//
	// Possible values:
	//   "LOCATION_FEATURE_UNSPECIFIED" - No publicly supported feature in this
	// location
	//   "SITE_TO_CLOUD_SPOKES" - Site-to-cloud spokes are supported in this
	// location
	//   "SITE_TO_SITE_SPOKES" - Site-to-site spokes are supported in this location
	LocationFeatures []string `json:"locationFeatures,omitempty"`
	// ForceSendFields is a list of field names (e.g. "LocationFeatures") 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. "LocationFeatures") 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:"-"`
}

LocationMetadata: Metadata about locations

func (*LocationMetadata) MarshalJSON added in v0.61.0

func (s *LocationMetadata) MarshalJSON() ([]byte, error)

type NextHopVpcNetwork added in v0.129.0

type NextHopVpcNetwork struct {
	// Uri: The URI of the VPC network resource
	Uri string `json:"uri,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Uri") 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. "Uri") 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 (*NextHopVpcNetwork) MarshalJSON added in v0.129.0

func (s *NextHopVpcNetwork) MarshalJSON() ([]byte, error)

type OperationMetadata

type OperationMetadata struct {
	// ApiVersion: Output only. API version used to start the operation.
	ApiVersion string `json:"apiVersion,omitempty"`
	// CreateTime: Output only. The time the operation was created.
	CreateTime string `json:"createTime,omitempty"`
	// EndTime: Output only. The time the operation finished running.
	EndTime string `json:"endTime,omitempty"`
	// RequestedCancellation: Output only. Identifies whether the user has
	// requested cancellation of the operation. Operations that have been cancelled
	// successfully have Operation.error value with a google.rpc.Status.code of 1,
	// corresponding to `Code.CANCELLED`.
	RequestedCancellation bool `json:"requestedCancellation,omitempty"`
	// StatusMessage: Output only. Human-readable status of the operation, if any.
	StatusMessage string `json:"statusMessage,omitempty"`
	// Target: Output only. Server-defined resource path for the target of the
	// operation.
	Target string `json:"target,omitempty"`
	// Verb: Output only. Name of the verb executed by the operation.
	Verb string `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 (s *OperationMetadata) MarshalJSON() ([]byte, error)

type Policy

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:[email protected]`, 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.
	Etag string `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).
	Version int64 `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 specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:[email protected]", "group:[email protected]", "domain:google.com", "serviceAccount:[email protected]" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:[email protected]" ], "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:[email protected] - group:[email protected] - domain:google.com - serviceAccount:[email protected] role: roles/resourcemanager.organizationAdmin - members: - user:[email protected] role: roles/resourcemanager.organizationViewer 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 ``` For a description of IAM and its features, see the IAM documentation (https://cloud.google.com/iam/docs/).

func (*Policy) MarshalJSON

func (s *Policy) MarshalJSON() ([]byte, error)

type PolicyBasedRoute added in v0.139.0

type PolicyBasedRoute struct {
	// CreateTime: Output only. Time when the policy-based route was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: Optional. An optional description of this resource. Provide
	// this field when you create the resource.
	Description string `json:"description,omitempty"`
	// Filter: Required. The filter to match L4 traffic.
	Filter *Filter `json:"filter,omitempty"`
	// InterconnectAttachment: Optional. The interconnect attachments that this
	// policy-based route applies to.
	InterconnectAttachment *InterconnectAttachment `json:"interconnectAttachment,omitempty"`
	// Kind: Output only. Type of this resource. Always
	// networkconnectivity#policyBasedRoute for policy-based Route resources.
	Kind string `json:"kind,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. A unique name of the resource in the form of
	// `projects/{project_number}/locations/global/PolicyBasedRoutes/{policy_based_r
	// oute_id}`
	Name string `json:"name,omitempty"`
	// Network: Required. Fully-qualified URL of the network that this route
	// applies to, for example: projects/my-project/global/networks/my-network.
	Network string `json:"network,omitempty"`
	// NextHopIlbIp: Optional. The IP address of a global-access-enabled L4 ILB
	// that is the next hop for matching packets. For this version, only
	// nextHopIlbIp is supported.
	NextHopIlbIp string `json:"nextHopIlbIp,omitempty"`
	// NextHopOtherRoutes: Optional. Other routes that will be referenced to
	// determine the next hop of the packet.
	//
	// Possible values:
	//   "OTHER_ROUTES_UNSPECIFIED" - Default value.
	//   "DEFAULT_ROUTING" - Use the routes from the default routing tables
	// (system-generated routes, custom routes, peering route) to determine the
	// next hop. This will effectively exclude matching packets being applied on
	// other PBRs with a lower priority.
	NextHopOtherRoutes string `json:"nextHopOtherRoutes,omitempty"`
	// Priority: Optional. The priority of this policy-based route. Priority is
	// used to break ties in cases where there are more than one matching
	// policy-based routes found. In cases where multiple policy-based routes are
	// matched, the one with the lowest-numbered priority value wins. The default
	// value is 1000. The priority value must be from 1 to 65535, inclusive.
	Priority int64 `json:"priority,omitempty"`
	// SelfLink: Output only. Server-defined fully-qualified URL for this resource.
	SelfLink string `json:"selfLink,omitempty"`
	// UpdateTime: Output only. Time when the policy-based route was updated.
	UpdateTime string `json:"updateTime,omitempty"`
	// VirtualMachine: Optional. VM instances to which this policy-based route
	// applies to.
	VirtualMachine *VirtualMachine `json:"virtualMachine,omitempty"`
	// Warnings: Output only. If potential misconfigurations are detected for this
	// route, this field will be populated with warning messages.
	Warnings []*Warnings `json:"warnings,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:"-"`
}

PolicyBasedRoute: Policy-based routes route L4 network traffic based on not just destination IP address, but also source IP address, protocol, and more. If a policy-based route conflicts with other types of routes, the policy-based route always take precedence.

func (*PolicyBasedRoute) MarshalJSON added in v0.139.0

func (s *PolicyBasedRoute) MarshalJSON() ([]byte, error)

type ProducerPscConfig added in v0.123.0

type ProducerPscConfig struct {
	// ServiceAttachmentUri: The resource path of a service attachment. Example:
	// projects/{projectNumOrId}/regions/{region}/serviceAttachments/{resourceId}.
	ServiceAttachmentUri string `json:"serviceAttachmentUri,omitempty"`
	// ForceSendFields is a list of field names (e.g. "ServiceAttachmentUri") 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. "ServiceAttachmentUri") 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:"-"`
}

ProducerPscConfig: The PSC configurations on producer side.

func (*ProducerPscConfig) MarshalJSON added in v0.123.0

func (s *ProducerPscConfig) MarshalJSON() ([]byte, error)

type ProjectsLocationsGetCall

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 "networkconnectivity.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGetCall) Header

func (c *ProjectsLocationsGetCall) Header() http.Header

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

func (*ProjectsLocationsGetCall) IfNoneMatch

func (c *ProjectsLocationsGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsGetCall

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

type ProjectsLocationsGlobalHubsAcceptSpokeCall added in v0.140.0

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

func (*ProjectsLocationsGlobalHubsAcceptSpokeCall) Context added in v0.140.0

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

func (*ProjectsLocationsGlobalHubsAcceptSpokeCall) Do added in v0.140.0

Do executes the "networkconnectivity.projects.locations.global.hubs.acceptSpoke" call. Any non-2xx status code is an error. Response headers are in either *GoogleLongrunningOperation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsAcceptSpokeCall) Fields added in v0.140.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsAcceptSpokeCall) Header added in v0.140.0

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

type ProjectsLocationsGlobalHubsCreateCall

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

func (*ProjectsLocationsGlobalHubsCreateCall) Context

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

func (*ProjectsLocationsGlobalHubsCreateCall) Do

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

func (*ProjectsLocationsGlobalHubsCreateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsCreateCall) Header

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

func (*ProjectsLocationsGlobalHubsCreateCall) HubId

HubId sets the optional parameter "hubId": Required. A unique identifier for the hub.

func (*ProjectsLocationsGlobalHubsCreateCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsGlobalHubsDeleteCall

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

func (*ProjectsLocationsGlobalHubsDeleteCall) Context

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

func (*ProjectsLocationsGlobalHubsDeleteCall) Do

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

func (*ProjectsLocationsGlobalHubsDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsDeleteCall) Header

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

func (*ProjectsLocationsGlobalHubsDeleteCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsGlobalHubsGetCall

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

func (*ProjectsLocationsGlobalHubsGetCall) Context

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

func (*ProjectsLocationsGlobalHubsGetCall) Do

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

func (*ProjectsLocationsGlobalHubsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGetCall) Header

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

func (*ProjectsLocationsGlobalHubsGetCall) IfNoneMatch

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

type ProjectsLocationsGlobalHubsGetIamPolicyCall

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

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) Context

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

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.global.hubs.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) Header

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

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) IfNoneMatch

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

func (*ProjectsLocationsGlobalHubsGetIamPolicyCall) OptionsRequestedPolicyVersion

func (c *ProjectsLocationsGlobalHubsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsGlobalHubsGetIamPolicyCall

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

type ProjectsLocationsGlobalHubsGroupsGetCall added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetCall) Context added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetCall) Do added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetCall) Fields added in v0.135.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsGetCall) Header added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetCall) IfNoneMatch added in v0.135.0

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

type ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) Context added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) Do added in v0.127.0

Do executes the "networkconnectivity.projects.locations.global.hubs.groups.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) Fields added in v0.127.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) Header added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) IfNoneMatch added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) OptionsRequestedPolicyVersion added in v0.127.0

func (c *ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsGlobalHubsGroupsGetIamPolicyCall

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

type ProjectsLocationsGlobalHubsGroupsListCall added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsListCall) Context added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsListCall) Do added in v0.135.0

Do executes the "networkconnectivity.projects.locations.global.hubs.groups.list" call. Any non-2xx status code is an error. Response headers are in either *ListGroupsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGroupsListCall) Fields added in v0.135.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsListCall) Filter added in v0.135.0

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsGlobalHubsGroupsListCall) Header added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsListCall) IfNoneMatch added in v0.135.0

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

func (*ProjectsLocationsGlobalHubsGroupsListCall) OrderBy added in v0.135.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsGlobalHubsGroupsListCall) PageSize added in v0.135.0

PageSize sets the optional parameter "pageSize": The maximum number of results to return per page.

func (*ProjectsLocationsGlobalHubsGroupsListCall) PageToken added in v0.135.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalHubsGroupsListCall) Pages added in v0.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.

type ProjectsLocationsGlobalHubsGroupsPatchCall added in v0.181.0

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

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) Context added in v0.181.0

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

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) Do added in v0.181.0

Do executes the "networkconnectivity.projects.locations.global.hubs.groups.patch" call. Any non-2xx status code is an error. Response headers are in either *GoogleLongrunningOperation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) Fields added in v0.181.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) Header added in v0.181.0

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

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) RequestId added in v0.181.0

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsGlobalHubsGroupsPatchCall) UpdateMask added in v0.181.0

UpdateMask sets the optional parameter "updateMask": In the case of an update to an existing group, field mask is used to specify the fields to be overwritten. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not provide a mask, then all fields are overwritten.

type ProjectsLocationsGlobalHubsGroupsService added in v0.127.0

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

func NewProjectsLocationsGlobalHubsGroupsService added in v0.127.0

func NewProjectsLocationsGlobalHubsGroupsService(s *Service) *ProjectsLocationsGlobalHubsGroupsService

func (*ProjectsLocationsGlobalHubsGroupsService) Get added in v0.135.0

Get: Gets details about a Network Connectivity Center group.

- name: The name of the route table resource.

func (*ProjectsLocationsGlobalHubsGroupsService) GetIamPolicy added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsService) List added in v0.135.0

List: Lists groups in a given hub.

- parent: The parent resource's name.

func (*ProjectsLocationsGlobalHubsGroupsService) Patch added in v0.181.0

Patch: Updates the parameters of a Network Connectivity Center group.

  • name: Immutable. The name of the group. Group names must be unique. They use the following form: `projects/{project_number}/locations/global/hubs/{hub}/groups/{group_id}`.

func (*ProjectsLocationsGlobalHubsGroupsService) SetIamPolicy added in v0.127.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 (*ProjectsLocationsGlobalHubsGroupsService) TestIamPermissions added in v0.127.0

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

type ProjectsLocationsGlobalHubsGroupsSetIamPolicyCall added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsSetIamPolicyCall) Context added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsSetIamPolicyCall) Do added in v0.127.0

Do executes the "networkconnectivity.projects.locations.global.hubs.groups.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGroupsSetIamPolicyCall) Fields added in v0.127.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsSetIamPolicyCall) Header added in v0.127.0

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

type ProjectsLocationsGlobalHubsGroupsTestIamPermissionsCall added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsTestIamPermissionsCall) Context added in v0.127.0

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

func (*ProjectsLocationsGlobalHubsGroupsTestIamPermissionsCall) Do added in v0.127.0

Do executes the "networkconnectivity.projects.locations.global.hubs.groups.testIamPermissions" call. Any non-2xx status code is an error. Response headers are in either *TestIamPermissionsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsGroupsTestIamPermissionsCall) Fields added in v0.127.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsGroupsTestIamPermissionsCall) Header added in v0.127.0

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

type ProjectsLocationsGlobalHubsListCall

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

func (*ProjectsLocationsGlobalHubsListCall) Context

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

func (*ProjectsLocationsGlobalHubsListCall) Do

Do executes the "networkconnectivity.projects.locations.global.hubs.list" call. Any non-2xx status code is an error. Response headers are in either *ListHubsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsListCall) Filter

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsGlobalHubsListCall) Header

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

func (*ProjectsLocationsGlobalHubsListCall) IfNoneMatch

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

func (*ProjectsLocationsGlobalHubsListCall) OrderBy

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsGlobalHubsListCall) PageSize

PageSize sets the optional parameter "pageSize": The maximum number of results per page to return.

func (*ProjectsLocationsGlobalHubsListCall) PageToken

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalHubsListCall) 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.

type ProjectsLocationsGlobalHubsListSpokesCall added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsListSpokesCall) Context added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsListSpokesCall) Do added in v0.129.0

Do executes the "networkconnectivity.projects.locations.global.hubs.listSpokes" call. Any non-2xx status code is an error. Response headers are in either *ListHubSpokesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsListSpokesCall) Fields added in v0.129.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsListSpokesCall) Filter added in v0.129.0

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsGlobalHubsListSpokesCall) Header added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsListSpokesCall) IfNoneMatch added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsListSpokesCall) OrderBy added in v0.129.0

OrderBy sets the optional parameter "orderBy": Sort the results by name or create_time.

func (*ProjectsLocationsGlobalHubsListSpokesCall) PageSize added in v0.129.0

PageSize sets the optional parameter "pageSize": The maximum number of results to return per page.

func (*ProjectsLocationsGlobalHubsListSpokesCall) PageToken added in v0.129.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalHubsListSpokesCall) Pages added in v0.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.

func (*ProjectsLocationsGlobalHubsListSpokesCall) SpokeLocations added in v0.129.0

SpokeLocations sets the optional parameter "spokeLocations": A list of locations. Specify one of the following: `[global]`, a single region (for example, `[us-central1]`), or a combination of values (for example, `[global, us-central1, us-west1]`). If the spoke_locations field is populated, the list of results includes only spokes in the specified location. If the spoke_locations field is not populated, the list of results includes spokes in all locations.

func (*ProjectsLocationsGlobalHubsListSpokesCall) View added in v0.129.0

View sets the optional parameter "view": The view of the spoke to return. The view that you use determines which spoke fields are included in the response.

Possible values:

"SPOKE_VIEW_UNSPECIFIED" - The spoke view is unspecified. When the spoke

view is unspecified, the API returns the same fields as the `BASIC` view.

"BASIC" - Includes `name`, `create_time`, `hub`, `unique_id`, `state`,

`reasons`, and `spoke_type`. This is the default value.

"DETAILED" - Includes all spoke fields except `labels`. You can use the

`DETAILED` view only when you set the `spoke_locations` field to `[global]`.

type ProjectsLocationsGlobalHubsPatchCall

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

func (*ProjectsLocationsGlobalHubsPatchCall) Context

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

func (*ProjectsLocationsGlobalHubsPatchCall) Do

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

func (*ProjectsLocationsGlobalHubsPatchCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsPatchCall) Header

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

func (*ProjectsLocationsGlobalHubsPatchCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsGlobalHubsPatchCall) UpdateMask

UpdateMask sets the optional parameter "updateMask": In the case of an update to an existing hub, field mask is used to specify the fields to be overwritten. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not provide a mask, then all fields are overwritten.

type ProjectsLocationsGlobalHubsRejectSpokeCall added in v0.140.0

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

func (*ProjectsLocationsGlobalHubsRejectSpokeCall) Context added in v0.140.0

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

func (*ProjectsLocationsGlobalHubsRejectSpokeCall) Do added in v0.140.0

Do executes the "networkconnectivity.projects.locations.global.hubs.rejectSpoke" call. Any non-2xx status code is an error. Response headers are in either *GoogleLongrunningOperation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsRejectSpokeCall) Fields added in v0.140.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsRejectSpokeCall) Header added in v0.140.0

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

type ProjectsLocationsGlobalHubsRouteTablesGetCall added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesGetCall) Context added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesGetCall) Do added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesGetCall) Fields added in v0.129.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsRouteTablesGetCall) Header added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesGetCall) IfNoneMatch added in v0.129.0

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

type ProjectsLocationsGlobalHubsRouteTablesListCall added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Context added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Do added in v0.129.0

Do executes the "networkconnectivity.projects.locations.global.hubs.routeTables.list" call. Any non-2xx status code is an error. Response headers are in either *ListRouteTablesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Fields added in v0.129.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Filter added in v0.129.0

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Header added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) IfNoneMatch added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) OrderBy added in v0.129.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) PageSize added in v0.129.0

PageSize sets the optional parameter "pageSize": The maximum number of results to return per page.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) PageToken added in v0.129.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalHubsRouteTablesListCall) Pages added in v0.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.

type ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall) Context added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall) Do added in v0.129.0

Do executes the "networkconnectivity.projects.locations.global.hubs.routeTables.routes.get" call. Any non-2xx status code is an error. Response headers are in either *Route.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall) Fields added in v0.129.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall) Header added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesGetCall) IfNoneMatch added in v0.129.0

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

type ProjectsLocationsGlobalHubsRouteTablesRoutesListCall added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Context added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Do added in v0.129.0

Do executes the "networkconnectivity.projects.locations.global.hubs.routeTables.routes.list" call. Any non-2xx status code is an error. Response headers are in either *ListRoutesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Fields added in v0.129.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Filter added in v0.129.0

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Header added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) IfNoneMatch added in v0.129.0

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

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) OrderBy added in v0.129.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) PageSize added in v0.129.0

PageSize sets the optional parameter "pageSize": The maximum number of results to return per page.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) PageToken added in v0.129.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesListCall) Pages added in v0.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.

type ProjectsLocationsGlobalHubsRouteTablesRoutesService added in v0.129.0

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

func NewProjectsLocationsGlobalHubsRouteTablesRoutesService added in v0.129.0

func NewProjectsLocationsGlobalHubsRouteTablesRoutesService(s *Service) *ProjectsLocationsGlobalHubsRouteTablesRoutesService

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesService) Get added in v0.129.0

Get: Gets details about the specified route.

- name: The name of the route resource.

func (*ProjectsLocationsGlobalHubsRouteTablesRoutesService) List added in v0.129.0

List: Lists routes in a given route table.

- parent: The parent resource's name.

type ProjectsLocationsGlobalHubsRouteTablesService added in v0.129.0

type ProjectsLocationsGlobalHubsRouteTablesService struct {
	Routes *ProjectsLocationsGlobalHubsRouteTablesRoutesService
	// contains filtered or unexported fields
}

func NewProjectsLocationsGlobalHubsRouteTablesService added in v0.129.0

func NewProjectsLocationsGlobalHubsRouteTablesService(s *Service) *ProjectsLocationsGlobalHubsRouteTablesService

func (*ProjectsLocationsGlobalHubsRouteTablesService) Get added in v0.129.0

Get: Gets details about a Network Connectivity Center route table.

- name: The name of the route table resource.

func (*ProjectsLocationsGlobalHubsRouteTablesService) List added in v0.129.0

List: Lists route tables in a given hub.

- parent: The parent resource's name.

type ProjectsLocationsGlobalHubsService

type ProjectsLocationsGlobalHubsService struct {
	Groups *ProjectsLocationsGlobalHubsGroupsService

	RouteTables *ProjectsLocationsGlobalHubsRouteTablesService
	// contains filtered or unexported fields
}

func NewProjectsLocationsGlobalHubsService

func NewProjectsLocationsGlobalHubsService(s *Service) *ProjectsLocationsGlobalHubsService

func (*ProjectsLocationsGlobalHubsService) AcceptSpoke added in v0.140.0

AcceptSpoke: Accepts a proposal to attach a Network Connectivity Center spoke to a hub.

- name: The name of the hub into which to accept the spoke.

func (*ProjectsLocationsGlobalHubsService) Create

Create: Creates a new Network Connectivity Center hub in the specified project.

- parent: The parent resource.

func (*ProjectsLocationsGlobalHubsService) Delete

Delete: Deletes a Network Connectivity Center hub.

- name: The name of the hub to delete.

func (*ProjectsLocationsGlobalHubsService) Get

Get: Gets details about a Network Connectivity Center hub.

- name: The name of the hub resource to get.

func (*ProjectsLocationsGlobalHubsService) GetIamPolicy

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

func (*ProjectsLocationsGlobalHubsService) List

List: Lists the Network Connectivity Center hubs associated with a given project.

- parent: The parent resource's name.

func (*ProjectsLocationsGlobalHubsService) ListSpokes added in v0.129.0

ListSpokes: Lists the Network Connectivity Center spokes associated with a specified hub and location. The list includes both spokes that are attached to the hub and spokes that have been proposed but not yet accepted.

- name: The name of the hub.

func (*ProjectsLocationsGlobalHubsService) Patch

Patch: Updates the description and/or labels of a Network Connectivity Center hub.

  • name: Immutable. The name of the hub. Hub names must be unique. They use the following form: `projects/{project_number}/locations/global/hubs/{hub_id}`.

func (*ProjectsLocationsGlobalHubsService) RejectSpoke added in v0.140.0

RejectSpoke: Rejects a Network Connectivity Center spoke from being attached to a hub. If the spoke was previously in the `ACTIVE` state, it transitions to the `INACTIVE` state and is no longer able to connect to other spokes that are attached to the hub.

- name: The name of the hub from which to reject the spoke.

func (*ProjectsLocationsGlobalHubsService) 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 (*ProjectsLocationsGlobalHubsService) TestIamPermissions

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

type ProjectsLocationsGlobalHubsSetIamPolicyCall

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

func (*ProjectsLocationsGlobalHubsSetIamPolicyCall) Context

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

func (*ProjectsLocationsGlobalHubsSetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.global.hubs.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalHubsSetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsSetIamPolicyCall) Header

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

type ProjectsLocationsGlobalHubsTestIamPermissionsCall

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

func (*ProjectsLocationsGlobalHubsTestIamPermissionsCall) Context

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

func (*ProjectsLocationsGlobalHubsTestIamPermissionsCall) Do

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

func (*ProjectsLocationsGlobalHubsTestIamPermissionsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalHubsTestIamPermissionsCall) Header

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

type ProjectsLocationsGlobalPolicyBasedRoutesCreateCall added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) Context added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) Do added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) Fields added in v0.139.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) Header added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) PolicyBasedRouteId added in v0.139.0

PolicyBasedRouteId sets the optional parameter "policyBasedRouteId": Required. Unique id for the policy-based route to create.

func (*ProjectsLocationsGlobalPolicyBasedRoutesCreateCall) RequestId added in v0.139.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall) Context added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall) Do added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall) Fields added in v0.139.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall) Header added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesDeleteCall) RequestId added in v0.139.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsGlobalPolicyBasedRoutesGetCall added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetCall) Context added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetCall) Do added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetCall) Fields added in v0.139.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetCall) Header added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetCall) IfNoneMatch added in v0.139.0

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

type ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) Context

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.global.policyBasedRoutes.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) Header

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) IfNoneMatch

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesGetIamPolicyCall) OptionsRequestedPolicyVersion

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

type ProjectsLocationsGlobalPolicyBasedRoutesListCall added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Context added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Do added in v0.139.0

Do executes the "networkconnectivity.projects.locations.global.policyBasedRoutes.list" call. Any non-2xx status code is an error. Response headers are in either *ListPolicyBasedRoutesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Fields added in v0.139.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Filter added in v0.139.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Header added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) IfNoneMatch added in v0.139.0

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) OrderBy added in v0.139.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) PageSize added in v0.139.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) PageToken added in v0.139.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsGlobalPolicyBasedRoutesListCall) Pages added in v0.139.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.

type ProjectsLocationsGlobalPolicyBasedRoutesService

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

func NewProjectsLocationsGlobalPolicyBasedRoutesService

func NewProjectsLocationsGlobalPolicyBasedRoutesService(s *Service) *ProjectsLocationsGlobalPolicyBasedRoutesService

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) Create added in v0.139.0

Create: Creates a new policy-based route in a given project and location.

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) Delete added in v0.139.0

Delete: Deletes a single policy-based route.

- name: Name of the policy-based route resource to delete.

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) Get added in v0.139.0

Get: Gets details of a single policy-based route.

- name: Name of the PolicyBasedRoute resource to get.

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) GetIamPolicy

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) List added in v0.139.0

List: Lists policy-based routes in a given project and location.

- parent: The parent resource's name.

func (*ProjectsLocationsGlobalPolicyBasedRoutesService) 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 (*ProjectsLocationsGlobalPolicyBasedRoutesService) TestIamPermissions

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

type ProjectsLocationsGlobalPolicyBasedRoutesSetIamPolicyCall

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesSetIamPolicyCall) Context

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesSetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.global.policyBasedRoutes.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGlobalPolicyBasedRoutesSetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesSetIamPolicyCall) Header

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

type ProjectsLocationsGlobalPolicyBasedRoutesTestIamPermissionsCall

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesTestIamPermissionsCall) Context

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesTestIamPermissionsCall) Do

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

func (*ProjectsLocationsGlobalPolicyBasedRoutesTestIamPermissionsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsGlobalPolicyBasedRoutesTestIamPermissionsCall) Header

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

type ProjectsLocationsGlobalService

type ProjectsLocationsGlobalService struct {
	Hubs *ProjectsLocationsGlobalHubsService

	PolicyBasedRoutes *ProjectsLocationsGlobalPolicyBasedRoutesService
	// contains filtered or unexported fields
}

func NewProjectsLocationsGlobalService

func NewProjectsLocationsGlobalService(s *Service) *ProjectsLocationsGlobalService

type ProjectsLocationsInternalRangesCreateCall added in v0.101.0

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

func (*ProjectsLocationsInternalRangesCreateCall) Context added in v0.101.0

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

func (*ProjectsLocationsInternalRangesCreateCall) Do added in v0.101.0

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

func (*ProjectsLocationsInternalRangesCreateCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsInternalRangesCreateCall) Header added in v0.101.0

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

func (*ProjectsLocationsInternalRangesCreateCall) InternalRangeId added in v0.101.0

InternalRangeId sets the optional parameter "internalRangeId": Resource ID (i.e. 'foo' in '[...]/projects/p/locations/l/internalRanges/foo') See https://google.aip.dev/122#resource-id-segments Unique per location.

func (*ProjectsLocationsInternalRangesCreateCall) RequestId added in v0.101.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsInternalRangesDeleteCall added in v0.101.0

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

func (*ProjectsLocationsInternalRangesDeleteCall) Context added in v0.101.0

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

func (*ProjectsLocationsInternalRangesDeleteCall) Do added in v0.101.0

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

func (*ProjectsLocationsInternalRangesDeleteCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsInternalRangesDeleteCall) Header added in v0.101.0

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

func (*ProjectsLocationsInternalRangesDeleteCall) RequestId added in v0.101.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsInternalRangesGetCall added in v0.101.0

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

func (*ProjectsLocationsInternalRangesGetCall) Context added in v0.101.0

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

func (*ProjectsLocationsInternalRangesGetCall) Do added in v0.101.0

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

func (*ProjectsLocationsInternalRangesGetCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsInternalRangesGetCall) Header added in v0.101.0

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

func (*ProjectsLocationsInternalRangesGetCall) IfNoneMatch added in v0.101.0

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

type ProjectsLocationsInternalRangesListCall added in v0.101.0

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

func (*ProjectsLocationsInternalRangesListCall) Context added in v0.101.0

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

func (*ProjectsLocationsInternalRangesListCall) Do added in v0.101.0

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

func (*ProjectsLocationsInternalRangesListCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsInternalRangesListCall) Filter added in v0.101.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsInternalRangesListCall) Header added in v0.101.0

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

func (*ProjectsLocationsInternalRangesListCall) IfNoneMatch added in v0.101.0

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

func (*ProjectsLocationsInternalRangesListCall) OrderBy added in v0.101.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsInternalRangesListCall) PageSize added in v0.101.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsInternalRangesListCall) PageToken added in v0.101.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsInternalRangesListCall) Pages added in v0.101.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.

type ProjectsLocationsInternalRangesPatchCall added in v0.101.0

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

func (*ProjectsLocationsInternalRangesPatchCall) Context added in v0.101.0

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

func (*ProjectsLocationsInternalRangesPatchCall) Do added in v0.101.0

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

func (*ProjectsLocationsInternalRangesPatchCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsInternalRangesPatchCall) Header added in v0.101.0

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

func (*ProjectsLocationsInternalRangesPatchCall) RequestId added in v0.101.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsInternalRangesPatchCall) UpdateMask added in v0.101.0

UpdateMask sets the optional parameter "updateMask": Field mask is used to specify the fields to be overwritten in the InternalRange resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.

type ProjectsLocationsInternalRangesService added in v0.101.0

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

func NewProjectsLocationsInternalRangesService added in v0.101.0

func NewProjectsLocationsInternalRangesService(s *Service) *ProjectsLocationsInternalRangesService

func (*ProjectsLocationsInternalRangesService) Create added in v0.101.0

Create: Creates a new internal range in a given project and location.

- parent: The parent resource's name of the internal range.

func (*ProjectsLocationsInternalRangesService) Delete added in v0.101.0

Delete: Deletes a single internal range.

- name: The name of the internal range to delete.

func (*ProjectsLocationsInternalRangesService) Get added in v0.101.0

Get: Gets details of a single internal range.

- name: Name of the InternalRange to get.

func (*ProjectsLocationsInternalRangesService) List added in v0.101.0

List: Lists internal ranges in a given project and location.

- parent: The parent resource's name.

func (*ProjectsLocationsInternalRangesService) Patch added in v0.101.0

Patch: Updates the parameters of a single internal range.

type ProjectsLocationsListCall

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 "networkconnectivity.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 returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsListCall) Filter

Filter sets the optional parameter "filter": A filter to narrow down results to 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 add headers to the request.

func (*ProjectsLocationsListCall) IfNoneMatch

func (c *ProjectsLocationsListCall) IfNoneMatch(entityTag string) *ProjectsLocationsListCall

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

func (*ProjectsLocationsListCall) PageSize

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

func (*ProjectsLocationsListCall) PageToken

PageToken sets the optional parameter "pageToken": A page token received from the `next_page_token` field in the response. Send that page token to receive 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.

type ProjectsLocationsOperationsCancelCall

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 "networkconnectivity.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsCancelCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsOperationsCancelCall) Header

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

type ProjectsLocationsOperationsDeleteCall

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 "networkconnectivity.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsOperationsDeleteCall) Header

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

type ProjectsLocationsOperationsGetCall

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 "networkconnectivity.projects.locations.operations.get" call. Any non-2xx status code is an error. Response headers are in either *GoogleLongrunningOperation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsOperationsGetCall) Header

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

func (*ProjectsLocationsOperationsGetCall) IfNoneMatch

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

type ProjectsLocationsOperationsListCall

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 "networkconnectivity.projects.locations.operations.list" call. Any non-2xx status code is an error. Response headers are in either *GoogleLongrunningListOperationsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

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 add headers to the request.

func (*ProjectsLocationsOperationsListCall) IfNoneMatch

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

func (*ProjectsLocationsOperationsListCall) PageSize

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

func (*ProjectsLocationsOperationsListCall) PageToken

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

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.

type ProjectsLocationsOperationsService

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

func NewProjectsLocationsOperationsService

func NewProjectsLocationsOperationsService(s *Service) *ProjectsLocationsOperationsService

func (*ProjectsLocationsOperationsService) Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.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 the client is no longer interested in the operation result. It does not cancel the 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 this method to poll the operation result at intervals as recommended by the API service.

- name: The name of the operation resource.

func (*ProjectsLocationsOperationsService) List

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

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

type ProjectsLocationsRegionalEndpointsCreateCall added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsCreateCall) Context added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsCreateCall) Do added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsCreateCall) Fields added in v0.177.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsRegionalEndpointsCreateCall) Header added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsCreateCall) RegionalEndpointId added in v0.177.0

RegionalEndpointId sets the optional parameter "regionalEndpointId": Required. Unique id of the Regional Endpoint to be created.

func (*ProjectsLocationsRegionalEndpointsCreateCall) RequestId added in v0.177.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if the original operation with the same request ID was received, and if so, ignores the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsRegionalEndpointsDeleteCall added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsDeleteCall) Context added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsDeleteCall) Do added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsDeleteCall) Fields added in v0.177.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsRegionalEndpointsDeleteCall) Header added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsDeleteCall) RequestId added in v0.177.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if the original operation with the same request ID was received, and if so, ignores the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsRegionalEndpointsGetCall added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsGetCall) Context added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsGetCall) Do added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsGetCall) Fields added in v0.177.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsRegionalEndpointsGetCall) Header added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsGetCall) IfNoneMatch added in v0.177.0

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

type ProjectsLocationsRegionalEndpointsListCall added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsListCall) Context added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsListCall) Do added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsListCall) Fields added in v0.177.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsRegionalEndpointsListCall) Filter added in v0.177.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsRegionalEndpointsListCall) Header added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsListCall) IfNoneMatch added in v0.177.0

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

func (*ProjectsLocationsRegionalEndpointsListCall) OrderBy added in v0.177.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsRegionalEndpointsListCall) PageSize added in v0.177.0

PageSize sets the optional parameter "pageSize": Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.

func (*ProjectsLocationsRegionalEndpointsListCall) PageToken added in v0.177.0

PageToken sets the optional parameter "pageToken": A page token.

func (*ProjectsLocationsRegionalEndpointsListCall) Pages added in v0.177.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.

type ProjectsLocationsRegionalEndpointsService added in v0.177.0

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

func NewProjectsLocationsRegionalEndpointsService added in v0.177.0

func NewProjectsLocationsRegionalEndpointsService(s *Service) *ProjectsLocationsRegionalEndpointsService

func (*ProjectsLocationsRegionalEndpointsService) Create added in v0.177.0

Create: Creates a new RegionalEndpoint in a given project and location.

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

func (*ProjectsLocationsRegionalEndpointsService) Delete added in v0.177.0

Delete: Deletes a single RegionalEndpoint.

- name: The name of the RegionalEndpoint to delete.

func (*ProjectsLocationsRegionalEndpointsService) Get added in v0.177.0

Get: Gets details of a single RegionalEndpoint.

  • name: Name of the RegionalEndpoint resource to get. Format: `projects/{project}/locations/{location}/regionalEndpoints/{regional_endpoi nt}`.

func (*ProjectsLocationsRegionalEndpointsService) List added in v0.177.0

List: Lists RegionalEndpoints in a given project and location.

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

type ProjectsLocationsService

type ProjectsLocationsService struct {
	Global *ProjectsLocationsGlobalService

	InternalRanges *ProjectsLocationsInternalRangesService

	Operations *ProjectsLocationsOperationsService

	RegionalEndpoints *ProjectsLocationsRegionalEndpointsService

	ServiceClasses *ProjectsLocationsServiceClassesService

	ServiceConnectionMaps *ProjectsLocationsServiceConnectionMapsService

	ServiceConnectionPolicies *ProjectsLocationsServiceConnectionPoliciesService

	ServiceConnectionTokens *ProjectsLocationsServiceConnectionTokensService

	Spokes *ProjectsLocationsSpokesService
	// contains filtered or unexported fields
}

func NewProjectsLocationsService

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.

type ProjectsLocationsServiceClassesDeleteCall added in v0.123.0

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

func (*ProjectsLocationsServiceClassesDeleteCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceClassesDeleteCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceClassesDeleteCall) Etag added in v0.129.0

Etag sets the optional parameter "etag": The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

func (*ProjectsLocationsServiceClassesDeleteCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesDeleteCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceClassesDeleteCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsServiceClassesGetCall added in v0.123.0

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

func (*ProjectsLocationsServiceClassesGetCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceClassesGetCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceClassesGetCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesGetCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceClassesGetCall) IfNoneMatch added in v0.123.0

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

type ProjectsLocationsServiceClassesGetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceClasses.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) Header added in v0.101.0

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

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) IfNoneMatch added in v0.101.0

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

func (*ProjectsLocationsServiceClassesGetIamPolicyCall) OptionsRequestedPolicyVersion added in v0.101.0

func (c *ProjectsLocationsServiceClassesGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsServiceClassesGetIamPolicyCall

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

type ProjectsLocationsServiceClassesListCall added in v0.123.0

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

func (*ProjectsLocationsServiceClassesListCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceClassesListCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceClassesListCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesListCall) Filter added in v0.123.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsServiceClassesListCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceClassesListCall) IfNoneMatch added in v0.123.0

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

func (*ProjectsLocationsServiceClassesListCall) OrderBy added in v0.123.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsServiceClassesListCall) PageSize added in v0.123.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsServiceClassesListCall) PageToken added in v0.123.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsServiceClassesListCall) Pages added in v0.123.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.

type ProjectsLocationsServiceClassesPatchCall added in v0.123.0

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

func (*ProjectsLocationsServiceClassesPatchCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceClassesPatchCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceClassesPatchCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesPatchCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceClassesPatchCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceClassesPatchCall) UpdateMask added in v0.123.0

UpdateMask sets the optional parameter "updateMask": Field mask is used to specify the fields to be overwritten in the ServiceClass resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.

type ProjectsLocationsServiceClassesService added in v0.101.0

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

func NewProjectsLocationsServiceClassesService added in v0.101.0

func NewProjectsLocationsServiceClassesService(s *Service) *ProjectsLocationsServiceClassesService

func (*ProjectsLocationsServiceClassesService) Delete added in v0.123.0

Delete: Deletes a single ServiceClass.

- name: The name of the ServiceClass to delete.

func (*ProjectsLocationsServiceClassesService) Get added in v0.123.0

Get: Gets details of a single ServiceClass.

- name: Name of the ServiceClass to get.

func (*ProjectsLocationsServiceClassesService) GetIamPolicy added in v0.101.0

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

func (*ProjectsLocationsServiceClassesService) List added in v0.123.0

List: Lists ServiceClasses in a given project and location.

- parent: The parent resource's name. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceClassesService) Patch added in v0.123.0

Patch: Updates the parameters of a single ServiceClass.

func (*ProjectsLocationsServiceClassesService) SetIamPolicy added in v0.101.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 (*ProjectsLocationsServiceClassesService) TestIamPermissions added in v0.101.0

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

type ProjectsLocationsServiceClassesSetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceClassesSetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceClassesSetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceClasses.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceClassesSetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesSetIamPolicyCall) Header added in v0.101.0

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

type ProjectsLocationsServiceClassesTestIamPermissionsCall added in v0.101.0

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

func (*ProjectsLocationsServiceClassesTestIamPermissionsCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceClassesTestIamPermissionsCall) Do added in v0.101.0

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

func (*ProjectsLocationsServiceClassesTestIamPermissionsCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceClassesTestIamPermissionsCall) Header added in v0.101.0

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

type ProjectsLocationsServiceConnectionMapsCreateCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsCreateCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsCreateCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsCreateCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsCreateCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsCreateCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceConnectionMapsCreateCall) ServiceConnectionMapId added in v0.123.0

ServiceConnectionMapId sets the optional parameter "serviceConnectionMapId": Resource ID (i.e. 'foo' in '[...]/projects/p/locations/l/serviceConnectionMaps/foo') See https://google.aip.dev/122#resource-id-segments Unique per location. If one is not provided, one will be generated.

type ProjectsLocationsServiceConnectionMapsDeleteCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) Etag added in v0.129.0

Etag sets the optional parameter "etag": The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsDeleteCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsServiceConnectionMapsGetCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsGetCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsGetCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsGetCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsGetCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsGetCall) IfNoneMatch added in v0.123.0

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

type ProjectsLocationsServiceConnectionMapsGetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceConnectionMaps.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) Header added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) IfNoneMatch added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) OptionsRequestedPolicyVersion added in v0.101.0

func (c *ProjectsLocationsServiceConnectionMapsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsServiceConnectionMapsGetIamPolicyCall

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

type ProjectsLocationsServiceConnectionMapsListCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsListCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsListCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsListCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsListCall) Filter added in v0.123.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsServiceConnectionMapsListCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsListCall) IfNoneMatch added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsListCall) OrderBy added in v0.123.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsServiceConnectionMapsListCall) PageSize added in v0.123.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsServiceConnectionMapsListCall) PageToken added in v0.123.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsServiceConnectionMapsListCall) Pages added in v0.123.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.

type ProjectsLocationsServiceConnectionMapsPatchCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsPatchCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsPatchCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsPatchCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsPatchCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionMapsPatchCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceConnectionMapsPatchCall) UpdateMask added in v0.123.0

UpdateMask sets the optional parameter "updateMask": Field mask is used to specify the fields to be overwritten in the ServiceConnectionMap resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.

type ProjectsLocationsServiceConnectionMapsService added in v0.101.0

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

func NewProjectsLocationsServiceConnectionMapsService added in v0.101.0

func NewProjectsLocationsServiceConnectionMapsService(s *Service) *ProjectsLocationsServiceConnectionMapsService

func (*ProjectsLocationsServiceConnectionMapsService) Create added in v0.123.0

Create: Creates a new ServiceConnectionMap in a given project and location.

  • parent: The parent resource's name of the ServiceConnectionMap. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceConnectionMapsService) Delete added in v0.123.0

Delete: Deletes a single ServiceConnectionMap.

- name: The name of the ServiceConnectionMap to delete.

func (*ProjectsLocationsServiceConnectionMapsService) Get added in v0.123.0

Get: Gets details of a single ServiceConnectionMap.

- name: Name of the ServiceConnectionMap to get.

func (*ProjectsLocationsServiceConnectionMapsService) GetIamPolicy added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsService) List added in v0.123.0

List: Lists ServiceConnectionMaps in a given project and location.

- parent: The parent resource's name. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceConnectionMapsService) Patch added in v0.123.0

Patch: Updates the parameters of a single ServiceConnectionMap.

func (*ProjectsLocationsServiceConnectionMapsService) SetIamPolicy added in v0.101.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 (*ProjectsLocationsServiceConnectionMapsService) TestIamPermissions added in v0.101.0

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

type ProjectsLocationsServiceConnectionMapsSetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsSetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsSetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceConnectionMaps.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceConnectionMapsSetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsSetIamPolicyCall) Header added in v0.101.0

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

type ProjectsLocationsServiceConnectionMapsTestIamPermissionsCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsTestIamPermissionsCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsTestIamPermissionsCall) Do added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionMapsTestIamPermissionsCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionMapsTestIamPermissionsCall) Header added in v0.101.0

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

type ProjectsLocationsServiceConnectionPoliciesCreateCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceConnectionPoliciesCreateCall) ServiceConnectionPolicyId added in v0.123.0

ServiceConnectionPolicyId sets the optional parameter "serviceConnectionPolicyId": Resource ID (i.e. 'foo' in '[...]/projects/p/locations/l/serviceConnectionPolicies/foo') See https://google.aip.dev/122#resource-id-segments Unique per location.

type ProjectsLocationsServiceConnectionPoliciesDeleteCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) Etag added in v0.129.0

Etag sets the optional parameter "etag": The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesDeleteCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsServiceConnectionPoliciesGetCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesGetCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetCall) IfNoneMatch added in v0.123.0

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

type ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceConnectionPolicies.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) Header added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) IfNoneMatch added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesGetIamPolicyCall) OptionsRequestedPolicyVersion added in v0.101.0

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

type ProjectsLocationsServiceConnectionPoliciesListCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Filter added in v0.123.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesListCall) IfNoneMatch added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesListCall) OrderBy added in v0.123.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsServiceConnectionPoliciesListCall) PageSize added in v0.123.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsServiceConnectionPoliciesListCall) PageToken added in v0.123.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsServiceConnectionPoliciesListCall) Pages added in v0.123.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.

type ProjectsLocationsServiceConnectionPoliciesPatchCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceConnectionPoliciesPatchCall) UpdateMask added in v0.123.0

UpdateMask sets the optional parameter "updateMask": Field mask is used to specify the fields to be overwritten in the ServiceConnectionPolicy resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.

type ProjectsLocationsServiceConnectionPoliciesService added in v0.101.0

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

func NewProjectsLocationsServiceConnectionPoliciesService added in v0.101.0

func NewProjectsLocationsServiceConnectionPoliciesService(s *Service) *ProjectsLocationsServiceConnectionPoliciesService

func (*ProjectsLocationsServiceConnectionPoliciesService) Create added in v0.123.0

Create: Creates a new ServiceConnectionPolicy in a given project and location.

  • parent: The parent resource's name of the ServiceConnectionPolicy. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceConnectionPoliciesService) Delete added in v0.123.0

Delete: Deletes a single ServiceConnectionPolicy.

- name: The name of the ServiceConnectionPolicy to delete.

func (*ProjectsLocationsServiceConnectionPoliciesService) Get added in v0.123.0

Get: Gets details of a single ServiceConnectionPolicy.

- name: Name of the ServiceConnectionPolicy to get.

func (*ProjectsLocationsServiceConnectionPoliciesService) GetIamPolicy added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesService) List added in v0.123.0

List: Lists ServiceConnectionPolicies in a given project and location.

- parent: The parent resource's name. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceConnectionPoliciesService) Patch added in v0.123.0

Patch: Updates the parameters of a single ServiceConnectionPolicy.

func (*ProjectsLocationsServiceConnectionPoliciesService) SetIamPolicy added in v0.101.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 (*ProjectsLocationsServiceConnectionPoliciesService) TestIamPermissions added in v0.101.0

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

type ProjectsLocationsServiceConnectionPoliciesSetIamPolicyCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesSetIamPolicyCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesSetIamPolicyCall) Do added in v0.101.0

Do executes the "networkconnectivity.projects.locations.serviceConnectionPolicies.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsServiceConnectionPoliciesSetIamPolicyCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesSetIamPolicyCall) Header added in v0.101.0

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

type ProjectsLocationsServiceConnectionPoliciesTestIamPermissionsCall added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesTestIamPermissionsCall) Context added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesTestIamPermissionsCall) Do added in v0.101.0

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

func (*ProjectsLocationsServiceConnectionPoliciesTestIamPermissionsCall) Fields added in v0.101.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionPoliciesTestIamPermissionsCall) Header added in v0.101.0

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

type ProjectsLocationsServiceConnectionTokensCreateCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensCreateCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensCreateCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensCreateCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionTokensCreateCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensCreateCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsServiceConnectionTokensCreateCall) ServiceConnectionTokenId added in v0.123.0

ServiceConnectionTokenId sets the optional parameter "serviceConnectionTokenId": Resource ID (i.e. 'foo' in '[...]/projects/p/locations/l/ServiceConnectionTokens/foo') See https://google.aip.dev/122#resource-id-segments Unique per location. If one is not provided, one will be generated.

type ProjectsLocationsServiceConnectionTokensDeleteCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) Etag added in v0.129.0

Etag sets the optional parameter "etag": The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensDeleteCall) RequestId added in v0.123.0

RequestId sets the optional parameter "requestId": An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsServiceConnectionTokensGetCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensGetCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensGetCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensGetCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionTokensGetCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensGetCall) IfNoneMatch added in v0.123.0

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

type ProjectsLocationsServiceConnectionTokensListCall added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensListCall) Context added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensListCall) Do added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensListCall) Fields added in v0.123.0

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsServiceConnectionTokensListCall) Filter added in v0.123.0

Filter sets the optional parameter "filter": A filter expression that filters the results listed in the response.

func (*ProjectsLocationsServiceConnectionTokensListCall) Header added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensListCall) IfNoneMatch added in v0.123.0

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

func (*ProjectsLocationsServiceConnectionTokensListCall) OrderBy added in v0.123.0

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsServiceConnectionTokensListCall) PageSize added in v0.123.0

PageSize sets the optional parameter "pageSize": The maximum number of results per page that should be returned.

func (*ProjectsLocationsServiceConnectionTokensListCall) PageToken added in v0.123.0

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsServiceConnectionTokensListCall) Pages added in v0.123.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.

type ProjectsLocationsServiceConnectionTokensService added in v0.123.0

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

func NewProjectsLocationsServiceConnectionTokensService added in v0.123.0

func NewProjectsLocationsServiceConnectionTokensService(s *Service) *ProjectsLocationsServiceConnectionTokensService

func (*ProjectsLocationsServiceConnectionTokensService) Create added in v0.123.0

Create: Creates a new ServiceConnectionToken in a given project and location.

  • parent: The parent resource's name of the ServiceConnectionToken. ex. projects/123/locations/us-east1.

func (*ProjectsLocationsServiceConnectionTokensService) Delete added in v0.123.0

Delete: Deletes a single ServiceConnectionToken.

- name: The name of the ServiceConnectionToken to delete.

func (*ProjectsLocationsServiceConnectionTokensService) Get added in v0.123.0

Get: Gets details of a single ServiceConnectionToken.

- name: Name of the ServiceConnectionToken to get.

func (*ProjectsLocationsServiceConnectionTokensService) List added in v0.123.0

List: Lists ServiceConnectionTokens in a given project and location.

- parent: The parent resource's name. ex. projects/123/locations/us-east1.

type ProjectsLocationsSpokesCreateCall

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

func (*ProjectsLocationsSpokesCreateCall) Context

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

func (*ProjectsLocationsSpokesCreateCall) Do

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

func (*ProjectsLocationsSpokesCreateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesCreateCall) Header

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

func (*ProjectsLocationsSpokesCreateCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsSpokesCreateCall) SpokeId

SpokeId sets the optional parameter "spokeId": Required. Unique id for the spoke to create.

type ProjectsLocationsSpokesDeleteCall

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

func (*ProjectsLocationsSpokesDeleteCall) Context

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

func (*ProjectsLocationsSpokesDeleteCall) Do

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

func (*ProjectsLocationsSpokesDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesDeleteCall) Header

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

func (*ProjectsLocationsSpokesDeleteCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

type ProjectsLocationsSpokesGetCall

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

func (*ProjectsLocationsSpokesGetCall) Context

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

func (*ProjectsLocationsSpokesGetCall) Do

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

func (*ProjectsLocationsSpokesGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesGetCall) Header

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

func (*ProjectsLocationsSpokesGetCall) IfNoneMatch

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

type ProjectsLocationsSpokesGetIamPolicyCall

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

func (*ProjectsLocationsSpokesGetIamPolicyCall) Context

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

func (*ProjectsLocationsSpokesGetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.spokes.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsSpokesGetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesGetIamPolicyCall) Header

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

func (*ProjectsLocationsSpokesGetIamPolicyCall) IfNoneMatch

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

func (*ProjectsLocationsSpokesGetIamPolicyCall) OptionsRequestedPolicyVersion

func (c *ProjectsLocationsSpokesGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsSpokesGetIamPolicyCall

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

type ProjectsLocationsSpokesListCall

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

func (*ProjectsLocationsSpokesListCall) Context

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

func (*ProjectsLocationsSpokesListCall) Do

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

func (*ProjectsLocationsSpokesListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesListCall) Filter

Filter sets the optional parameter "filter": An expression that filters the list of results.

func (*ProjectsLocationsSpokesListCall) Header

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

func (*ProjectsLocationsSpokesListCall) IfNoneMatch

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

func (*ProjectsLocationsSpokesListCall) OrderBy

OrderBy sets the optional parameter "orderBy": Sort the results by a certain order.

func (*ProjectsLocationsSpokesListCall) PageSize

PageSize sets the optional parameter "pageSize": The maximum number of results to return per page.

func (*ProjectsLocationsSpokesListCall) PageToken

PageToken sets the optional parameter "pageToken": The page token.

func (*ProjectsLocationsSpokesListCall) 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.

type ProjectsLocationsSpokesPatchCall

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

func (*ProjectsLocationsSpokesPatchCall) Context

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

func (*ProjectsLocationsSpokesPatchCall) Do

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

func (*ProjectsLocationsSpokesPatchCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesPatchCall) Header

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

func (*ProjectsLocationsSpokesPatchCall) RequestId

RequestId sets the optional parameter "requestId": A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

func (*ProjectsLocationsSpokesPatchCall) UpdateMask

UpdateMask sets the optional parameter "updateMask": In the case of an update to an existing spoke, field mask is used to specify the fields to be overwritten. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not provide a mask, then all fields are overwritten.

type ProjectsLocationsSpokesService

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

func NewProjectsLocationsSpokesService

func NewProjectsLocationsSpokesService(s *Service) *ProjectsLocationsSpokesService

func (*ProjectsLocationsSpokesService) Create

Create: Creates a Network Connectivity Center spoke.

- parent: The parent resource.

func (*ProjectsLocationsSpokesService) Delete

Delete: Deletes a Network Connectivity Center spoke.

- name: The name of the spoke to delete.

func (*ProjectsLocationsSpokesService) Get

Get: Gets details about a Network Connectivity Center spoke.

- name: The name of the spoke resource.

func (*ProjectsLocationsSpokesService) GetIamPolicy

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

func (*ProjectsLocationsSpokesService) List

List: Lists the Network Connectivity Center spokes in a specified project and location.

- parent: The parent resource.

func (*ProjectsLocationsSpokesService) Patch

Patch: Updates the parameters of a Network Connectivity Center spoke.

  • name: Immutable. The name of the spoke. Spoke names must be unique. They use the following form: `projects/{project_number}/locations/{region}/spokes/{spoke_id}`.

func (*ProjectsLocationsSpokesService) 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 (*ProjectsLocationsSpokesService) TestIamPermissions

func (r *ProjectsLocationsSpokesService) TestIamPermissions(resource string, testiampermissionsrequest *TestIamPermissionsRequest) *ProjectsLocationsSpokesTestIamPermissionsCall

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

type ProjectsLocationsSpokesSetIamPolicyCall

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

func (*ProjectsLocationsSpokesSetIamPolicyCall) Context

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

func (*ProjectsLocationsSpokesSetIamPolicyCall) Do

Do executes the "networkconnectivity.projects.locations.spokes.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) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsSpokesSetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesSetIamPolicyCall) Header

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

type ProjectsLocationsSpokesTestIamPermissionsCall

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

func (*ProjectsLocationsSpokesTestIamPermissionsCall) Context

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

func (*ProjectsLocationsSpokesTestIamPermissionsCall) Do

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

func (*ProjectsLocationsSpokesTestIamPermissionsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more details.

func (*ProjectsLocationsSpokesTestIamPermissionsCall) Header

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

type ProjectsService

type ProjectsService struct {
	Locations *ProjectsLocationsService
	// contains filtered or unexported fields
}

func NewProjectsService

func NewProjectsService(s *Service) *ProjectsService

type PscConfig added in v0.123.0

type PscConfig struct {
	// Limit: Optional. Max number of PSC connections for this policy.
	Limit int64 `json:"limit,omitempty,string"`
	// Subnetworks: The resource paths of subnetworks to use for IP address
	// management. Example:
	// projects/{projectNumOrId}/regions/{region}/subnetworks/{resourceId}.
	Subnetworks []string `json:"subnetworks,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Limit") 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. "Limit") 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:"-"`
}

PscConfig: Configuration used for Private Service Connect connections. Used when Infrastructure is PSC.

func (*PscConfig) MarshalJSON added in v0.123.0

func (s *PscConfig) MarshalJSON() ([]byte, error)

type PscConnection added in v0.123.0

type PscConnection struct {
	// ConsumerAddress: The resource reference of the consumer address.
	ConsumerAddress string `json:"consumerAddress,omitempty"`
	// ConsumerForwardingRule: The resource reference of the PSC Forwarding Rule
	// within the consumer VPC.
	ConsumerForwardingRule string `json:"consumerForwardingRule,omitempty"`
	// ConsumerTargetProject: The project where the PSC connection is created.
	ConsumerTargetProject string `json:"consumerTargetProject,omitempty"`
	// Error: The most recent error during operating this connection.
	Error *GoogleRpcStatus `json:"error,omitempty"`
	// ErrorInfo: Output only. The error info for the latest error during operating
	// this connection.
	ErrorInfo *GoogleRpcErrorInfo `json:"errorInfo,omitempty"`
	// ErrorType: The error type indicates whether the error is consumer facing,
	// producer facing or system internal.
	//
	// Possible values:
	//   "CONNECTION_ERROR_TYPE_UNSPECIFIED" - An invalid error type as the default
	// case.
	//   "ERROR_INTERNAL" - The error is due to Service Automation system internal.
	//   "ERROR_CONSUMER_SIDE" - The error is due to the setup on consumer side.
	//   "ERROR_PRODUCER_SIDE" - The error is due to the setup on producer side.
	ErrorType string `json:"errorType,omitempty"`
	// GceOperation: The last Compute Engine operation to setup PSC connection.
	GceOperation string `json:"gceOperation,omitempty"`
	// ProducerInstanceId: Immutable. An immutable identifier for the producer
	// instance.
	ProducerInstanceId string `json:"producerInstanceId,omitempty"`
	// PscConnectionId: The PSC connection id of the PSC forwarding rule.
	PscConnectionId string `json:"pscConnectionId,omitempty"`
	// SelectedSubnetwork: Output only. The URI of the subnetwork selected to
	// allocate IP address for this connection.
	SelectedSubnetwork string `json:"selectedSubnetwork,omitempty"`
	// State: State of the PSC Connection
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - An invalid state as the default case.
	//   "ACTIVE" - The connection is fully established and ready to use.
	//   "FAILED" - The connection is not functional since some resources on the
	// connection fail to be created.
	//   "CREATING" - The connection is being created.
	//   "DELETING" - The connection is being deleted.
	State string `json:"state,omitempty"`
	// ForceSendFields is a list of field names (e.g. "ConsumerAddress") 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. "ConsumerAddress") 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:"-"`
}

PscConnection: Information about a specific Private Service Connect connection.

func (*PscConnection) MarshalJSON added in v0.123.0

func (s *PscConnection) MarshalJSON() ([]byte, error)

type RegionalEndpoint added in v0.177.0

type RegionalEndpoint struct {
	// AccessType: Required. The access type of this regional endpoint. This field
	// is reflected in the PSC Forwarding Rule configuration to enable global
	// access.
	//
	// Possible values:
	//   "ACCESS_TYPE_UNSPECIFIED" - An invalid type as the default case.
	//   "GLOBAL" - This regional endpoint is accessible from all regions.
	//   "REGIONAL" - This regional endpoint is only accessible from the same
	// region where it resides.
	AccessType string `json:"accessType,omitempty"`
	// Address: Optional. The IP Address of the Regional Endpoint. When no address
	// is provided, an IP from the subnetwork is allocated. Use one of the
	// following formats: * IPv4 address as in `10.0.0.1` * Address resource URI as
	// in `projects/{project}/regions/{region}/addresses/{address_name}`
	Address string `json:"address,omitempty"`
	// CreateTime: Output only. Time when the RegionalEndpoint was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: Optional. A description of this resource.
	Description string `json:"description,omitempty"`
	// IpAddress: Output only. The literal IP address of the PSC Forwarding Rule
	// created on behalf of the customer. This field is deprecated. Use address
	// instead.
	IpAddress string `json:"ipAddress,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Output only. The name of a RegionalEndpoint. Format:
	// `projects/{project}/locations/{location}/regionalEndpoints/{regional_endpoint
	// }`.
	Name string `json:"name,omitempty"`
	// Network: The name of the VPC network for this private regional endpoint.
	// Format: `projects/{project}/global/networks/{network}`
	Network string `json:"network,omitempty"`
	// PscForwardingRule: Output only. The resource reference of the PSC Forwarding
	// Rule created on behalf of the customer. Format:
	// `//compute.googleapis.com/projects/{project}/regions/{region}/forwardingRules
	// /{forwarding_rule_name}`
	PscForwardingRule string `json:"pscForwardingRule,omitempty"`
	// Subnetwork: The name of the subnetwork from which the IP address will be
	// allocated. Format:
	// `projects/{project}/regions/{region}/subnetworks/{subnetwork}`
	Subnetwork string `json:"subnetwork,omitempty"`
	// TargetGoogleApi: Required. The service endpoint this private regional
	// endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com`
	// Example: "cloudkms.us-central1.p.rep.googleapis.com".
	TargetGoogleApi string `json:"targetGoogleApi,omitempty"`
	// UpdateTime: Output only. Time when the RegionalEndpoint was updated.
	UpdateTime string `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. "AccessType") 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. "AccessType") 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:"-"`
}

RegionalEndpoint: The RegionalEndpoint resource.

func (*RegionalEndpoint) MarshalJSON added in v0.177.0

func (s *RegionalEndpoint) MarshalJSON() ([]byte, error)

type RejectHubSpokeRequest added in v0.140.0

type RejectHubSpokeRequest struct {
	// Details: Optional. Additional information provided by the hub administrator.
	Details string `json:"details,omitempty"`
	// RequestId: Optional. A request ID to identify requests. Specify a unique
	// request ID so that if you must retry your request, the server knows to
	// ignore the request if it has already been completed. The server guarantees
	// that a request doesn't result in creation of duplicate commitments for at
	// least 60 minutes. For example, consider a situation where you make an
	// initial request and the request times out. If you make the request again
	// with the same request ID, the server can check to see whether the original
	// operation was received. If it was, the server ignores the second request.
	// This behavior prevents clients from mistakenly creating duplicate
	// commitments. The request ID must be a valid UUID, with the exception that
	// zero UUID is not supported (00000000-0000-0000-0000-000000000000).
	RequestId string `json:"requestId,omitempty"`
	// SpokeUri: Required. The URI of the spoke to reject from the hub.
	SpokeUri string `json:"spokeUri,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:"-"`
}

RejectHubSpokeRequest: The request for HubService.RejectHubSpoke.

func (*RejectHubSpokeRequest) MarshalJSON added in v0.140.0

func (s *RejectHubSpokeRequest) MarshalJSON() ([]byte, error)

type RejectHubSpokeResponse added in v0.142.0

type RejectHubSpokeResponse struct {
	// Spoke: The spoke that was operated on.
	Spoke *Spoke `json:"spoke,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Spoke") 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. "Spoke") 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:"-"`
}

RejectHubSpokeResponse: The response for HubService.RejectHubSpoke.

func (*RejectHubSpokeResponse) MarshalJSON added in v0.142.0

func (s *RejectHubSpokeResponse) MarshalJSON() ([]byte, error)

type Route added in v0.129.0

type Route struct {
	// CreateTime: Output only. The time the route was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: An optional description of the route.
	Description string `json:"description,omitempty"`
	// IpCidrRange: The destination IP address range.
	IpCidrRange string `json:"ipCidrRange,omitempty"`
	// Labels: Optional labels in key-value pair format. For more information about
	// labels, see Requirements for labels
	// (https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements).
	Labels map[string]string `json:"labels,omitempty"`
	// Location: Output only. The origin location of the route. Uses the following
	// form: "projects/{project}/locations/{location}" Example:
	// projects/1234/locations/us-central1
	Location string `json:"location,omitempty"`
	// Name: Immutable. The name of the route. Route names must be unique. Route
	// names use the following form:
	// `projects/{project_number}/locations/global/hubs/{hub}/routeTables/{route_tab
	// le_id}/routes/{route_id}`
	Name string `json:"name,omitempty"`
	// NextHopVpcNetwork: Immutable. The destination VPC network for packets on
	// this route.
	NextHopVpcNetwork *NextHopVpcNetwork `json:"nextHopVpcNetwork,omitempty"`
	// Spoke: Immutable. The spoke that this route leads to. Example:
	// projects/12345/locations/global/spokes/SPOKE
	Spoke string `json:"spoke,omitempty"`
	// State: Output only. The current lifecycle state of the route.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// Type: Output only. The route's type. Its type is determined by the
	// properties of its IP address range.
	//
	// Possible values:
	//   "ROUTE_TYPE_UNSPECIFIED" - No route type information specified
	//   "VPC_PRIMARY_SUBNET" - The route leads to a destination within the primary
	// address range of the VPC network's subnet.
	//   "VPC_SECONDARY_SUBNET" - The route leads to a destination within the
	// secondary address range of the VPC network's subnet.
	Type string `json:"type,omitempty"`
	// Uid: Output only. The Google-generated UUID for the route. This value is
	// unique across all Network Connectivity Center route resources. If a route is
	// deleted and another with the same name is created, the new route is assigned
	// a different `uid`.
	Uid string `json:"uid,omitempty"`
	// UpdateTime: Output only. The time the route was last updated.
	UpdateTime string `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:"-"`
}

Route: A route defines a path from VM instances within a spoke to a specific destination resource. Only VPC spokes have routes.

func (*Route) MarshalJSON added in v0.129.0

func (s *Route) MarshalJSON() ([]byte, error)

type RouteTable added in v0.129.0

type RouteTable struct {
	// CreateTime: Output only. The time the route table was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: An optional description of the route table.
	Description string `json:"description,omitempty"`
	// Labels: Optional labels in key-value pair format. For more information about
	// labels, see Requirements for labels
	// (https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements).
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of the route table. Route table names must be
	// unique. They use the following form:
	// `projects/{project_number}/locations/global/hubs/{hub}/routeTables/{route_tab
	// le_id}`
	Name string `json:"name,omitempty"`
	// State: Output only. The current lifecycle state of this route table.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// Uid: Output only. The Google-generated UUID for the route table. This value
	// is unique across all route table resources. If a route table is deleted and
	// another with the same name is created, the new route table is assigned a
	// different `uid`.
	Uid string `json:"uid,omitempty"`
	// UpdateTime: Output only. The time the route table was last updated.
	UpdateTime string `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:"-"`
}

func (*RouteTable) MarshalJSON added in v0.129.0

func (s *RouteTable) MarshalJSON() ([]byte, error)

type RouterApplianceInstance

type RouterApplianceInstance struct {
	// IpAddress: The IP address on the VM to use for peering.
	IpAddress string `json:"ipAddress,omitempty"`
	// VirtualMachine: The URI of the VM.
	VirtualMachine string `json:"virtualMachine,omitempty"`
	// ForceSendFields is a list of field names (e.g. "IpAddress") 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. "IpAddress") 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:"-"`
}

RouterApplianceInstance: A router appliance instance is a Compute Engine virtual machine (VM) instance that acts as a BGP speaker. A router appliance instance is specified by the URI of the VM and the internal IP address of one of the VM's network interfaces.

func (*RouterApplianceInstance) MarshalJSON

func (s *RouterApplianceInstance) MarshalJSON() ([]byte, error)

type RoutingVPC

type RoutingVPC struct {
	// RequiredForNewSiteToSiteDataTransferSpokes: Output only. If true, indicates
	// that this VPC network is currently associated with spokes that use the data
	// transfer feature (spokes where the site_to_site_data_transfer field is set
	// to true). If you create new spokes that use data transfer, they must be
	// associated with this VPC network. At most, one VPC network will have this
	// field set to true.
	RequiredForNewSiteToSiteDataTransferSpokes bool `json:"requiredForNewSiteToSiteDataTransferSpokes,omitempty"`
	// Uri: The URI of the VPC network.
	Uri string `json:"uri,omitempty"`
	// ForceSendFields is a list of field names (e.g.
	// "RequiredForNewSiteToSiteDataTransferSpokes") 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.
	// "RequiredForNewSiteToSiteDataTransferSpokes") 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:"-"`
}

RoutingVPC: RoutingVPC contains information about the VPC networks associated with the spokes of a Network Connectivity Center hub.

func (*RoutingVPC) MarshalJSON

func (s *RoutingVPC) MarshalJSON() ([]byte, error)

type Service

type Service struct {
	BasePath  string // API endpoint base URL
	UserAgent string // optional additional User-Agent fragment

	Projects *ProjectsService
	// contains filtered or unexported fields
}

func New deprecated

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.

func NewService

func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error)

NewService creates a new Service.

type ServiceClass added in v0.123.0

type ServiceClass struct {
	// CreateTime: Output only. Time when the ServiceClass was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: A description of this resource.
	Description string `json:"description,omitempty"`
	// Etag: Optional. The etag is computed by the server, and may be sent on
	// update and delete requests to ensure the client has an up-to-date value
	// before proceeding.
	Etag string `json:"etag,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of a ServiceClass resource. Format:
	// projects/{project}/locations/{location}/serviceClasses/{service_class} See:
	// https://google.aip.dev/122#fields-representing-resource-names
	Name string `json:"name,omitempty"`
	// ServiceClass: Output only. The generated service class name. Use this name
	// to refer to the Service class in Service Connection Maps and Service
	// Connection Policies.
	ServiceClass string `json:"serviceClass,omitempty"`
	// UpdateTime: Output only. Time when the ServiceClass was updated.
	UpdateTime string `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:"-"`
}

ServiceClass: The ServiceClass resource. Next id: 9

func (*ServiceClass) MarshalJSON added in v0.123.0

func (s *ServiceClass) MarshalJSON() ([]byte, error)

type ServiceConnectionMap added in v0.123.0

type ServiceConnectionMap struct {
	// ConsumerPscConfigs: The PSC configurations on consumer side.
	ConsumerPscConfigs []*ConsumerPscConfig `json:"consumerPscConfigs,omitempty"`
	// ConsumerPscConnections: Output only. PSC connection details on consumer
	// side.
	ConsumerPscConnections []*ConsumerPscConnection `json:"consumerPscConnections,omitempty"`
	// CreateTime: Output only. Time when the ServiceConnectionMap was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: A description of this resource.
	Description string `json:"description,omitempty"`
	// Etag: Optional. The etag is computed by the server, and may be sent on
	// update and delete requests to ensure the client has an up-to-date value
	// before proceeding.
	Etag string `json:"etag,omitempty"`
	// Infrastructure: Output only. The infrastructure used for connections between
	// consumers/producers.
	//
	// Possible values:
	//   "INFRASTRUCTURE_UNSPECIFIED" - An invalid infrastructure as the default
	// case.
	//   "PSC" - Private Service Connect is used for connections.
	Infrastructure string `json:"infrastructure,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of a ServiceConnectionMap. Format:
	// projects/{project}/locations/{location}/serviceConnectionMaps/{service_connec
	// tion_map} See: https://google.aip.dev/122#fields-representing-resource-names
	Name string `json:"name,omitempty"`
	// ProducerPscConfigs: The PSC configurations on producer side.
	ProducerPscConfigs []*ProducerPscConfig `json:"producerPscConfigs,omitempty"`
	// ServiceClass: The service class identifier this ServiceConnectionMap is for.
	// The user of ServiceConnectionMap create API needs to have
	// networkconnecitivty.serviceclasses.use iam permission for the service class.
	ServiceClass string `json:"serviceClass,omitempty"`
	// ServiceClassUri: Output only. The service class uri this
	// ServiceConnectionMap is for.
	ServiceClassUri string `json:"serviceClassUri,omitempty"`
	// Token: The token provided by the consumer. This token authenticates that the
	// consumer can create a connecton within the specified project and network.
	Token string `json:"token,omitempty"`
	// UpdateTime: Output only. Time when the ServiceConnectionMap was updated.
	UpdateTime string `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. "ConsumerPscConfigs") 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. "ConsumerPscConfigs") 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:"-"`
}

ServiceConnectionMap: The ServiceConnectionMap resource. Next id: 15

func (*ServiceConnectionMap) MarshalJSON added in v0.123.0

func (s *ServiceConnectionMap) MarshalJSON() ([]byte, error)

type ServiceConnectionPolicy added in v0.123.0

type ServiceConnectionPolicy struct {
	// CreateTime: Output only. Time when the ServiceConnectionMap was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: A description of this resource.
	Description string `json:"description,omitempty"`
	// Etag: Optional. The etag is computed by the server, and may be sent on
	// update and delete requests to ensure the client has an up-to-date value
	// before proceeding.
	Etag string `json:"etag,omitempty"`
	// Infrastructure: Output only. The type of underlying resources used to create
	// the connection.
	//
	// Possible values:
	//   "INFRASTRUCTURE_UNSPECIFIED" - An invalid infrastructure as the default
	// case.
	//   "PSC" - Private Service Connect is used for connections.
	Infrastructure string `json:"infrastructure,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of a ServiceConnectionPolicy. Format:
	// projects/{project}/locations/{location}/serviceConnectionPolicies/{service_co
	// nnection_policy} See:
	// https://google.aip.dev/122#fields-representing-resource-names
	Name string `json:"name,omitempty"`
	// Network: The resource path of the consumer network. Example: -
	// projects/{projectNumOrId}/global/networks/{resourceId}.
	Network string `json:"network,omitempty"`
	// PscConfig: Configuration used for Private Service Connect connections. Used
	// when Infrastructure is PSC.
	PscConfig *PscConfig `json:"pscConfig,omitempty"`
	// PscConnections: Output only. [Output only] Information about each Private
	// Service Connect connection.
	PscConnections []*PscConnection `json:"pscConnections,omitempty"`
	// ServiceClass: The service class identifier for which this
	// ServiceConnectionPolicy is for. The service class identifier is a unique,
	// symbolic representation of a ServiceClass. It is provided by the Service
	// Producer. Google services have a prefix of gcp. For example, gcp-cloud-sql.
	// 3rd party services do not. For example, test-service-a3dfcx.
	ServiceClass string `json:"serviceClass,omitempty"`
	// UpdateTime: Output only. Time when the ServiceConnectionMap was updated.
	UpdateTime string `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:"-"`
}

ServiceConnectionPolicy: The ServiceConnectionPolicy resource. Next id: 12

func (*ServiceConnectionPolicy) MarshalJSON added in v0.123.0

func (s *ServiceConnectionPolicy) MarshalJSON() ([]byte, error)

type ServiceConnectionToken added in v0.123.0

type ServiceConnectionToken struct {
	// CreateTime: Output only. Time when the ServiceConnectionToken was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: A description of this resource.
	Description string `json:"description,omitempty"`
	// Etag: Optional. The etag is computed by the server, and may be sent on
	// update and delete requests to ensure the client has an up-to-date value
	// before proceeding.
	Etag string `json:"etag,omitempty"`
	// ExpireTime: Output only. The time to which this token is valid.
	ExpireTime string `json:"expireTime,omitempty"`
	// Labels: User-defined labels.
	Labels map[string]string `json:"labels,omitempty"`
	// Name: Immutable. The name of a ServiceConnectionToken. Format:
	// projects/{project}/locations/{location}/ServiceConnectionTokens/{service_conn
	// ection_token} See:
	// https://google.aip.dev/122#fields-representing-resource-names
	Name string `json:"name,omitempty"`
	// Network: The resource path of the network associated with this token.
	// Example: projects/{projectNumOrId}/global/networks/{resourceId}.
	Network string `json:"network,omitempty"`
	// Token: Output only. The token generated by Automation.
	Token string `json:"token,omitempty"`
	// UpdateTime: Output only. Time when the ServiceConnectionToken was updated.
	UpdateTime string `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:"-"`
}

ServiceConnectionToken: The ServiceConnectionToken resource. Next id: 10

func (*ServiceConnectionToken) MarshalJSON added in v0.123.0

func (s *ServiceConnectionToken) MarshalJSON() ([]byte, error)

type SetIamPolicyRequest

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"
	UpdateMask string `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 (s *SetIamPolicyRequest) MarshalJSON() ([]byte, error)

type Spoke

type Spoke struct {
	// CreateTime: Output only. The time the spoke was created.
	CreateTime string `json:"createTime,omitempty"`
	// Description: An optional description of the spoke.
	Description string `json:"description,omitempty"`
	// Group: Optional. The name of the group that this spoke is associated with.
	Group string `json:"group,omitempty"`
	// Hub: Immutable. The name of the hub that this spoke is attached to.
	Hub string `json:"hub,omitempty"`
	// Labels: Optional labels in key-value pair format. For more information about
	// labels, see Requirements for labels
	// (https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements).
	Labels map[string]string `json:"labels,omitempty"`
	// LinkedInterconnectAttachments: VLAN attachments that are associated with the
	// spoke.
	LinkedInterconnectAttachments *LinkedInterconnectAttachments `json:"linkedInterconnectAttachments,omitempty"`
	// LinkedRouterApplianceInstances: Router appliance instances that are
	// associated with the spoke.
	LinkedRouterApplianceInstances *LinkedRouterApplianceInstances `json:"linkedRouterApplianceInstances,omitempty"`
	// LinkedVpcNetwork: Optional. VPC network that is associated with the spoke.
	LinkedVpcNetwork *LinkedVpcNetwork `json:"linkedVpcNetwork,omitempty"`
	// LinkedVpnTunnels: VPN tunnels that are associated with the spoke.
	LinkedVpnTunnels *LinkedVpnTunnels `json:"linkedVpnTunnels,omitempty"`
	// Name: Immutable. The name of the spoke. Spoke names must be unique. They use
	// the following form:
	// `projects/{project_number}/locations/{region}/spokes/{spoke_id}`
	Name string `json:"name,omitempty"`
	// Reasons: Output only. The reasons for current state of the spoke. Only
	// present when the spoke is in the `INACTIVE` state.
	Reasons []*StateReason `json:"reasons,omitempty"`
	// SpokeType: Output only. The type of resource associated with the spoke.
	//
	// Possible values:
	//   "SPOKE_TYPE_UNSPECIFIED" - Unspecified spoke type.
	//   "VPN_TUNNEL" - Spokes associated with VPN tunnels.
	//   "INTERCONNECT_ATTACHMENT" - Spokes associated with VLAN attachments.
	//   "ROUTER_APPLIANCE" - Spokes associated with router appliance instances.
	//   "VPC_NETWORK" - Spokes associated with VPC networks.
	SpokeType string `json:"spokeType,omitempty"`
	// State: Output only. The current lifecycle state of this spoke.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// UniqueId: Output only. The Google-generated UUID for the spoke. This value
	// is unique across all spoke resources. If a spoke is deleted and another with
	// the same name is created, the new spoke is assigned a different `unique_id`.
	UniqueId string `json:"uniqueId,omitempty"`
	// UpdateTime: Output only. The time the spoke was last updated.
	UpdateTime string `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:"-"`
}

Spoke: A Network Connectivity Center spoke represents one or more network connectivity resources. When you create a spoke, you associate it with a hub. You must also identify a value for exactly one of the following fields: * linked_vpn_tunnels * linked_interconnect_attachments * linked_router_appliance_instances * linked_vpc_network

func (*Spoke) MarshalJSON

func (s *Spoke) MarshalJSON() ([]byte, error)

type SpokeStateCount added in v0.129.0

type SpokeStateCount struct {
	// Count: Output only. The total number of spokes that are in this state and
	// associated with a given hub.
	Count int64 `json:"count,omitempty,string"`
	// State: Output only. The state of the spokes.
	//
	// Possible values:
	//   "STATE_UNSPECIFIED" - No state information available
	//   "CREATING" - The resource's create operation is in progress.
	//   "ACTIVE" - The resource is active
	//   "DELETING" - The resource's delete operation is in progress.
	//   "ACCEPTING" - The resource's accept operation is in progress.
	//   "REJECTING" - The resource's reject operation is in progress.
	//   "UPDATING" - The resource's update operation is in progress.
	//   "INACTIVE" - The resource is inactive.
	//   "OBSOLETE" - The hub associated with this spoke resource has been deleted.
	// This state applies to spoke resources only.
	State string `json:"state,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Count") 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. "Count") 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:"-"`
}

SpokeStateCount: The number of spokes that are in a particular state and associated with a given hub.

func (*SpokeStateCount) MarshalJSON added in v0.129.0

func (s *SpokeStateCount) MarshalJSON() ([]byte, error)

type SpokeStateReasonCount added in v0.129.0

type SpokeStateReasonCount struct {
	// Count: Output only. The total number of spokes that are inactive for a
	// particular reason and associated with a given hub.
	Count int64 `json:"count,omitempty,string"`
	// StateReasonCode: Output only. The reason that a spoke is inactive.
	//
	// Possible values:
	//   "CODE_UNSPECIFIED" - No information available.
	//   "PENDING_REVIEW" - The proposed spoke is pending review.
	//   "REJECTED" - The proposed spoke has been rejected by the hub
	// administrator.
	//   "PAUSED" - The spoke has been deactivated internally.
	//   "FAILED" - Network Connectivity Center encountered errors while accepting
	// the spoke.
	StateReasonCode string `json:"stateReasonCode,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Count") 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. "Count") 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:"-"`
}

SpokeStateReasonCount: The number of spokes in the hub that are inactive for this reason.

func (*SpokeStateReasonCount) MarshalJSON added in v0.129.0

func (s *SpokeStateReasonCount) MarshalJSON() ([]byte, error)

type SpokeSummary added in v0.129.0

type SpokeSummary struct {
	// SpokeStateCounts: Output only. Counts the number of spokes that are in each
	// state and associated with a given hub.
	SpokeStateCounts []*SpokeStateCount `json:"spokeStateCounts,omitempty"`
	// SpokeStateReasonCounts: Output only. Counts the number of spokes that are
	// inactive for each possible reason and associated with a given hub.
	SpokeStateReasonCounts []*SpokeStateReasonCount `json:"spokeStateReasonCounts,omitempty"`
	// SpokeTypeCounts: Output only. Counts the number of spokes of each type that
	// are associated with a specific hub.
	SpokeTypeCounts []*SpokeTypeCount `json:"spokeTypeCounts,omitempty"`
	// ForceSendFields is a list of field names (e.g. "SpokeStateCounts") 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. "SpokeStateCounts") 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:"-"`
}

SpokeSummary: Summarizes information about the spokes associated with a hub. The summary includes a count of spokes according to type and according to state. If any spokes are inactive, the summary also lists the reasons they are inactive, including a count for each reason.

func (*SpokeSummary) MarshalJSON added in v0.129.0

func (s *SpokeSummary) MarshalJSON() ([]byte, error)

type SpokeTypeCount added in v0.129.0

type SpokeTypeCount struct {
	// Count: Output only. The total number of spokes of this type that are
	// associated with the hub.
	Count int64 `json:"count,omitempty,string"`
	// SpokeType: Output only. The type of the spokes.
	//
	// Possible values:
	//   "SPOKE_TYPE_UNSPECIFIED" - Unspecified spoke type.
	//   "VPN_TUNNEL" - Spokes associated with VPN tunnels.
	//   "INTERCONNECT_ATTACHMENT" - Spokes associated with VLAN attachments.
	//   "ROUTER_APPLIANCE" - Spokes associated with router appliance instances.
	//   "VPC_NETWORK" - Spokes associated with VPC networks.
	SpokeType string `json:"spokeType,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Count") 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. "Count") 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:"-"`
}

SpokeTypeCount: The number of spokes of a given type that are associated with a specific hub. The type indicates what kind of resource is associated with the spoke.

func (*SpokeTypeCount) MarshalJSON added in v0.129.0

func (s *SpokeTypeCount) MarshalJSON() ([]byte, error)

type StateReason added in v0.129.0

type StateReason struct {
	// Code: The code associated with this reason.
	//
	// Possible values:
	//   "CODE_UNSPECIFIED" - No information available.
	//   "PENDING_REVIEW" - The proposed spoke is pending review.
	//   "REJECTED" - The proposed spoke has been rejected by the hub
	// administrator.
	//   "PAUSED" - The spoke has been deactivated internally.
	//   "FAILED" - Network Connectivity Center encountered errors while accepting
	// the spoke.
	Code string `json:"code,omitempty"`
	// Message: Human-readable details about this reason.
	Message string `json:"message,omitempty"`
	// UserDetails: Additional information provided by the user in the RejectSpoke
	// call.
	UserDetails string `json:"userDetails,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:"-"`
}

StateReason: The reason a spoke is inactive.

func (*StateReason) MarshalJSON added in v0.129.0

func (s *StateReason) MarshalJSON() ([]byte, error)

type TestIamPermissionsRequest

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 (s *TestIamPermissionsRequest) MarshalJSON() ([]byte, error)

type TestIamPermissionsResponse

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 (s *TestIamPermissionsResponse) MarshalJSON() ([]byte, error)

type VirtualMachine added in v0.139.0

type VirtualMachine struct {
	// Tags: Optional. A list of VM instance tags the this policy-based route
	// applies to. VM instances that have ANY of tags specified here will install
	// this PBR.
	Tags []string `json:"tags,omitempty"`
	// ForceSendFields is a list of field names (e.g. "Tags") 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. "Tags") 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:"-"`
}

VirtualMachine: VM instances to which this policy-based route applies to.

func (*VirtualMachine) MarshalJSON added in v0.139.0

func (s *VirtualMachine) MarshalJSON() ([]byte, error)

type Warnings added in v0.139.0

type Warnings struct {
	// Code: Output only. A warning code, if applicable.
	//
	// Possible values:
	//   "WARNING_UNSPECIFIED" - Default value.
	//   "RESOURCE_NOT_ACTIVE" - The policy-based route is not active and
	// functioning. Common causes are the dependent network was deleted or the
	// resource project was turned off.
	//   "RESOURCE_BEING_MODIFIED" - The policy-based route is being modified (e.g.
	// created/deleted) at this time.
	Code string `json:"code,omitempty"`
	// Data: Output only. Metadata about this warning in key: value format. The key
	// should provides more detail on the warning being returned. For example, for
	// warnings where there are no results in a list request for a particular zone,
	// this key might be scope and the key value might be the zone name. Other
	// examples might be a key indicating a deprecated resource and a suggested
	// replacement.
	Data map[string]string `json:"data,omitempty"`
	// WarningMessage: Output only. A human-readable description of the warning
	// code.
	WarningMessage string `json:"warningMessage,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:"-"`
}

Warnings: Informational warning message.

func (*Warnings) MarshalJSON added in v0.139.0

func (s *Warnings) MarshalJSON() ([]byte, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL