REST Resource: projects.locations.bindings

Resource: Binding

Represents a user-defined Binding.

JSON representation
{
  "name": string,
  "displayName": string,
  "description": string,
  "source": {
    object (Source)
  },
  "target": {
    object (Target)
  },
  "createTime": string,
  "updateTime": string,

  // Union field binding can be only one of the following:
  "authProviderBinding": {
    object (AuthProviderBinding)
  }
  // End of list of possible types for union field binding.
}
Fields
name

string

Required. Identifier. The resource name of the Binding. Format: projects/{project}/locations/{location}/bindings/{binding}.

displayName

string

Optional. User-defined display name for the Binding. Can have a maximum length of 63 characters.

description

string

Optional. User-defined description of a Binding. Can have a maximum length of 2048 characters.

source

object (Source)

Required. The target Agent of the Binding.

target

object (Target)

Required. The target Agent Registry Resource of the Binding.

createTime

string (Timestamp format)

Output only. Timestamp when this binding was created.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

updateTime

string (Timestamp format)

Output only. Timestamp when this binding was last updated.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

Union field binding. The configuration for the Binding. binding can be only one of the following:
authProviderBinding

object (AuthProviderBinding)

The binding for AuthProvider.

AuthProviderBinding

The AuthProvider of the Binding.

JSON representation
{
  "authProvider": string,
  "scopes": [
    string
  ],
  "continueUri": string
}
Fields
authProvider

string

Required. The resource name of the target AuthProvider. Format:

  • projects/{project}/locations/{location}/authProviders/{authProvider}
scopes[]

string

Optional. The list of OAuth2 scopes of the AuthProvider.

continueUri

string

Optional. The continue URI of the AuthProvider. The URI is used to reauthenticate the user and finalize the managed OAuth flow.

Source

The source of the Binding.

JSON representation
{

  // Union field source_type can be only one of the following:
  "identifier": string
  // End of list of possible types for union field source_type.
}
Fields
Union field source_type. The type of the source, currently only supports Agents. Potential future fields include 'tag', etc. source_type can be only one of the following:
identifier

string

The identifier of the source Agent. Format:

  • urn:agent:{publisher}:{namespace}:{name}

Target

The target of the Binding.

JSON representation
{

  // Union field target_type can be only one of the following:
  "identifier": string
  // End of list of possible types for union field target_type.
}
Fields
Union field target_type. The type of the target, currently only supports an AgentRegistry Resource. Potential future fields include 'tag', etc. target_type can be only one of the following:
identifier

string

The identifier of the target Agent, MCP Server, or Endpoint. Format:

  • urn:agent:{publisher}:{namespace}:{name}
  • urn:mcp:{publisher}:{namespace}:{name}
  • urn:endpoint:{publisher}:{namespace}:{name}

Methods

create

Creates a new Binding in a given project and location.

delete

Deletes a single Binding.

fetchAvailable

Fetches available Bindings.

get

Gets details of a single Binding.

list

Lists Bindings in a given project and location.

patch

Updates the parameters of a single Binding.