...

Package connectors

import "google.golang.org/api/connectors/v2"
Overview
Index

Overview ▾

Package connectors provides access to the Connectors API.

For product documentation, see: https://cloud.google.com/apigee/docs/api-platform/connectors/about-connectors

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/connectors/v2"
...
ctx := context.Background()
connectorsService, err := connectors.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:

connectorsService, err := connectors.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, ...)
connectorsService, err := connectors.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

See google.golang.org/api/option.ClientOption for details on options.

Index ▾

Constants
type AccessCredentials
    func (s *AccessCredentials) MarshalJSON() ([]byte, error)
type Action
    func (s *Action) MarshalJSON() ([]byte, error)
type CheckReadinessResponse
    func (s *CheckReadinessResponse) MarshalJSON() ([]byte, error)
type CheckStatusResponse
    func (s *CheckStatusResponse) MarshalJSON() ([]byte, error)
type DailyCycle
    func (s *DailyCycle) MarshalJSON() ([]byte, error)
type Date
    func (s *Date) MarshalJSON() ([]byte, error)
type DenyMaintenancePeriod
    func (s *DenyMaintenancePeriod) MarshalJSON() ([]byte, error)
type Empty
type Entity
    func (s *Entity) MarshalJSON() ([]byte, error)
type EntityType
    func (s *EntityType) MarshalJSON() ([]byte, error)
type ExchangeAuthCodeRequest
type ExchangeAuthCodeResponse
    func (s *ExchangeAuthCodeResponse) MarshalJSON() ([]byte, error)
type ExecuteActionRequest
    func (s *ExecuteActionRequest) MarshalJSON() ([]byte, error)
type ExecuteActionResponse
    func (s *ExecuteActionResponse) MarshalJSON() ([]byte, error)
type ExecuteSqlQueryRequest
    func (s *ExecuteSqlQueryRequest) MarshalJSON() ([]byte, error)
type ExecuteSqlQueryResponse
    func (s *ExecuteSqlQueryResponse) MarshalJSON() ([]byte, error)
type Field
    func (s *Field) MarshalJSON() ([]byte, error)
type InputParameter
    func (s *InputParameter) MarshalJSON() ([]byte, error)
type Instance
    func (s *Instance) MarshalJSON() ([]byte, error)
type JsonSchema
    func (s *JsonSchema) MarshalJSON() ([]byte, error)
type ListActionsResponse
    func (s *ListActionsResponse) MarshalJSON() ([]byte, error)
type ListEntitiesResponse
    func (s *ListEntitiesResponse) MarshalJSON() ([]byte, error)
type ListEntityTypesResponse
    func (s *ListEntityTypesResponse) MarshalJSON() ([]byte, error)
type MaintenancePolicy
    func (s *MaintenancePolicy) MarshalJSON() ([]byte, error)
type MaintenanceSchedule
    func (s *MaintenanceSchedule) MarshalJSON() ([]byte, error)
type MaintenanceSettings
    func (s *MaintenanceSettings) MarshalJSON() ([]byte, error)
type MaintenanceWindow
    func (s *MaintenanceWindow) MarshalJSON() ([]byte, error)
type NodeSloMetadata
    func (s *NodeSloMetadata) MarshalJSON() ([]byte, error)
type NotificationParameter
    func (s *NotificationParameter) MarshalJSON() ([]byte, error)
type PerSliSloEligibility
    func (s *PerSliSloEligibility) MarshalJSON() ([]byte, error)
type ProjectsLocationsConnectionsActionsExecuteCall
    func (c *ProjectsLocationsConnectionsActionsExecuteCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsExecuteCall
    func (c *ProjectsLocationsConnectionsActionsExecuteCall) Do(opts ...googleapi.CallOption) (*ExecuteActionResponse, error)
    func (c *ProjectsLocationsConnectionsActionsExecuteCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsExecuteCall
    func (c *ProjectsLocationsConnectionsActionsExecuteCall) Header() http.Header
type ProjectsLocationsConnectionsActionsGetCall
    func (c *ProjectsLocationsConnectionsActionsGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsGetCall
    func (c *ProjectsLocationsConnectionsActionsGetCall) Do(opts ...googleapi.CallOption) (*Action, error)
    func (c *ProjectsLocationsConnectionsActionsGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsGetCall
    func (c *ProjectsLocationsConnectionsActionsGetCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsActionsGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsActionsGetCall
type ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) Do(opts ...googleapi.CallOption) (*ListActionsResponse, error)
    func (c *ProjectsLocationsConnectionsActionsListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsActionsListCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsActionsListCall
    func (c *ProjectsLocationsConnectionsActionsListCall) Pages(ctx context.Context, f func(*ListActionsResponse) error) error
    func (c *ProjectsLocationsConnectionsActionsListCall) View(view string) *ProjectsLocationsConnectionsActionsListCall
type ProjectsLocationsConnectionsActionsService
    func NewProjectsLocationsConnectionsActionsService(s *Service) *ProjectsLocationsConnectionsActionsService
    func (r *ProjectsLocationsConnectionsActionsService) Execute(name string, executeactionrequest *ExecuteActionRequest) *ProjectsLocationsConnectionsActionsExecuteCall
    func (r *ProjectsLocationsConnectionsActionsService) Get(name string) *ProjectsLocationsConnectionsActionsGetCall
    func (r *ProjectsLocationsConnectionsActionsService) List(parent string) *ProjectsLocationsConnectionsActionsListCall
type ProjectsLocationsConnectionsCheckReadinessCall
    func (c *ProjectsLocationsConnectionsCheckReadinessCall) Context(ctx context.Context) *ProjectsLocationsConnectionsCheckReadinessCall
    func (c *ProjectsLocationsConnectionsCheckReadinessCall) Do(opts ...googleapi.CallOption) (*CheckReadinessResponse, error)
    func (c *ProjectsLocationsConnectionsCheckReadinessCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsCheckReadinessCall
    func (c *ProjectsLocationsConnectionsCheckReadinessCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsCheckReadinessCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsCheckReadinessCall
type ProjectsLocationsConnectionsCheckStatusCall
    func (c *ProjectsLocationsConnectionsCheckStatusCall) Context(ctx context.Context) *ProjectsLocationsConnectionsCheckStatusCall
    func (c *ProjectsLocationsConnectionsCheckStatusCall) Do(opts ...googleapi.CallOption) (*CheckStatusResponse, error)
    func (c *ProjectsLocationsConnectionsCheckStatusCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsCheckStatusCall
    func (c *ProjectsLocationsConnectionsCheckStatusCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsCheckStatusCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsCheckStatusCall
type ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Do(opts ...googleapi.CallOption) (*Entity, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Header() http.Header
type ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Header() http.Header
type ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Do(opts ...googleapi.CallOption) (*Empty, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Header() http.Header
type ProjectsLocationsConnectionsEntityTypesEntitiesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Do(opts ...googleapi.CallOption) (*Entity, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall
type ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Do(opts ...googleapi.CallOption) (*ListEntitiesResponse, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Pages(ctx context.Context, f func(*ListEntitiesResponse) error) error
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) SortBy(sortBy ...string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
type ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Do(opts ...googleapi.CallOption) (*Entity, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Header() http.Header
type ProjectsLocationsConnectionsEntityTypesEntitiesService
    func NewProjectsLocationsConnectionsEntityTypesEntitiesService(s *Service) *ProjectsLocationsConnectionsEntityTypesEntitiesService
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Create(parent string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Delete(name string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) DeleteEntitiesWithConditions(entityType string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Get(name string) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) List(parent string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Patch(name string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall
    func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) UpdateEntitiesWithConditions(entityType string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall
type ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Do(opts ...googleapi.CallOption) (*UpdateEntitiesWithConditionsResponse, error)
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall
    func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Header() http.Header
type ProjectsLocationsConnectionsEntityTypesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Do(opts ...googleapi.CallOption) (*EntityType, error)
    func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesGetCall
    func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsEntityTypesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsEntityTypesGetCall
type ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) Do(opts ...googleapi.CallOption) (*ListEntityTypesResponse, error)
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) Header() http.Header
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsEntityTypesListCall
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) Pages(ctx context.Context, f func(*ListEntityTypesResponse) error) error
    func (c *ProjectsLocationsConnectionsEntityTypesListCall) View(view string) *ProjectsLocationsConnectionsEntityTypesListCall
type ProjectsLocationsConnectionsEntityTypesService
    func NewProjectsLocationsConnectionsEntityTypesService(s *Service) *ProjectsLocationsConnectionsEntityTypesService
    func (r *ProjectsLocationsConnectionsEntityTypesService) Get(name string) *ProjectsLocationsConnectionsEntityTypesGetCall
    func (r *ProjectsLocationsConnectionsEntityTypesService) List(parent string) *ProjectsLocationsConnectionsEntityTypesListCall
type ProjectsLocationsConnectionsExchangeAuthCodeCall
    func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Context(ctx context.Context) *ProjectsLocationsConnectionsExchangeAuthCodeCall
    func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Do(opts ...googleapi.CallOption) (*ExchangeAuthCodeResponse, error)
    func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsExchangeAuthCodeCall
    func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Header() http.Header
type ProjectsLocationsConnectionsExecuteSqlQueryCall
    func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Context(ctx context.Context) *ProjectsLocationsConnectionsExecuteSqlQueryCall
    func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Do(opts ...googleapi.CallOption) (*ExecuteSqlQueryResponse, error)
    func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsExecuteSqlQueryCall
    func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Header() http.Header
type ProjectsLocationsConnectionsRefreshAccessTokenCall
    func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Context(ctx context.Context) *ProjectsLocationsConnectionsRefreshAccessTokenCall
    func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Do(opts ...googleapi.CallOption) (*RefreshAccessTokenResponse, error)
    func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsRefreshAccessTokenCall
    func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Header() http.Header
type ProjectsLocationsConnectionsService
    func NewProjectsLocationsConnectionsService(s *Service) *ProjectsLocationsConnectionsService
    func (r *ProjectsLocationsConnectionsService) CheckReadiness(name string) *ProjectsLocationsConnectionsCheckReadinessCall
    func (r *ProjectsLocationsConnectionsService) CheckStatus(name string) *ProjectsLocationsConnectionsCheckStatusCall
    func (r *ProjectsLocationsConnectionsService) ExchangeAuthCode(name string, exchangeauthcoderequest *ExchangeAuthCodeRequest) *ProjectsLocationsConnectionsExchangeAuthCodeCall
    func (r *ProjectsLocationsConnectionsService) ExecuteSqlQuery(connection string, executesqlqueryrequest *ExecuteSqlQueryRequest) *ProjectsLocationsConnectionsExecuteSqlQueryCall
    func (r *ProjectsLocationsConnectionsService) RefreshAccessToken(name string, refreshaccesstokenrequest *RefreshAccessTokenRequest) *ProjectsLocationsConnectionsRefreshAccessTokenCall
type ProjectsLocationsService
    func NewProjectsLocationsService(s *Service) *ProjectsLocationsService
type ProjectsService
    func NewProjectsService(s *Service) *ProjectsService
type ProvisionedResource
    func (s *ProvisionedResource) MarshalJSON() ([]byte, error)
type Query
    func (s *Query) MarshalJSON() ([]byte, error)
type QueryParameter
    func (s *QueryParameter) MarshalJSON() ([]byte, error)
type Reference
    func (s *Reference) MarshalJSON() ([]byte, error)
type RefreshAccessTokenRequest
type RefreshAccessTokenResponse
    func (s *RefreshAccessTokenResponse) MarshalJSON() ([]byte, error)
type ResultMetadata
    func (s *ResultMetadata) MarshalJSON() ([]byte, error)
type Schedule
    func (s *Schedule) MarshalJSON() ([]byte, error)
type Service
    func New(client *http.Client) (*Service, error)
    func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error)
type SloEligibility
    func (s *SloEligibility) MarshalJSON() ([]byte, error)
type SloMetadata
    func (s *SloMetadata) MarshalJSON() ([]byte, error)
type TimeOfDay
    func (s *TimeOfDay) MarshalJSON() ([]byte, error)
type UpdateEntitiesWithConditionsResponse
    func (s *UpdateEntitiesWithConditionsResponse) MarshalJSON() ([]byte, error)
type UpdatePolicy
    func (s *UpdatePolicy) MarshalJSON() ([]byte, error)
type WeeklyCycle
    func (s *WeeklyCycle) MarshalJSON() ([]byte, error)

Package files

connectors-gen.go

Constants

OAuth2 scopes used by this API.

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"
)

type AccessCredentials

AccessCredentials: AccessCredentials includes the OAuth access token, and the other fields returned along with it.

type AccessCredentials struct {
    // AccessToken: OAuth access token.
    AccessToken string `json:"accessToken,omitempty"`
    // ExpiresIn: Duration till the access token expires.
    ExpiresIn string `json:"expiresIn,omitempty"`
    // RefreshToken: OAuth refresh token.
    RefreshToken string `json:"refreshToken,omitempty"`
    // ForceSendFields is a list of field names (e.g. "AccessToken") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AccessToken") to include in API
    // requests with the JSON null value. By default, fields with 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 (*AccessCredentials) MarshalJSON

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

type Action

Action: Action message contains metadata information about a single action present in the external system.

type Action struct {
    // Description: Brief Description of action
    Description string `json:"description,omitempty"`
    // DisplayName: Display Name of action to be shown on client side
    DisplayName string `json:"displayName,omitempty"`
    // InputJsonSchema: JsonSchema representation of this actions's input schema
    InputJsonSchema *JsonSchema `json:"inputJsonSchema,omitempty"`
    // InputParameters: List containing input parameter metadata.
    InputParameters []*InputParameter `json:"inputParameters,omitempty"`
    // Name: Name of the action.
    Name string `json:"name,omitempty"`
    // ResultJsonSchema: JsonSchema representation of this actions's result schema
    ResultJsonSchema *JsonSchema `json:"resultJsonSchema,omitempty"`
    // ResultMetadata: List containing the metadata of result fields.
    ResultMetadata []*ResultMetadata `json:"resultMetadata,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // 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:"-"`
}

func (*Action) MarshalJSON

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

type CheckReadinessResponse

CheckReadinessResponse: Response containing status of the connector for readiness prober.

type CheckReadinessResponse struct {
    Status string `json:"status,omitempty"`

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

func (*CheckReadinessResponse) MarshalJSON

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

type CheckStatusResponse

CheckStatusResponse: The status of the connector.

type CheckStatusResponse struct {
    // Description: When the connector is not in ACTIVE state, the description must
    // be populated to specify the reason why it's not in ACTIVE state.
    Description string `json:"description,omitempty"`
    // State: State of the connector.
    //
    // Possible values:
    //   "STATE_UNSPECIFIED" - State unspecified.
    //   "ACTIVE" - The connector is active and ready to process runtime requests.
    // This can also mean that from the connector's perspective, the connector is
    // not in an error state and should be able to process runtime requests
    // successfully.
    //   "ERROR" - The connector is in an error state and cannot process runtime
    // requests. An example reason would be that the connection container has some
    // network issues that prevent outbound requests from being sent.
    //   "AUTH_ERROR" - This is a more specific error state that the developers can
    // opt to use when the connector is facing auth-related errors caused by auth
    // configuration not present, invalid auth credentials, etc.
    State string `json:"state,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // 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:"-"`
}

func (*CheckStatusResponse) MarshalJSON

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

type DailyCycle

DailyCycle: Time window specified for daily operations.

type DailyCycle struct {
    // Duration: Output only. Duration of the time window, set by service producer.
    Duration string `json:"duration,omitempty"`
    // StartTime: Time within the day to start the operations.
    StartTime *TimeOfDay `json:"startTime,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Duration") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Duration") to include in API
    // requests with the JSON null value. By default, fields with 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 (*DailyCycle) MarshalJSON

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

type Date

Date: Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp

type Date struct {
    // Day: Day of a month. Must be from 1 to 31 and valid for the year and month,
    // or 0 to specify a year by itself or a year and month where the day isn't
    // significant.
    Day int64 `json:"day,omitempty"`
    // Month: Month of a year. Must be from 1 to 12, or 0 to specify a year without
    // a month and day.
    Month int64 `json:"month,omitempty"`
    // Year: Year of the date. Must be from 1 to 9999, or 0 to specify a date
    // without a year.
    Year int64 `json:"year,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Day") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Day") to include in API requests
    // with the JSON null value. By default, fields with 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 (*Date) MarshalJSON

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

type DenyMaintenancePeriod

DenyMaintenancePeriod: DenyMaintenancePeriod definition. Maintenance is forbidden within the deny period. The start_date must be less than the end_date.

type DenyMaintenancePeriod struct {
    // EndDate: Deny period end date. This can be: * A full date, with non-zero
    // year, month and day values. * A month and day value, with a zero year.
    // Allows recurring deny periods each year. Date matching this period will have
    // to be before the end.
    EndDate *Date `json:"endDate,omitempty"`
    // StartDate: Deny period start date. This can be: * A full date, with non-zero
    // year, month and day values. * A month and day value, with a zero year.
    // Allows recurring deny periods each year. Date matching this period will have
    // to be the same or after the start.
    StartDate *Date `json:"startDate,omitempty"`
    // Time: Time in UTC when the Blackout period starts on start_date and ends on
    // end_date. This can be: * Full time. * All zeros for 00:00:00 UTC
    Time *TimeOfDay `json:"time,omitempty"`
    // ForceSendFields is a list of field names (e.g. "EndDate") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "EndDate") to include in API
    // requests with the JSON null value. By default, fields with 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 (*DenyMaintenancePeriod) MarshalJSON

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

type Empty

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 Empty struct {
    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
}

type Entity

Entity: 'Entity row'/ 'Entity' refers to a single row of an entity type.

type Entity struct {
    // Fields: Fields of the entity. The key is name of the field and the value
    // contains the applicable `google.protobuf.Value` entry for this field.
    Fields googleapi.RawMessage `json:"fields,omitempty"`
    // Name: Output only. Resource name of the Entity. Format:
    // projects/{project}/locations/{location}/connections/{connection}/entityTypes/
    // {type}/entities/{id}
    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. "Fields") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Fields") to include in API
    // requests with the JSON null value. By default, fields with 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 (*Entity) MarshalJSON

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

type EntityType

EntityType: EntityType message contains metadata information about a single entity type present in the external system.

type EntityType struct {
    // Fields: List containing metadata information about each field of the entity
    // type.
    Fields []*Field `json:"fields,omitempty"`
    // JsonSchema: JsonSchema representation of this entity's schema
    JsonSchema *JsonSchema `json:"jsonSchema,omitempty"`
    // Name: The name of the entity type.
    Name string `json:"name,omitempty"`
    // Possible values:
    //   "OPERATION_UNSPECIFIED" - Operation unspecified.
    //   "LIST" - This operation means entity type supports LIST method.
    //   "GET" - This operation means entity type supports GET method.
    //   "CREATE" - This operation means entity type supports CREATE method.
    //   "UPDATE" - This operation means entity type supports UPDATE method.
    //   "DELETE" - This operation means entity type supports DELETE method.
    Operations []string `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. "Fields") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Fields") to include in API
    // requests with the JSON null value. By default, fields with 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 (*EntityType) MarshalJSON

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

type ExchangeAuthCodeRequest

ExchangeAuthCodeRequest: ExchangeAuthCodeRequest currently includes no fields.

type ExchangeAuthCodeRequest struct {
}

type ExchangeAuthCodeResponse

ExchangeAuthCodeResponse: ExchangeAuthCodeResponse includes the returned access token and its associated credentials.

type ExchangeAuthCodeResponse struct {
    AccessCredentials *AccessCredentials `json:"accessCredentials,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // ForceSendFields is a list of field names (e.g. "AccessCredentials") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AccessCredentials") to include in
    // API requests with the JSON null value. By default, fields with 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 (*ExchangeAuthCodeResponse) MarshalJSON

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

type ExecuteActionRequest

ExecuteActionRequest: Request message for ActionService.ExecuteAction

type ExecuteActionRequest struct {
    // Parameters: Parameters for executing the action. The parameters can be
    // key/value pairs or nested structs.
    Parameters googleapi.RawMessage `json:"parameters,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Parameters") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Parameters") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ExecuteActionRequest) MarshalJSON

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

type ExecuteActionResponse

ExecuteActionResponse: Response message for ActionService.ExecuteAction

type ExecuteActionResponse struct {
    // Results: In the case of successful invocation of the specified action, the
    // results Struct contains values based on the response of the action invoked.
    // 1. If the action execution produces any entities as a result, they are
    // returned as an array of Structs with the 'key' being the field name and the
    // 'value' being the value of that field in each result row. { 'results':
    // [{'key': 'value'}, ...] }
    Results []googleapi.RawMessage `json:"results,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // ForceSendFields is a list of field names (e.g. "Results") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Results") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ExecuteActionResponse) MarshalJSON

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

type ExecuteSqlQueryRequest

ExecuteSqlQueryRequest: An execute sql query request containing the query and the connection to execute it on.

type ExecuteSqlQueryRequest struct {
    // Query: Required. SQL statement passed by clients like Integration Platform,
    // the query is passed as-is to the driver used for interfacing with external
    // systems.
    Query *Query `json:"query,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Query") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Query") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ExecuteSqlQueryRequest) MarshalJSON

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

type ExecuteSqlQueryResponse

ExecuteSqlQueryResponse: A response returned by the connection after executing the sql query.

type ExecuteSqlQueryResponse struct {
    // Results: In the case of successful execution of the query the response
    // contains results returned by the external system. For example, the result
    // rows of the query are contained in the 'results' Struct list - "results": [
    // { "field1": "val1", "field2": "val2",.. },.. ] Each Struct row can contain
    // fields any type of like nested Structs or lists.
    Results []googleapi.RawMessage `json:"results,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // ForceSendFields is a list of field names (e.g. "Results") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Results") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ExecuteSqlQueryResponse) MarshalJSON

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

type Field

Field: Message contains EntityType's Field metadata.

type Field struct {
    // AdditionalDetails: The following map contains fields that are not explicitly
    // mentioned above,this give connectors the flexibility to add new metadata
    // fields.
    AdditionalDetails googleapi.RawMessage `json:"additionalDetails,omitempty"`
    // DataType: The data type of the Field.
    //
    // Possible values:
    //   "DATA_TYPE_UNSPECIFIED" - Datatype unspecified.
    //   "INT" - Deprecated Int type, use INTEGER type instead.
    //   "SMALLINT" - Small int type.
    //   "DOUBLE" - Double type.
    //   "DATE" - Date type.
    //   "DATETIME" - Deprecated Datetime type.
    //   "TIME" - Time type.
    //   "STRING" - Deprecated string type, use VARCHAR type instead.
    //   "LONG" - Deprecated Long type, use BIGINT type instead.
    //   "BOOLEAN" - Boolean type.
    //   "DECIMAL" - Decimal type.
    //   "UUID" - Deprecated UUID type, use VARCHAR instead.
    //   "BLOB" - Blob type.
    //   "BIT" - Bit type.
    //   "TINYINT" - Tiny int type.
    //   "INTEGER" - Integer type.
    //   "BIGINT" - Big int type.
    //   "FLOAT" - Float type.
    //   "REAL" - Real type.
    //   "NUMERIC" - Numeric type.
    //   "CHAR" - Char type.
    //   "VARCHAR" - Varchar type.
    //   "LONGVARCHAR" - Long varchar type.
    //   "TIMESTAMP" - Timestamp type.
    //   "NCHAR" - Nchar type.
    //   "NVARCHAR" - Nvarchar type.
    //   "LONGNVARCHAR" - Long Nvarchar type.
    //   "NULL" - Null type.
    //   "OTHER" - Other type.
    //   "JAVA_OBJECT" - Java object type.
    //   "DISTINCT" - Distinct type keyword.
    //   "STRUCT" - Struct type.
    //   "ARRAY" - Array type.
    //   "CLOB" - Clob type.
    //   "REF" - Ref type.
    //   "DATALINK" - Datalink type.
    //   "ROWID" - Row ID type.
    //   "BINARY" - Binary type.
    //   "VARBINARY" - Varbinary type.
    //   "LONGVARBINARY" - Long Varbinary type.
    //   "NCLOB" - Nclob type.
    //   "SQLXML" - SQLXML type.
    //   "REF_CURSOR" - Ref_cursor type.
    //   "TIME_WITH_TIMEZONE" - Time with timezone type.
    //   "TIMESTAMP_WITH_TIMEZONE" - Timestamp with timezone type.
    DataType string `json:"dataType,omitempty"`
    // DefaultValue: The following field specifies the default value of the Field
    // provided by the external system if a value is not provided.
    DefaultValue interface{} `json:"defaultValue,omitempty"`
    // Description: A brief description of the Field.
    Description string `json:"description,omitempty"`
    // JsonSchema: JsonSchema of the field, applicable only if field is of type
    // `STRUCT`
    JsonSchema *JsonSchema `json:"jsonSchema,omitempty"`
    // Key: The following boolean field specifies if the current Field acts as a
    // primary key or id if the parent is of type entity.
    Key bool `json:"key,omitempty"`
    // Name: Name of the Field.
    Name string `json:"name,omitempty"`
    // Nullable: Specifies whether a null value is allowed.
    Nullable bool `json:"nullable,omitempty"`
    // Reference: Reference captures the association between two different entity
    // types. Value links to the reference of another entity type.
    Reference *Reference `json:"reference,omitempty"`
    // ForceSendFields is a list of field names (e.g. "AdditionalDetails") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AdditionalDetails") to include in
    // API requests with the JSON null value. By default, fields with 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 (*Field) MarshalJSON

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

type InputParameter

InputParameter: Input Parameter message contains metadata about the parameters required for executing an Action.

type InputParameter struct {
    // AdditionalDetails: The following map contains fields that are not explicitly
    // mentioned above,this give connectors the flexibility to add new metadata
    // fields.
    AdditionalDetails googleapi.RawMessage `json:"additionalDetails,omitempty"`
    // DataType: The data type of the Parameter
    //
    // Possible values:
    //   "DATA_TYPE_UNSPECIFIED" - Datatype unspecified.
    //   "INT" - Deprecated Int type, use INTEGER type instead.
    //   "SMALLINT" - Small int type.
    //   "DOUBLE" - Double type.
    //   "DATE" - Date type.
    //   "DATETIME" - Deprecated Datetime type.
    //   "TIME" - Time type.
    //   "STRING" - Deprecated string type, use VARCHAR type instead.
    //   "LONG" - Deprecated Long type, use BIGINT type instead.
    //   "BOOLEAN" - Boolean type.
    //   "DECIMAL" - Decimal type.
    //   "UUID" - Deprecated UUID type, use VARCHAR instead.
    //   "BLOB" - Blob type.
    //   "BIT" - Bit type.
    //   "TINYINT" - Tiny int type.
    //   "INTEGER" - Integer type.
    //   "BIGINT" - Big int type.
    //   "FLOAT" - Float type.
    //   "REAL" - Real type.
    //   "NUMERIC" - Numeric type.
    //   "CHAR" - Char type.
    //   "VARCHAR" - Varchar type.
    //   "LONGVARCHAR" - Long varchar type.
    //   "TIMESTAMP" - Timestamp type.
    //   "NCHAR" - Nchar type.
    //   "NVARCHAR" - Nvarchar type.
    //   "LONGNVARCHAR" - Long Nvarchar type.
    //   "NULL" - Null type.
    //   "OTHER" - Other type.
    //   "JAVA_OBJECT" - Java object type.
    //   "DISTINCT" - Distinct type keyword.
    //   "STRUCT" - Struct type.
    //   "ARRAY" - Array type.
    //   "CLOB" - Clob type.
    //   "REF" - Ref type.
    //   "DATALINK" - Datalink type.
    //   "ROWID" - Row ID type.
    //   "BINARY" - Binary type.
    //   "VARBINARY" - Varbinary type.
    //   "LONGVARBINARY" - Long Varbinary type.
    //   "NCLOB" - Nclob type.
    //   "SQLXML" - SQLXML type.
    //   "REF_CURSOR" - Ref_cursor type.
    //   "TIME_WITH_TIMEZONE" - Time with timezone type.
    //   "TIMESTAMP_WITH_TIMEZONE" - Timestamp with timezone type.
    DataType string `json:"dataType,omitempty"`
    // DefaultValue: The following field specifies the default value of the
    // Parameter provided by the external system if a value is not provided.
    DefaultValue interface{} `json:"defaultValue,omitempty"`
    // Description: A brief description of the Parameter.
    Description string `json:"description,omitempty"`
    // JsonSchema: JsonSchema of the parameter, applicable only if parameter is of
    // type `STRUCT`
    JsonSchema *JsonSchema `json:"jsonSchema,omitempty"`
    // Name: Name of the Parameter.
    Name string `json:"name,omitempty"`
    // Nullable: Specifies whether a null value is allowed.
    Nullable bool `json:"nullable,omitempty"`
    // ForceSendFields is a list of field names (e.g. "AdditionalDetails") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AdditionalDetails") to include in
    // API requests with the JSON null value. By default, fields with 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 (*InputParameter) MarshalJSON

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

type Instance

Instance: Instance represents the interface for SLM services to actuate the state of control plane resources. Example Instance in JSON, where consumer-project-number=123456, producer-project-id=cloud-sql: ```json Instance: { "name": "projects/123456/locations/us-east1/instances/prod-instance", "create_time": { "seconds": 1526406431, }, "labels": { "env": "prod", "foo": "bar" }, "state": READY, "software_versions": { "software_update": "cloud-sql-09-28-2018", }, "maintenance_policy_names": { "UpdatePolicy": "projects/123456/locations/us-east1/maintenancePolicies/prod-update-policy", } "tenant_project_id": "cloud-sql-test-tenant", "producer_metadata": { "cloud-sql-tier": "basic", "cloud-sql-instance-size": "1G", }, "provisioned_resources": [ { "resource-type": "compute-instance", "resource-url": "https://www.googleapis.com/compute/v1/projects/cloud-sql/zones/us-east1-b/in stances/vm-1", } ], "maintenance_schedules": { "csa_rollout": { "start_time": { "seconds": 1526406431, }, "end_time": { "seconds": 1535406431, }, }, "ncsa_rollout": { "start_time": { "seconds": 1526406431, }, "end_time": { "seconds": 1535406431, }, } }, "consumer_defined_name": "my-sql-instance1", } ``` LINT.IfChange

type Instance struct {
    // ConsumerDefinedName: consumer_defined_name is the name of the instance set
    // by the service consumers. Generally this is different from the `name` field
    // which reperesents the system-assigned id of the instance which the service
    // consumers do not recognize. This is a required field for tenants onboarding
    // to Maintenance Window notifications
    // (go/slm-rollout-maintenance-policies#prerequisites).
    ConsumerDefinedName string `json:"consumerDefinedName,omitempty"`
    // CreateTime: Output only. Timestamp when the resource was created.
    CreateTime string `json:"createTime,omitempty"`
    // InstanceType: Optional. The instance_type of this instance of format:
    // projects/{project_number}/locations/{location_id}/instanceTypes/{instance_typ
    // e_id}. Instance Type represents a high-level tier or SKU of the service that
    // this instance belong to. When enabled(eg: Maintenance Rollout), Rollout uses
    // 'instance_type' along with 'software_versions' to determine whether instance
    // needs an update or not.
    InstanceType string `json:"instanceType,omitempty"`
    // Labels: Optional. Resource labels to represent user provided metadata. Each
    // label is a key-value pair, where both the key and the value are arbitrary
    // strings provided by the user.
    Labels map[string]string `json:"labels,omitempty"`
    // MaintenancePolicyNames: Optional. The MaintenancePolicies that have been
    // attached to the instance. The key must be of the type name of the oneof
    // policy name defined in MaintenancePolicy, and the referenced policy must
    // define the same policy type. For details, please refer to go/mr-user-guide.
    // Should not be set if maintenance_settings.maintenance_policies is set.
    MaintenancePolicyNames map[string]string `json:"maintenancePolicyNames,omitempty"`
    // MaintenanceSchedules: The MaintenanceSchedule contains the scheduling
    // information of published maintenance schedule with same key as
    // software_versions.
    MaintenanceSchedules map[string]MaintenanceSchedule `json:"maintenanceSchedules,omitempty"`
    // MaintenanceSettings: Optional. The MaintenanceSettings associated with
    // instance.
    MaintenanceSettings *MaintenanceSettings `json:"maintenanceSettings,omitempty"`
    // Name: Unique name of the resource. It uses the form:
    // `projects/{project_number}/locations/{location_id}/instances/{instance_id}`
    // Note: This name is passed, stored and logged across the rollout system. So
    // use of consumer project_id or any other consumer PII in the name is strongly
    // discouraged for wipeout (go/wipeout) compliance. See
    // go/elysium/project_ids#storage-guidance for more details.
    Name string `json:"name,omitempty"`
    // NotificationParameters: Optional. notification_parameter are information
    // that service producers may like to include that is not relevant to Rollout.
    // This parameter will only be passed to Gamma and Cloud Logging for
    // notification/logging purpose.
    NotificationParameters map[string]NotificationParameter `json:"notificationParameters,omitempty"`
    // ProducerMetadata: Output only. Custom string attributes used primarily to
    // expose producer-specific information in monitoring dashboards. See
    // go/get-instance-metadata.
    ProducerMetadata map[string]string `json:"producerMetadata,omitempty"`
    // ProvisionedResources: Output only. The list of data plane resources
    // provisioned for this instance, e.g. compute VMs. See
    // go/get-instance-metadata.
    ProvisionedResources []*ProvisionedResource `json:"provisionedResources,omitempty"`
    // SlmInstanceTemplate: Link to the SLM instance template. Only populated when
    // updating SLM instances via SSA's Actuation service adaptor. Service
    // producers with custom control plane (e.g. Cloud SQL) doesn't need to
    // populate this field. Instead they should use software_versions.
    SlmInstanceTemplate string `json:"slmInstanceTemplate,omitempty"`
    // SloMetadata: Output only. SLO metadata for instance classification in the
    // Standardized dataplane SLO platform. See go/cloud-ssa-standard-slo for
    // feature description.
    SloMetadata *SloMetadata `json:"sloMetadata,omitempty"`
    // SoftwareVersions: Software versions that are used to deploy this instance.
    // This can be mutated by rollout services.
    SoftwareVersions map[string]string `json:"softwareVersions,omitempty"`
    // State: Output only. Current lifecycle state of the resource (e.g. if it's
    // being created or ready to use).
    //
    // Possible values:
    //   "STATE_UNSPECIFIED" - Unspecified state.
    //   "CREATING" - Instance is being created.
    //   "READY" - Instance has been created and is ready to use.
    //   "UPDATING" - Instance is being updated.
    //   "REPAIRING" - Instance is unheathy and under repair.
    //   "DELETING" - Instance is being deleted.
    //   "ERROR" - Instance encountered an error and is in indeterministic state.
    State string `json:"state,omitempty"`
    // TenantProjectId: Output only. ID of the associated GCP tenant project. See
    // go/get-instance-metadata.
    TenantProjectId string `json:"tenantProjectId,omitempty"`
    // UpdateTime: Output only. Timestamp when the resource was last modified.
    UpdateTime string `json:"updateTime,omitempty"`
    // ForceSendFields is a list of field names (e.g. "ConsumerDefinedName") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "ConsumerDefinedName") to include
    // in API requests with the JSON null value. By default, fields with 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 (*Instance) MarshalJSON

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

type JsonSchema

JsonSchema: JsonSchema representation of schema metadata

type JsonSchema struct {
    // AdditionalDetails: Additional details apart from standard json schema
    // fields, this gives flexibility to store metadata about the schema
    AdditionalDetails googleapi.RawMessage `json:"additionalDetails,omitempty"`
    // Default: The default value of the field or object described by this schema.
    Default interface{} `json:"default,omitempty"`
    // Description: A description of this schema.
    Description string `json:"description,omitempty"`
    // Enum: Possible values for an enumeration. This works in conjunction with
    // `type` to represent types with a fixed set of legal values
    Enum []interface{} `json:"enum,omitempty"`
    // Format: Format of the value as per
    // https://json-schema.org/understanding-json-schema/reference/string.html#format
    Format string `json:"format,omitempty"`
    // Items: Schema that applies to array values, applicable only if this is of
    // type `array`.
    Items *JsonSchema `json:"items,omitempty"`
    // JdbcType: JDBC datatype of the field.
    //
    // Possible values:
    //   "DATA_TYPE_UNSPECIFIED" - Datatype unspecified.
    //   "INT" - Deprecated Int type, use INTEGER type instead.
    //   "SMALLINT" - Small int type.
    //   "DOUBLE" - Double type.
    //   "DATE" - Date type.
    //   "DATETIME" - Deprecated Datetime type.
    //   "TIME" - Time type.
    //   "STRING" - Deprecated string type, use VARCHAR type instead.
    //   "LONG" - Deprecated Long type, use BIGINT type instead.
    //   "BOOLEAN" - Boolean type.
    //   "DECIMAL" - Decimal type.
    //   "UUID" - Deprecated UUID type, use VARCHAR instead.
    //   "BLOB" - Blob type.
    //   "BIT" - Bit type.
    //   "TINYINT" - Tiny int type.
    //   "INTEGER" - Integer type.
    //   "BIGINT" - Big int type.
    //   "FLOAT" - Float type.
    //   "REAL" - Real type.
    //   "NUMERIC" - Numeric type.
    //   "CHAR" - Char type.
    //   "VARCHAR" - Varchar type.
    //   "LONGVARCHAR" - Long varchar type.
    //   "TIMESTAMP" - Timestamp type.
    //   "NCHAR" - Nchar type.
    //   "NVARCHAR" - Nvarchar type.
    //   "LONGNVARCHAR" - Long Nvarchar type.
    //   "NULL" - Null type.
    //   "OTHER" - Other type.
    //   "JAVA_OBJECT" - Java object type.
    //   "DISTINCT" - Distinct type keyword.
    //   "STRUCT" - Struct type.
    //   "ARRAY" - Array type.
    //   "CLOB" - Clob type.
    //   "REF" - Ref type.
    //   "DATALINK" - Datalink type.
    //   "ROWID" - Row ID type.
    //   "BINARY" - Binary type.
    //   "VARBINARY" - Varbinary type.
    //   "LONGVARBINARY" - Long Varbinary type.
    //   "NCLOB" - Nclob type.
    //   "SQLXML" - SQLXML type.
    //   "REF_CURSOR" - Ref_cursor type.
    //   "TIME_WITH_TIMEZONE" - Time with timezone type.
    //   "TIMESTAMP_WITH_TIMEZONE" - Timestamp with timezone type.
    JdbcType string `json:"jdbcType,omitempty"`
    // Properties: The child schemas, applicable only if this is of type `object`.
    // The key is the name of the property and the value is the json schema that
    // describes that property
    Properties map[string]JsonSchema `json:"properties,omitempty"`
    // Required: Whether this property is required.
    Required []string `json:"required,omitempty"`
    // Type: JSON Schema Validation: A Vocabulary for Structural Validation of JSON
    Type []string `json:"type,omitempty"`
    // ForceSendFields is a list of field names (e.g. "AdditionalDetails") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AdditionalDetails") to include in
    // API requests with the JSON null value. By default, fields with 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 (*JsonSchema) MarshalJSON

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

type ListActionsResponse

ListActionsResponse: Response message for ActionService.ListActions

type ListActionsResponse struct {
    // Actions: List of action metadata.
    Actions []*Action `json:"actions,omitempty"`
    // NextPageToken: Next page token if more actions available.
    NextPageToken string `json:"nextPageToken,omitempty"`
    // UnsupportedActionNames: List of actions which contain unsupported Datatypes.
    // Check datatype.proto for more information.
    UnsupportedActionNames []string `json:"unsupportedActionNames,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // ForceSendFields is a list of field names (e.g. "Actions") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Actions") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ListActionsResponse) MarshalJSON

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

type ListEntitiesResponse

ListEntitiesResponse: Response message for EntityService.ListEntities

type ListEntitiesResponse struct {
    // Entities: List containing entity rows.
    Entities []*Entity `json:"entities,omitempty"`
    // NextPageToken: Next page token if more records are available.
    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. "Entities") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Entities") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ListEntitiesResponse) MarshalJSON

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

type ListEntityTypesResponse

ListEntityTypesResponse: Response message for EntityService.ListEntityTypes

type ListEntityTypesResponse struct {
    // NextPageToken: Next page token if more entity types available.
    NextPageToken string `json:"nextPageToken,omitempty"`
    // Types: List of metadata related to all entity types.
    Types []*EntityType `json:"types,omitempty"`
    // UnsupportedTypeNames: List of entity type names which contain unsupported
    // Datatypes. Check datatype.proto for more information.
    UnsupportedTypeNames []string `json:"unsupportedTypeNames,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:"-"`
}

func (*ListEntityTypesResponse) MarshalJSON

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

type MaintenancePolicy

MaintenancePolicy: Defines policies to service maintenance events.

type MaintenancePolicy struct {
    // CreateTime: Output only. The time when the resource was created.
    CreateTime string `json:"createTime,omitempty"`
    // Description: Optional. Description of what this policy is for. Create/Update
    // methods return INVALID_ARGUMENT if the length is greater than 512.
    Description string `json:"description,omitempty"`
    // Labels: Optional. Resource labels to represent user provided metadata. Each
    // label is a key-value pair, where both the key and the value are arbitrary
    // strings provided by the user.
    Labels map[string]string `json:"labels,omitempty"`
    // Name: Required. MaintenancePolicy name using the form:
    // `projects/{project_id}/locations/{location_id}/maintenancePolicies/{maintenan
    // ce_policy_id}` where {project_id} refers to a GCP consumer project ID,
    // {location_id} refers to a GCP region/zone, {maintenance_policy_id} must be
    // 1-63 characters long and match the regular expression
    // `[a-z0-9]([-a-z0-9]*[a-z0-9])?`.
    Name string `json:"name,omitempty"`
    // State: Optional. The state of the policy.
    //
    // Possible values:
    //   "STATE_UNSPECIFIED" - Unspecified state.
    //   "READY" - Resource is ready to be used.
    //   "DELETING" - Resource is being deleted. It can no longer be attached to
    // instances.
    State string `json:"state,omitempty"`
    // UpdatePolicy: Maintenance policy applicable to instance update.
    UpdatePolicy *UpdatePolicy `json:"updatePolicy,omitempty"`
    // UpdateTime: Output only. The time when the resource was updated.
    UpdateTime string `json:"updateTime,omitempty"`
    // 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 (*MaintenancePolicy) MarshalJSON

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

type MaintenanceSchedule

MaintenanceSchedule: Maintenance schedule which is exposed to customer and potentially end user, indicating published upcoming future maintenance schedule

type MaintenanceSchedule struct {
    // CanReschedule: This field is deprecated, and will be always set to true
    // since reschedule can happen multiple times now. This field should not be
    // removed until all service producers remove this for their customers.
    CanReschedule bool `json:"canReschedule,omitempty"`
    // EndTime: The scheduled end time for the maintenance.
    EndTime string `json:"endTime,omitempty"`
    // RolloutManagementPolicy: The rollout management policy this maintenance
    // schedule is associated with. When doing reschedule update request, the
    // reschedule should be against this given policy.
    RolloutManagementPolicy string `json:"rolloutManagementPolicy,omitempty"`
    // ScheduleDeadlineTime: schedule_deadline_time is the time deadline any
    // schedule start time cannot go beyond, including reschedule. It's normally
    // the initial schedule start time plus maintenance window length (1 day or 1
    // week). Maintenance cannot be scheduled to start beyond this deadline.
    ScheduleDeadlineTime string `json:"scheduleDeadlineTime,omitempty"`
    // StartTime: The scheduled start time for the maintenance.
    StartTime string `json:"startTime,omitempty"`
    // ForceSendFields is a list of field names (e.g. "CanReschedule") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "CanReschedule") to include in API
    // requests with the JSON null value. By default, fields with 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 (*MaintenanceSchedule) MarshalJSON

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

type MaintenanceSettings

MaintenanceSettings: Maintenance settings associated with instance. Allows service producers and end users to assign settings that controls maintenance on this instance.

type MaintenanceSettings struct {
    // Exclude: Optional. Exclude instance from maintenance. When true, rollout
    // service will not attempt maintenance on the instance. Rollout service will
    // include the instance in reported rollout progress as not attempted.
    Exclude bool `json:"exclude,omitempty"`
    // IsRollback: Optional. If the update call is triggered from rollback, set the
    // value as true.
    IsRollback bool `json:"isRollback,omitempty"`
    // MaintenancePolicies: Optional. The MaintenancePolicies that have been
    // attached to the instance. The key must be of the type name of the oneof
    // policy name defined in MaintenancePolicy, and the embedded policy must
    // define the same policy type. For details, please refer to go/mr-user-guide.
    // Should not be set if maintenance_policy_names is set. If only the name is
    // needed, then only populate MaintenancePolicy.name.
    MaintenancePolicies map[string]MaintenancePolicy `json:"maintenancePolicies,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Exclude") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Exclude") to include in API
    // requests with the JSON null value. By default, fields with 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 (*MaintenanceSettings) MarshalJSON

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

type MaintenanceWindow

MaintenanceWindow: MaintenanceWindow definition.

type MaintenanceWindow struct {
    // DailyCycle: Daily cycle.
    DailyCycle *DailyCycle `json:"dailyCycle,omitempty"`
    // WeeklyCycle: Weekly cycle.
    WeeklyCycle *WeeklyCycle `json:"weeklyCycle,omitempty"`
    // ForceSendFields is a list of field names (e.g. "DailyCycle") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "DailyCycle") to include in API
    // requests with the JSON null value. By default, fields with 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 (*MaintenanceWindow) MarshalJSON

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

type NodeSloMetadata

NodeSloMetadata: Node information for custom per-node SLO implementations. SSA does not support per-node SLO, but producers can populate per-node information in SloMetadata for custom precomputations. SSA Eligibility Exporter will emit per-node metric based on this information.

type NodeSloMetadata struct {
    // Location: The location of the node, if different from instance location.
    Location string `json:"location,omitempty"`
    // NodeId: The id of the node. This should be equal to
    // SaasInstanceNode.node_id.
    NodeId string `json:"nodeId,omitempty"`
    // PerSliEligibility: If present, this will override eligibility for the node
    // coming from instance or exclusions for specified SLIs.
    PerSliEligibility *PerSliSloEligibility `json:"perSliEligibility,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Location") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Location") to include in API
    // requests with the JSON null value. By default, fields with 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 (*NodeSloMetadata) MarshalJSON

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

type NotificationParameter

NotificationParameter: Contains notification related data.

type NotificationParameter struct {
    // Values: Optional. Array of string values. e.g. instance's replica
    // information.
    Values []string `json:"values,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Values") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Values") to include in API
    // requests with the JSON null value. By default, fields with 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 (*NotificationParameter) MarshalJSON

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

type PerSliSloEligibility

PerSliSloEligibility: PerSliSloEligibility is a mapping from an SLI name to eligibility.

type PerSliSloEligibility struct {
    // Eligibilities: An entry in the eligibilities map specifies an eligibility
    // for a particular SLI for the given instance. The SLI key in the name must be
    // a valid SLI name specified in the Eligibility Exporter binary flags
    // otherwise an error will be emitted by Eligibility Exporter and the oncaller
    // will be alerted. If an SLI has been defined in the binary flags but the
    // eligibilities map does not contain it, the corresponding SLI time series
    // will not be emitted by the Eligibility Exporter. This ensures a smooth
    // rollout and compatibility between the data produced by different versions of
    // the Eligibility Exporters. If eligibilities map contains a key for an SLI
    // which has not been declared in the binary flags, there will be an error
    // message emitted in the Eligibility Exporter log and the metric for the SLI
    // in question will not be emitted.
    Eligibilities map[string]SloEligibility `json:"eligibilities,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Eligibilities") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Eligibilities") to include in API
    // requests with the JSON null value. By default, fields with 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 (*PerSliSloEligibility) MarshalJSON

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

type ProjectsLocationsConnectionsActionsExecuteCall

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

func (*ProjectsLocationsConnectionsActionsExecuteCall) Context

func (c *ProjectsLocationsConnectionsActionsExecuteCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsExecuteCall

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

func (*ProjectsLocationsConnectionsActionsExecuteCall) Do

func (c *ProjectsLocationsConnectionsActionsExecuteCall) Do(opts ...googleapi.CallOption) (*ExecuteActionResponse, error)

Do executes the "connectors.projects.locations.connections.actions.execute" call. Any non-2xx status code is an error. Response headers are in either *ExecuteActionResponse.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 (*ProjectsLocationsConnectionsActionsExecuteCall) Fields

func (c *ProjectsLocationsConnectionsActionsExecuteCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsExecuteCall

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

func (*ProjectsLocationsConnectionsActionsExecuteCall) Header

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

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

type ProjectsLocationsConnectionsActionsGetCall

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

func (*ProjectsLocationsConnectionsActionsGetCall) Context

func (c *ProjectsLocationsConnectionsActionsGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsGetCall

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

func (*ProjectsLocationsConnectionsActionsGetCall) Do

func (c *ProjectsLocationsConnectionsActionsGetCall) Do(opts ...googleapi.CallOption) (*Action, error)

Do executes the "connectors.projects.locations.connections.actions.get" call. Any non-2xx status code is an error. Response headers are in either *Action.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 (*ProjectsLocationsConnectionsActionsGetCall) Fields

func (c *ProjectsLocationsConnectionsActionsGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsGetCall

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

func (*ProjectsLocationsConnectionsActionsGetCall) Header

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

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

func (*ProjectsLocationsConnectionsActionsGetCall) IfNoneMatch

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

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 ProjectsLocationsConnectionsActionsListCall

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

func (*ProjectsLocationsConnectionsActionsListCall) Context

func (c *ProjectsLocationsConnectionsActionsListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsActionsListCall

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

func (*ProjectsLocationsConnectionsActionsListCall) Do

func (c *ProjectsLocationsConnectionsActionsListCall) Do(opts ...googleapi.CallOption) (*ListActionsResponse, error)

Do executes the "connectors.projects.locations.connections.actions.list" call. Any non-2xx status code is an error. Response headers are in either *ListActionsResponse.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 (*ProjectsLocationsConnectionsActionsListCall) Fields

func (c *ProjectsLocationsConnectionsActionsListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsActionsListCall

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

func (*ProjectsLocationsConnectionsActionsListCall) Header

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

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

func (*ProjectsLocationsConnectionsActionsListCall) IfNoneMatch

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

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 (*ProjectsLocationsConnectionsActionsListCall) PageSize

func (c *ProjectsLocationsConnectionsActionsListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsActionsListCall

PageSize sets the optional parameter "pageSize": Number of Actions to return. Defaults to 25.

func (*ProjectsLocationsConnectionsActionsListCall) PageToken

func (c *ProjectsLocationsConnectionsActionsListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsActionsListCall

PageToken sets the optional parameter "pageToken": Page token, return from a previous ListActions call, that can be used retrieve the next page of content. If unspecified, the request returns the first page of actions.

func (*ProjectsLocationsConnectionsActionsListCall) Pages

func (c *ProjectsLocationsConnectionsActionsListCall) Pages(ctx context.Context, f func(*ListActionsResponse) error) error

Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.

func (*ProjectsLocationsConnectionsActionsListCall) View

func (c *ProjectsLocationsConnectionsActionsListCall) View(view string) *ProjectsLocationsConnectionsActionsListCall

View sets the optional parameter "view": Specifies which fields of the Action are returned in the response.

Possible values:

"ACTION_VIEW_UNSPECIFIED" - VIEW_UNSPECIFIED. The unset value Defaults to

FULL View.

"ACTION_VIEW_BASIC" - Return only action names.
"ACTION_VIEW_FULL" - Return actions with schema.

type ProjectsLocationsConnectionsActionsService

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

func NewProjectsLocationsConnectionsActionsService

func NewProjectsLocationsConnectionsActionsService(s *Service) *ProjectsLocationsConnectionsActionsService

func (*ProjectsLocationsConnectionsActionsService) Execute

func (r *ProjectsLocationsConnectionsActionsService) Execute(name string, executeactionrequest *ExecuteActionRequest) *ProjectsLocationsConnectionsActionsExecuteCall

Execute: Executes an action with the name specified in the request. The input parameters for executing the action are passed through the body of the ExecuteAction request.

func (*ProjectsLocationsConnectionsActionsService) Get

func (r *ProjectsLocationsConnectionsActionsService) Get(name string) *ProjectsLocationsConnectionsActionsGetCall

Get: Gets the schema of the given action.

func (*ProjectsLocationsConnectionsActionsService) List

func (r *ProjectsLocationsConnectionsActionsService) List(parent string) *ProjectsLocationsConnectionsActionsListCall

List: Gets the schema of all the actions supported by the connector.

type ProjectsLocationsConnectionsCheckReadinessCall

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

func (*ProjectsLocationsConnectionsCheckReadinessCall) Context

func (c *ProjectsLocationsConnectionsCheckReadinessCall) Context(ctx context.Context) *ProjectsLocationsConnectionsCheckReadinessCall

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

func (*ProjectsLocationsConnectionsCheckReadinessCall) Do

func (c *ProjectsLocationsConnectionsCheckReadinessCall) Do(opts ...googleapi.CallOption) (*CheckReadinessResponse, error)

Do executes the "connectors.projects.locations.connections.checkReadiness" call. Any non-2xx status code is an error. Response headers are in either *CheckReadinessResponse.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 (*ProjectsLocationsConnectionsCheckReadinessCall) Fields

func (c *ProjectsLocationsConnectionsCheckReadinessCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsCheckReadinessCall

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

func (*ProjectsLocationsConnectionsCheckReadinessCall) Header

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

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

func (*ProjectsLocationsConnectionsCheckReadinessCall) IfNoneMatch

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

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 ProjectsLocationsConnectionsCheckStatusCall

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

func (*ProjectsLocationsConnectionsCheckStatusCall) Context

func (c *ProjectsLocationsConnectionsCheckStatusCall) Context(ctx context.Context) *ProjectsLocationsConnectionsCheckStatusCall

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

func (*ProjectsLocationsConnectionsCheckStatusCall) Do

func (c *ProjectsLocationsConnectionsCheckStatusCall) Do(opts ...googleapi.CallOption) (*CheckStatusResponse, error)

Do executes the "connectors.projects.locations.connections.checkStatus" call. Any non-2xx status code is an error. Response headers are in either *CheckStatusResponse.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 (*ProjectsLocationsConnectionsCheckStatusCall) Fields

func (c *ProjectsLocationsConnectionsCheckStatusCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsCheckStatusCall

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

func (*ProjectsLocationsConnectionsCheckStatusCall) Header

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

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

func (*ProjectsLocationsConnectionsCheckStatusCall) IfNoneMatch

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

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 ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Do(opts ...googleapi.CallOption) (*Entity, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.create" call. Any non-2xx status code is an error. Response headers are in either *Entity.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall) Header

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

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

type ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall) Header

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

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

type ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Conditions

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall

Conditions sets the optional parameter "conditions": Required. Conditions to be used when deleting entities. From a proto standpoint, There are no restrictions on what can be passed using this field. The connector documentation should have information about what format of filters/conditions are supported. Note: If this conditions field is left empty, an exception is thrown. We don't want to consider 'empty conditions' to be a match-all case. Connector developers can determine and document what a match-all case constraint would be.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Do(opts ...googleapi.CallOption) (*Empty, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.deleteEntitiesWithConditions" 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 (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall) Header

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

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

type ProjectsLocationsConnectionsEntityTypesEntitiesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Do(opts ...googleapi.CallOption) (*Entity, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.get" call. Any non-2xx status code is an error. Response headers are in either *Entity.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) Header

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

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesGetCall) IfNoneMatch

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

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 ProjectsLocationsConnectionsEntityTypesEntitiesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Conditions

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

Conditions sets the optional parameter "conditions": Conditions to be used when listing entities. From a proto standpoint, There are no restrictions on what can be passed using this field. The connector documentation should have information about what format of filters/conditions are supported.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Do(opts ...googleapi.CallOption) (*ListEntitiesResponse, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.list" call. Any non-2xx status code is an error. Response headers are in either *ListEntitiesResponse.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Header

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

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) IfNoneMatch

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

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 (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageSize

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

PageSize sets the optional parameter "pageSize": Number of entity rows to return. Defaults page size = 25. Max page size = 200.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageToken

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

PageToken sets the optional parameter "pageToken": Page token value if available from a previous request.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Pages

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) Pages(ctx context.Context, f func(*ListEntitiesResponse) error) error

Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesListCall) SortBy

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesListCall) SortBy(sortBy ...string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

SortBy sets the optional parameter "sortBy": List of 'sort_by' columns to use when returning the results.

type ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Do(opts ...googleapi.CallOption) (*Entity, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.patch" call. Any non-2xx status code is an error. Response headers are in either *Entity.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall) Header

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

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

type ProjectsLocationsConnectionsEntityTypesEntitiesService

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

func NewProjectsLocationsConnectionsEntityTypesEntitiesService

func NewProjectsLocationsConnectionsEntityTypesEntitiesService(s *Service) *ProjectsLocationsConnectionsEntityTypesEntitiesService

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) Create

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Create(parent string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesCreateCall

Create: Creates a new entity row of the specified entity type in the external system. The field values for creating the row are contained in the body of the request. The response message contains a `Entity` message object returned as a response by the external system.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) Delete

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Delete(name string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteCall

Delete: Deletes an existing entity row matching the entity type and entity id specified in the request.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) DeleteEntitiesWithConditions

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) DeleteEntitiesWithConditions(entityType string) *ProjectsLocationsConnectionsEntityTypesEntitiesDeleteEntitiesWithConditionsCall

DeleteEntitiesWithConditions: Deletes entities based on conditions specified in the request and not on entity id.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) Get

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Get(name string) *ProjectsLocationsConnectionsEntityTypesEntitiesGetCall

Get: Gets a single entity row matching the entity type and entity id specified in the request.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) List

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) List(parent string) *ProjectsLocationsConnectionsEntityTypesEntitiesListCall

List: Lists entity rows of a particular entity type contained in the request. Note: 1. Currently, only max of one 'sort_by' column is supported. 2. If no 'sort_by' column is provided, the primary key of the table is used. If zero or more than one primary key is available, we default to the unpaginated list entities logic which only returns the first page. 3. The values of the 'sort_by' columns must uniquely identify an entity row, otherwise undefined behaviors may be observed during pagination. 4. Since transactions are not supported, any updates, inserts or deletes during pagination can lead to stale data being returned or other unexpected behaviors.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) Patch

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) Patch(name string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesPatchCall

Patch: Updates an existing entity row matching the entity type and entity id specified in the request. The fields in the entity row that need to be modified are contained in the body of the request. All unspecified fields are left unchanged. The response message contains a `Entity` message object returned as a response by the external system.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesService) UpdateEntitiesWithConditions

func (r *ProjectsLocationsConnectionsEntityTypesEntitiesService) UpdateEntitiesWithConditions(entityType string, entity *Entity) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall

UpdateEntitiesWithConditions: Updates entities based on conditions specified in the request and not on entity id.

type ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Conditions

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Conditions(conditions string) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall

Conditions sets the optional parameter "conditions": Required. Conditions to be used when updating entities. From a proto standpoint, There are no restrictions on what can be passed using this field. The connector documentation should have information about what format of filters/conditions are supported. Note: If this conditions field is left empty, an exception is thrown. We don't want to consider 'empty conditions' to be a match-all case. Connector developers can determine and document what a match-all case constraint would be.

func (*ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Do(opts ...googleapi.CallOption) (*UpdateEntitiesWithConditionsResponse, error)

Do executes the "connectors.projects.locations.connections.entityTypes.entities.updateEntitiesWithConditions" call. Any non-2xx status code is an error. Response headers are in either *UpdateEntitiesWithConditionsResponse.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 (*ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall

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

func (*ProjectsLocationsConnectionsEntityTypesEntitiesUpdateEntitiesWithConditionsCall) Header

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

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

type ProjectsLocationsConnectionsEntityTypesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesGetCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesGetCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Do(opts ...googleapi.CallOption) (*EntityType, error)

Do executes the "connectors.projects.locations.connections.entityTypes.get" call. Any non-2xx status code is an error. Response headers are in either *EntityType.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 (*ProjectsLocationsConnectionsEntityTypesGetCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesGetCall

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

func (*ProjectsLocationsConnectionsEntityTypesGetCall) Header

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

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

func (*ProjectsLocationsConnectionsEntityTypesGetCall) IfNoneMatch

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

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 ProjectsLocationsConnectionsEntityTypesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesListCall) Context

func (c *ProjectsLocationsConnectionsEntityTypesListCall) Context(ctx context.Context) *ProjectsLocationsConnectionsEntityTypesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesListCall) Do

func (c *ProjectsLocationsConnectionsEntityTypesListCall) Do(opts ...googleapi.CallOption) (*ListEntityTypesResponse, error)

Do executes the "connectors.projects.locations.connections.entityTypes.list" call. Any non-2xx status code is an error. Response headers are in either *ListEntityTypesResponse.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 (*ProjectsLocationsConnectionsEntityTypesListCall) Fields

func (c *ProjectsLocationsConnectionsEntityTypesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsEntityTypesListCall

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

func (*ProjectsLocationsConnectionsEntityTypesListCall) Header

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

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

func (*ProjectsLocationsConnectionsEntityTypesListCall) IfNoneMatch

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

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 (*ProjectsLocationsConnectionsEntityTypesListCall) PageSize

func (c *ProjectsLocationsConnectionsEntityTypesListCall) PageSize(pageSize int64) *ProjectsLocationsConnectionsEntityTypesListCall

PageSize sets the optional parameter "pageSize": Number of entity types to return. Defaults to 25.

func (*ProjectsLocationsConnectionsEntityTypesListCall) PageToken

func (c *ProjectsLocationsConnectionsEntityTypesListCall) PageToken(pageToken string) *ProjectsLocationsConnectionsEntityTypesListCall

PageToken sets the optional parameter "pageToken": Page token, return from a previous ListEntityTypes call, that can be used retrieve the next page of content. If unspecified, the request returns the first page of entity types.

func (*ProjectsLocationsConnectionsEntityTypesListCall) Pages

func (c *ProjectsLocationsConnectionsEntityTypesListCall) Pages(ctx context.Context, f func(*ListEntityTypesResponse) error) error

Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.

func (*ProjectsLocationsConnectionsEntityTypesListCall) View

func (c *ProjectsLocationsConnectionsEntityTypesListCall) View(view string) *ProjectsLocationsConnectionsEntityTypesListCall

View sets the optional parameter "view": Specifies which fields of the Entity Type are returned in the response.

Possible values:

"ENTITY_TYPE_VIEW_UNSPECIFIED" - VIEW_UNSPECIFIED. The unset value.

Defaults to FULL View.

"ENTITY_TYPE_VIEW_BASIC" - Return only entity type names.
"ENTITY_TYPE_VIEW_FULL" - Return entity types with schema

type ProjectsLocationsConnectionsEntityTypesService

type ProjectsLocationsConnectionsEntityTypesService struct {
    Entities *ProjectsLocationsConnectionsEntityTypesEntitiesService
    // contains filtered or unexported fields
}

func NewProjectsLocationsConnectionsEntityTypesService

func NewProjectsLocationsConnectionsEntityTypesService(s *Service) *ProjectsLocationsConnectionsEntityTypesService

func (*ProjectsLocationsConnectionsEntityTypesService) Get

func (r *ProjectsLocationsConnectionsEntityTypesService) Get(name string) *ProjectsLocationsConnectionsEntityTypesGetCall

Get: Gets metadata of given entity type

func (*ProjectsLocationsConnectionsEntityTypesService) List

func (r *ProjectsLocationsConnectionsEntityTypesService) List(parent string) *ProjectsLocationsConnectionsEntityTypesListCall

List: Lists metadata related to all entity types present in the external system.

type ProjectsLocationsConnectionsExchangeAuthCodeCall

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

func (*ProjectsLocationsConnectionsExchangeAuthCodeCall) Context

func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Context(ctx context.Context) *ProjectsLocationsConnectionsExchangeAuthCodeCall

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

func (*ProjectsLocationsConnectionsExchangeAuthCodeCall) Do

func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Do(opts ...googleapi.CallOption) (*ExchangeAuthCodeResponse, error)

Do executes the "connectors.projects.locations.connections.exchangeAuthCode" call. Any non-2xx status code is an error. Response headers are in either *ExchangeAuthCodeResponse.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 (*ProjectsLocationsConnectionsExchangeAuthCodeCall) Fields

func (c *ProjectsLocationsConnectionsExchangeAuthCodeCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsExchangeAuthCodeCall

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

func (*ProjectsLocationsConnectionsExchangeAuthCodeCall) Header

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

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

type ProjectsLocationsConnectionsExecuteSqlQueryCall

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

func (*ProjectsLocationsConnectionsExecuteSqlQueryCall) Context

func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Context(ctx context.Context) *ProjectsLocationsConnectionsExecuteSqlQueryCall

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

func (*ProjectsLocationsConnectionsExecuteSqlQueryCall) Do

func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Do(opts ...googleapi.CallOption) (*ExecuteSqlQueryResponse, error)

Do executes the "connectors.projects.locations.connections.executeSqlQuery" call. Any non-2xx status code is an error. Response headers are in either *ExecuteSqlQueryResponse.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 (*ProjectsLocationsConnectionsExecuteSqlQueryCall) Fields

func (c *ProjectsLocationsConnectionsExecuteSqlQueryCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsExecuteSqlQueryCall

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

func (*ProjectsLocationsConnectionsExecuteSqlQueryCall) Header

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

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

type ProjectsLocationsConnectionsRefreshAccessTokenCall

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

func (*ProjectsLocationsConnectionsRefreshAccessTokenCall) Context

func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Context(ctx context.Context) *ProjectsLocationsConnectionsRefreshAccessTokenCall

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

func (*ProjectsLocationsConnectionsRefreshAccessTokenCall) Do

func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Do(opts ...googleapi.CallOption) (*RefreshAccessTokenResponse, error)

Do executes the "connectors.projects.locations.connections.refreshAccessToken" call. Any non-2xx status code is an error. Response headers are in either *RefreshAccessTokenResponse.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 (*ProjectsLocationsConnectionsRefreshAccessTokenCall) Fields

func (c *ProjectsLocationsConnectionsRefreshAccessTokenCall) Fields(s ...googleapi.Field) *ProjectsLocationsConnectionsRefreshAccessTokenCall

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

func (*ProjectsLocationsConnectionsRefreshAccessTokenCall) Header

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

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

type ProjectsLocationsConnectionsService

type ProjectsLocationsConnectionsService struct {
    Actions *ProjectsLocationsConnectionsActionsService

    EntityTypes *ProjectsLocationsConnectionsEntityTypesService
    // contains filtered or unexported fields
}

func NewProjectsLocationsConnectionsService

func NewProjectsLocationsConnectionsService(s *Service) *ProjectsLocationsConnectionsService

func (*ProjectsLocationsConnectionsService) CheckReadiness

func (r *ProjectsLocationsConnectionsService) CheckReadiness(name string) *ProjectsLocationsConnectionsCheckReadinessCall

CheckReadiness: Reports readiness status of the connector. Similar logic to GetStatus but modified for kubernetes health check to understand.

- name: .

func (*ProjectsLocationsConnectionsService) CheckStatus

func (r *ProjectsLocationsConnectionsService) CheckStatus(name string) *ProjectsLocationsConnectionsCheckStatusCall

CheckStatus: Reports the status of the connection. Note that when the connection is in a state that is not ACTIVE, the implementation of this RPC method must return a Status with the corresponding State instead of returning a gRPC status code that is not "OK", which indicates that ConnectionStatus itself, not the connection, failed.

- name: .

func (*ProjectsLocationsConnectionsService) ExchangeAuthCode

func (r *ProjectsLocationsConnectionsService) ExchangeAuthCode(name string, exchangeauthcoderequest *ExchangeAuthCodeRequest) *ProjectsLocationsConnectionsExchangeAuthCodeCall

ExchangeAuthCode: ExchangeAuthCode exchanges the OAuth authorization code (and other necessary data) for an access token (and associated credentials).

- name: .

func (*ProjectsLocationsConnectionsService) ExecuteSqlQuery

func (r *ProjectsLocationsConnectionsService) ExecuteSqlQuery(connection string, executesqlqueryrequest *ExecuteSqlQueryRequest) *ProjectsLocationsConnectionsExecuteSqlQueryCall

ExecuteSqlQuery: Executes a SQL statement specified in the body of the request. An example of this SQL statement in the case of Salesforce connector would be 'select * from Account a, Order o where a.Id = o.AccountId'.

func (*ProjectsLocationsConnectionsService) RefreshAccessToken

func (r *ProjectsLocationsConnectionsService) RefreshAccessToken(name string, refreshaccesstokenrequest *RefreshAccessTokenRequest) *ProjectsLocationsConnectionsRefreshAccessTokenCall

RefreshAccessToken: RefreshAccessToken exchanges the OAuth refresh token (and other necessary data) for a new access token (and new associated credentials).

- name: .

type ProjectsLocationsService

type ProjectsLocationsService struct {
    Connections *ProjectsLocationsConnectionsService
    // contains filtered or unexported fields
}

func NewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

type ProjectsService

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

func NewProjectsService

func NewProjectsService(s *Service) *ProjectsService

type ProvisionedResource

ProvisionedResource: Describes provisioned dataplane resources.

type ProvisionedResource struct {
    // ResourceType: Type of the resource. This can be either a GCP resource or a
    // custom one (e.g. another cloud provider's VM). For GCP compute resources use
    // singular form of the names listed in GCP compute API documentation
    // (https://cloud.google.com/compute/docs/reference/rest/v1/), prefixed with
    // 'compute-', for example: 'compute-instance', 'compute-disk',
    // 'compute-autoscaler'.
    ResourceType string `json:"resourceType,omitempty"`
    // ResourceUrl: URL identifying the resource, e.g.
    // "https://www.googleapis.com/compute/v1/projects/...)".
    ResourceUrl string `json:"resourceUrl,omitempty"`
    // ForceSendFields is a list of field names (e.g. "ResourceType") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "ResourceType") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ProvisionedResource) MarshalJSON

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

type Query

Query: A wrapper around the SQL query statement. This is needed so that the JSON representation of ExecuteSqlQueryRequest has the following format: `{"query":"select *"}`.

type Query struct {
    // MaxRows: Sets the limit for the maximum number of rows returned after the
    // query execution.
    MaxRows int64 `json:"maxRows,omitempty,string"`
    // Query: Required. Sql query to execute.
    Query string `json:"query,omitempty"`
    // QueryParameters: In the struct, the value corresponds to the value of query
    // parameter and date type corresponds to the date type of the query parameter.
    QueryParameters []*QueryParameter `json:"queryParameters,omitempty"`
    // Timeout: Sets the number of seconds the driver will wait for a query to
    // execute.
    Timeout int64 `json:"timeout,omitempty,string"`
    // ForceSendFields is a list of field names (e.g. "MaxRows") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "MaxRows") to include in API
    // requests with the JSON null value. By default, fields with 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 (*Query) MarshalJSON

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

type QueryParameter

QueryParameter: Query parameter definition

type QueryParameter struct {
    // Possible values:
    //   "DATA_TYPE_UNSPECIFIED" - Datatype unspecified.
    //   "INT" - Deprecated Int type, use INTEGER type instead.
    //   "SMALLINT" - Small int type.
    //   "DOUBLE" - Double type.
    //   "DATE" - Date type.
    //   "DATETIME" - Deprecated Datetime type.
    //   "TIME" - Time type.
    //   "STRING" - Deprecated string type, use VARCHAR type instead.
    //   "LONG" - Deprecated Long type, use BIGINT type instead.
    //   "BOOLEAN" - Boolean type.
    //   "DECIMAL" - Decimal type.
    //   "UUID" - Deprecated UUID type, use VARCHAR instead.
    //   "BLOB" - Blob type.
    //   "BIT" - Bit type.
    //   "TINYINT" - Tiny int type.
    //   "INTEGER" - Integer type.
    //   "BIGINT" - Big int type.
    //   "FLOAT" - Float type.
    //   "REAL" - Real type.
    //   "NUMERIC" - Numeric type.
    //   "CHAR" - Char type.
    //   "VARCHAR" - Varchar type.
    //   "LONGVARCHAR" - Long varchar type.
    //   "TIMESTAMP" - Timestamp type.
    //   "NCHAR" - Nchar type.
    //   "NVARCHAR" - Nvarchar type.
    //   "LONGNVARCHAR" - Long Nvarchar type.
    //   "NULL" - Null type.
    //   "OTHER" - Other type.
    //   "JAVA_OBJECT" - Java object type.
    //   "DISTINCT" - Distinct type keyword.
    //   "STRUCT" - Struct type.
    //   "ARRAY" - Array type.
    //   "CLOB" - Clob type.
    //   "REF" - Ref type.
    //   "DATALINK" - Datalink type.
    //   "ROWID" - Row ID type.
    //   "BINARY" - Binary type.
    //   "VARBINARY" - Varbinary type.
    //   "LONGVARBINARY" - Long Varbinary type.
    //   "NCLOB" - Nclob type.
    //   "SQLXML" - SQLXML type.
    //   "REF_CURSOR" - Ref_cursor type.
    //   "TIME_WITH_TIMEZONE" - Time with timezone type.
    //   "TIMESTAMP_WITH_TIMEZONE" - Timestamp with timezone type.
    DataType string      `json:"dataType,omitempty"`
    Value    interface{} `json:"value,omitempty"`
    // ForceSendFields is a list of field names (e.g. "DataType") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "DataType") to include in API
    // requests with the JSON null value. By default, fields with 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 (*QueryParameter) MarshalJSON

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

type Reference

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

func (*Reference) MarshalJSON

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

type RefreshAccessTokenRequest

RefreshAccessTokenRequest: RefreshAccessTokenRequest currently includes no fields.

type RefreshAccessTokenRequest struct {
}

type RefreshAccessTokenResponse

RefreshAccessTokenResponse: RefreshAccessTokenResponse includes the returned access token and its associated credentials.

type RefreshAccessTokenResponse struct {
    AccessCredentials *AccessCredentials `json:"accessCredentials,omitempty"`

    // ServerResponse contains the HTTP response code and headers from the server.
    googleapi.ServerResponse `json:"-"`
    // ForceSendFields is a list of field names (e.g. "AccessCredentials") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "AccessCredentials") to include in
    // API requests with the JSON null value. By default, fields with 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 (*RefreshAccessTokenResponse) MarshalJSON

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

type ResultMetadata

ResultMetadata: Result Metadata message contains metadata about the result returned after executing an Action.

type ResultMetadata struct {
    // DataType: The data type of the metadata field
    //
    // Possible values:
    //   "DATA_TYPE_UNSPECIFIED" - Datatype unspecified.
    //   "INT" - Deprecated Int type, use INTEGER type instead.
    //   "SMALLINT" - Small int type.
    //   "DOUBLE" - Double type.
    //   "DATE" - Date type.
    //   "DATETIME" - Deprecated Datetime type.
    //   "TIME" - Time type.
    //   "STRING" - Deprecated string type, use VARCHAR type instead.
    //   "LONG" - Deprecated Long type, use BIGINT type instead.
    //   "BOOLEAN" - Boolean type.
    //   "DECIMAL" - Decimal type.
    //   "UUID" - Deprecated UUID type, use VARCHAR instead.
    //   "BLOB" - Blob type.
    //   "BIT" - Bit type.
    //   "TINYINT" - Tiny int type.
    //   "INTEGER" - Integer type.
    //   "BIGINT" - Big int type.
    //   "FLOAT" - Float type.
    //   "REAL" - Real type.
    //   "NUMERIC" - Numeric type.
    //   "CHAR" - Char type.
    //   "VARCHAR" - Varchar type.
    //   "LONGVARCHAR" - Long varchar type.
    //   "TIMESTAMP" - Timestamp type.
    //   "NCHAR" - Nchar type.
    //   "NVARCHAR" - Nvarchar type.
    //   "LONGNVARCHAR" - Long Nvarchar type.
    //   "NULL" - Null type.
    //   "OTHER" - Other type.
    //   "JAVA_OBJECT" - Java object type.
    //   "DISTINCT" - Distinct type keyword.
    //   "STRUCT" - Struct type.
    //   "ARRAY" - Array type.
    //   "CLOB" - Clob type.
    //   "REF" - Ref type.
    //   "DATALINK" - Datalink type.
    //   "ROWID" - Row ID type.
    //   "BINARY" - Binary type.
    //   "VARBINARY" - Varbinary type.
    //   "LONGVARBINARY" - Long Varbinary type.
    //   "NCLOB" - Nclob type.
    //   "SQLXML" - SQLXML type.
    //   "REF_CURSOR" - Ref_cursor type.
    //   "TIME_WITH_TIMEZONE" - Time with timezone type.
    //   "TIMESTAMP_WITH_TIMEZONE" - Timestamp with timezone type.
    DataType string `json:"dataType,omitempty"`
    // Description: A brief description of the metadata field.
    Description string `json:"description,omitempty"`
    // JsonSchema: JsonSchema of the result, applicable only if parameter is of
    // type `STRUCT`
    JsonSchema *JsonSchema `json:"jsonSchema,omitempty"`
    // Name: Name of the metadata field.
    Name string `json:"name,omitempty"`
    // ForceSendFields is a list of field names (e.g. "DataType") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "DataType") to include in API
    // requests with the JSON null value. By default, fields with 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 (*ResultMetadata) MarshalJSON

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

type Schedule

Schedule: Configure the schedule.

type Schedule struct {
    // Day: Allows to define schedule that runs specified day of the week.
    //
    // Possible values:
    //   "DAY_OF_WEEK_UNSPECIFIED" - The day of the week is unspecified.
    //   "MONDAY" - Monday
    //   "TUESDAY" - Tuesday
    //   "WEDNESDAY" - Wednesday
    //   "THURSDAY" - Thursday
    //   "FRIDAY" - Friday
    //   "SATURDAY" - Saturday
    //   "SUNDAY" - Sunday
    Day string `json:"day,omitempty"`
    // Duration: Output only. Duration of the time window, set by service producer.
    Duration string `json:"duration,omitempty"`
    // StartTime: Time within the window to start the operations.
    StartTime *TimeOfDay `json:"startTime,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Day") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Day") to include in API requests
    // with the JSON null value. By default, fields with 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 (*Schedule) MarshalJSON

func (s *Schedule) 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

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 SloEligibility

SloEligibility: SloEligibility is a tuple containing eligibility value: true if an instance is eligible for SLO calculation or false if it should be excluded from all SLO-related calculations along with a user-defined reason.

type SloEligibility struct {
    // Eligible: Whether an instance is eligible or ineligible.
    Eligible bool `json:"eligible,omitempty"`
    // Reason: User-defined reason for the current value of instance eligibility.
    // Usually, this can be directly mapped to the internal state. An empty reason
    // is allowed.
    Reason string `json:"reason,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Eligible") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Eligible") to include in API
    // requests with the JSON null value. By default, fields with 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 (*SloEligibility) MarshalJSON

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

type SloMetadata

SloMetadata: SloMetadata contains resources required for proper SLO classification of the instance.

type SloMetadata struct {
    // Nodes: Optional. List of nodes. Some producers need to use per-node metadata
    // to calculate SLO. This field allows such producers to publish per-node SLO
    // meta data, which will be consumed by SSA Eligibility Exporter and published
    // in the form of per node metric to Monarch.
    Nodes []*NodeSloMetadata `json:"nodes,omitempty"`
    // PerSliEligibility: Optional. Multiple per-instance SLI eligibilities which
    // apply for individual SLIs.
    PerSliEligibility *PerSliSloEligibility `json:"perSliEligibility,omitempty"`
    // Tier: Name of the SLO tier the Instance belongs to. This name will be
    // expected to match the tiers specified in the service SLO configuration.
    // Field is mandatory and must not be empty.
    Tier string `json:"tier,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Nodes") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Nodes") to include in API
    // requests with the JSON null value. By default, fields with 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 (*SloMetadata) MarshalJSON

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

type TimeOfDay

TimeOfDay: Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

type TimeOfDay struct {
    // Hours: Hours of day in 24 hour format. Should be from 0 to 23. An API may
    // choose to allow the value "24:00:00" for scenarios like business closing
    // time.
    Hours int64 `json:"hours,omitempty"`
    // Minutes: Minutes of hour of day. Must be from 0 to 59.
    Minutes int64 `json:"minutes,omitempty"`
    // Nanos: Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
    Nanos int64 `json:"nanos,omitempty"`
    // Seconds: Seconds of minutes of the time. Must normally be from 0 to 59. An
    // API may allow the value 60 if it allows leap-seconds.
    Seconds int64 `json:"seconds,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Hours") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Hours") to include in API
    // requests with the JSON null value. By default, fields with 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 (*TimeOfDay) MarshalJSON

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

type UpdateEntitiesWithConditionsResponse

UpdateEntitiesWithConditionsResponse: Response message for EntityService.UpdateEntitiesWithConditions

type UpdateEntitiesWithConditionsResponse struct {
    // Response: Response returned by the external system.
    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. "Response") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Response") to include in API
    // requests with the JSON null value. By default, fields with 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 (*UpdateEntitiesWithConditionsResponse) MarshalJSON

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

type UpdatePolicy

UpdatePolicy: Maintenance policy applicable to instance updates.

type UpdatePolicy struct {
    // Channel: Optional. Relative scheduling channel applied to resource.
    //
    // Possible values:
    //   "UPDATE_CHANNEL_UNSPECIFIED" - Unspecified channel.
    //   "EARLIER" - Early channel within a customer project.
    //   "LATER" - Later channel within a customer project.
    //   "WEEK1" - ! ! The follow channels can ONLY be used if you adopt the new MW
    // system! ! ! NOTE: all WEEK channels are assumed to be under a weekly window.
    // ! There is currently no dedicated channel definitions for Daily windows. !
    // If you use Daily window, the system will assume a 1d (24Hours) advanced !
    // notification period b/w EARLY and LATER. ! We may consider support more
    // flexible daily channel specifications in ! the future. WEEK1 == EARLIER with
    // minimum 7d advanced notification. {7d, 14d} The system will treat them
    // equally and will use WEEK1 whenever it can. New customers are encouraged to
    // use this channel annotation.
    //   "WEEK2" - WEEK2 == LATER with minimum 14d advanced notification {14d,
    // 21d}.
    //   "WEEK5" - WEEK5 == 40d support. minimum 35d advanced notification {35d,
    // 42d}.
    Channel string `json:"channel,omitempty"`
    // DenyMaintenancePeriods: Deny Maintenance Period that is applied to resource
    // to indicate when maintenance is forbidden. The protocol supports
    // zero-to-many such periods, but the current SLM Rollout implementation only
    // supports zero-to-one.
    DenyMaintenancePeriods []*DenyMaintenancePeriod `json:"denyMaintenancePeriods,omitempty"`
    // Window: Optional. Maintenance window that is applied to resources covered by
    // this policy.
    Window *MaintenanceWindow `json:"window,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Channel") to unconditionally
    // include in API requests. By default, fields with empty or default values are
    // omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Channel") to include in API
    // requests with the JSON null value. By default, fields with 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 (*UpdatePolicy) MarshalJSON

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

type WeeklyCycle

WeeklyCycle: Time window specified for weekly operations.

type WeeklyCycle struct {
    // Schedule: User can specify multiple windows in a week. Minimum of 1 window.
    Schedule []*Schedule `json:"schedule,omitempty"`
    // ForceSendFields is a list of field names (e.g. "Schedule") to
    // unconditionally include in API requests. By default, fields with empty or
    // default values are omitted from API requests. See
    // https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more
    // details.
    ForceSendFields []string `json:"-"`
    // NullFields is a list of field names (e.g. "Schedule") to include in API
    // requests with the JSON null value. By default, fields with 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 (*WeeklyCycle) MarshalJSON

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