Agent Registry API . projects . locations . publishers

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Fetches details of a specific Publisher.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

Lists all Publishers in a location.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
get(name, x__xgafv=None)
Fetches details of a specific Publisher.

Args:
  name: string, Required. Target publisher resource name. Format: `projects/{project}/locations/{location}/publishers/{publisher}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Represents a verified Publisher of Skills. Prepopulated publishers include `publishers/cloud.google.com` and `publishers/workspace.google.com`.
  "displayName": "A String", # Optional. Human readable display name of the publisher.
  "documentationUri": "A String", # Optional. URI pointing to official publisher documentation.
  "name": "A String", # Identifier. Resource name of the publisher. Format: `projects/{project}/locations/{location}/publishers/{publisher}`
  "publisherTier": "A String", # Output only. The curation tier of the publisher.
  "supportUri": "A String", # Optional. URI pointing to the support portal or email.
  "verifiedPrefix": "A String", # Required. The verified prefix (e.g. "snowflake-", "google-") associated with this publisher. The system uses this prefix to enforce name-squatting rules during Skill registration. Must be globally unique across all publishers.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists all Publishers in a location.

Args:
  parent: string, Required. Parent location to query. Format: `projects/{project}/locations/{location}` (required)
  pageSize: integer, Optional. Page limit size.
  pageToken: string, Optional. Page offset token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response listing Publishers.
  "nextPageToken": "A String", # Page offset continuation token.
  "publishers": [ # The returned list of Publishers.
    { # Represents a verified Publisher of Skills. Prepopulated publishers include `publishers/cloud.google.com` and `publishers/workspace.google.com`.
      "displayName": "A String", # Optional. Human readable display name of the publisher.
      "documentationUri": "A String", # Optional. URI pointing to official publisher documentation.
      "name": "A String", # Identifier. Resource name of the publisher. Format: `projects/{project}/locations/{location}/publishers/{publisher}`
      "publisherTier": "A String", # Output only. The curation tier of the publisher.
      "supportUri": "A String", # Optional. URI pointing to the support portal or email.
      "verifiedPrefix": "A String", # Required. The verified prefix (e.g. "snowflake-", "google-") associated with this publisher. The system uses this prefix to enforce name-squatting rules during Skill registration. Must be globally unique across all publishers.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.