- Resource: PluginInstance
- AuthConfig
- UserPasswordConfig
- Secret
- ApiKeyConfig
- HttpElementLocation
- Oauth2ClientCredentialsConfig
- ConfigVariable
- MultiSelectValues
- MultiStringValues
- MultiIntValues
- State
- PluginInstanceAction
- ExecutionStatus
- CurrentExecutionState
- LastExecution
- Result
- State
- CurationConfig
- CustomCuration
- CurationType
- Methods
Resource: PluginInstance
Represents a plugin instance resource in the API hub. A PluginInstance is a specific instance of a hub plugin with its own configuration, state, and execution details.
JSON representation |
---|
{ "name": string, "displayName": string, "authConfig": { object ( |
Fields | |
---|---|
name |
Identifier. The unique name of the plugin instance resource. Format: |
displayName |
Required. The display name for this plugin instance. Max length is 255 characters. |
authConfig |
Optional. The authentication information for this plugin instance. |
additionalConfig |
Optional. The additional information for this plugin instance corresponding to the additional config template of the plugin. This information will be sent to plugin hosting service on each call to plugin hosted service. The key will be the config_variable_template.display_name to uniquely identify the config variable. An object containing a list of |
state |
Output only. The current state of the plugin instance (e.g., enabled, disabled, provisioning). |
errorMessage |
Output only. Error message describing the failure, if any, during Create, Delete or ApplyConfig operation corresponding to the plugin instance.This field will only be populated if the plugin instance is in the ERROR or FAILED state. |
actions[] |
Required. The action status for the plugin instance. |
createTime |
Output only. Timestamp indicating when the plugin instance was created. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
updateTime |
Output only. Timestamp indicating when the plugin instance was last updated. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
AuthConfig
AuthConfig represents the authentication information.
JSON representation |
---|
{ "authType": enum ( |
Fields | |
---|---|
authType |
Required. The authentication type. |
Union field config . Supported auth types. config can be only one of the following: |
|
googleServiceAccountConfig |
Google Service Account. |
userPasswordConfig |
User Password. |
apiKeyConfig |
Api Key Config. |
oauth2ClientCredentialsConfig |
Oauth2.0 Client Credentials. |
UserPasswordConfig
Parameters to support Username and Password Authentication.
JSON representation |
---|
{
"username": string,
"password": {
object ( |
Fields | |
---|---|
username |
Required. Username. |
password |
Required. Secret version reference containing the password. The |
Secret
Secret provides a reference to entries in Secret Manager.
JSON representation |
---|
{ "secretVersion": string } |
Fields | |
---|---|
secretVersion |
Required. The resource name of the secret version in the format, format as: |
ApiKeyConfig
Config for authentication with API key.
JSON representation |
---|
{ "name": string, "apiKey": { object ( |
Fields | |
---|---|
name |
Required. The parameter name of the API key. E.g. If the API request is "https://example.com/act?apiKey= |
apiKey |
Required. The name of the SecretManager secret version resource storing the API key. Format: |
httpElementLocation |
Required. The location of the API key. The default value is QUERY. |
HttpElementLocation
Enum of location an HTTP element can be.
Enums | |
---|---|
HTTP_ELEMENT_LOCATION_UNSPECIFIED |
HTTP element location not specified. |
QUERY |
Element is in the HTTP request query. |
HEADER |
Element is in the HTTP request header. |
PATH |
Element is in the HTTP request path. |
BODY |
Element is in the HTTP request body. |
COOKIE |
Element is in the HTTP request cookie. |
Oauth2ClientCredentialsConfig
Parameters to support Oauth 2.0 client credentials grant authentication. See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
JSON representation |
---|
{
"clientId": string,
"clientSecret": {
object ( |
Fields | |
---|---|
clientId |
Required. The client identifier. |
clientSecret |
Required. Secret version reference containing the client secret. The |
ConfigVariable
ConfigVariable represents a additional configuration variable present in a PluginInstance Config or AuthConfig, based on a ConfigVariableTemplate.
JSON representation |
---|
{ "key": string, // Union field |
Fields | |
---|---|
key |
Output only. Key will be the |
Union field value . The values associated with the config variable. value can be only one of the following: |
|
stringValue |
Optional. The config variable value in case of config variable of type string. |
intValue |
Optional. The config variable value in case of config variable of type integer. |
boolValue |
Optional. The config variable value in case of config variable of type boolean. |
secretValue |
Optional. The config variable value in case of config variable of type secret. |
enumValue |
Optional. The config variable value in case of config variable of type enum. |
multiSelectValues |
Optional. The config variable value in case of config variable of type multi select. |
multiStringValues |
Optional. The config variable value in case of config variable of type multi string. |
multiIntValues |
Optional. The config variable value in case of config variable of type multi integer. |
MultiSelectValues
The config variable value of data type multi select.
JSON representation |
---|
{
"values": [
{
object ( |
Fields | |
---|---|
values[] |
Optional. The config variable value of data type multi select. |
MultiStringValues
The config variable value of data type multi string.
JSON representation |
---|
{ "values": [ string ] } |
Fields | |
---|---|
values[] |
Optional. The config variable value of data type multi string. |
MultiIntValues
The config variable value of data type multi int.
JSON representation |
---|
{ "values": [ integer ] } |
Fields | |
---|---|
values[] |
Optional. The config variable value of data type multi int. |
State
State represents the state of the plugin instance.
Enums | |
---|---|
STATE_UNSPECIFIED |
Default unspecified state. |
CREATING |
The plugin instance is being created. |
ACTIVE |
The plugin instance is active and ready for executions. This is the only state where executions can run on the plugin instance. |
APPLYING_CONFIG |
The updated config that contains additionalConfig and authConfig is being applied. |
ERROR |
The ERROR state can come while applying config. Users can retrigger instances.applyConfig to restore the plugin instance back to active state. Note, In case the ERROR state happens while applying config (authConfig, additionalConfig), the plugin instance will reflect the config which was trying to be applied while error happened. In order to overwrite, trigger ApplyConfig with a new config. |
FAILED |
The plugin instance is in a failed state. This indicates that an unrecoverable error occurred during a previous operation (Create, Delete). |
DELETING |
The plugin instance is being deleted. Delete is only possible if there is no other operation running on the plugin instance and plugin instance action. |
PluginInstanceAction
PluginInstanceAction represents an action which can be executed in the plugin instance.
JSON representation |
---|
{ "actionId": string, "state": enum ( |
Fields | |
---|---|
actionId |
Required. This should map to one of the |
state |
Output only. The current state of the plugin action in the plugin instance. |
scheduleCronExpression |
Optional. The schedule for this plugin instance action. This can only be set if the plugin supports API_HUB_SCHEDULE_TRIGGER mode for this action. |
curationConfig |
Optional. This configuration should be provided if the plugin action is publishing data to API hub curate layer. |
scheduleTimeZone |
Optional. The time zone for the schedule cron expression. If not provided, UTC will be used. |
Union field action_status . The status of the plugin action. action_status can be only one of the following: |
|
hubInstanceAction |
Optional. The execution information for the plugin instance action done corresponding to an API hub instance. |
ExecutionStatus
The execution status for the plugin instance.
JSON representation |
---|
{ "currentExecutionState": enum ( |
Fields | |
---|---|
currentExecutionState |
Output only. The current state of the execution. |
lastExecution |
Output only. The last execution of the plugin instance. |
CurrentExecutionState
Enum for the current state of the execution.
Enums | |
---|---|
CURRENT_EXECUTION_STATE_UNSPECIFIED |
Default unspecified execution state. |
RUNNING |
The plugin instance is executing. |
NOT_RUNNING |
The plugin instance is not running an execution. |
LastExecution
The result of the last execution of the plugin instance.
JSON representation |
---|
{
"result": enum ( |
Fields | |
---|---|
result |
Output only. The result of the last execution of the plugin instance. |
errorMessage |
Output only. Error message describing the failure, if any, during the last execution. |
startTime |
Output only. The last execution start time of the plugin instance. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
endTime |
Output only. The last execution end time of the plugin instance. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
Result
Enum for the result of the last execution of the plugin instance.
Enums | |
---|---|
RESULT_UNSPECIFIED |
Default unspecified execution result. |
SUCCEEDED |
The plugin instance executed successfully. |
FAILED |
The plugin instance execution failed. |
State
State represents the state of the plugin instance action.
Enums | |
---|---|
STATE_UNSPECIFIED |
Default unspecified state. |
ENABLED |
The action is enabled in the plugin instance i.e., executions can be triggered for this action. |
DISABLED |
The action is disabled in the plugin instance i.e., no executions can be triggered for this action. This state indicates that the user explicitly disabled the instance, and no further action is needed unless the user wants to re-enable it. |
ENABLING |
The action in the plugin instance is being enabled. |
DISABLING |
The action in the plugin instance is being disabled. |
ERROR |
The ERROR state can come while enabling/disabling plugin instance action. Users can retrigger enable, disable via instances.enableAction and instances.disableAction to restore the action back to enabled/disabled state. Note enable/disable on actions can only be triggered if plugin instance is in Active state. |
CurationConfig
The curation information for this plugin instance.
JSON representation |
---|
{ "curationType": enum ( |
Fields | |
---|---|
curationType |
Required. The curation type for this plugin instance. |
Union field curation_config . The curation information for this plugin instance. curation_config can be only one of the following: |
|
customCuration |
Optional. Custom curation information for this plugin instance. |
CustomCuration
Custom curation information for this plugin instance.
JSON representation |
---|
{ "curation": string } |
Fields | |
---|---|
curation |
Required. The unique name of the curation resource. This will be the name of the curation resource in the format: |
CurationType
Enum for the curation type.
Enums | |
---|---|
CURATION_TYPE_UNSPECIFIED |
Default unspecified curation type. |
DEFAULT_CURATION_FOR_API_METADATA |
Default curation for API metadata will be used. |
CUSTOM_CURATION_FOR_API_METADATA |
Custom curation for API metadata will be used. |
Methods |
|
---|---|
|
Creates a Plugin instance in the API hub. |
|
Deletes a plugin instance in the API hub. |
|
Disables a plugin instance in the API hub. |
|
Enables a plugin instance in the API hub. |
|
Executes a plugin instance in the API hub. |
|
Get an API hub plugin instance. |
|
List all the plugins in a given project and location. |