{
  "version": "v1",
  "protocol": "rest",
  "schemas": {
    "GoogleCloudApihubV1HostingService": {
      "id": "GoogleCloudApihubV1HostingService",
      "description": "The information related to the service implemented by the plugin developer, used to invoke the plugin's functionality.",
      "type": "object",
      "properties": {
        "serviceUri": {
          "description": "Optional. The URI of the service implemented by the plugin developer, used to invoke the plugin's functionality. This information is only required for user defined plugins.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1ConfigVariableTemplate": {
      "id": "GoogleCloudApihubV1ConfigVariableTemplate",
      "description": "ConfigVariableTemplate represents a configuration variable template present in a Plugin Config.",
      "type": "object",
      "properties": {
        "valueType": {
          "enumDescriptions": [
            "Value type is not specified.",
            "Value type is string.",
            "Value type is integer.",
            "Value type is boolean.",
            "Value type is secret.",
            "Value type is enum.",
            "Value type is multi select.",
            "Value type is multi string.",
            "Value type is multi int."
          ],
          "enum": [
            "VALUE_TYPE_UNSPECIFIED",
            "STRING",
            "INT",
            "BOOL",
            "SECRET",
            "ENUM",
            "MULTI_SELECT",
            "MULTI_STRING",
            "MULTI_INT"
          ],
          "type": "string",
          "description": "Required. Type of the parameter: string, int, bool etc."
        },
        "validationRegex": {
          "type": "string",
          "description": "Optional. Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`."
        },
        "description": {
          "type": "string",
          "description": "Optional. Description."
        },
        "enumOptions": {
          "type": "array",
          "description": "Optional. Enum options. To be populated if `ValueType` is `ENUM`.",
          "items": {
            "$ref": "GoogleCloudApihubV1ConfigValueOption"
          }
        },
        "multiSelectOptions": {
          "type": "array",
          "description": "Optional. Multi select options. To be populated if `ValueType` is `MULTI_SELECT`.",
          "items": {
            "$ref": "GoogleCloudApihubV1ConfigValueOption"
          }
        },
        "required": {
          "type": "boolean",
          "description": "Optional. Flag represents that this `ConfigVariable` must be provided for a PluginInstance."
        },
        "id": {
          "description": "Required. ID of the config variable. Must be unique within the configuration.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1ConfigVariable": {
      "properties": {
        "key": {
          "type": "string",
          "description": "Output only. Key will be the id to uniquely identify the config variable.",
          "readOnly": true
        },
        "secretValue": {
          "description": "Optional. The config variable value in case of config variable of type secret.",
          "$ref": "GoogleCloudApihubV1Secret"
        },
        "enumValue": {
          "description": "Optional. The config variable value in case of config variable of type enum.",
          "$ref": "GoogleCloudApihubV1ConfigValueOption"
        },
        "stringValue": {
          "type": "string",
          "description": "Optional. The config variable value in case of config variable of type string."
        },
        "multiSelectValues": {
          "description": "Optional. The config variable value in case of config variable of type multi select.",
          "$ref": "GoogleCloudApihubV1MultiSelectValues"
        },
        "multiStringValues": {
          "description": "Optional. The config variable value in case of config variable of type multi string.",
          "$ref": "GoogleCloudApihubV1MultiStringValues"
        },
        "intValue": {
          "description": "Optional. The config variable value in case of config variable of type integer.",
          "type": "string",
          "format": "int64"
        },
        "boolValue": {
          "description": "Optional. The config variable value in case of config variable of type boolean.",
          "type": "boolean"
        },
        "multiIntValues": {
          "description": "Optional. The config variable value in case of config variable of type multi integer.",
          "$ref": "GoogleCloudApihubV1MultiIntValues"
        }
      },
      "id": "GoogleCloudApihubV1ConfigVariable",
      "description": "ConfigVariable represents a additional configuration variable present in a PluginInstance Config or AuthConfig, based on a ConfigVariableTemplate.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListPluginsResponse": {
      "properties": {
        "plugins": {
          "type": "array",
          "description": "The plugins from the specified parent resource.",
          "items": {
            "$ref": "GoogleCloudApihubV1Plugin"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        }
      },
      "id": "GoogleCloudApihubV1ListPluginsResponse",
      "description": "The ListPlugins method's response.",
      "type": "object"
    },
    "GoogleCloudLocationLocation": {
      "type": "object",
      "id": "GoogleCloudLocationLocation",
      "description": "A resource that represents a Google Cloud location.",
      "properties": {
        "name": {
          "type": "string",
          "description": "Resource name for the location, which may vary between implementations. For example: `\"projects/example-project/locations/us-east1\"`"
        },
        "metadata": {
          "additionalProperties": {
            "type": "any",
            "description": "Properties of the object. Contains field @type with type URL."
          },
          "description": "Service-specific metadata. For example the available capacity at the given location.",
          "type": "object"
        },
        "locationId": {
          "description": "The canonical id for this location. For example: `\"us-east1\"`.",
          "type": "string"
        },
        "displayName": {
          "type": "string",
          "description": "The friendly name for this location, typically a nearby city name. For example, \"Tokyo\"."
        },
        "labels": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object",
          "description": "Cross-service attributes for the location. For example {\"cloud.googleapis.com/region\": \"us-east1\"}"
        }
      }
    },
    "GoogleCloudApihubV1ListAddonsResponse": {
      "id": "GoogleCloudApihubV1ListAddonsResponse",
      "description": "The ListAddons method's response.",
      "type": "object",
      "properties": {
        "addons": {
          "description": "The list of addons.",
          "items": {
            "$ref": "GoogleCloudApihubV1Addon"
          },
          "type": "array"
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve the next page of results, or empty if there are no more results in the list."
        }
      }
    },
    "GoogleCloudApihubV1ListSpecsResponse": {
      "properties": {
        "specs": {
          "description": "The specs corresponding to an API Version.",
          "items": {
            "$ref": "GoogleCloudApihubV1Spec"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ListSpecsResponse",
      "description": "The ListSpecs method's response."
    },
    "GoogleCloudApihubV1Range": {
      "type": "object",
      "id": "GoogleCloudApihubV1Range",
      "description": "Object describing where in the file the issue was found.",
      "properties": {
        "end": {
          "$ref": "GoogleCloudApihubV1Point",
          "description": "Required. End of the issue."
        },
        "start": {
          "$ref": "GoogleCloudApihubV1Point",
          "description": "Required. Start of the issue."
        }
      }
    },
    "GoogleCloudApihubV1PluginInstanceActionID": {
      "id": "GoogleCloudApihubV1PluginInstanceActionID",
      "description": "The plugin instance and associated action that is using the curation.",
      "type": "object",
      "properties": {
        "pluginInstance": {
          "type": "string",
          "description": "Output only. Plugin instance that is using the curation. Format is `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
          "readOnly": true
        },
        "actionId": {
          "type": "string",
          "description": "Output only. The action ID that is using the curation. This should map to one of the action IDs specified in action configs in the plugin.",
          "readOnly": true
        }
      }
    },
    "GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView": {
      "properties": {
        "api": {
          "$ref": "GoogleCloudApihubV1Api",
          "description": "Optional. The API."
        },
        "version": {
          "$ref": "GoogleCloudApihubV1Version",
          "description": "Optional. The version."
        },
        "apiOperation": {
          "$ref": "GoogleCloudApihubV1ApiOperation",
          "description": "Optional. The API operation."
        },
        "deployment": {
          "description": "Optional. The deployment.",
          "$ref": "GoogleCloudApihubV1Deployment"
        }
      },
      "id": "GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView",
      "description": "A flattened view of an API, its version, one of its operations and one of the linked deployments. If there are no deployments linked to the operation then the result will be empty.",
      "type": "object"
    },
    "GoogleCloudApihubV1SpecContents": {
      "properties": {
        "contents": {
          "description": "Required. The contents of the spec.",
          "type": "string",
          "format": "byte"
        },
        "mimeType": {
          "description": "Required. The mime type of the content for example application/json, application/yaml, application/wsdl etc.",
          "type": "string"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1SpecContents",
      "description": "The spec contents."
    },
    "GoogleCloudApihubV1ApigeeOPDKConfig": {
      "properties": {
        "environmentFilter": {
          "$ref": "GoogleCloudApihubV1EnvironmentFilter",
          "description": "Optional. The filter to apply on the resources managed by the gateway plugin instance. If provided this filter applies environment specific filtering."
        }
      },
      "id": "GoogleCloudApihubV1ApigeeOPDKConfig",
      "description": "Configuration for Apigee OPDK gateways. Applicability of a filter is determined by the filter being provided. If none of the filters are provided the addon will be enabled for all data brought in by the gateway plugin instance.",
      "type": "object"
    },
    "GoogleCloudApihubV1Dependency": {
      "type": "object",
      "id": "GoogleCloudApihubV1Dependency",
      "description": "A dependency resource defined in the API hub describes a dependency directed from a consumer to a supplier entity. A dependency can be defined between two Operations or between an Operation and External API.",
      "properties": {
        "errorDetail": {
          "$ref": "GoogleCloudApihubV1DependencyErrorDetail",
          "description": "Output only. Error details of a dependency if the system has detected it internally.",
          "readOnly": true
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the dependency was last updated.",
          "readOnly": true
        },
        "description": {
          "type": "string",
          "description": "Optional. Human readable description corresponding of the dependency."
        },
        "supplier": {
          "description": "Required. Immutable. The entity acting as the supplier in the dependency.",
          "$ref": "GoogleCloudApihubV1DependencyEntityReference"
        },
        "createTime": {
          "description": "Output only. The time at which the dependency was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the dependency in the API Hub. Format: `projects/{project}/locations/{location}/dependencies/{dependency}`"
        },
        "consumer": {
          "$ref": "GoogleCloudApihubV1DependencyEntityReference",
          "description": "Required. Immutable. The entity acting as the consumer in the dependency."
        },
        "discoveryMode": {
          "description": "Output only. Discovery mode of the dependency.",
          "readOnly": true,
          "enumDescriptions": [
            "Default value. This value is unused.",
            "Manual mode of discovery when the dependency is defined by the user."
          ],
          "enum": [
            "DISCOVERY_MODE_UNSPECIFIED",
            "MANUAL"
          ],
          "type": "string"
        },
        "state": {
          "type": "string",
          "description": "Output only. State of the dependency.",
          "readOnly": true,
          "enumDescriptions": [
            "Default value. This value is unused.",
            "Dependency will be in a proposed state when it is newly identified by the API hub on its own.",
            "Dependency will be in a validated state when it is validated by the admin or manually created in the API hub."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "PROPOSED",
            "VALIDATED"
          ]
        },
        "attributes": {
          "description": "Optional. The list of user defined attributes associated with the dependency resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "type": "object",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          }
        }
      }
    },
    "GoogleCloudApihubV1RetrieveApiViewsResponse": {
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "Next page token."
        },
        "apiViews": {
          "description": "Output only. The list of API views.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1ApiView"
          },
          "type": "array"
        }
      },
      "id": "GoogleCloudApihubV1RetrieveApiViewsResponse",
      "description": "The RetrieveApiViews method's response.",
      "type": "object"
    },
    "GoogleCloudApihubV1AuthConfig": {
      "type": "object",
      "id": "GoogleCloudApihubV1AuthConfig",
      "description": "AuthConfig represents the authentication information.",
      "properties": {
        "oauth2ClientCredentialsConfig": {
          "$ref": "GoogleCloudApihubV1Oauth2ClientCredentialsConfig",
          "description": "Oauth2.0 Client Credentials."
        },
        "googleServiceAccountConfig": {
          "$ref": "GoogleCloudApihubV1GoogleServiceAccountConfig",
          "description": "Google Service Account."
        },
        "userPasswordConfig": {
          "description": "User Password.",
          "$ref": "GoogleCloudApihubV1UserPasswordConfig"
        },
        "apiKeyConfig": {
          "description": "Api Key Config.",
          "$ref": "GoogleCloudApihubV1ApiKeyConfig"
        },
        "authType": {
          "description": "Required. The authentication type.",
          "type": "string",
          "enumDescriptions": [
            "Authentication type not specified.",
            "No authentication.",
            "Google service account authentication.",
            "Username and password authentication.",
            "API Key authentication.",
            "Oauth 2.0 client credentials grant authentication."
          ],
          "enum": [
            "AUTH_TYPE_UNSPECIFIED",
            "NO_AUTH",
            "GOOGLE_SERVICE_ACCOUNT",
            "USER_PASSWORD",
            "API_KEY",
            "OAUTH2_CLIENT_CREDENTIALS"
          ]
        }
      }
    },
    "GoogleCloudApihubV1CollectApiDataRequest": {
      "id": "GoogleCloudApihubV1CollectApiDataRequest",
      "description": "The CollectApiData method's request.",
      "type": "object",
      "properties": {
        "pluginInstance": {
          "description": "Required. The plugin instance collecting the API data. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`.",
          "type": "string"
        },
        "collectionType": {
          "type": "string",
          "description": "Required. The type of collection. Applies to all entries in api_data.",
          "enumDescriptions": [
            "The default value. This value is used if the collection type is omitted.",
            "The collection type is upsert. This should be used when an API is created or updated at the source.",
            "The collection type is delete. This should be used when an API is deleted at the source."
          ],
          "enum": [
            "COLLECTION_TYPE_UNSPECIFIED",
            "COLLECTION_TYPE_UPSERT",
            "COLLECTION_TYPE_DELETE"
          ]
        },
        "actionId": {
          "type": "string",
          "description": "Required. The action ID to be used for collecting the API data. This should map to one of the action IDs specified in action configs in the plugin."
        },
        "apiData": {
          "description": "Required. The API data to be collected.",
          "$ref": "GoogleCloudApihubV1ApiData"
        }
      }
    },
    "GoogleCloudApihubV1APIMetadata": {
      "properties": {
        "originalCreateTime": {
          "description": "Optional. Timestamp indicating when the API was created at the source.",
          "type": "string",
          "format": "google-datetime"
        },
        "originalId": {
          "description": "Optional. The unique identifier of the API in the system where it was originally created.",
          "type": "string"
        },
        "api": {
          "description": "Required. The API resource to be pushed to Hub's collect layer. The ID of the API resource will be generated by Hub to ensure uniqueness across all APIs across systems.",
          "$ref": "GoogleCloudApihubV1Api"
        },
        "versions": {
          "type": "array",
          "description": "Optional. The list of versions present in an API resource.",
          "items": {
            "$ref": "GoogleCloudApihubV1VersionMetadata"
          }
        },
        "originalUpdateTime": {
          "description": "Required. Timestamp indicating when the API was last updated at the source.",
          "type": "string",
          "format": "google-datetime"
        }
      },
      "id": "GoogleCloudApihubV1APIMetadata",
      "description": "The API metadata.",
      "type": "object"
    },
    "GoogleCloudApihubV1Spec": {
      "properties": {
        "details": {
          "description": "Output only. Details parsed from the spec.",
          "readOnly": true,
          "$ref": "GoogleCloudApihubV1SpecDetails"
        },
        "documentation": {
          "description": "Optional. The documentation of the spec. For OpenAPI spec, this will be populated from `externalDocs` in OpenAPI spec.",
          "$ref": "GoogleCloudApihubV1Documentation"
        },
        "parsingMode": {
          "enumDescriptions": [
            "Defaults to `RELAXED`.",
            "Parsing of the Spec on create and update is relaxed, meaning that parsing errors the spec contents will not fail the API call.",
            "Parsing of the Spec on create and update is strict, meaning that parsing errors in the spec contents will fail the API call."
          ],
          "enum": [
            "PARSING_MODE_UNSPECIFIED",
            "RELAXED",
            "STRICT"
          ],
          "description": "Optional. Input only. Enum specifying the parsing mode for OpenAPI Specification (OAS) parsing.",
          "type": "string"
        },
        "sourceUri": {
          "description": "Optional. The URI of the spec source in case file is uploaded from an external version control system.",
          "type": "string"
        },
        "sourceMetadata": {
          "type": "array",
          "description": "Output only. The list of sources and metadata from the sources of the spec.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1SourceMetadata"
          }
        },
        "lintResponse": {
          "description": "Optional. The lint response for the spec.",
          "$ref": "GoogleCloudApihubV1LintResponse"
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the spec was last updated.",
          "readOnly": true
        },
        "additionalSpecContents": {
          "description": "Output only. The additional spec contents for the spec.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1AdditionalSpecContent"
          },
          "type": "array"
        },
        "displayName": {
          "description": "Required. The display name of the spec. This can contain the file name of the spec.",
          "type": "string"
        },
        "name": {
          "description": "Identifier. The name of the spec. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
          "type": "string"
        },
        "createTime": {
          "description": "Output only. The time at which the spec was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "attributes": {
          "type": "object",
          "description": "Optional. The list of user defined attributes associated with the spec. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          }
        },
        "specType": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Required. The type of spec. The value should be one of the allowed values defined for `projects/{project}/locations/{location}/attributes/system-spec-type` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. Note, this field is mandatory if content is provided."
        },
        "contents": {
          "$ref": "GoogleCloudApihubV1SpecContents",
          "description": "Optional. Input only. The contents of the uploaded spec."
        }
      },
      "id": "GoogleCloudApihubV1Spec",
      "description": "Represents a spec associated with an API version in the API Hub. Note that specs of various types can be uploaded, however parsing of details is supported for OpenAPI spec currently.",
      "type": "object"
    },
    "GoogleCloudApihubV1QueryParam": {
      "properties": {
        "count": {
          "type": "string",
          "format": "int64",
          "description": "Optional. The number of occurrences of this query parameter across transactions."
        },
        "dataType": {
          "description": "Optional. Data type of path param",
          "type": "string",
          "enumDescriptions": [
            "Unspecified data type",
            "Boolean data type",
            "Integer data type",
            "Float data type",
            "String data type",
            "UUID data type"
          ],
          "enum": [
            "DATA_TYPE_UNSPECIFIED",
            "BOOL",
            "INTEGER",
            "FLOAT",
            "STRING",
            "UUID"
          ]
        },
        "name": {
          "description": "Required. Name of query param",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1QueryParam",
      "description": "An aggregation of HTTP query parameter occurrences.",
      "type": "object"
    },
    "GoogleCloudApihubV1Endpoint": {
      "id": "GoogleCloudApihubV1Endpoint",
      "description": "The endpoint to be triggered for curation. The endpoint will be invoked with a request payload containing ApiMetadata. Response should contain curated data in the form of ApiMetadata.",
      "type": "object",
      "properties": {
        "applicationIntegrationEndpointDetails": {
          "$ref": "GoogleCloudApihubV1ApplicationIntegrationEndpointDetails",
          "description": "Required. The details of the Application Integration endpoint to be triggered for curation."
        }
      }
    },
    "GoogleCloudApihubV1Curation": {
      "id": "GoogleCloudApihubV1Curation",
      "description": "A curation resource in the API Hub.",
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Identifier. The name of the curation. Format: `projects/{project}/locations/{location}/curations/{curation}`"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the curation was created.",
          "readOnly": true
        },
        "description": {
          "description": "Optional. The description of the curation.",
          "type": "string"
        },
        "lastExecutionErrorCode": {
          "description": "Output only. The error code of the last execution of the curation. The error code is populated only when the last execution state is failed.",
          "readOnly": true,
          "enumDescriptions": [
            "Default unspecified error code.",
            "The execution failed due to an internal error.",
            "The curation is not authorized to trigger the endpoint uri."
          ],
          "enum": [
            "ERROR_CODE_UNSPECIFIED",
            "INTERNAL_ERROR",
            "UNAUTHORIZED"
          ],
          "type": "string"
        },
        "lastExecutionErrorMessage": {
          "type": "string",
          "description": "Output only. Error message describing the failure, if any, during the last execution of the curation.",
          "readOnly": true
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the curation was last updated.",
          "readOnly": true
        },
        "endpoint": {
          "description": "Required. The endpoint to be triggered for curation.",
          "$ref": "GoogleCloudApihubV1Endpoint"
        },
        "lastExecutionState": {
          "type": "string",
          "enumDescriptions": [
            "Default unspecified state.",
            "The last curation execution was successful.",
            "The last curation execution failed."
          ],
          "enum": [
            "LAST_EXECUTION_STATE_UNSPECIFIED",
            "SUCCEEDED",
            "FAILED"
          ],
          "description": "Output only. The last execution state of the curation.",
          "readOnly": true
        },
        "pluginInstanceActions": {
          "description": "Output only. The plugin instances and associated actions that are using the curation. Note: A particular curation could be used by multiple plugin instances or multiple actions in a plugin instance.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1PluginInstanceActionID"
          },
          "type": "array"
        },
        "displayName": {
          "type": "string",
          "description": "Required. The display name of the curation."
        }
      }
    },
    "GoogleCloudApihubV1ApiKeyConfig": {
      "properties": {
        "apiKey": {
          "description": "Required. The name of the SecretManager secret version resource storing the API key. Format: `projects/{project}/secrets/{secrete}/versions/{version}`. The `secretmanager.versions.access` permission should be granted to the service account accessing the secret.",
          "$ref": "GoogleCloudApihubV1Secret"
        },
        "name": {
          "description": "Required. The parameter name of the API key. E.g. If the API request is \"https://example.com/act?api_key=\", \"api_key\" would be the parameter name.",
          "type": "string"
        },
        "httpElementLocation": {
          "enumDescriptions": [
            "HTTP element location not specified.",
            "Element is in the HTTP request query.",
            "Element is in the HTTP request header.",
            "Element is in the HTTP request path.",
            "Element is in the HTTP request body.",
            "Element is in the HTTP request cookie."
          ],
          "enum": [
            "HTTP_ELEMENT_LOCATION_UNSPECIFIED",
            "QUERY",
            "HEADER",
            "PATH",
            "BODY",
            "COOKIE"
          ],
          "description": "Required. The location of the API key. The default value is QUERY.",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1ApiKeyConfig",
      "description": "Config for authentication with API key.",
      "type": "object"
    },
    "GoogleLongrunningListOperationsResponse": {
      "id": "GoogleLongrunningListOperationsResponse",
      "description": "The response message for Operations.ListOperations.",
      "type": "object",
      "properties": {
        "operations": {
          "type": "array",
          "description": "A list of operations that matches the specified filter in the request.",
          "items": {
            "$ref": "GoogleLongrunningOperation"
          }
        },
        "unreachable": {
          "description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.",
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "The standard List next-page token.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1AllowedValue": {
      "properties": {
        "id": {
          "type": "string",
          "description": "Required. The ID of the allowed value. * If provided, the same will be used. The service will throw an error if the specified id is already used by another allowed value in the same attribute resource. * If not provided, a system generated id derived from the display name will be used. In this case, the service will handle conflict resolution by adding a system generated suffix in case of duplicates. This value should be 4-63 characters, and valid characters are /a-z-/."
        },
        "description": {
          "type": "string",
          "description": "Optional. The detailed description of the allowed value."
        },
        "displayName": {
          "description": "Required. The display name of the allowed value.",
          "type": "string"
        },
        "immutable": {
          "description": "Optional. When set to true, the allowed value cannot be updated or deleted by the user. It can only be true for System defined attributes.",
          "type": "boolean"
        }
      },
      "id": "GoogleCloudApihubV1AllowedValue",
      "description": "The value that can be assigned to the attribute when the data type is enum.",
      "type": "object"
    },
    "GoogleCloudApihubV1Oauth2ClientCredentialsConfig": {
      "type": "object",
      "id": "GoogleCloudApihubV1Oauth2ClientCredentialsConfig",
      "description": "Parameters to support Oauth 2.0 client credentials grant authentication. See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.",
      "properties": {
        "clientId": {
          "type": "string",
          "description": "Required. The client identifier."
        },
        "clientSecret": {
          "description": "Required. Secret version reference containing the client secret. The `secretmanager.versions.access` permission should be granted to the service account accessing the secret.",
          "$ref": "GoogleCloudApihubV1Secret"
        }
      }
    },
    "GoogleCloudApihubV1SpecDetails": {
      "type": "object",
      "id": "GoogleCloudApihubV1SpecDetails",
      "description": "SpecDetails contains the details parsed from supported spec types.",
      "properties": {
        "openApiSpecDetails": {
          "description": "Output only. Additional details apart from `OperationDetails` parsed from an OpenAPI spec. The OperationDetails parsed from the spec can be obtained by using ListAPIOperations method.",
          "readOnly": true,
          "$ref": "GoogleCloudApihubV1OpenApiSpecDetails"
        },
        "description": {
          "type": "string",
          "description": "Output only. The description of the spec.",
          "readOnly": true
        }
      }
    },
    "GoogleCloudApihubV1Plugin": {
      "type": "object",
      "id": "GoogleCloudApihubV1Plugin",
      "description": "A plugin resource in the API Hub.",
      "properties": {
        "state": {
          "type": "string",
          "description": "Output only. Represents the state of the plugin. Note this field will not be set for plugins developed via plugin framework as the state will be managed at plugin instance level.",
          "readOnly": true,
          "enumDescriptions": [
            "The default value. This value is used if the state is omitted.",
            "The plugin is enabled.",
            "The plugin is disabled."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "ENABLED",
            "DISABLED"
          ]
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the plugin. Format: `projects/{project}/locations/{location}/plugins/{plugin}`"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Timestamp indicating when the plugin was created.",
          "readOnly": true
        },
        "type": {
          "description": "Optional. The type of the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-plugin-type` attribute. The number of allowed values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute. Note this field is not required for plugins developed via plugin framework.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "ownershipType": {
          "enumDescriptions": [
            "Default unspecified type.",
            "System owned plugins are defined by API hub and are available out of the box in API hub.",
            "User owned plugins are defined by the user and need to be explicitly added to API hub via CreatePlugin method."
          ],
          "enum": [
            "OWNERSHIP_TYPE_UNSPECIFIED",
            "SYSTEM_OWNED",
            "USER_OWNED"
          ],
          "description": "Output only. The type of the plugin, indicating whether it is 'SYSTEM_OWNED' or 'USER_OWNED'.",
          "readOnly": true,
          "type": "string"
        },
        "displayName": {
          "description": "Required. The display name of the plugin. Max length is 50 characters (Unicode code points).",
          "type": "string"
        },
        "description": {
          "type": "string",
          "description": "Optional. The plugin description. Max length is 2000 characters (Unicode code points)."
        },
        "pluginCategory": {
          "enumDescriptions": [
            "Default unspecified plugin type.",
            "API_GATEWAY plugins represent plugins built for API Gateways like Apigee.",
            "API_PRODUCER plugins represent plugins built for API Producers like Cloud Run, Application Integration etc."
          ],
          "enum": [
            "PLUGIN_CATEGORY_UNSPECIFIED",
            "API_GATEWAY",
            "API_PRODUCER"
          ],
          "type": "string",
          "description": "Optional. The category of the plugin, identifying its primary category or purpose. This field is required for all plugins."
        },
        "updateTime": {
          "description": "Output only. Timestamp indicating when the plugin was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "actionsConfig": {
          "description": "Optional. The configuration of actions supported by the plugin. **REQUIRED**: This field must be provided when creating or updating a Plugin. The server will reject requests if this field is missing.",
          "items": {
            "$ref": "GoogleCloudApihubV1PluginActionConfig"
          },
          "type": "array"
        },
        "gatewayType": {
          "enumDescriptions": [
            "The gateway type is not specified.",
            "The gateway type is Apigee X and Hybrid.",
            "The gateway type is Apigee Edge Public Cloud.",
            "The gateway type is Apigee Edge Private Cloud.",
            "The gateway type is Cloud API Gateway.",
            "The gateway type is Cloud Endpoints.",
            "The gateway type is API Discovery.",
            "The gateway type for any other types of gateways."
          ],
          "enum": [
            "GATEWAY_TYPE_UNSPECIFIED",
            "APIGEE_X_AND_HYBRID",
            "APIGEE_EDGE_PUBLIC_CLOUD",
            "APIGEE_EDGE_PRIVATE_CLOUD",
            "CLOUD_API_GATEWAY",
            "CLOUD_ENDPOINTS",
            "API_DISCOVERY",
            "OTHERS"
          ],
          "type": "string",
          "description": "Optional. The type of the gateway."
        },
        "hostingService": {
          "$ref": "GoogleCloudApihubV1HostingService",
          "description": "Optional. This field is optional. It is used to notify the plugin hosting service for any lifecycle changes of the plugin instance and trigger execution of plugin instance actions in case of API hub managed actions. This field should be provided if the plugin instance lifecycle of the developed plugin needs to be managed from API hub. Also, in this case the plugin hosting service interface needs to be implemented. This field should not be provided if the plugin wants to manage plugin instance lifecycle events outside of hub interface and use plugin framework for only registering of plugin and plugin instances to capture the source of data into hub. Note, in this case the plugin hosting service interface is not required to be implemented. Also, the plugin instance lifecycle actions will be disabled from API hub's UI."
        },
        "configTemplate": {
          "description": "Optional. The configuration template for the plugin.",
          "$ref": "GoogleCloudApihubV1ConfigTemplate"
        },
        "documentation": {
          "$ref": "GoogleCloudApihubV1Documentation",
          "description": "Optional. The documentation of the plugin, that explains how to set up and use the plugin."
        }
      }
    },
    "GoogleCloudApihubV1EnvironmentFilter": {
      "properties": {
        "allEnvironments": {
          "type": "boolean",
          "description": "Optional. Indicates if this filter should match all environments or only a subset of environments. If set to true, all environments are matched."
        },
        "environments": {
          "description": "Optional. If provided, only environments in this list are matched. This field is ignored if `all_environments` is true.",
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "id": "GoogleCloudApihubV1EnvironmentFilter",
      "description": "Filter for environments.",
      "type": "object"
    },
    "GoogleCloudApihubV1ApiHubResource": {
      "properties": {
        "api": {
          "$ref": "GoogleCloudApihubV1Api",
          "description": "This represents Api resource in search results. Only name, display_name, description and owner fields are populated in search results."
        },
        "spec": {
          "$ref": "GoogleCloudApihubV1Spec",
          "description": "This represents Spec resource in search results. Only name, display_name, description, spec_type and documentation fields are populated in search results."
        },
        "version": {
          "$ref": "GoogleCloudApihubV1Version",
          "description": "This represents Version resource in search results. Only name, display_name, description, lifecycle, compliance and accreditation fields are populated in search results."
        },
        "deployment": {
          "description": "This represents Deployment resource in search results. Only name, display_name, description, deployment_type and api_versions fields are populated in search results.",
          "$ref": "GoogleCloudApihubV1Deployment"
        },
        "definition": {
          "$ref": "GoogleCloudApihubV1Definition",
          "description": "This represents Definition resource in search results. Only name field is populated in search results."
        },
        "operation": {
          "description": "This represents ApiOperation resource in search results. Only name, description, spec and details fields are populated in search results.",
          "$ref": "GoogleCloudApihubV1ApiOperation"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ApiHubResource",
      "description": "ApiHubResource is one of the resources such as Api, Operation, Deployment, Definition, Spec and Version resources stored in API-Hub."
    },
    "GoogleCloudApihubV1Version": {
      "type": "object",
      "id": "GoogleCloudApihubV1Version",
      "description": "Represents a version of the API resource in API hub. This is also referred to as the API version.",
      "properties": {
        "attributes": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          },
          "description": "Optional. The list of user defined attributes associated with the Version resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "type": "object"
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the version. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`"
        },
        "createTime": {
          "description": "Output only. The time at which the version was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "deployments": {
          "type": "array",
          "description": "Optional. The deployments linked to this API version. Note: A particular API version could be deployed to multiple deployments (for dev deployment, UAT deployment, etc) Format is `projects/{project}/locations/{location}/deployments/{deployment}`",
          "items": {
            "type": "string"
          }
        },
        "specs": {
          "type": "array",
          "description": "Output only. The specs associated with this version. Note that an API version can be associated with multiple specs. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
          "readOnly": true,
          "items": {
            "type": "string"
          }
        },
        "displayName": {
          "type": "string",
          "description": "Required. The display name of the version."
        },
        "apiOperations": {
          "description": "Output only. The operations contained in the API version. These operations will be added to the version when a new spec is added or when an existing spec is updated. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`",
          "readOnly": true,
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "description": {
          "type": "string",
          "description": "Optional. The description of the version."
        },
        "accreditation": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The accreditations associated with the API version. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-accreditation` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the version was last updated.",
          "readOnly": true
        },
        "lifecycle": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The lifecycle of the API version. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-lifecycle` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "sourceMetadata": {
          "description": "Output only. The list of sources and metadata from the sources of the version.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1SourceMetadata"
          },
          "type": "array"
        },
        "selectedDeployment": {
          "description": "Optional. The selected deployment for a Version resource. This can be used when special handling is needed on client side for a particular deployment linked to the version. Format is `projects/{project}/locations/{location}/deployments/{deployment}`",
          "type": "string"
        },
        "definitions": {
          "description": "Output only. The definitions contained in the API version. These definitions will be added to the version when a new spec is added or when an existing spec is updated. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}/definitions/{definition}`",
          "readOnly": true,
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "documentation": {
          "$ref": "GoogleCloudApihubV1Documentation",
          "description": "Optional. The documentation of the version."
        },
        "compliance": {
          "description": "Optional. The compliance associated with the API version. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-compliance` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        }
      }
    },
    "GoogleCloudApihubV1ListApisResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1ListApisResponse",
      "description": "The ListApis method's response.",
      "properties": {
        "apis": {
          "description": "The API resources present in the API hub.",
          "items": {
            "$ref": "GoogleCloudApihubV1Api"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1Schema": {
      "id": "GoogleCloudApihubV1Schema",
      "description": "The schema details derived from the spec. Currently, this entity is supported for OpenAPI spec only. For OpenAPI spec, this maps to the schema defined in the `definitions` section for OpenAPI 2.0 version and in `components.schemas` section for OpenAPI 3.0 and 3.1 version.",
      "type": "object",
      "properties": {
        "displayName": {
          "description": "Output only. The display name of the schema. This will map to the name of the schema in the spec.",
          "readOnly": true,
          "type": "string"
        },
        "rawValue": {
          "description": "Output only. The raw value of the schema definition corresponding to the schema name in the spec.",
          "readOnly": true,
          "type": "string",
          "format": "byte"
        }
      }
    },
    "GoogleCloudApihubV1Issue": {
      "properties": {
        "code": {
          "type": "string",
          "description": "Required. Rule code unique to each rule defined in linter."
        },
        "path": {
          "type": "array",
          "description": "Required. An array of strings indicating the location in the analyzed document where the rule was triggered.",
          "items": {
            "type": "string"
          }
        },
        "message": {
          "description": "Required. Human-readable message describing the issue found by the linter.",
          "type": "string"
        },
        "severity": {
          "type": "string",
          "description": "Required. Severity level of the rule violation.",
          "enumDescriptions": [
            "Severity unspecified.",
            "Severity error.",
            "Severity warning.",
            "Severity info.",
            "Severity hint."
          ],
          "enum": [
            "SEVERITY_UNSPECIFIED",
            "SEVERITY_ERROR",
            "SEVERITY_WARNING",
            "SEVERITY_INFO",
            "SEVERITY_HINT"
          ]
        },
        "range": {
          "description": "Required. Object describing where in the file the issue was found.",
          "$ref": "GoogleCloudApihubV1Range"
        }
      },
      "id": "GoogleCloudApihubV1Issue",
      "description": "Issue contains the details of a single issue found by the linter.",
      "type": "object"
    },
    "GoogleCloudApihubV1ToolAnnotations": {
      "type": "object",
      "id": "GoogleCloudApihubV1ToolAnnotations",
      "description": "Annotations for a Tool.",
      "properties": {
        "idempotentHint": {
          "type": "boolean",
          "description": "Optional. Hint indicating if the tool is idempotent."
        },
        "additionalHints": {
          "additionalProperties": {
            "type": "string"
          },
          "description": "Optional. Additional hints which may help tools and not covered in defaults.",
          "type": "object"
        },
        "destructiveHint": {
          "description": "Optional. Hint indicating if the tool may have destructive side effects.",
          "type": "boolean"
        },
        "readOnlyHint": {
          "type": "boolean",
          "description": "Optional. Hint indicating if the tool is read-only."
        },
        "openWorldHint": {
          "description": "Optional. Hint indicating if the tool interacts with the open world (e.g., internet).",
          "type": "boolean"
        },
        "title": {
          "type": "string",
          "description": "Optional. A human-readable title for the tool (if different from Tool.title)."
        }
      }
    },
    "GoogleCloudApihubV1FetchAdditionalSpecContentResponse": {
      "properties": {
        "additionalSpecContent": {
          "$ref": "GoogleCloudApihubV1AdditionalSpecContent",
          "description": "The additional spec content."
        }
      },
      "id": "GoogleCloudApihubV1FetchAdditionalSpecContentResponse",
      "description": "The FetchAdditionalSpecContent method's response.",
      "type": "object"
    },
    "GoogleCloudApihubV1ExternalApi": {
      "id": "GoogleCloudApihubV1ExternalApi",
      "description": "An external API represents an API being provided by external sources. This can be used to model third-party APIs and can be used to define dependencies.",
      "type": "object",
      "properties": {
        "documentation": {
          "description": "Optional. Documentation of the external API.",
          "$ref": "GoogleCloudApihubV1Documentation"
        },
        "displayName": {
          "description": "Required. Display name of the external API. Max length is 63 characters (Unicode Code Points).",
          "type": "string"
        },
        "description": {
          "type": "string",
          "description": "Optional. Description of the external API. Max length is 2000 characters (Unicode Code Points)."
        },
        "paths": {
          "type": "array",
          "description": "Optional. List of paths served by this API.",
          "items": {
            "type": "string"
          }
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Last update timestamp.",
          "readOnly": true
        },
        "endpoints": {
          "type": "array",
          "description": "Optional. List of endpoints on which this API is accessible.",
          "items": {
            "type": "string"
          }
        },
        "attributes": {
          "type": "object",
          "description": "Optional. The list of user defined attributes associated with the Version resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          }
        },
        "name": {
          "type": "string",
          "description": "Identifier. Format: `projects/{project}/locations/{location}/externalApi/{externalApi}`."
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Creation timestamp.",
          "readOnly": true
        }
      }
    },
    "GoogleCloudApihubV1SourceEnvironment": {
      "properties": {
        "sourceEnvironmentUri": {
          "description": "The location where additional information about source environments can be found. The location should be relative path of the environment manifest with respect to a plugin instance.",
          "type": "string"
        },
        "updateTime": {
          "description": "Optional. The time at which the environment was last updated at the source.",
          "type": "string",
          "format": "google-datetime"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Optional. The time at which the environment was created at the source."
        },
        "sourceEnvironment": {
          "type": "string",
          "description": "Required. The name of the environment at the source. This should map to Deployment."
        }
      },
      "id": "GoogleCloudApihubV1SourceEnvironment",
      "description": "Message representing the source environment details.",
      "type": "object"
    },
    "GoogleCloudApihubV1MultiStringValues": {
      "properties": {
        "values": {
          "description": "Optional. The config variable value of data type multi string.",
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1MultiStringValues",
      "description": "The config variable value of data type multi string."
    },
    "GoogleCloudApihubV1PathParam": {
      "properties": {
        "position": {
          "type": "integer",
          "format": "int32",
          "description": "Optional. Segment location in the path, 1-indexed"
        },
        "dataType": {
          "enumDescriptions": [
            "Unspecified data type",
            "Boolean data type",
            "Integer data type",
            "Float data type",
            "String data type",
            "UUID data type"
          ],
          "enum": [
            "DATA_TYPE_UNSPECIFIED",
            "BOOL",
            "INTEGER",
            "FLOAT",
            "STRING",
            "UUID"
          ],
          "type": "string",
          "description": "Optional. Data type of path param"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1PathParam",
      "description": "HTTP Path parameter."
    },
    "GoogleCloudApihubV1AdditionalSpecContent": {
      "type": "object",
      "id": "GoogleCloudApihubV1AdditionalSpecContent",
      "description": "The additional spec content for the spec. This contains the metadata and the last update time for the additional spec content.",
      "properties": {
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the spec content was last updated.",
          "readOnly": true
        },
        "createTime": {
          "description": "Output only. The time at which the spec content was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "specContents": {
          "$ref": "GoogleCloudApihubV1SpecContents",
          "description": "Optional. The additional spec contents."
        },
        "labels": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object",
          "description": "Optional. The labels of the spec content e.g. specboost addon version."
        },
        "specContentType": {
          "type": "string",
          "description": "Required. The type of the spec content.",
          "enumDescriptions": [
            "Unspecified spec content type. Defaults to spec content uploaded by the user.",
            "The spec content type for boosted spec.",
            "The spec content type for OpenAPI spec. This enum is used for OpenAPI specs ingested via APIGEE X Gateway."
          ],
          "enum": [
            "SPEC_CONTENT_TYPE_UNSPECIFIED",
            "BOOSTED_SPEC_CONTENT",
            "GATEWAY_OPEN_API_SPEC"
          ]
        }
      }
    },
    "Empty": {
      "type": "object",
      "id": "Empty",
      "description": "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); }",
      "properties": {}
    },
    "GoogleCloudApihubV1OperationMetadata": {
      "id": "GoogleCloudApihubV1OperationMetadata",
      "description": "Represents the metadata of the long-running operation.",
      "type": "object",
      "properties": {
        "requestedCancellation": {
          "type": "boolean",
          "description": "Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.",
          "readOnly": true
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time the operation was created.",
          "readOnly": true
        },
        "statusMessage": {
          "description": "Output only. Human-readable status of the operation, if any.",
          "readOnly": true,
          "type": "string"
        },
        "endTime": {
          "description": "Output only. The time the operation finished running.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "apiVersion": {
          "type": "string",
          "description": "Output only. API version used to start the operation.",
          "readOnly": true
        },
        "target": {
          "type": "string",
          "description": "Output only. Server-defined resource path for the target of the operation.",
          "readOnly": true
        },
        "verb": {
          "description": "Output only. Name of the verb executed by the operation.",
          "readOnly": true,
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1ApigeeXHybridConfig": {
      "properties": {
        "environmentFilter": {
          "description": "Optional. The filter to apply on the resources managed by the gateway plugin instance. If provided this filter applies environment specific filtering.",
          "$ref": "GoogleCloudApihubV1EnvironmentFilter"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ApigeeXHybridConfig",
      "description": "Configuration for Apigee X and Apigee Hybrid gateways. Applicability of a filter is determined by the filter being provided. If none of the filters are provided the addon will be enabled for all data brought in by the gateway plugin instance."
    },
    "GoogleCloudApihubV1ConfigTemplate": {
      "type": "object",
      "id": "GoogleCloudApihubV1ConfigTemplate",
      "description": "ConfigTemplate represents the configuration template for a plugin.",
      "properties": {
        "authConfigTemplate": {
          "description": "Optional. The authentication template for the plugin.",
          "$ref": "GoogleCloudApihubV1AuthConfigTemplate"
        },
        "additionalConfigTemplate": {
          "type": "array",
          "description": "Optional. The list of additional configuration variables for the plugin's configuration.",
          "items": {
            "$ref": "GoogleCloudApihubV1ConfigVariableTemplate"
          }
        }
      }
    },
    "GoogleCloudApihubV1Config": {
      "id": "GoogleCloudApihubV1Config",
      "description": "Available configurations to provision an ApiHub Instance.",
      "type": "object",
      "properties": {
        "encryptionType": {
          "enumDescriptions": [
            "Encryption type unspecified.",
            "Default encryption using Google managed encryption key.",
            "Encryption using customer managed encryption key."
          ],
          "enum": [
            "ENCRYPTION_TYPE_UNSPECIFIED",
            "GMEK",
            "CMEK"
          ],
          "description": "Optional. Encryption type for the region. If the encryption type is CMEK, the cmek_key_name must be provided. If no encryption type is provided, GMEK will be used.",
          "type": "string"
        },
        "cmekKeyName": {
          "type": "string",
          "description": "Optional. The Customer Managed Encryption Key (CMEK) used for data encryption. The CMEK name should follow the format of `projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`, where the location must match the instance location. If the CMEK is not provided, a GMEK will be created for the instance."
        },
        "vertexLocation": {
          "type": "string",
          "description": "Optional. The name of the Vertex AI location where the data store is stored."
        },
        "agentRegistrySyncConfig": {
          "description": "Optional. The configuration for syncing MCP data in the API Hub instance to the Agent Registry.",
          "$ref": "GoogleCloudApihubV1AgentRegistrySyncConfig"
        },
        "disableSearch": {
          "type": "boolean",
          "description": "Optional. If true, the search will be disabled for the instance. The default value is false."
        }
      }
    },
    "GoogleCloudApihubV1RuntimeProjectAttachment": {
      "type": "object",
      "id": "GoogleCloudApihubV1RuntimeProjectAttachment",
      "description": "Runtime project attachment represents an attachment from the runtime project to the host project. Api Hub looks for deployments in the attached runtime projects and creates corresponding resources in Api Hub for the discovered deployments.",
      "properties": {
        "runtimeProject": {
          "description": "Required. Immutable. Google cloud project name in the format: \"projects/abc\" or \"projects/123\". As input, project name with either project id or number are accepted. As output, this field will contain project number.",
          "type": "string"
        },
        "createTime": {
          "description": "Output only. Create time.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "name": {
          "description": "Identifier. The resource name of a runtime project attachment. Format: \"projects/{project}/locations/{location}/runtimeProjectAttachments/{runtime_project_attachment}\".",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1DeploymentMetadata": {
      "properties": {
        "originalCreateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Optional. Timestamp indicating when the deployment was created at the source."
        },
        "deployment": {
          "description": "Required. The deployment resource to be pushed to Hub's collect layer. The ID of the deployment will be generated by Hub.",
          "$ref": "GoogleCloudApihubV1Deployment"
        },
        "originalId": {
          "description": "Optional. The unique identifier of the deployment in the system where it was originally created.",
          "type": "string"
        },
        "originalUpdateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Required. Timestamp indicating when the deployment was last updated at the source."
        }
      },
      "id": "GoogleCloudApihubV1DeploymentMetadata",
      "description": "The metadata associated with a deployment.",
      "type": "object"
    },
    "GoogleCloudApihubV1UserPasswordConfig": {
      "properties": {
        "username": {
          "description": "Required. Username.",
          "type": "string"
        },
        "password": {
          "description": "Required. Secret version reference containing the password. The `secretmanager.versions.access` permission should be granted to the service account accessing the secret.",
          "$ref": "GoogleCloudApihubV1Secret"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1UserPasswordConfig",
      "description": "Parameters to support Username and Password Authentication."
    },
    "GoogleCloudApihubV1ApplicationIntegrationEndpointDetails": {
      "properties": {
        "uri": {
          "description": "Required. The endpoint URI should be a valid REST URI for triggering an Application Integration. Format: `https://integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute` or `https://{location}-integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`",
          "type": "string"
        },
        "triggerId": {
          "type": "string",
          "description": "Required. The API trigger ID of the Application Integration workflow."
        }
      },
      "id": "GoogleCloudApihubV1ApplicationIntegrationEndpointDetails",
      "description": "The details of the Application Integration endpoint to be triggered for curation.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListAttributesResponse": {
      "properties": {
        "attributes": {
          "description": "The list of all attributes.",
          "items": {
            "$ref": "GoogleCloudApihubV1Attribute"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1ListAttributesResponse",
      "description": "The ListAttributes method's response.",
      "type": "object"
    },
    "GoogleLongrunningCancelOperationRequest": {
      "properties": {},
      "id": "GoogleLongrunningCancelOperationRequest",
      "description": "The request message for Operations.CancelOperation.",
      "type": "object"
    },
    "GoogleCloudApihubV1Path": {
      "properties": {
        "path": {
          "description": "Optional. Complete path relative to server endpoint. Note: Even though this field is optional, it is required for CreateApiOperation API and we will fail the request if not provided.",
          "type": "string"
        },
        "description": {
          "description": "Optional. A short description for the path applicable to all operations.",
          "type": "string"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1Path",
      "description": "The path details derived from the spec."
    },
    "GoogleCloudApihubV1ListHostProjectRegistrationsResponse": {
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        },
        "hostProjectRegistrations": {
          "type": "array",
          "description": "The list of host project registrations.",
          "items": {
            "$ref": "GoogleCloudApihubV1HostProjectRegistration"
          }
        }
      },
      "id": "GoogleCloudApihubV1ListHostProjectRegistrationsResponse",
      "description": "The ListHostProjectRegistrations method's response.",
      "type": "object"
    },
    "GoogleCloudApihubV1GoogleServiceAccountConfig": {
      "id": "GoogleCloudApihubV1GoogleServiceAccountConfig",
      "description": "Config for Google service account authentication.",
      "type": "object",
      "properties": {
        "serviceAccount": {
          "description": "Required. The service account to be used for authenticating request. The `iam.serviceAccounts.getAccessToken` permission should be granted on this service account to the impersonator service account.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1StringAttributeValues": {
      "properties": {
        "values": {
          "description": "Required. The attribute values in case attribute data type is string or JSON.",
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "id": "GoogleCloudApihubV1StringAttributeValues",
      "description": "The attribute values of data type string or JSON.",
      "type": "object"
    },
    "GoogleCloudCommonOperationMetadata": {
      "type": "object",
      "id": "GoogleCloudCommonOperationMetadata",
      "description": "Represents the metadata of the long-running operation.",
      "properties": {
        "verb": {
          "type": "string",
          "description": "Output only. Name of the verb executed by the operation.",
          "readOnly": true
        },
        "cancelRequested": {
          "type": "boolean",
          "description": "Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have google.longrunning.Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.",
          "readOnly": true
        },
        "target": {
          "type": "string",
          "description": "Output only. Server-defined resource path for the target of the operation.",
          "readOnly": true
        },
        "endTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time the operation finished running.",
          "readOnly": true
        },
        "apiVersion": {
          "description": "Output only. API version used to start the operation.",
          "readOnly": true,
          "type": "string"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time the operation was created.",
          "readOnly": true
        },
        "statusDetail": {
          "type": "string",
          "description": "Output only. Human-readable status of the operation, if any.",
          "readOnly": true
        }
      }
    },
    "GoogleCloudApihubV1SourceMetadata": {
      "properties": {
        "sourceType": {
          "description": "Output only. The type of the source.",
          "readOnly": true,
          "enumDescriptions": [
            "Source type not specified.",
            "Source type plugin."
          ],
          "enum": [
            "SOURCE_TYPE_UNSPECIFIED",
            "PLUGIN"
          ],
          "type": "string"
        },
        "originalResourceCreateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the resource was created at the source.",
          "readOnly": true
        },
        "pluginInstanceActionSource": {
          "$ref": "GoogleCloudApihubV1PluginInstanceActionSource",
          "description": "Output only. The source of the resource is a plugin instance action.",
          "readOnly": true
        },
        "originalResourceUpdateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the resource was last updated at the source.",
          "readOnly": true
        },
        "originalResourceId": {
          "type": "string",
          "description": "Output only. The unique identifier of the resource at the source.",
          "readOnly": true
        }
      },
      "id": "GoogleCloudApihubV1SourceMetadata",
      "description": "SourceMetadata represents the metadata for a resource at the source.",
      "type": "object"
    },
    "GoogleCloudApihubV1Point": {
      "properties": {
        "character": {
          "type": "integer",
          "format": "int32",
          "description": "Required. Character position within the line (zero-indexed)."
        },
        "line": {
          "type": "integer",
          "format": "int32",
          "description": "Required. Line number (zero-indexed)."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1Point",
      "description": "Point within the file (line and character)."
    },
    "GoogleCloudApihubV1PluginActionConfig": {
      "type": "object",
      "id": "GoogleCloudApihubV1PluginActionConfig",
      "description": "PluginActionConfig represents the configuration of an action supported by a plugin.",
      "properties": {
        "id": {
          "description": "Required. The id of the action.",
          "type": "string"
        },
        "description": {
          "description": "Required. The description of the operation performed by the action.",
          "type": "string"
        },
        "triggerMode": {
          "enumDescriptions": [
            "Default unspecified mode.",
            "This action can be executed by invoking ExecutePluginInstanceAction API with the given action id. To support this, the plugin hosting service should handle this action id as part of execute call.",
            "This action will be executed on schedule by invoking ExecutePluginInstanceAction API with the given action id. To set the schedule, the user can provide the cron expression in the PluginAction field for a given plugin instance. To support this, the plugin hosting service should handle this action id as part of execute call. Note, on demand execution will be supported by default in this trigger mode.",
            "The execution of this plugin is not handled by API hub. In this case, the plugin hosting service need not handle this action id as part of the execute call."
          ],
          "enum": [
            "TRIGGER_MODE_UNSPECIFIED",
            "API_HUB_ON_DEMAND_TRIGGER",
            "API_HUB_SCHEDULE_TRIGGER",
            "NON_API_HUB_MANAGED"
          ],
          "type": "string",
          "description": "Required. The trigger mode supported by the action."
        },
        "displayName": {
          "type": "string",
          "description": "Required. The display name of the action."
        }
      }
    },
    "GoogleCloudApihubV1GatewayPluginConfig": {
      "properties": {
        "apigeeXHybridConfig": {
          "$ref": "GoogleCloudApihubV1ApigeeXHybridConfig",
          "description": "Configuration for Apigee X and Apigee Hybrid gateways."
        },
        "apigeeEdgeConfig": {
          "$ref": "GoogleCloudApihubV1ApigeeEdgeConfig",
          "description": "Configuration for Apigee Edge gateways."
        },
        "apigeeOpdkConfig": {
          "description": "Configuration for Apigee OPDK gateways.",
          "$ref": "GoogleCloudApihubV1ApigeeOPDKConfig"
        },
        "pluginInstance": {
          "description": "Required. The name of the gateway plugin instance for which the config is to be specified. Format: projects/{project}/locations/{location}/plugins/{plugin}/pluginInstances/{plugin_instance}",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1GatewayPluginConfig",
      "description": "Configuration for a gateway plugin. This is used to specify configs for different gateways.",
      "type": "object"
    },
    "GoogleCloudApihubV1Secret": {
      "properties": {
        "secretVersion": {
          "description": "Required. The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1Secret",
      "description": "Secret provides a reference to entries in Secret Manager.",
      "type": "object"
    },
    "GoogleCloudApihubV1HostProjectRegistration": {
      "id": "GoogleCloudApihubV1HostProjectRegistration",
      "description": "Host project registration refers to the registration of a Google cloud project with Api Hub as a host project. This is the project where Api Hub is provisioned. It acts as the consumer project for the Api Hub instance provisioned. Multiple runtime projects can be attached to the host project and these attachments define the scope of Api Hub.",
      "type": "object",
      "properties": {
        "name": {
          "description": "Identifier. The name of the host project registration. Format: \"projects/{project}/locations/{location}/hostProjectRegistrations/{host_project_registration}\".",
          "type": "string"
        },
        "gcpProject": {
          "description": "Required. Immutable. Google cloud project name in the format: \"projects/abc\" or \"projects/123\". As input, project name with either project id or number are accepted. As output, this field will contain project number.",
          "type": "string"
        },
        "createTime": {
          "description": "Output only. The time at which the host project registration was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        }
      }
    },
    "GoogleCloudApihubV1DependencyEntityReference": {
      "properties": {
        "displayName": {
          "description": "Output only. Display name of the entity.",
          "readOnly": true,
          "type": "string"
        },
        "operationResourceName": {
          "description": "The resource name of an operation in the API Hub. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`",
          "type": "string"
        },
        "externalApiResourceName": {
          "type": "string",
          "description": "The resource name of an external API in the API Hub. Format: `projects/{project}/locations/{location}/externalApis/{external_api}`"
        }
      },
      "id": "GoogleCloudApihubV1DependencyEntityReference",
      "description": "Reference to an entity participating in a dependency.",
      "type": "object"
    },
    "GoogleCloudApihubV1LintSpecRequest": {
      "properties": {},
      "id": "GoogleCloudApihubV1LintSpecRequest",
      "description": "The LintSpec method's request.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListExternalApisResponse": {
      "properties": {
        "externalApis": {
          "type": "array",
          "description": "The External API resources present in the API hub.",
          "items": {
            "$ref": "GoogleCloudApihubV1ExternalApi"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ListExternalApisResponse",
      "description": "The ListExternalApis method's response."
    },
    "GoogleCloudApihubV1ConfigValueOption": {
      "properties": {
        "id": {
          "type": "string",
          "description": "Required. Id of the option."
        },
        "description": {
          "type": "string",
          "description": "Optional. Description of the option."
        },
        "displayName": {
          "description": "Required. Display name of the option.",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1ConfigValueOption",
      "description": "ConfigValueOption represents an option for a config variable of type enum or multi select.",
      "type": "object"
    },
    "GoogleCloudApihubV1ApiView": {
      "id": "GoogleCloudApihubV1ApiView",
      "description": "The view of an API.",
      "type": "object",
      "properties": {
        "mcpServerView": {
          "description": "MCP server view.",
          "$ref": "GoogleCloudApihubV1FlattenedApiVersionDeploymentView"
        },
        "mcpToolView": {
          "description": "MCP tools view.",
          "$ref": "GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView"
        }
      }
    },
    "GoogleCloudApihubV1ListVersionsResponse": {
      "properties": {
        "versions": {
          "type": "array",
          "description": "The versions corresponding to an API.",
          "items": {
            "$ref": "GoogleCloudApihubV1Version"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ListVersionsResponse",
      "description": "The ListVersions method's response."
    },
    "GoogleCloudLocationListLocationsResponse": {
      "id": "GoogleCloudLocationListLocationsResponse",
      "description": "The response message for Locations.ListLocations.",
      "type": "object",
      "properties": {
        "locations": {
          "description": "A list of locations that matches the specified filter in the request.",
          "items": {
            "$ref": "GoogleCloudLocationLocation"
          },
          "type": "array"
        },
        "nextPageToken": {
          "type": "string",
          "description": "The standard List next-page token."
        }
      }
    },
    "GoogleCloudApihubV1MultiSelectValues": {
      "type": "object",
      "id": "GoogleCloudApihubV1MultiSelectValues",
      "description": "The config variable value of data type multi select.",
      "properties": {
        "values": {
          "type": "array",
          "description": "Optional. The config variable value of data type multi select.",
          "items": {
            "$ref": "GoogleCloudApihubV1ConfigValueOption"
          }
        }
      }
    },
    "GoogleCloudApihubV1ListDeploymentsResponse": {
      "properties": {
        "deployments": {
          "description": "The deployment resources present in the API hub.",
          "items": {
            "$ref": "GoogleCloudApihubV1Deployment"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ListDeploymentsResponse",
      "description": "The ListDeployments method's response."
    },
    "GoogleCloudApihubV1DisablePluginRequest": {
      "id": "GoogleCloudApihubV1DisablePluginRequest",
      "description": "The DisablePlugin method's request.",
      "type": "object",
      "properties": {}
    },
    "GoogleCloudApihubV1ApiMetadataList": {
      "type": "object",
      "id": "GoogleCloudApihubV1ApiMetadataList",
      "description": "The message to hold repeated API metadata.",
      "properties": {
        "apiMetadata": {
          "type": "array",
          "description": "Required. The list of API metadata.",
          "items": {
            "$ref": "GoogleCloudApihubV1APIMetadata"
          }
        }
      }
    },
    "GoogleCloudApihubV1ManageAddonConfigRequest": {
      "properties": {
        "config": {
          "$ref": "GoogleCloudApihubV1AddonConfig",
          "description": "Required. The config of the addon to be managed. This config will replace the config present in the addon. The type of the config should match the config type already present in the addon."
        }
      },
      "id": "GoogleCloudApihubV1ManageAddonConfigRequest",
      "description": "The ManageAddonConfig method's request.",
      "type": "object"
    },
    "GoogleCloudApihubV1ActionExecutionDetail": {
      "properties": {
        "actionId": {
          "type": "string",
          "description": "Required. The action id of the plugin to execute."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ActionExecutionDetail",
      "description": "The details for the action to execute."
    },
    "GoogleCloudApihubV1OperationDetails": {
      "properties": {
        "mcpTool": {
          "$ref": "GoogleCloudApihubV1McpTool",
          "description": "The MCP Tool Operation."
        },
        "httpOperation": {
          "description": "The HTTP Operation.",
          "$ref": "GoogleCloudApihubV1HttpOperation"
        },
        "description": {
          "type": "string",
          "description": "Optional. Description of the operation behavior. For OpenAPI spec, this will map to `operation.description` in the spec, in case description is empty, `operation.summary` will be used."
        },
        "deprecated": {
          "description": "Optional. For OpenAPI spec, this will be set if `operation.deprecated`is marked as `true` in the spec.",
          "type": "boolean"
        },
        "documentation": {
          "description": "Optional. Additional external documentation for this operation. For OpenAPI spec, this will map to `operation.documentation` in the spec.",
          "$ref": "GoogleCloudApihubV1Documentation"
        }
      },
      "id": "GoogleCloudApihubV1OperationDetails",
      "description": "The operation details parsed from the spec.",
      "type": "object"
    },
    "GoogleCloudApihubV1MatchResult": {
      "properties": {
        "name": {
          "type": "string",
          "description": "Output only. The name of the matched API Operation. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`",
          "readOnly": true
        }
      },
      "id": "GoogleCloudApihubV1MatchResult",
      "description": "MatchResult represents the result of matching a discovered API operation with a catalog API operation.",
      "type": "object"
    },
    "GoogleCloudApihubV1AuthConfigTemplate": {
      "properties": {
        "supportedAuthTypes": {
          "description": "Required. The list of authentication types supported by the plugin.",
          "items": {
            "type": "string",
            "enumDescriptions": [
              "Authentication type not specified.",
              "No authentication.",
              "Google service account authentication.",
              "Username and password authentication.",
              "API Key authentication.",
              "Oauth 2.0 client credentials grant authentication."
            ],
            "enum": [
              "AUTH_TYPE_UNSPECIFIED",
              "NO_AUTH",
              "GOOGLE_SERVICE_ACCOUNT",
              "USER_PASSWORD",
              "API_KEY",
              "OAUTH2_CLIENT_CREDENTIALS"
            ]
          },
          "type": "array"
        },
        "serviceAccount": {
          "$ref": "GoogleCloudApihubV1GoogleServiceAccountConfig",
          "description": "Optional. The service account of the plugin hosting service. This service account should be granted the required permissions on the Auth Config parameters provided while creating the plugin instances corresponding to this plugin. For example, if the plugin instance auth config requires a secret manager secret, the service account should be granted the secretmanager.versions.access permission on the corresponding secret, if the plugin instance auth config contains a service account, the service account should be granted the iam.serviceAccounts.getAccessToken permission on the corresponding service account."
        }
      },
      "id": "GoogleCloudApihubV1AuthConfigTemplate",
      "description": "AuthConfigTemplate represents the authentication template for a plugin.",
      "type": "object"
    },
    "GoogleCloudApihubV1AgentRegistrySyncConfig": {
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "Optional. If true, the MCP data sync to the Agent Registry will be disabled. The default value is false."
        }
      },
      "id": "GoogleCloudApihubV1AgentRegistrySyncConfig",
      "description": "The configuration for Agent Registry sync.",
      "type": "object"
    },
    "GoogleCloudApihubV1StyleGuide": {
      "id": "GoogleCloudApihubV1StyleGuide",
      "description": "Represents a singleton style guide resource to be used for linting Open API specs.",
      "type": "object",
      "properties": {
        "linter": {
          "description": "Required. Target linter for the style guide.",
          "type": "string",
          "enumDescriptions": [
            "Linter type unspecified.",
            "Linter type spectral.",
            "Linter type other."
          ],
          "enum": [
            "LINTER_UNSPECIFIED",
            "SPECTRAL",
            "OTHER"
          ]
        },
        "contents": {
          "description": "Required. Input only. The contents of the uploaded style guide.",
          "$ref": "GoogleCloudApihubV1StyleGuideContents"
        },
        "name": {
          "description": "Identifier. The name of the style guide. Format: `projects/{project}/locations/{location}/plugins/{plugin}/styleGuide`",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1OperationSchema": {
      "properties": {
        "jsonSchema": {
          "additionalProperties": {
            "description": "Properties of the object.",
            "type": "any"
          },
          "type": "object",
          "description": "The JSON schema. Only valid JSON is accepted but semantic validation of schema is not supported right now."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1OperationSchema",
      "description": "The operation schema needed for an operation."
    },
    "GoogleCloudApihubV1SearchResult": {
      "properties": {
        "resource": {
          "$ref": "GoogleCloudApihubV1ApiHubResource",
          "description": "This represents the ApiHubResource. Note: Only selected fields of the resources are populated in response."
        }
      },
      "id": "GoogleCloudApihubV1SearchResult",
      "description": "Represents the search results.",
      "type": "object"
    },
    "GoogleCloudApihubV1SpecMetadata": {
      "properties": {
        "originalUpdateTime": {
          "description": "Required. Timestamp indicating when the spec was last updated at the source.",
          "type": "string",
          "format": "google-datetime"
        },
        "spec": {
          "$ref": "GoogleCloudApihubV1Spec",
          "description": "Required. The spec resource to be pushed to Hub's collect layer. The ID of the spec will be generated by Hub."
        },
        "originalId": {
          "description": "Optional. The unique identifier of the spec in the system where it was originally created.",
          "type": "string"
        },
        "originalCreateTime": {
          "description": "Optional. Timestamp indicating when the spec was created at the source.",
          "type": "string",
          "format": "google-datetime"
        }
      },
      "id": "GoogleCloudApihubV1SpecMetadata",
      "description": "The metadata associated with a spec of the API version.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListCurationsResponse": {
      "properties": {
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        },
        "curations": {
          "type": "array",
          "description": "The curation resources present in the API hub.",
          "items": {
            "$ref": "GoogleCloudApihubV1Curation"
          }
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ListCurationsResponse",
      "description": "The ListCurations method's response."
    },
    "GoogleCloudApihubV1DiscoveredApiObservation": {
      "properties": {
        "serverIps": {
          "description": "Optional. The IP address (IPv4 or IPv6) of the origin server that the request was sent to. This field can include port information. Examples: `\"192.168.1.1\"`, `\"10.0.0.1:80\"`, `\"FE80::0202:B3FF:FE1E:8329\"`.",
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "updateTime": {
          "description": "Output only. Update time stamp of the observation in API Hub.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "lastEventDetectedTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Optional. Last event detected time stamp"
        },
        "unknownOperationsCount": {
          "description": "Output only. The number of unknown API Operations.",
          "readOnly": true,
          "type": "string",
          "format": "int64"
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the discovered API Observation. Format: `projects/{project}/locations/{location}/discoveredApiObservations/{discovered_api_observation}`"
        },
        "createTime": {
          "description": "Output only. Create time stamp of the observation in API Hub.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "sourceLocations": {
          "description": "Optional. The location of the observation source.",
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "style": {
          "type": "string",
          "description": "Optional. Style of ApiObservation",
          "enumDescriptions": [
            "Unknown style",
            "Style is Rest API",
            "Style is Grpc API",
            "Style is GraphQL API"
          ],
          "enum": [
            "STYLE_UNSPECIFIED",
            "REST",
            "GRPC",
            "GRAPHQL"
          ]
        },
        "origin": {
          "description": "Optional. For an observation pushed from a Google Cloud resource, this would be the Google Cloud project id.",
          "type": "string"
        },
        "apiOperationCount": {
          "type": "string",
          "format": "int64",
          "description": "Optional. The number of observed API Operations."
        },
        "knownOperationsCount": {
          "description": "Output only. The number of known API Operations.",
          "readOnly": true,
          "type": "string",
          "format": "int64"
        },
        "sourceTypes": {
          "description": "Optional. The type of the source from which the observation was collected.",
          "items": {
            "enumDescriptions": [
              "Source type not specified.",
              "Google Cloud external load balancer.",
              "Google Cloud internal load balancer."
            ],
            "enum": [
              "SOURCE_TYPE_UNSPECIFIED",
              "GCP_XLB",
              "GCP_ILB"
            ],
            "type": "string"
          },
          "type": "array"
        },
        "sourceMetadata": {
          "$ref": "GoogleCloudApihubV1SourceMetadata",
          "description": "Output only. The metadata of the source from which the observation was collected.",
          "readOnly": true
        },
        "hostname": {
          "type": "string",
          "description": "Optional. The hostname of requests processed for this Observation."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1DiscoveredApiObservation",
      "description": "Respresents an API Observation observed in one of the sources."
    },
    "GoogleCloudApihubV1Documentation": {
      "properties": {
        "externalUri": {
          "description": "Optional. The uri of the externally hosted documentation.",
          "type": "string"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1Documentation",
      "description": "Documentation details."
    },
    "GoogleCloudApihubV1VersionMetadata": {
      "properties": {
        "deployments": {
          "type": "array",
          "description": "Optional. The deployments linked to this API version. Note: A particular API version could be deployed to multiple deployments (for dev deployment, UAT deployment, etc.)",
          "items": {
            "$ref": "GoogleCloudApihubV1DeploymentMetadata"
          }
        },
        "specs": {
          "type": "array",
          "description": "Optional. The specs associated with this version. Note that an API version can be associated with multiple specs.",
          "items": {
            "$ref": "GoogleCloudApihubV1SpecMetadata"
          }
        },
        "originalCreateTime": {
          "description": "Optional. Timestamp indicating when the version was created at the source.",
          "type": "string",
          "format": "google-datetime"
        },
        "originalId": {
          "description": "Optional. The unique identifier of the version in the system where it was originally created.",
          "type": "string"
        },
        "version": {
          "description": "Required. Represents a version of the API resource in API hub. The ID of the version will be generated by Hub.",
          "$ref": "GoogleCloudApihubV1Version"
        },
        "originalUpdateTime": {
          "description": "Required. Timestamp indicating when the version was last updated at the source.",
          "type": "string",
          "format": "google-datetime"
        }
      },
      "id": "GoogleCloudApihubV1VersionMetadata",
      "description": "The metadata associated with a version of the API resource.",
      "type": "object"
    },
    "GoogleCloudApihubV1EnablePluginInstanceActionRequest": {
      "properties": {
        "actionId": {
          "description": "Required. The action id to enable.",
          "type": "string"
        }
      },
      "id": "GoogleCloudApihubV1EnablePluginInstanceActionRequest",
      "description": "The EnablePluginInstanceAction method's request.",
      "type": "object"
    },
    "GoogleCloudApihubV1LookupApiHubInstanceResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1LookupApiHubInstanceResponse",
      "description": "The LookupApiHubInstance method's response.`",
      "properties": {
        "apiHubInstance": {
          "$ref": "GoogleCloudApihubV1ApiHubInstance",
          "description": "API Hub instance for a project if it exists, empty otherwise."
        }
      }
    },
    "GoogleCloudApihubV1ListPluginInstancesResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1ListPluginInstancesResponse",
      "description": "The ListPluginInstances method's response.",
      "properties": {
        "pluginInstances": {
          "type": "array",
          "description": "The plugin instances from the specified parent resource.",
          "items": {
            "$ref": "GoogleCloudApihubV1PluginInstance"
          }
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1PluginInstance": {
      "id": "GoogleCloudApihubV1PluginInstance",
      "description": "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.",
      "type": "object",
      "properties": {
        "name": {
          "description": "Identifier. The unique name of the plugin instance resource. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
          "type": "string"
        },
        "actions": {
          "description": "Required. The action status for the plugin instance.",
          "items": {
            "$ref": "GoogleCloudApihubV1PluginInstanceAction"
          },
          "type": "array"
        },
        "sourceEnvironmentsConfig": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1SourceEnvironment"
          },
          "type": "object",
          "description": "Optional. The source environment's config present in the gateway instance linked to the plugin instance. The key is the `source_environment` name from the SourceEnvironment message."
        },
        "createTime": {
          "description": "Output only. Timestamp indicating when the plugin instance was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "additionalConfig": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1ConfigVariable"
          },
          "type": "object",
          "description": "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."
        },
        "sourceProjectId": {
          "description": "Optional. The source project id of the plugin instance. This will be the id of runtime project in case of Google Cloud based plugins and org id in case of non-Google Cloud based plugins. This field will be a required field for Google provided on-ramp plugins.",
          "type": "string"
        },
        "state": {
          "enumDescriptions": [
            "Default unspecified state.",
            "The plugin instance is being created.",
            "The plugin instance is active and ready for executions. This is the only state where executions can run on the plugin instance.",
            "The updated config that contains additional_config and auth_config is being applied.",
            "The ERROR state can come while applying config. Users can retrigger ApplyPluginInstanceConfig to restore the plugin instance back to active state. Note, In case the ERROR state happens while applying config (auth_config, additional_config), 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.",
            "The plugin instance is in a failed state. This indicates that an unrecoverable error occurred during a previous operation (Create, Delete).",
            "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."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "CREATING",
            "ACTIVE",
            "APPLYING_CONFIG",
            "ERROR",
            "FAILED",
            "DELETING"
          ],
          "description": "Output only. The current state of the plugin instance (e.g., enabled, disabled, provisioning).",
          "readOnly": true,
          "type": "string"
        },
        "authConfig": {
          "description": "Optional. The authentication information for this plugin instance.",
          "$ref": "GoogleCloudApihubV1AuthConfig"
        },
        "updateTime": {
          "description": "Output only. Timestamp indicating when the plugin instance was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "errorMessage": {
          "type": "string",
          "description": "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.",
          "readOnly": true
        },
        "displayName": {
          "type": "string",
          "description": "Required. The display name for this plugin instance. Max length is 255 characters."
        }
      }
    },
    "GoogleCloudApihubV1Definition": {
      "properties": {
        "type": {
          "type": "string",
          "description": "Output only. The type of the definition.",
          "readOnly": true,
          "enumDescriptions": [
            "Definition type unspecified.",
            "Definition type schema."
          ],
          "enum": [
            "TYPE_UNSPECIFIED",
            "SCHEMA"
          ]
        },
        "attributes": {
          "type": "object",
          "description": "Optional. The list of user defined attributes associated with the definition resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          }
        },
        "schema": {
          "$ref": "GoogleCloudApihubV1Schema",
          "description": "Output only. The value of a schema definition.",
          "readOnly": true
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the definition. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/definitions/{definition}`"
        },
        "spec": {
          "description": "Output only. The name of the spec from where the definition was parsed. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
          "readOnly": true,
          "type": "string"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the definition was created.",
          "readOnly": true
        },
        "updateTime": {
          "description": "Output only. The time at which the definition was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1Definition",
      "description": "Represents a definition for example schema, request, response definitions contained in an API version. A definition is added/updated/deleted in an API version when a new spec is added or an existing spec is updated/deleted in a version. Currently, definition will be created only corresponding to OpenAPI spec as parsing is supported for OpenAPI spec. Also, within OpenAPI spec, only `schema` object is supported."
    },
    "GoogleCloudApihubV1Owner": {
      "id": "GoogleCloudApihubV1Owner",
      "description": "Owner details.",
      "type": "object",
      "properties": {
        "displayName": {
          "description": "Optional. The name of the owner.",
          "type": "string"
        },
        "email": {
          "type": "string",
          "description": "Required. The email of the owner."
        }
      }
    },
    "GoogleCloudApihubV1LintResponse": {
      "id": "GoogleCloudApihubV1LintResponse",
      "description": "LintResponse contains the response from the linter.",
      "type": "object",
      "properties": {
        "summary": {
          "description": "Optional. Summary of all issue types and counts for each severity level.",
          "items": {
            "$ref": "GoogleCloudApihubV1SummaryEntry"
          },
          "type": "array"
        },
        "state": {
          "enumDescriptions": [
            "Lint state unspecified.",
            "Linting was completed successfully.",
            "Linting encountered errors."
          ],
          "enum": [
            "LINT_STATE_UNSPECIFIED",
            "LINT_STATE_SUCCESS",
            "LINT_STATE_ERROR"
          ],
          "type": "string",
          "description": "Required. Lint state represents success or failure for linting."
        },
        "linter": {
          "type": "string",
          "description": "Required. Name of the linter used.",
          "enumDescriptions": [
            "Linter type unspecified.",
            "Linter type spectral.",
            "Linter type other."
          ],
          "enum": [
            "LINTER_UNSPECIFIED",
            "SPECTRAL",
            "OTHER"
          ]
        },
        "issues": {
          "description": "Optional. Array of issues found in the analyzed document.",
          "items": {
            "$ref": "GoogleCloudApihubV1Issue"
          },
          "type": "array"
        },
        "createTime": {
          "description": "Required. Timestamp when the linting response was generated.",
          "type": "string",
          "format": "google-datetime"
        },
        "source": {
          "description": "Required. Name of the linting application.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1EnablePluginRequest": {
      "properties": {},
      "id": "GoogleCloudApihubV1EnablePluginRequest",
      "description": "The EnablePlugin method's request.",
      "type": "object"
    },
    "GoogleCloudApihubV1DiscoveredApiOperation": {
      "properties": {
        "count": {
          "description": "Optional. The number of occurrences of this API Operation.",
          "type": "string",
          "format": "int64"
        },
        "classification": {
          "type": "string",
          "description": "Output only. The classification of the discovered API operation.",
          "readOnly": true,
          "enumDescriptions": [
            "Operation is not classified as known or unknown.",
            "Operation has a matched catalog operation.",
            "Operation does not have a matched catalog operation."
          ],
          "enum": [
            "CLASSIFICATION_UNSPECIFIED",
            "KNOWN",
            "UNKNOWN"
          ]
        },
        "lastSeenTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Optional. Last seen time stamp"
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Update time stamp of the discovered API operation in API Hub.",
          "readOnly": true
        },
        "firstSeenTime": {
          "description": "Optional. First seen time stamp",
          "type": "string",
          "format": "google-datetime"
        },
        "matchResults": {
          "type": "array",
          "description": "Output only. The list of matched results for the discovered API operation. This will be populated only if the classification is known. The current usecase is for a single match. Keeping it repeated to support multiple matches in future.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1MatchResult"
          }
        },
        "sourceMetadata": {
          "description": "Output only. The metadata of the source from which the api operation was collected.",
          "readOnly": true,
          "$ref": "GoogleCloudApihubV1SourceMetadata"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Create time stamp of the discovered API operation in API Hub.",
          "readOnly": true
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the discovered API Operation. Format: `projects/{project}/locations/{location}/discoveredApiObservations/{discovered_api_observation}/discoveredApiOperations/{discovered_api_operation}`"
        },
        "httpOperation": {
          "description": "Optional. An HTTP Operation.",
          "$ref": "GoogleCloudApihubV1HttpOperationDetails"
        }
      },
      "id": "GoogleCloudApihubV1DiscoveredApiOperation",
      "description": "DiscoveredApiOperation represents an API Operation observed in one of the sources.",
      "type": "object"
    },
    "GoogleCloudApihubV1CurationConfig": {
      "properties": {
        "customCuration": {
          "$ref": "GoogleCloudApihubV1CustomCuration",
          "description": "Optional. Custom curation information for this plugin instance."
        },
        "curationType": {
          "enumDescriptions": [
            "Default unspecified curation type.",
            "Default curation for API metadata will be used.",
            "Custom curation for API metadata will be used."
          ],
          "enum": [
            "CURATION_TYPE_UNSPECIFIED",
            "DEFAULT_CURATION_FOR_API_METADATA",
            "CUSTOM_CURATION_FOR_API_METADATA"
          ],
          "type": "string",
          "description": "Required. The curation type for this plugin instance."
        }
      },
      "id": "GoogleCloudApihubV1CurationConfig",
      "description": "The curation information for this plugin instance.",
      "type": "object"
    },
    "GoogleCloudApihubV1ExecutePluginInstanceActionRequest": {
      "properties": {
        "actionExecutionDetail": {
          "$ref": "GoogleCloudApihubV1ActionExecutionDetail",
          "description": "Required. The execution details for the action to execute."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1ExecutePluginInstanceActionRequest",
      "description": "The ExecutePluginInstanceAction method's request."
    },
    "GoogleCloudApihubV1HttpRequest": {
      "properties": {
        "headers": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1Header"
          },
          "description": "Optional. Unordered map from header name to header metadata",
          "type": "object"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1HttpRequest",
      "description": "An aggregation of HTTP requests."
    },
    "GoogleCloudApihubV1ResourceConfig": {
      "id": "GoogleCloudApihubV1ResourceConfig",
      "description": "The configuration of resources created for a given plugin instance action.",
      "type": "object",
      "properties": {
        "actionType": {
          "type": "string",
          "enumDescriptions": [
            "Default unspecified action type.",
            "Action type for sync metadata.",
            "Action type for sync runtime data."
          ],
          "enum": [
            "ACTION_TYPE_UNSPECIFIED",
            "SYNC_METADATA",
            "SYNC_RUNTIME_DATA"
          ],
          "description": "Output only. The type of the action.",
          "readOnly": true
        },
        "pubsubTopic": {
          "description": "Output only. The pubsub topic to publish the data to. Format is projects/{project}/topics/{topic}",
          "readOnly": true,
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1OpenApiSpecDetails": {
      "properties": {
        "format": {
          "type": "string",
          "enumDescriptions": [
            "SpecFile type unspecified.",
            "OpenAPI Spec v2.0.",
            "OpenAPI Spec v3.0.",
            "OpenAPI Spec v3.1."
          ],
          "enum": [
            "FORMAT_UNSPECIFIED",
            "OPEN_API_SPEC_2_0",
            "OPEN_API_SPEC_3_0",
            "OPEN_API_SPEC_3_1"
          ],
          "description": "Output only. The format of the spec.",
          "readOnly": true
        },
        "version": {
          "type": "string",
          "description": "Output only. The version in the spec. This maps to `info.version` in OpenAPI spec.",
          "readOnly": true
        },
        "owner": {
          "description": "Output only. Owner details for the spec. This maps to `info.contact` in OpenAPI spec.",
          "readOnly": true,
          "$ref": "GoogleCloudApihubV1Owner"
        }
      },
      "id": "GoogleCloudApihubV1OpenApiSpecDetails",
      "description": "OpenApiSpecDetails contains the details parsed from an OpenAPI spec in addition to the fields mentioned in SpecDetails.",
      "type": "object"
    },
    "GoogleCloudApihubV1ApiHubInstance": {
      "properties": {
        "updateTime": {
          "description": "Output only. Last update timestamp.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. Creation timestamp.",
          "readOnly": true
        },
        "description": {
          "type": "string",
          "description": "Optional. Description of the ApiHub instance."
        },
        "name": {
          "description": "Identifier. Format: `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`.",
          "type": "string"
        },
        "stateMessage": {
          "description": "Output only. Extra information about ApiHub instance state. Currently the message would be populated when state is `FAILED`.",
          "readOnly": true,
          "type": "string"
        },
        "config": {
          "$ref": "GoogleCloudApihubV1Config",
          "description": "Required. Config of the ApiHub instance."
        },
        "state": {
          "description": "Output only. The current state of the ApiHub instance.",
          "readOnly": true,
          "enumDescriptions": [
            "The default value. This value is used if the state is omitted.",
            "The ApiHub instance has not been initialized or has been deleted.",
            "The ApiHub instance is being created.",
            "The ApiHub instance has been created and is ready for use.",
            "The ApiHub instance is being updated.",
            "The ApiHub instance is being deleted.",
            "The ApiHub instance encountered an error during a state change."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "INACTIVE",
            "CREATING",
            "ACTIVE",
            "UPDATING",
            "DELETING",
            "FAILED"
          ],
          "type": "string"
        },
        "labels": {
          "description": "Optional. Instance labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources",
          "type": "object",
          "additionalProperties": {
            "type": "string"
          }
        }
      },
      "id": "GoogleCloudApihubV1ApiHubInstance",
      "description": "An ApiHubInstance represents the instance resources of the API Hub. Currently, only one ApiHub instance is allowed for each project.",
      "type": "object"
    },
    "GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse": {
      "properties": {},
      "id": "GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse",
      "description": "The ManagePluginInstanceSourceData method's response.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListApiOperationsResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1ListApiOperationsResponse",
      "description": "The ListApiOperations method's response.",
      "properties": {
        "apiOperations": {
          "description": "The operations corresponding to an API version.",
          "items": {
            "$ref": "GoogleCloudApihubV1ApiOperation"
          },
          "type": "array"
        },
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest": {
      "id": "GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest",
      "description": "The ManagePluginInstanceSourceData method's request.",
      "type": "object",
      "properties": {
        "data": {
          "description": "Required. Data to be managed.",
          "type": "string",
          "format": "byte"
        },
        "dataType": {
          "type": "string",
          "description": "Required. Type of data to be managed.",
          "enumDescriptions": [
            "Default unspecified type.",
            "Proxy deployment manifest.",
            "Environment manifest.",
            "Proxy bundle.",
            "Shared flow bundle."
          ],
          "enum": [
            "DATA_TYPE_UNSPECIFIED",
            "PROXY_DEPLOYMENT_MANIFEST",
            "ENVIRONMENT_MANIFEST",
            "PROXY_BUNDLE",
            "SHARED_FLOW_BUNDLE"
          ]
        },
        "action": {
          "enumDescriptions": [
            "Default unspecified action.",
            "Upload or upsert data.",
            "Delete data."
          ],
          "enum": [
            "ACTION_UNSPECIFIED",
            "UPLOAD",
            "DELETE"
          ],
          "description": "Required. Action to be performed.",
          "type": "string"
        },
        "relativePath": {
          "description": "Required. Relative path of data being managed for a given plugin instance.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1McpTool": {
      "id": "GoogleCloudApihubV1McpTool",
      "description": "Details describing an MCP Tool.",
      "type": "object",
      "properties": {
        "description": {
          "description": "Optional. Description of what the tool does.",
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "Required. The name of the tool, unique within its parent scope (version)."
        },
        "title": {
          "description": "Optional. Optional title for the tool.",
          "type": "string"
        },
        "annotations": {
          "description": "Optional. Optional annotations for the tool.",
          "$ref": "GoogleCloudApihubV1ToolAnnotations"
        },
        "outputSchema": {
          "description": "Optional. Output schema for the operation. This can be parsed only from MCP schema type.",
          "$ref": "GoogleCloudApihubV1OperationSchema"
        },
        "inputSchema": {
          "description": "Optional. Input schema for the operation. This can be parsed only from MCP schema type.",
          "$ref": "GoogleCloudApihubV1OperationSchema"
        }
      }
    },
    "GoogleCloudApihubV1MultiIntValues": {
      "properties": {
        "values": {
          "description": "Optional. The config variable value of data type multi int.",
          "items": {
            "type": "integer",
            "format": "int32"
          },
          "type": "array"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1MultiIntValues",
      "description": "The config variable value of data type multi int."
    },
    "GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse": {
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        },
        "runtimeProjectAttachments": {
          "type": "array",
          "description": "List of runtime project attachments.",
          "items": {
            "$ref": "GoogleCloudApihubV1RuntimeProjectAttachment"
          }
        }
      },
      "id": "GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse",
      "description": "The ListRuntimeProjectAttachments method's response.",
      "type": "object"
    },
    "GoogleCloudApihubV1SearchResourcesResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1SearchResourcesResponse",
      "description": "Response for the SearchResources method.",
      "properties": {
        "searchResults": {
          "type": "array",
          "description": "List of search results according to the filter and search query specified. The order of search results represents the ranking.",
          "items": {
            "$ref": "GoogleCloudApihubV1SearchResult"
          }
        },
        "nextPageToken": {
          "description": "Pass this token in the SearchResourcesRequest to continue to list results. If all results have been returned, this field is an empty string or not present in the response.",
          "type": "string"
        }
      }
    },
    "GoogleCloudApihubV1AllDataAddonConfig": {
      "properties": {
        "enabled": {
          "description": "Required. If true, the addon is enabled for all data in the API hub.",
          "type": "boolean"
        }
      },
      "id": "GoogleCloudApihubV1AllDataAddonConfig",
      "description": "Configuration for addons which act on all data in the API hub. This is used to specify if the addon is enabled for all data in the API hub.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListDiscoveredApiOperationsResponse": {
      "type": "object",
      "id": "GoogleCloudApihubV1ListDiscoveredApiOperationsResponse",
      "description": "Message for response to listing DiscoveredApiOperations",
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        },
        "discoveredApiOperations": {
          "type": "array",
          "description": "The DiscoveredApiOperations from the specified project, location and DiscoveredApiObservation.",
          "items": {
            "$ref": "GoogleCloudApihubV1DiscoveredApiOperation"
          }
        }
      }
    },
    "GoogleCloudApihubV1SummaryEntry": {
      "properties": {
        "severity": {
          "enumDescriptions": [
            "Severity unspecified.",
            "Severity error.",
            "Severity warning.",
            "Severity info.",
            "Severity hint."
          ],
          "enum": [
            "SEVERITY_UNSPECIFIED",
            "SEVERITY_ERROR",
            "SEVERITY_WARNING",
            "SEVERITY_INFO",
            "SEVERITY_HINT"
          ],
          "type": "string",
          "description": "Required. Severity of the issue."
        },
        "count": {
          "type": "integer",
          "format": "int32",
          "description": "Required. Count of issues with the given severity."
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1SummaryEntry",
      "description": "Count of issues with a given severity."
    },
    "GoogleCloudApihubV1PluginInstanceActionSource": {
      "properties": {
        "pluginInstance": {
          "description": "Output only. The resource name of the source plugin instance. Format is `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
          "readOnly": true,
          "type": "string"
        },
        "actionId": {
          "type": "string",
          "description": "Output only. The id of the plugin instance action.",
          "readOnly": true
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1PluginInstanceActionSource",
      "description": "PluginInstanceActionSource represents the plugin instance action source."
    },
    "GoogleCloudApihubV1HttpResponse": {
      "properties": {
        "headers": {
          "type": "object",
          "description": "Optional. Unordered map from header name to header metadata",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1Header"
          }
        },
        "responseCodes": {
          "additionalProperties": {
            "type": "string",
            "format": "int64"
          },
          "type": "object",
          "description": "Optional. Map of status code to observed count"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1HttpResponse",
      "description": "An aggregation of HTTP responses."
    },
    "GoogleCloudApihubV1ApigeeEdgeConfig": {
      "properties": {
        "environmentFilter": {
          "$ref": "GoogleCloudApihubV1EnvironmentFilter",
          "description": "Optional. The filter to apply on the resources managed by the gateway plugin instance. If provided this filter applies environment specific filtering."
        }
      },
      "id": "GoogleCloudApihubV1ApigeeEdgeConfig",
      "description": "Configuration for Apigee Edge gateways. Applicability of a filter is determined by the filter being provided. If none of the filters are provided the addon will be enabled for all data brought in by the gateway plugin instance.",
      "type": "object"
    },
    "GoogleCloudApihubV1Header": {
      "type": "object",
      "id": "GoogleCloudApihubV1Header",
      "description": "An aggregation of HTTP header occurrences.",
      "properties": {
        "count": {
          "description": "The number of occurrences of this Header across transactions.",
          "type": "string",
          "format": "int64"
        },
        "dataType": {
          "enumDescriptions": [
            "Unspecified data type",
            "Boolean data type",
            "Integer data type",
            "Float data type",
            "String data type",
            "UUID data type"
          ],
          "enum": [
            "DATA_TYPE_UNSPECIFIED",
            "BOOL",
            "INTEGER",
            "FLOAT",
            "STRING",
            "UUID"
          ],
          "type": "string",
          "description": "Data type of header"
        },
        "name": {
          "type": "string",
          "description": "Header name."
        }
      }
    },
    "GoogleCloudApihubV1StyleGuideContents": {
      "type": "object",
      "id": "GoogleCloudApihubV1StyleGuideContents",
      "description": "The style guide contents.",
      "properties": {
        "contents": {
          "type": "string",
          "format": "byte",
          "description": "Required. The contents of the style guide."
        },
        "mimeType": {
          "type": "string",
          "description": "Required. The mime type of the content."
        }
      }
    },
    "GoogleCloudApihubV1AddonConfig": {
      "type": "object",
      "id": "GoogleCloudApihubV1AddonConfig",
      "description": "Configuration for the addon.",
      "properties": {
        "gatewayPluginAddonConfig": {
          "$ref": "GoogleCloudApihubV1GatewayPluginAddonConfig",
          "description": "Configuration for gateway plugin addons."
        },
        "allDataAddonConfig": {
          "description": "Configuration for addons which act on all data in the API hub.",
          "$ref": "GoogleCloudApihubV1AllDataAddonConfig"
        }
      }
    },
    "GoogleCloudApihubV1AttributeValues": {
      "properties": {
        "stringValues": {
          "description": "The attribute values associated with a resource in case attribute data type is string.",
          "$ref": "GoogleCloudApihubV1StringAttributeValues"
        },
        "uriValues": {
          "$ref": "GoogleCloudApihubV1StringAttributeValues",
          "description": "The attribute values associated with a resource in case attribute data type is URL, URI or IP, like gs://bucket-name/object-name."
        },
        "attribute": {
          "type": "string",
          "description": "Output only. The name of the attribute. Format: projects/{project}/locations/{location}/attributes/{attribute}",
          "readOnly": true
        },
        "enumValues": {
          "$ref": "GoogleCloudApihubV1EnumAttributeValues",
          "description": "The attribute values associated with a resource in case attribute data type is enum."
        },
        "jsonValues": {
          "description": "The attribute values associated with a resource in case attribute data type is JSON.",
          "$ref": "GoogleCloudApihubV1StringAttributeValues"
        }
      },
      "id": "GoogleCloudApihubV1AttributeValues",
      "description": "The attribute values associated with resource.",
      "type": "object"
    },
    "GoogleCloudApihubV1DependencyErrorDetail": {
      "id": "GoogleCloudApihubV1DependencyErrorDetail",
      "description": "Details describing error condition of a dependency.",
      "type": "object",
      "properties": {
        "error": {
          "description": "Optional. Error in the dependency.",
          "type": "string",
          "enumDescriptions": [
            "Default value used for no error in the dependency.",
            "Supplier entity has been deleted.",
            "Supplier entity has been recreated."
          ],
          "enum": [
            "ERROR_UNSPECIFIED",
            "SUPPLIER_NOT_FOUND",
            "SUPPLIER_RECREATED"
          ]
        },
        "errorTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Optional. Timestamp at which the error was found."
        }
      }
    },
    "GoogleCloudApihubV1HttpOperation": {
      "type": "object",
      "id": "GoogleCloudApihubV1HttpOperation",
      "description": "The HTTP Operation.",
      "properties": {
        "path": {
          "description": "Optional. The path details for the Operation. Note: Even though this field is optional, it is required for CreateApiOperation API and we will fail the request if not provided.",
          "$ref": "GoogleCloudApihubV1Path"
        },
        "method": {
          "type": "string",
          "description": "Optional. Operation method Note: Even though this field is optional, it is required for CreateApiOperation API and we will fail the request if not provided.",
          "enumDescriptions": [
            "Method unspecified.",
            "Get Operation type.",
            "Put Operation type.",
            "Post Operation type.",
            "Delete Operation type.",
            "Options Operation type.",
            "Head Operation type.",
            "Patch Operation type.",
            "Trace Operation type."
          ],
          "enum": [
            "METHOD_UNSPECIFIED",
            "GET",
            "PUT",
            "POST",
            "DELETE",
            "OPTIONS",
            "HEAD",
            "PATCH",
            "TRACE"
          ]
        }
      }
    },
    "GoogleLongrunningOperation": {
      "type": "object",
      "id": "GoogleLongrunningOperation",
      "description": "This resource represents a long-running operation that is the result of a network API call.",
      "properties": {
        "name": {
          "type": "string",
          "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`."
        },
        "done": {
          "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.",
          "type": "boolean"
        },
        "response": {
          "additionalProperties": {
            "type": "any",
            "description": "Properties of the object. Contains field @type with type URL."
          },
          "type": "object",
          "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`."
        },
        "error": {
          "description": "The error result of the operation in case of failure or cancellation.",
          "$ref": "GoogleRpcStatus"
        },
        "metadata": {
          "type": "object",
          "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.",
          "additionalProperties": {
            "type": "any",
            "description": "Properties of the object. Contains field @type with type URL."
          }
        }
      }
    },
    "GoogleCloudApihubV1HttpOperationDetails": {
      "type": "object",
      "id": "GoogleCloudApihubV1HttpOperationDetails",
      "description": "An HTTP-based API Operation, sometimes called a \"REST\" Operation.",
      "properties": {
        "queryParams": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1QueryParam"
          },
          "type": "object",
          "description": "Optional. Query params of HttpOperation"
        },
        "request": {
          "description": "Optional. Request metadata.",
          "$ref": "GoogleCloudApihubV1HttpRequest"
        },
        "pathParams": {
          "type": "array",
          "description": "Optional. Path params of HttpOperation",
          "items": {
            "$ref": "GoogleCloudApihubV1PathParam"
          }
        },
        "response": {
          "$ref": "GoogleCloudApihubV1HttpResponse",
          "description": "Optional. Response metadata."
        },
        "httpOperation": {
          "$ref": "GoogleCloudApihubV1HttpOperation",
          "description": "Required. An HTTP Operation."
        }
      }
    },
    "GoogleCloudApihubV1PluginInstanceAction": {
      "properties": {
        "actionId": {
          "type": "string",
          "description": "Required. This should map to one of the action id specified in actions_config in the plugin."
        },
        "scheduleCronExpression": {
          "type": "string",
          "description": "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."
        },
        "scheduleTimeZone": {
          "type": "string",
          "description": "Optional. The time zone for the schedule cron expression. If not provided, UTC will be used."
        },
        "serviceAccount": {
          "description": "Optional. The service account used to publish data. Note, the service account will only be accepted for non-Google Cloud plugins like OPDK.",
          "type": "string"
        },
        "resourceConfig": {
          "$ref": "GoogleCloudApihubV1ResourceConfig",
          "description": "Output only. The configuration of resources created for a given plugin instance action. Note these will be returned only in case of non-Google Cloud plugins like OPDK.",
          "readOnly": true
        },
        "state": {
          "enumDescriptions": [
            "Default unspecified state.",
            "The action is enabled in the plugin instance i.e., executions can be triggered for this action.",
            "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.",
            "The action in the plugin instance is being enabled.",
            "The action in the plugin instance is being disabled.",
            "The ERROR state can come while enabling/disabling plugin instance action. Users can retrigger enable, disable via EnablePluginInstanceAction and DisablePluginInstanceAction 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."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "ENABLED",
            "DISABLED",
            "ENABLING",
            "DISABLING",
            "ERROR"
          ],
          "description": "Output only. The current state of the plugin action in the plugin instance.",
          "readOnly": true,
          "type": "string"
        },
        "hubInstanceAction": {
          "$ref": "GoogleCloudApihubV1ExecutionStatus",
          "description": "Optional. The execution information for the plugin instance action done corresponding to an API hub instance."
        },
        "curationConfig": {
          "description": "Optional. This configuration should be provided if the plugin action is publishing data to API hub curate layer.",
          "$ref": "GoogleCloudApihubV1CurationConfig"
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1PluginInstanceAction",
      "description": "PluginInstanceAction represents an action which can be executed in the plugin instance."
    },
    "GoogleCloudApihubV1Api": {
      "properties": {
        "displayName": {
          "description": "Required. The display name of the API resource.",
          "type": "string"
        },
        "team": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The team owning the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-team` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "description": {
          "description": "Optional. The description of the API resource.",
          "type": "string"
        },
        "updateTime": {
          "description": "Output only. The time at which the API resource was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "apiStyle": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The style of the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-style` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "maturityLevel": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The maturity level of the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-maturity-level` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "attributes": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          },
          "description": "Optional. The list of user defined attributes associated with the API resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "type": "object"
        },
        "apiFunctionalRequirements": {
          "description": "Optional. The api functional requirements associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-functional-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "businessUnit": {
          "description": "Optional. The business unit owning the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-business-unit` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "apiTechnicalRequirements": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The api technical requirements associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-technical-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory."
        },
        "versions": {
          "type": "array",
          "description": "Output only. The list of versions present in an API resource. Note: An API resource can be associated with more than 1 version. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
          "readOnly": true,
          "items": {
            "type": "string"
          }
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the API resource in the API Hub. Format: `projects/{project}/locations/{location}/apis/{api}`"
        },
        "owner": {
          "$ref": "GoogleCloudApihubV1Owner",
          "description": "Optional. Owner details for the API resource."
        },
        "createTime": {
          "description": "Output only. The time at which the API resource was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "selectedVersion": {
          "description": "Optional. The selected version for an API resource. This can be used when special handling is needed on client side for particular version of the API. Format is `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
          "type": "string"
        },
        "apiRequirements": {
          "description": "Optional. The api requirement doc associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "documentation": {
          "description": "Optional. The documentation for the API resource.",
          "$ref": "GoogleCloudApihubV1Documentation"
        },
        "fingerprint": {
          "type": "string",
          "description": "Optional. Fingerprint of the API resource. This must be unique for each API resource. It can neither be unset nor be updated to an existing fingerprint of another API resource."
        },
        "sourceMetadata": {
          "description": "Output only. The list of sources and metadata from the sources of the API resource.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1SourceMetadata"
          },
          "type": "array"
        },
        "targetUser": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The target users for the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-target-user` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        }
      },
      "id": "GoogleCloudApihubV1Api",
      "description": "An API resource in the API Hub.",
      "type": "object"
    },
    "GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse": {
      "id": "GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse",
      "description": "The ListRuntimeProjectAttachments method's response.",
      "type": "object",
      "properties": {
        "runtimeProjectAttachment": {
          "description": "Runtime project attachment for a project if exists, empty otherwise.",
          "$ref": "GoogleCloudApihubV1RuntimeProjectAttachment"
        }
      }
    },
    "GoogleCloudApihubV1ApiOperation": {
      "properties": {
        "spec": {
          "description": "Output only. The name of the spec will be of the format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}` Note:The name of the spec will be empty if the operation is created via CreateApiOperation API.",
          "readOnly": true,
          "type": "string"
        },
        "name": {
          "description": "Identifier. The name of the operation. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`",
          "type": "string"
        },
        "details": {
          "$ref": "GoogleCloudApihubV1OperationDetails",
          "description": "Optional. Operation details. Note: Even though this field is optional, it is required for CreateApiOperation API and we will fail the request if not provided."
        },
        "updateTime": {
          "description": "Output only. The time at which the operation was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "createTime": {
          "description": "Output only. The time at which the operation was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "sourceMetadata": {
          "description": "Output only. The list of sources and metadata from the sources of the API operation.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1SourceMetadata"
          },
          "type": "array"
        },
        "attributes": {
          "type": "object",
          "description": "Optional. The list of user defined attributes associated with the API operation resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource.",
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          }
        }
      },
      "id": "GoogleCloudApihubV1ApiOperation",
      "description": "Represents an operation contained in an API version in the API Hub. An operation is added/updated/deleted in an API version when a new spec is added or an existing spec is updated/deleted in a version. Currently, an operation will be created only corresponding to OpenAPI spec as parsing is supported for OpenAPI spec. Alternatively operations can be managed via create,update and delete APIs, creation of apiOperation can be possible only for version with no parsed operations and update/delete can be possible only for operations created via create API.",
      "type": "object"
    },
    "GoogleCloudApihubV1GatewayPluginAddonConfig": {
      "type": "object",
      "id": "GoogleCloudApihubV1GatewayPluginAddonConfig",
      "description": "Configuration for gateway plugin addons. This is used to specify the list of gateway plugin configs for which the addon is enabled.",
      "properties": {
        "gatewayPluginConfigs": {
          "type": "array",
          "description": "Required. The list of gateway plugin configs for which the addon is enabled. Each gateway plugin config should have a unique plugin instance.",
          "items": {
            "$ref": "GoogleCloudApihubV1GatewayPluginConfig"
          }
        }
      }
    },
    "GoogleCloudApihubV1Deployment": {
      "type": "object",
      "id": "GoogleCloudApihubV1Deployment",
      "description": "Details of the deployment where APIs are hosted. A deployment could represent an Apigee proxy, API gateway, other Google Cloud services or non-Google Cloud services as well. A deployment entity is a root level entity in the API hub and exists independent of any API.",
      "properties": {
        "description": {
          "type": "string",
          "description": "Optional. The description of the deployment."
        },
        "updateTime": {
          "description": "Output only. The time at which the deployment was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "apiVersions": {
          "type": "array",
          "description": "Output only. The API versions linked to this deployment. Note: A particular deployment could be linked to multiple different API versions (of same or different APIs).",
          "readOnly": true,
          "items": {
            "type": "string"
          }
        },
        "sourceProject": {
          "type": "string",
          "description": "Optional. The project to which the deployment belongs. For Google Cloud gateways, this will refer to the project identifier. For others like Edge/OPDK, this will refer to the org identifier."
        },
        "displayName": {
          "description": "Required. The display name of the deployment.",
          "type": "string"
        },
        "managementUrl": {
          "description": "Optional. The uri where users can navigate to for the management of the deployment. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-management-url` The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. The value of the attribute should be a valid URL.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "name": {
          "type": "string",
          "description": "Identifier. The name of the deployment. Format: `projects/{project}/locations/{location}/deployments/{deployment}`"
        },
        "createTime": {
          "description": "Output only. The time at which the deployment was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "deploymentType": {
          "description": "Required. The type of deployment. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-deployment-type` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "attributes": {
          "additionalProperties": {
            "$ref": "GoogleCloudApihubV1AttributeValues"
          },
          "type": "object",
          "description": "Optional. The list of user defined attributes associated with the deployment resource. The key is the attribute name. It will be of the format: `projects/{project}/locations/{location}/attributes/{attribute}`. The value is the attribute values associated with the resource."
        },
        "resourceUri": {
          "type": "string",
          "description": "Required. The resource URI identifies the deployment within its gateway. For Apigee gateways, its recommended to use the format: organizations/{org}/environments/{env}/apis/{api}. For ex: if a proxy with name `orders` is deployed in `staging` environment of `cymbal` organization, the resource URI would be: `organizations/cymbal/environments/staging/apis/orders`."
        },
        "sourceEnvironment": {
          "type": "string",
          "description": "Optional. The environment at source for the deployment. For example: prod, dev, staging, etc."
        },
        "documentation": {
          "$ref": "GoogleCloudApihubV1Documentation",
          "description": "Optional. The documentation of the deployment."
        },
        "slo": {
          "$ref": "GoogleCloudApihubV1AttributeValues",
          "description": "Optional. The SLO for this deployment. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-slo` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
        },
        "sourceUri": {
          "description": "Optional. The uri where additional source specific information for this deployment can be found. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-source-uri` The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. The value of the attribute should be a valid URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "endpoints": {
          "description": "Required. The endpoints at which this deployment resource is listening for API requests. This could be a list of complete URIs, hostnames or an IP addresses.",
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "environment": {
          "description": "Optional. The environment mapping to this deployment. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-environment` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute.",
          "$ref": "GoogleCloudApihubV1AttributeValues"
        },
        "sourceMetadata": {
          "description": "Output only. The list of sources and metadata from the sources of the deployment.",
          "readOnly": true,
          "items": {
            "$ref": "GoogleCloudApihubV1SourceMetadata"
          },
          "type": "array"
        }
      }
    },
    "GoogleCloudApihubV1ListDependenciesResponse": {
      "id": "GoogleCloudApihubV1ListDependenciesResponse",
      "description": "The ListDependencies method's response.",
      "type": "object",
      "properties": {
        "nextPageToken": {
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
          "type": "string"
        },
        "dependencies": {
          "type": "array",
          "description": "The dependency resources present in the API hub.",
          "items": {
            "$ref": "GoogleCloudApihubV1Dependency"
          }
        }
      }
    },
    "GoogleCloudApihubV1Addon": {
      "type": "object",
      "id": "GoogleCloudApihubV1Addon",
      "description": "Addon resource.",
      "properties": {
        "config": {
          "description": "Required. The configuration of the addon.",
          "$ref": "GoogleCloudApihubV1AddonConfig"
        },
        "state": {
          "type": "string",
          "enumDescriptions": [
            "The addon state is not specified.",
            "The addon is active.",
            "The addon is being updated.",
            "The addon is in error state.",
            "The addon is inactive."
          ],
          "enum": [
            "ADDON_STATE_UNSPECIFIED",
            "ACTIVE",
            "UPDATING",
            "ERROR",
            "INACTIVE"
          ],
          "description": "Output only. The state of the addon.",
          "readOnly": true
        },
        "displayName": {
          "description": "Required. The display name of the addon.",
          "type": "string"
        },
        "dataSource": {
          "enumDescriptions": [
            "The data source of the addon is not specified.",
            "Addon operates on data collected from specific plugin instances.",
            "Addon operates on all data in the API hub."
          ],
          "enum": [
            "DATA_SOURCE_UNSPECIFIED",
            "PLUGIN_INSTANCE",
            "ALL_DATA"
          ],
          "type": "string",
          "description": "Required. The data source on which the addon operates. This determines which field in the `config` oneof is used."
        },
        "description": {
          "type": "string",
          "description": "Optional. The description of the addon."
        },
        "name": {
          "description": "Identifier. The name of the addon to enable. Format: `projects/{project}/locations/{location}/addons/{addon}`.",
          "type": "string"
        },
        "updateTime": {
          "description": "Output only. The time at which the addon was last updated.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "createTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the addon was created.",
          "readOnly": true
        }
      }
    },
    "GoogleCloudApihubV1ExecutionStatus": {
      "properties": {
        "currentExecutionState": {
          "type": "string",
          "description": "Output only. The current state of the execution.",
          "readOnly": true,
          "enumDescriptions": [
            "Default unspecified execution state.",
            "The plugin instance is executing.",
            "The plugin instance is not running an execution."
          ],
          "enum": [
            "CURRENT_EXECUTION_STATE_UNSPECIFIED",
            "RUNNING",
            "NOT_RUNNING"
          ]
        },
        "lastExecution": {
          "description": "Output only. The last execution of the plugin instance.",
          "readOnly": true,
          "$ref": "GoogleCloudApihubV1LastExecution"
        }
      },
      "id": "GoogleCloudApihubV1ExecutionStatus",
      "description": "The execution status for the plugin instance.",
      "type": "object"
    },
    "GoogleCloudApihubV1SearchResourcesRequest": {
      "type": "object",
      "id": "GoogleCloudApihubV1SearchResourcesRequest",
      "description": "The SearchResources method's request.",
      "properties": {
        "query": {
          "type": "string",
          "description": "Required. The free text search query. This query can contain keywords which could be related to any detail of the API-Hub resources such display names, descriptions, attributes etc."
        },
        "pageToken": {
          "type": "string",
          "description": "Optional. A page token, received from a previous SearchResources call. Specify this parameter to retrieve the next page of transactions. When paginating, you must specify the `page_token` parameter and all the other parameters except page_size should be specified with the same value which was used in the previous call. If the other fields are set with a different value than the previous call then `INVALID_ARGUMENT` error is returned."
        },
        "filter": {
          "description": "Optional. An expression that filters the list of search results. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string, a number, or a boolean. The comparison operator must be `=`. Filters are not case sensitive. The following field names are eligible for filtering: * `resource_type` - The type of resource in the search results. Must be one of the following: `Api`, `ApiOperation`, `Deployment`, `Definition`, `Spec` or `Version`. This field can only be specified once in the filter. Here are is an example: * `resource_type = Api` - The resource_type is _Api_.",
          "type": "string"
        },
        "pageSize": {
          "description": "Optional. The maximum number of search results to return. The service may return fewer than this value. If unspecified at most 10 search results will be returned. If value is negative then `INVALID_ARGUMENT` error is returned. The maximum value is 25; values above 25 will be coerced to 25. While paginating, you can specify a new page size parameter for each page of search results to be listed.",
          "type": "integer",
          "format": "int32"
        }
      }
    },
    "GoogleCloudApihubV1LastExecution": {
      "properties": {
        "result": {
          "enumDescriptions": [
            "Default unspecified execution result.",
            "The plugin instance executed successfully.",
            "The plugin instance execution failed."
          ],
          "enum": [
            "RESULT_UNSPECIFIED",
            "SUCCEEDED",
            "FAILED"
          ],
          "description": "Output only. The result of the last execution of the plugin instance.",
          "readOnly": true,
          "type": "string"
        },
        "resultMetadata": {
          "description": "Output only. The result metadata of the last execution of the plugin instance. This will be a string representation of a JSON object and will be available on successful execution.",
          "readOnly": true,
          "type": "string"
        },
        "errorMessage": {
          "type": "string",
          "description": "Output only. Error message describing the failure, if any, during the last execution.",
          "readOnly": true
        },
        "startTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The last execution start time of the plugin instance.",
          "readOnly": true
        },
        "endTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The last execution end time of the plugin instance.",
          "readOnly": true
        }
      },
      "type": "object",
      "id": "GoogleCloudApihubV1LastExecution",
      "description": "The result of the last execution of the plugin instance."
    },
    "GoogleCloudApihubV1DisablePluginInstanceActionRequest": {
      "id": "GoogleCloudApihubV1DisablePluginInstanceActionRequest",
      "description": "The DisablePluginInstanceAction method's request.",
      "type": "object",
      "properties": {
        "actionId": {
          "type": "string",
          "description": "Required. The action id to disable."
        }
      }
    },
    "GoogleCloudApihubV1ApiData": {
      "properties": {
        "apiMetadataList": {
          "$ref": "GoogleCloudApihubV1ApiMetadataList",
          "description": "Optional. The list of API metadata."
        }
      },
      "id": "GoogleCloudApihubV1ApiData",
      "description": "The API data to be collected.",
      "type": "object"
    },
    "GoogleRpcStatus": {
      "properties": {
        "code": {
          "type": "integer",
          "format": "int32",
          "description": "The status code, which should be an enum value of google.rpc.Code."
        },
        "message": {
          "type": "string",
          "description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client."
        },
        "details": {
          "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use.",
          "items": {
            "type": "object",
            "additionalProperties": {
              "type": "any",
              "description": "Properties of the object. Contains field @type with type URL."
            }
          },
          "type": "array"
        }
      },
      "id": "GoogleRpcStatus",
      "description": "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).",
      "type": "object"
    },
    "GoogleCloudApihubV1Attribute": {
      "properties": {
        "cardinality": {
          "type": "integer",
          "format": "int32",
          "description": "Optional. The maximum number of values that the attribute can have when associated with an API Hub resource. Cardinality 1 would represent a single-valued attribute. It must not be less than 1 or greater than 20. If not specified, the cardinality would be set to 1 by default and represent a single-valued attribute."
        },
        "createTime": {
          "description": "Output only. The time at which the attribute was created.",
          "readOnly": true,
          "type": "string",
          "format": "google-datetime"
        },
        "name": {
          "description": "Identifier. The name of the attribute in the API Hub. Format: `projects/{project}/locations/{location}/attributes/{attribute}`",
          "type": "string"
        },
        "scope": {
          "enumDescriptions": [
            "Scope Unspecified.",
            "Attribute can be linked to an API.",
            "Attribute can be linked to an API version.",
            "Attribute can be linked to a Spec.",
            "Attribute can be linked to an API Operation.",
            "Attribute can be linked to a Deployment.",
            "Attribute can be linked to a Dependency.",
            "Attribute can be linked to a definition.",
            "Attribute can be linked to a ExternalAPI.",
            "Attribute can be linked to a Plugin."
          ],
          "enum": [
            "SCOPE_UNSPECIFIED",
            "API",
            "VERSION",
            "SPEC",
            "API_OPERATION",
            "DEPLOYMENT",
            "DEPENDENCY",
            "DEFINITION",
            "EXTERNAL_API",
            "PLUGIN"
          ],
          "type": "string",
          "description": "Required. The scope of the attribute. It represents the resource in the API Hub to which the attribute can be linked."
        },
        "displayName": {
          "type": "string",
          "description": "Required. The display name of the attribute."
        },
        "dataType": {
          "enumDescriptions": [
            "Attribute data type unspecified.",
            "Attribute's value is of type enum.",
            "Attribute's value is of type json.",
            "Attribute's value is of type string.",
            "Attribute's value is of type uri."
          ],
          "enum": [
            "DATA_TYPE_UNSPECIFIED",
            "ENUM",
            "JSON",
            "STRING",
            "URI"
          ],
          "type": "string",
          "description": "Required. The type of the data of the attribute."
        },
        "definitionType": {
          "type": "string",
          "description": "Output only. The definition type of the attribute.",
          "readOnly": true,
          "enumDescriptions": [
            "Attribute definition type unspecified.",
            "The attribute is predefined by the API Hub. Note that only the list of allowed values can be updated in this case via UpdateAttribute method.",
            "The attribute is defined by the user."
          ],
          "enum": [
            "DEFINITION_TYPE_UNSPECIFIED",
            "SYSTEM_DEFINED",
            "USER_DEFINED"
          ]
        },
        "allowedValues": {
          "description": "Optional. The list of allowed values when the attribute value is of type enum. This is required when the data_type of the attribute is ENUM. The maximum number of allowed values of an attribute will be 1000.",
          "items": {
            "$ref": "GoogleCloudApihubV1AllowedValue"
          },
          "type": "array"
        },
        "mandatory": {
          "description": "Output only. When mandatory is true, the attribute is mandatory for the resource specified in the scope. Only System defined attributes can be mandatory.",
          "readOnly": true,
          "type": "boolean"
        },
        "updateTime": {
          "type": "string",
          "format": "google-datetime",
          "description": "Output only. The time at which the attribute was last updated.",
          "readOnly": true
        },
        "description": {
          "type": "string",
          "description": "Optional. The description of the attribute."
        }
      },
      "id": "GoogleCloudApihubV1Attribute",
      "description": "An attribute in the API Hub. An attribute is a name value pair which can be attached to different resources in the API hub based on the scope of the attribute. Attributes can either be pre-defined by the API Hub or created by users.",
      "type": "object"
    },
    "GoogleCloudApihubV1ListDiscoveredApiObservationsResponse": {
      "id": "GoogleCloudApihubV1ListDiscoveredApiObservationsResponse",
      "description": "Message for response to listing DiscoveredApiObservations",
      "type": "object",
      "properties": {
        "discoveredApiObservations": {
          "description": "The DiscoveredApiObservation from the specified project and location.",
          "items": {
            "$ref": "GoogleCloudApihubV1DiscoveredApiObservation"
          },
          "type": "array"
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages."
        }
      }
    },
    "GoogleCloudApihubV1CustomCuration": {
      "properties": {
        "curation": {
          "type": "string",
          "description": "Required. The unique name of the curation resource. This will be the name of the curation resource in the format: `projects/{project}/locations/{location}/curations/{curation}`"
        }
      },
      "id": "GoogleCloudApihubV1CustomCuration",
      "description": "Custom curation information for this plugin instance.",
      "type": "object"
    },
    "GoogleCloudApihubV1EnumAttributeValues": {
      "type": "object",
      "id": "GoogleCloudApihubV1EnumAttributeValues",
      "description": "The attribute values of data type enum.",
      "properties": {
        "values": {
          "type": "array",
          "description": "Required. The attribute values in case attribute data type is enum.",
          "items": {
            "$ref": "GoogleCloudApihubV1AllowedValue"
          }
        }
      }
    },
    "GoogleCloudApihubV1FlattenedApiVersionDeploymentView": {
      "id": "GoogleCloudApihubV1FlattenedApiVersionDeploymentView",
      "description": "A flattened view of an API, its version and one of the linked deployments.",
      "type": "object",
      "properties": {
        "deployment": {
          "$ref": "GoogleCloudApihubV1Deployment",
          "description": "Optional. The deployment."
        },
        "api": {
          "$ref": "GoogleCloudApihubV1Api",
          "description": "Optional. The API."
        },
        "version": {
          "$ref": "GoogleCloudApihubV1Version",
          "description": "Optional. The version."
        }
      }
    }
  },
  "ownerName": "Google",
  "fullyEncodeReservedExpansion": true,
  "batchPath": "batch",
  "title": "API hub API",
  "endpoints": [
    {
      "endpointUrl": "https://apihub.asia-east1.rep.googleapis.com/",
      "location": "asia-east1",
      "description": "Regional Endpoint"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.asia-south1.rep.googleapis.com/",
      "location": "asia-south1"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.asia-southeast1.rep.googleapis.com/",
      "location": "asia-southeast1"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.europe-north1.rep.googleapis.com/",
      "location": "europe-north1"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.europe-west1.rep.googleapis.com/",
      "location": "europe-west1"
    },
    {
      "endpointUrl": "https://apihub.europe-west9.rep.googleapis.com/",
      "location": "europe-west9",
      "description": "Regional Endpoint"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.us-central1.rep.googleapis.com/",
      "location": "us-central1"
    },
    {
      "endpointUrl": "https://apihub.us-east1.rep.googleapis.com/",
      "location": "us-east1",
      "description": "Regional Endpoint"
    },
    {
      "description": "Regional Endpoint",
      "endpointUrl": "https://apihub.us-west1.rep.googleapis.com/",
      "location": "us-west1"
    }
  ],
  "description": "",
  "icons": {
    "x16": "http://www.google.com/images/icons/product/search-16.gif",
    "x32": "http://www.google.com/images/icons/product/search-32.gif"
  },
  "auth": {
    "oauth2": {
      "scopes": {
        "https://www.googleapis.com/auth/cloud-platform": {
          "description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
        }
      }
    }
  },
  "ownerDomain": "google.com",
  "basePath": "",
  "name": "apihub",
  "revision": "20260425",
  "id": "apihub:v1",
  "parameters": {
    "oauth_token": {
      "type": "string",
      "location": "query",
      "description": "OAuth 2.0 token for the current user."
    },
    "prettyPrint": {
      "description": "Returns response with indentations and line breaks.",
      "default": "true",
      "type": "boolean",
      "location": "query"
    },
    "quotaUser": {
      "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
      "type": "string",
      "location": "query"
    },
    "access_token": {
      "type": "string",
      "location": "query",
      "description": "OAuth access token."
    },
    "callback": {
      "description": "JSONP",
      "type": "string",
      "location": "query"
    },
    "$.xgafv": {
      "type": "string",
      "enum": [
        "1",
        "2"
      ],
      "enumDescriptions": [
        "v1 error format",
        "v2 error format"
      ],
      "description": "V1 error format.",
      "location": "query"
    },
    "key": {
      "type": "string",
      "location": "query",
      "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token."
    },
    "fields": {
      "type": "string",
      "location": "query",
      "description": "Selector specifying which fields to include in a partial response."
    },
    "upload_protocol": {
      "description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
      "type": "string",
      "location": "query"
    },
    "alt": {
      "enum": [
        "json",
        "media",
        "proto"
      ],
      "enumDescriptions": [
        "Responses with Content-Type of application/json",
        "Media download with context-dependent Content-Type",
        "Responses with Content-Type of application/x-protobuf"
      ],
      "location": "query",
      "description": "Data format for response.",
      "default": "json",
      "type": "string"
    },
    "uploadType": {
      "type": "string",
      "location": "query",
      "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\")."
    }
  },
  "servicePath": "",
  "documentationLink": "https://cloud.google.com/apigee/docs/api-hub/what-is-api-hub",
  "discoveryVersion": "v1",
  "resources": {
    "projects": {
      "resources": {
        "locations": {
          "resources": {
            "externalApis": {
              "methods": {
                "create": {
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.externalApis.create",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent resource for the External API resource. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$"
                    },
                    "externalApiId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. The ID to use for the External API resource, which will become the final component of the External API's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another External API resource in the API hub. * If not provided, a system generated id will be used. This value should be 4-500 characters, and valid characters are /a-z[0-9]-_/."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1ExternalApi"
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1ExternalApi"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/externalApis",
                  "description": "Create an External API resource in the API hub.",
                  "path": "v1/{+parent}/externalApis",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "list": {
                  "path": "v1/{+parent}/externalApis",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/externalApis",
                  "description": "List External API resources in the API hub.",
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListExternalApisResponse"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.externalApis.list",
                  "parameters": {
                    "pageToken": {
                      "description": "Optional. A page token, received from a previous `ListExternalApis` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListExternalApis` must match the call that provided the page token.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "description": "Required. The parent, which owns this collection of External API resources. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of External API resources to return. The service may return fewer than this value. If unspecified, at most 50 ExternalApis will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    }
                  }
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Get details about an External API resource in the API hub.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/externalApis/{externalApisId}",
                  "id": "apihub.projects.locations.externalApis.get",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/externalApis/[^/]+$",
                      "description": "Required. The name of the External API resource to retrieve. Format: `projects/{project}/locations/{location}/externalApis/{externalApi}`",
                      "location": "path"
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1ExternalApi"
                  }
                },
                "delete": {
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Delete an External API resource in the API hub.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/externalApis/{externalApisId}",
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "Empty"
                  },
                  "id": "apihub.projects.locations.externalApis.delete",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/externalApis/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Required. The name of the External API resource to delete. Format: `projects/{project}/locations/{location}/externalApis/{externalApi}`"
                    }
                  },
                  "httpMethod": "DELETE"
                },
                "patch": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1ExternalApi"
                  },
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.externalApis.patch",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/externalApis/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Identifier. Format: `projects/{project}/locations/{location}/externalApi/{externalApi}`."
                    },
                    "updateMask": {
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask",
                      "description": "Required. The list of fields to update."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1ExternalApi"
                  },
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/externalApis/{externalApisId}",
                  "description": "Update an External API resource in the API hub. The following fields can be updated: * display_name * description * documentation * endpoints * paths The update_mask should be used to specify the fields being updated.",
                  "parameterOrder": [
                    "name"
                  ]
                }
              }
            },
            "curations": {
              "methods": {
                "patch": {
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/curations/{curationsId}",
                  "description": "Update a curation resource in the API hub. The following fields in the curation can be updated: * display_name * description The update_mask should be used to specify the fields being updated.",
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1Curation"
                  },
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.curations.patch",
                  "parameters": {
                    "name": {
                      "description": "Identifier. The name of the curation. Format: `projects/{project}/locations/{location}/curations/{curation}`",
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/curations/[^/]+$",
                      "type": "string"
                    },
                    "updateMask": {
                      "description": "Optional. The list of fields to update.",
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Curation"
                  }
                },
                "get": {
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.curations.get",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the curation resource to retrieve. Format: `projects/{project}/locations/{location}/curations/{curation}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/curations/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Curation"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/curations/{curationsId}",
                  "description": "Get curation resource details."
                },
                "delete": {
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "DELETE",
                  "id": "apihub.projects.locations.curations.delete",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the curation resource to delete. Format: `projects/{project}/locations/{location}/curations/{curation}`",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/curations/[^/]+$"
                    }
                  },
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/curations/{curationsId}",
                  "description": "Delete a curation resource in the API hub. A curation can only be deleted if it's not being used by any plugin instance.",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "create": {
                  "description": "Create a curation resource in the API hub. Once a curation resource is created, plugin instances can start using it.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/curations",
                  "path": "v1/{+parent}/curations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1Curation"
                  },
                  "id": "apihub.projects.locations.curations.create",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent resource for the curation resource. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$"
                    },
                    "curationId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. The ID to use for the curation resource, which will become the final component of the curations's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified ID is already used by another curation resource in the API hub. * If not provided, a system generated ID will be used. This value should be 4-500 characters, and valid characters are /a-z[0-9]-_/."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Curation"
                  },
                  "httpMethod": "POST"
                },
                "list": {
                  "parameterOrder": [
                    "parent"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/curations",
                  "description": "List curation resources in the API hub.",
                  "path": "v1/{+parent}/curations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.curations.list",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent, which owns this collection of curation resources. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. An expression that filters the list of curation resources. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e`, `:` or `=`. Filters are case insensitive. The following fields in the `curation resource` are eligible for filtering: * `create_time` - The time at which the curation was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `display_name` - The display name of the curation. Allowed comparison operators: `=`. * `state` - The state of the curation. Allowed comparison operators: `=`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The curation resource was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_."
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of curation resources to return. The service may return fewer than this value. If unspecified, at most 50 curations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListCurations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListCurations` must match the call that provided the page token."
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListCurationsResponse"
                  }
                }
              }
            },
            "apis": {
              "resources": {
                "versions": {
                  "methods": {
                    "get": {
                      "id": "apihub.projects.locations.apis.versions.get",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "description": "Required. The name of the API version to retrieve. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                          "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                          "required": true,
                          "type": "string"
                        }
                      },
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "GoogleCloudApihubV1Version"
                      },
                      "parameterOrder": [
                        "name"
                      ],
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "description": "Get details about the API version of an API resource. This will include information about the specs and operations present in the API version as well as the deployments linked to it.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}"
                    },
                    "delete": {
                      "id": "apihub.projects.locations.apis.versions.delete",
                      "parameters": {
                        "force": {
                          "location": "query",
                          "type": "boolean",
                          "description": "Optional. If set to true, any specs from this version will also be deleted. Otherwise, the request will only work if the version has no specs."
                        },
                        "name": {
                          "type": "string",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                          "description": "Required. The name of the version to delete. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                          "location": "path"
                        }
                      },
                      "httpMethod": "DELETE",
                      "response": {
                        "$ref": "Empty"
                      },
                      "parameterOrder": [
                        "name"
                      ],
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "description": "Delete an API version. Version can only be deleted if all underlying specs, operations, definitions and linked deployments are deleted.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}"
                    },
                    "patch": {
                      "description": "Update API version. The following fields in the version can be updated currently: * display_name * description * documentation * deployments * lifecycle * compliance * accreditation * attributes The update_mask should be used to specify the fields being updated.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}",
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "response": {
                        "$ref": "GoogleCloudApihubV1Version"
                      },
                      "id": "apihub.projects.locations.apis.versions.patch",
                      "parameters": {
                        "name": {
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                          "required": true,
                          "location": "path",
                          "description": "Identifier. The name of the version. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`"
                        },
                        "updateMask": {
                          "description": "Required. The list of fields to update.",
                          "location": "query",
                          "type": "string",
                          "format": "google-fieldmask"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1Version"
                      },
                      "httpMethod": "PATCH"
                    },
                    "create": {
                      "httpMethod": "POST",
                      "id": "apihub.projects.locations.apis.versions.create",
                      "parameters": {
                        "parent": {
                          "type": "string",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+$",
                          "description": "Required. The parent resource for API version. Format: `projects/{project}/locations/{location}/apis/{api}`",
                          "location": "path"
                        },
                        "versionId": {
                          "description": "Optional. The ID to use for the API version, which will become the final component of the version's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another version in the API resource. * If not provided, a system generated id will be used. This value should be 4-500 characters, overall resource name which will be of format `projects/{project}/locations/{location}/apis/{api}/versions/{version}`, its length is limited to 700 characters and valid characters are /a-z[0-9]-_/.",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1Version"
                      },
                      "response": {
                        "$ref": "GoogleCloudApihubV1Version"
                      },
                      "parameterOrder": [
                        "parent"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions",
                      "description": "Create an API version for an API resource in the API hub.",
                      "path": "v1/{+parent}/versions",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ]
                    },
                    "list": {
                      "response": {
                        "$ref": "GoogleCloudApihubV1ListVersionsResponse"
                      },
                      "httpMethod": "GET",
                      "id": "apihub.projects.locations.apis.versions.list",
                      "parameters": {
                        "pageToken": {
                          "description": "Optional. A page token, received from a previous `ListVersions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListVersions` must match the call that provided the page token.",
                          "location": "query",
                          "type": "string"
                        },
                        "parent": {
                          "location": "path",
                          "description": "Required. The parent which owns this collection of API versions i.e., the API resource Format: `projects/{project}/locations/{location}/apis/{api}`",
                          "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+$",
                          "required": true,
                          "type": "string"
                        },
                        "filter": {
                          "description": "Optional. An expression that filters the list of Versions. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string, a number, or a boolean. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `Version` are eligible for filtering: * `display_name` - The display name of the Version. Allowed comparison operators: `=`. * `create_time` - The time at which the Version was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `lifecycle.enum_values.values.id` - The allowed value id of the lifecycle attribute associated with the Version. Allowed comparison operators: `:`. * `lifecycle.enum_values.values.display_name` - The allowed value display name of the lifecycle attribute associated with the Version. Allowed comparison operators: `:`. * `compliance.enum_values.values.id` - The allowed value id of the compliances attribute associated with the Version. Allowed comparison operators: `:`. * `compliance.enum_values.values.display_name` - The allowed value display name of the compliances attribute associated with the Version. Allowed comparison operators: `:`. * `accreditation.enum_values.values.id` - The allowed value id of the accreditations attribute associated with the Version. Allowed comparison operators: `:`. * `accreditation.enum_values.values.display_name` - The allowed value display name of the accreditations attribute associated with the Version. Allowed comparison operators: `:`. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.id` - The allowed value id of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-id is a placeholder that can be replaced with any user defined enum attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.display_name` - The allowed value display name of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-display-name is a placeholder that can be replaced with any user defined enum attribute enum name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.string_values.values` - The allowed value of the user defined string attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-string is a placeholder that can be replaced with any user defined string attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.json_values.values` - The allowed value of the user defined JSON attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-json is a placeholder that can be replaced with any user defined JSON attribute name. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `lifecycle.enum_values.values.id: preview-id` - The filter string specifies that the id of the allowed value associated with the lifecycle attribute of the Version is _preview-id_. * `lifecycle.enum_values.values.display_name: \\\"Preview Display Name\\\"` - The filter string specifies that the display name of the allowed value associated with the lifecycle attribute of the Version is `Preview Display Name`. * `lifecycle.enum_values.values.id: preview-id AND create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The id of the allowed value associated with the lifecycle attribute of the Version is _preview-id_ and it was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `compliance.enum_values.values.id: gdpr-id OR compliance.enum_values.values.id: pci-dss-id` - The id of the allowed value associated with the compliance attribute is _gdpr-id_ or _pci-dss-id_. * `lifecycle.enum_values.values.id: preview-id AND attributes.projects/test-project-id/locations/test-location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.string_values.values: test` - The filter string specifies that the id of the allowed value associated with the lifecycle attribute of the Version is _preview-id_ and the value of the user defined attribute of type string is _test_.",
                          "location": "query",
                          "type": "string"
                        },
                        "pageSize": {
                          "description": "Optional. The maximum number of versions to return. The service may return fewer than this value. If unspecified, at most 50 versions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                          "location": "query",
                          "type": "integer",
                          "format": "int32"
                        }
                      },
                      "path": "v1/{+parent}/versions",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions",
                      "description": "List API versions of an API resource in the API hub.",
                      "parameterOrder": [
                        "parent"
                      ]
                    }
                  },
                  "resources": {
                    "definitions": {
                      "methods": {
                        "get": {
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Get details about a definition in an API version.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/definitions/{definitionsId}",
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "id": "apihub.projects.locations.apis.versions.definitions.get",
                          "parameters": {
                            "name": {
                              "description": "Required. The name of the definition to retrieve. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/definitions/{definition}`",
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/definitions/[^/]+$",
                              "type": "string"
                            }
                          },
                          "httpMethod": "GET",
                          "response": {
                            "$ref": "GoogleCloudApihubV1Definition"
                          }
                        }
                      }
                    },
                    "specs": {
                      "methods": {
                        "getContents": {
                          "response": {
                            "$ref": "GoogleCloudApihubV1SpecContents"
                          },
                          "id": "apihub.projects.locations.apis.versions.specs.getContents",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "description": "Required. The name of the spec whose contents need to be retrieved. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "type": "string",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "required": true
                            }
                          },
                          "httpMethod": "GET",
                          "description": "Get spec contents.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}:contents",
                          "path": "v1/{+name}:contents",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "parameterOrder": [
                            "name"
                          ]
                        },
                        "patch": {
                          "id": "apihub.projects.locations.apis.versions.specs.patch",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "description": "Identifier. The name of the spec. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "required": true,
                              "type": "string"
                            },
                            "updateMask": {
                              "description": "Required. The list of fields to update.",
                              "location": "query",
                              "type": "string",
                              "format": "google-fieldmask"
                            }
                          },
                          "request": {
                            "$ref": "GoogleCloudApihubV1Spec"
                          },
                          "httpMethod": "PATCH",
                          "response": {
                            "$ref": "GoogleCloudApihubV1Spec"
                          },
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Update spec. The following fields in the spec can be updated: * display_name * source_uri * lint_response * attributes * contents * spec_type In case of an OAS spec, updating spec contents can lead to: 1. Creation, deletion and update of operations. 2. Creation, deletion and update of definitions. 3. Update of other info parsed out from the new spec. In case of contents or source_uri being present in update mask, spec_type must also be present. Also, spec_type can not be present in update mask if contents or source_uri is not present. The update_mask should be used to specify the fields being updated.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}",
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ]
                        },
                        "get": {
                          "parameterOrder": [
                            "name"
                          ],
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}",
                          "description": "Get details about the information parsed from a spec. Note that this method does not return the raw spec contents. Use GetSpecContents method to retrieve the same.",
                          "httpMethod": "GET",
                          "id": "apihub.projects.locations.apis.versions.specs.get",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "description": "Required. The name of the spec to retrieve. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "required": true,
                              "type": "string"
                            }
                          },
                          "response": {
                            "$ref": "GoogleCloudApihubV1Spec"
                          }
                        },
                        "delete": {
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "description": "Delete a spec. Deleting a spec will also delete the associated operations from the version.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}",
                          "parameterOrder": [
                            "name"
                          ],
                          "response": {
                            "$ref": "Empty"
                          },
                          "id": "apihub.projects.locations.apis.versions.specs.delete",
                          "parameters": {
                            "name": {
                              "type": "string",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "description": "Required. The name of the spec to delete. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "location": "path"
                            }
                          },
                          "httpMethod": "DELETE"
                        },
                        "create": {
                          "httpMethod": "POST",
                          "id": "apihub.projects.locations.apis.versions.specs.create",
                          "parameters": {
                            "parent": {
                              "description": "Required. The parent resource for Spec. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                              "location": "path",
                              "type": "string",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$"
                            },
                            "specId": {
                              "location": "query",
                              "type": "string",
                              "description": "Optional. The ID to use for the spec, which will become the final component of the spec's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another spec in the API resource. * If not provided, a system generated id will be used. This value should be 4-500 characters, overall resource name which will be of format `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`, its length is limited to 1000 characters and valid characters are /a-z[0-9]-_/."
                            }
                          },
                          "request": {
                            "$ref": "GoogleCloudApihubV1Spec"
                          },
                          "response": {
                            "$ref": "GoogleCloudApihubV1Spec"
                          },
                          "parameterOrder": [
                            "parent"
                          ],
                          "path": "v1/{+parent}/specs",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs",
                          "description": "Add a spec to an API version in the API hub. Multiple specs can be added to an API version. Note, while adding a spec, at least one of `contents` or `source_uri` must be provided. If `contents` is provided, then `spec_type` must also be provided. On adding a spec with contents to the version, the operations present in it will be added to the version.Note that the file contents in the spec should be of the same type as defined in the `projects/{project}/locations/{location}/attributes/system-spec-type` attribute associated with spec resource. Note that specs of various types can be uploaded, however parsing of details is supported for OpenAPI spec currently. In order to access the information parsed from the spec, use the GetSpec method. In order to access the raw contents for a particular spec, use the GetSpecContents method. In order to access the operations parsed from the spec, use the ListAPIOperations method."
                        },
                        "list": {
                          "parameterOrder": [
                            "parent"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs",
                          "description": "List specs corresponding to a particular API resource.",
                          "path": "v1/{+parent}/specs",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "httpMethod": "GET",
                          "id": "apihub.projects.locations.apis.versions.specs.list",
                          "parameters": {
                            "parent": {
                              "description": "Required. The parent, which owns this collection of specs. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                              "type": "string"
                            },
                            "filter": {
                              "description": "Optional. An expression that filters the list of Specs. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e`, `:` or `=`. Filters are not case sensitive. The following fields in the `Spec` are eligible for filtering: * `display_name` - The display name of the Spec. Allowed comparison operators: `=`. * `create_time` - The time at which the Spec was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `spec_type.enum_values.values.id` - The allowed value id of the spec_type attribute associated with the Spec. Allowed comparison operators: `:`. * `spec_type.enum_values.values.display_name` - The allowed value display name of the spec_type attribute associated with the Spec. Allowed comparison operators: `:`. * `lint_response.json_values.values` - The json value of the lint_response attribute associated with the Spec. Allowed comparison operators: `:`. * `mime_type` - The MIME type of the Spec. Allowed comparison operators: `=`. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.id` - The allowed value id of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-id is a placeholder that can be replaced with any user defined enum attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.display_name` - The allowed value display name of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-display-name is a placeholder that can be replaced with any user defined enum attribute enum name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.string_values.values` - The allowed value of the user defined string attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-string is a placeholder that can be replaced with any user defined string attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.json_values.values` - The allowed value of the user defined JSON attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-json is a placeholder that can be replaced with any user defined JSON attribute name. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `spec_type.enum_values.values.id: rest-id` - The filter string specifies that the id of the allowed value associated with the spec_type attribute is _rest-id_. * `spec_type.enum_values.values.display_name: \\\"Rest Display Name\\\"` - The filter string specifies that the display name of the allowed value associated with the spec_type attribute is `Rest Display Name`. * `spec_type.enum_values.values.id: grpc-id AND create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The id of the allowed value associated with the spec_type attribute is _grpc-id_ and the spec was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `spec_type.enum_values.values.id: rest-id OR spec_type.enum_values.values.id: grpc-id` - The id of the allowed value associated with the spec_type attribute is _rest-id_ or _grpc-id_. * `spec_type.enum_values.values.id: rest-id AND attributes.projects/test-project-id/locations/test-location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.enum_values.values.id: test` - The filter string specifies that the id of the allowed value associated with the spec_type attribute is _rest-id_ and the id of the allowed value associated with the user defined attribute of type enum is _test_.",
                              "location": "query",
                              "type": "string"
                            },
                            "pageSize": {
                              "location": "query",
                              "type": "integer",
                              "format": "int32",
                              "description": "Optional. The maximum number of specs to return. The service may return fewer than this value. If unspecified, at most 50 specs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                            },
                            "pageToken": {
                              "description": "Optional. A page token, received from a previous `ListSpecs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListSpecs` must match the call that provided the page token.",
                              "location": "query",
                              "type": "string"
                            }
                          },
                          "response": {
                            "$ref": "GoogleCloudApihubV1ListSpecsResponse"
                          }
                        },
                        "lint": {
                          "id": "apihub.projects.locations.apis.versions.specs.lint",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "description": "Required. The name of the spec to be linted. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "required": true,
                              "type": "string"
                            }
                          },
                          "request": {
                            "$ref": "GoogleCloudApihubV1LintSpecRequest"
                          },
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "Empty"
                          },
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Lints the requested spec and updates the corresponding API Spec with the lint response. This lint response will be available in all subsequent Get and List Spec calls to Core service.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}:lint",
                          "path": "v1/{+name}:lint",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ]
                        },
                        "fetchAdditionalSpecContent": {
                          "path": "v1/{+name}:fetchAdditionalSpecContent",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "description": "Fetch additional spec content.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/specs/{specsId}:fetchAdditionalSpecContent",
                          "parameterOrder": [
                            "name"
                          ],
                          "response": {
                            "$ref": "GoogleCloudApihubV1FetchAdditionalSpecContentResponse"
                          },
                          "id": "apihub.projects.locations.apis.versions.specs.fetchAdditionalSpecContent",
                          "parameters": {
                            "name": {
                              "description": "Required. The name of the spec whose contents need to be retrieved. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}`",
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/specs/[^/]+$",
                              "type": "string"
                            },
                            "specContentType": {
                              "type": "string",
                              "enumDescriptions": [
                                "Unspecified spec content type. Defaults to spec content uploaded by the user.",
                                "The spec content type for boosted spec.",
                                "The spec content type for OpenAPI spec. This enum is used for OpenAPI specs ingested via APIGEE X Gateway."
                              ],
                              "enum": [
                                "SPEC_CONTENT_TYPE_UNSPECIFIED",
                                "BOOSTED_SPEC_CONTENT",
                                "GATEWAY_OPEN_API_SPEC"
                              ],
                              "location": "query",
                              "description": "Optional. The type of the spec contents to be retrieved."
                            }
                          },
                          "httpMethod": "GET"
                        }
                      }
                    },
                    "operations": {
                      "methods": {
                        "create": {
                          "httpMethod": "POST",
                          "id": "apihub.projects.locations.apis.versions.operations.create",
                          "parameters": {
                            "parent": {
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                              "type": "string",
                              "description": "Required. The parent resource for the operation resource. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                              "location": "path"
                            },
                            "apiOperationId": {
                              "description": "Optional. The ID to use for the operation resource, which will become the final component of the operation's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another operation resource in the API hub. * If not provided, a system generated id will be used. This value should be 4-500 characters, overall resource name which will be of format `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`, its length is limited to 700 characters, and valid characters are /a-z[0-9]-_/.",
                              "location": "query",
                              "type": "string"
                            }
                          },
                          "request": {
                            "$ref": "GoogleCloudApihubV1ApiOperation"
                          },
                          "response": {
                            "$ref": "GoogleCloudApihubV1ApiOperation"
                          },
                          "parameterOrder": [
                            "parent"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/operations",
                          "description": "Create an apiOperation in an API version. An apiOperation can be created only if the version has no apiOperations which were created by parsing a spec.",
                          "path": "v1/{+parent}/operations",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ]
                        },
                        "list": {
                          "path": "v1/{+parent}/operations",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/operations",
                          "description": "List operations in an API version.",
                          "parameterOrder": [
                            "parent"
                          ],
                          "response": {
                            "$ref": "GoogleCloudApihubV1ListApiOperationsResponse"
                          },
                          "httpMethod": "GET",
                          "id": "apihub.projects.locations.apis.versions.operations.list",
                          "parameters": {
                            "parent": {
                              "type": "string",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+$",
                              "description": "Required. The parent which owns this collection of operations i.e., the API version. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}`",
                              "location": "path"
                            },
                            "filter": {
                              "location": "query",
                              "type": "string",
                              "description": "Optional. An expression that filters the list of ApiOperations. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string or a boolean. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `ApiOperation` are eligible for filtering: * `name` - The ApiOperation resource name. Allowed comparison operators: `=`. * `details.http_operation.path.path` - The http operation's complete path relative to server endpoint. Allowed comparison operators: `=`. * `details.http_operation.method` - The http operation method type. Allowed comparison operators: `=`. * `details.deprecated` - Indicates if the ApiOperation is deprecated. Allowed values are True / False indicating the deprycation status of the ApiOperation. Allowed comparison operators: `=`. * `create_time` - The time at which the ApiOperation was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.id` - The allowed value id of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-id is a placeholder that can be replaced with any user defined enum attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.display_name` - The allowed value display name of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-display-name is a placeholder that can be replaced with any user defined enum attribute enum name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.string_values.values` - The allowed value of the user defined string attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-string is a placeholder that can be replaced with any user defined string attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.json_values.values` - The allowed value of the user defined JSON attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-json is a placeholder that can be replaced with any user defined JSON attribute name. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `details.deprecated = True` - The ApiOperation is deprecated. * `details.http_operation.method = GET AND create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The method of the http operation of the ApiOperation is _GET_ and the spec was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `details.http_operation.method = GET OR details.http_operation.method = POST`. - The http operation of the method of ApiOperation is _GET_ or _POST_. * `details.deprecated = True AND attributes.projects/test-project-id/locations/test-location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.string_values.values: test` - The filter string specifies that the ApiOperation is deprecated and the value of the user defined attribute of type string is _test_."
                            },
                            "pageSize": {
                              "location": "query",
                              "type": "integer",
                              "format": "int32",
                              "description": "Optional. The maximum number of operations to return. The service may return fewer than this value. If unspecified, at most 50 operations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                            },
                            "pageToken": {
                              "description": "Optional. A page token, received from a previous `ListApiOperations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListApiOperations` must match the call that provided the page token.",
                              "location": "query",
                              "type": "string"
                            }
                          }
                        },
                        "get": {
                          "response": {
                            "$ref": "GoogleCloudApihubV1ApiOperation"
                          },
                          "httpMethod": "GET",
                          "id": "apihub.projects.locations.apis.versions.operations.get",
                          "parameters": {
                            "name": {
                              "description": "Required. The name of the operation to retrieve. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`",
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/operations/[^/]+$",
                              "type": "string"
                            }
                          },
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/operations/{operationsId}",
                          "description": "Get details about a particular operation in API version.",
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "parameterOrder": [
                            "name"
                          ]
                        },
                        "delete": {
                          "response": {
                            "$ref": "Empty"
                          },
                          "id": "apihub.projects.locations.apis.versions.operations.delete",
                          "parameters": {
                            "name": {
                              "type": "string",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/operations/[^/]+$",
                              "required": true,
                              "location": "path",
                              "description": "Required. The name of the operation resource to delete. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`"
                            }
                          },
                          "httpMethod": "DELETE",
                          "description": "Delete an operation in an API version and we can delete only the operations created via create API. If the operation was created by parsing the spec, then it can be deleted by editing or deleting the spec.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/operations/{operationsId}",
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "parameterOrder": [
                            "name"
                          ]
                        },
                        "patch": {
                          "path": "v1/{+name}",
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform"
                          ],
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}/versions/{versionsId}/operations/{operationsId}",
                          "description": "Update an operation in an API version. The following fields in the ApiOperation resource can be updated: * details.description * details.documentation * details.http_operation.path * details.http_operation.method * details.deprecated * attributes * details.mcp_tool.title * details.mcp_tool.description * details.mcp_tool.input_schema * details.mcp_tool.output_schema * details.input_schema * details.output_schema * details.mcp_tool.annotations.title * details.mcp_tool.annotations.read_only_hint * details.mcp_tool.annotations.destructive_hint * details.mcp_tool.annotations.idempotent_hint * details.mcp_tool.annotations.open_world_hint * details.mcp_tool.annotations.additional_hints The update_mask should be used to specify the fields being updated. An operation can be updated only if the operation was created via CreateApiOperation API. If the operation was created by parsing the spec, then it can be edited by updating the spec.",
                          "parameterOrder": [
                            "name"
                          ],
                          "response": {
                            "$ref": "GoogleCloudApihubV1ApiOperation"
                          },
                          "httpMethod": "PATCH",
                          "id": "apihub.projects.locations.apis.versions.operations.patch",
                          "parameters": {
                            "name": {
                              "type": "string",
                              "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+/versions/[^/]+/operations/[^/]+$",
                              "required": true,
                              "location": "path",
                              "description": "Identifier. The name of the operation. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/operations/{operation}`"
                            },
                            "updateMask": {
                              "description": "Required. The list of fields to update.",
                              "location": "query",
                              "type": "string",
                              "format": "google-fieldmask"
                            }
                          },
                          "request": {
                            "$ref": "GoogleCloudApihubV1ApiOperation"
                          }
                        }
                      }
                    }
                  }
                }
              },
              "methods": {
                "get": {
                  "id": "apihub.projects.locations.apis.get",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Required. The name of the API resource to retrieve. Format: `projects/{project}/locations/{location}/apis/{api}`"
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Api"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Get API resource details including the API versions contained in it.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}"
                },
                "delete": {
                  "httpMethod": "DELETE",
                  "id": "apihub.projects.locations.apis.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the API resource to delete. Format: `projects/{project}/locations/{location}/apis/{api}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+$",
                      "required": true
                    },
                    "force": {
                      "description": "Optional. If set to true, any versions from this API will also be deleted. Otherwise, the request will only work if the API has no versions.",
                      "location": "query",
                      "type": "boolean"
                    }
                  },
                  "response": {
                    "$ref": "Empty"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}",
                  "description": "Delete an API resource in the API hub. API can only be deleted if all underlying versions are deleted.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "patch": {
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Update an API resource in the API hub. The following fields in the API can be updated: * display_name * description * owner * documentation * target_user * team * business_unit * maturity_level * api_style * attributes * fingerprint The update_mask should be used to specify the fields being updated. Updating the owner field requires complete owner message and updates both owner and email fields.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis/{apisId}",
                  "id": "apihub.projects.locations.apis.patch",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Identifier. The name of the API resource in the API Hub. Format: `projects/{project}/locations/{location}/apis/{api}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/apis/[^/]+$",
                      "required": true,
                      "type": "string"
                    },
                    "updateMask": {
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask",
                      "description": "Required. The list of fields to update."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Api"
                  },
                  "httpMethod": "PATCH",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Api"
                  }
                },
                "create": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1Api"
                  },
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.apis.create",
                  "parameters": {
                    "apiId": {
                      "description": "Optional. The ID to use for the API resource, which will become the final component of the API's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another API resource in the API hub. * If not provided, a system generated id will be used. This value should be 4-500 characters, and valid characters are /a-z[0-9]-_/.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent resource for the API resource. Format: `projects/{project}/locations/{location}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Api"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis",
                  "description": "Create an API resource in the API hub. Once an API resource is created, versions can be added to it.",
                  "path": "v1/{+parent}/apis",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ]
                },
                "list": {
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.apis.list",
                  "parameters": {
                    "parent": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The parent, which owns this collection of API resources. Format: `projects/{project}/locations/{location}`",
                      "location": "path"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. An expression that filters the list of ApiResources. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e`, `:` or `=`. Filters are not case sensitive. The following fields in the `ApiResource` are eligible for filtering: * `owner.email` - The email of the team which owns the ApiResource. Allowed comparison operators: `=`. * `create_time` - The time at which the ApiResource was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `display_name` - The display name of the ApiResource. Allowed comparison operators: `=`. * `target_user.enum_values.values.id` - The allowed value id of the target users attribute associated with the ApiResource. Allowed comparison operator is `:`. * `target_user.enum_values.values.display_name` - The allowed value display name of the target users attribute associated with the ApiResource. Allowed comparison operator is `:`. * `team.enum_values.values.id` - The allowed value id of the team attribute associated with the ApiResource. Allowed comparison operator is `:`. * `team.enum_values.values.display_name` - The allowed value display name of the team attribute associated with the ApiResource. Allowed comparison operator is `:`. * `business_unit.enum_values.values.id` - The allowed value id of the business unit attribute associated with the ApiResource. Allowed comparison operator is `:`. * `business_unit.enum_values.values.display_name` - The allowed value display name of the business unit attribute associated with the ApiResource. Allowed comparison operator is `:`. * `maturity_level.enum_values.values.id` - The allowed value id of the maturity level attribute associated with the ApiResource. Allowed comparison operator is `:`. * `maturity_level.enum_values.values.display_name` - The allowed value display name of the maturity level attribute associated with the ApiResource. Allowed comparison operator is `:`. * `api_style.enum_values.values.id` - The allowed value id of the api style attribute associated with the ApiResource. Allowed comparison operator is `:`. * `api_style.enum_values.values.display_name` - The allowed value display name of the api style attribute associated with the ApiResource. Allowed comparison operator is `:`. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.id` - The allowed value id of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-id is a placeholder that can be replaced with any user defined enum attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.display_name` - The allowed value display name of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-display-name is a placeholder that can be replaced with any user defined enum attribute enum name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.string_values.values` - The allowed value of the user defined string attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-string is a placeholder that can be replaced with any user defined string attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.json_values.values` - The allowed value of the user defined JSON attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-json is a placeholder that can be replaced with any user defined JSON attribute name. A filter function is also supported in the filter string. The filter function is `id(name)`. The `id(name)` function returns the id of the resource name. For example, `id(name) = \\\"api-1\\\"` is equivalent to `name = \\\"projects/test-project-id/locations/test-location-id/apis/api-1\\\"` provided the parent is `projects/test-project-id/locations/test-location-id`. Another supported filter function is `plugins(source_metadata)`. This function filters for resources that are associated with a specific plugin. For example, `plugins(source_metadata) : \"projects/test-project-id/locations/test-location-id/plugins/test-plugin-id\"` will return resources sourced from the given plugin. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `owner.email = \\\"apihub@google.com\\\"` - - The owner team email is _apihub@google.com_. * `owner.email = \\\"apihub@google.com\\\" AND create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The owner team email is _apihub@google.com_ and the api was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `owner.email = \\\"apihub@google.com\\\" OR team.enum_values.values.id: apihub-team-id` - The filter string specifies the APIs where the owner team email is _apihub@google.com_ or the id of the allowed value associated with the team attribute is _apihub-team-id_. * `owner.email = \\\"apihub@google.com\\\" OR team.enum_values.values.display_name: ApiHub Team` - The filter string specifies the APIs where the owner team email is _apihub@google.com_ or the display name of the allowed value associated with the team attribute is `ApiHub Team`. * `owner.email = \\\"apihub@google.com\\\" AND attributes.projects/test-project-id/locations/test-location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.enum_values.values.id: test_enum_id AND attributes.projects/test-project-id/locations/test-location-id/ attributes/1765\\0f90-4a29-5431-b3d0-d5532da3764c.string_values.values: test_string_value` - The filter string specifies the APIs where the owner team email is _apihub@google.com_ and the id of the allowed value associated with the user defined attribute of type enum is _test_enum_id_ and the value of the user defined attribute of type string is _test_.."
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of API resources to return. The service may return fewer than this value. If unspecified, at most 50 Apis will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListApis` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListApis` must match the call that provided the page token."
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListApisResponse"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "path": "v1/{+parent}/apis",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apis",
                  "description": "List API resources in the API hub."
                }
              }
            },
            "operations": {
              "methods": {
                "cancel": {
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.operations.cancel",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "The name of the operation resource to be cancelled.",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "GoogleLongrunningCancelOperationRequest"
                  },
                  "path": "v1/{+name}:cancel",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}:cancel",
                  "description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "list": {
                  "id": "apihub.projects.locations.operations.list",
                  "parameters": {
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "The standard list page size."
                    },
                    "returnPartialSuccess": {
                      "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.",
                      "location": "query",
                      "type": "boolean"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "The standard list filter."
                    },
                    "pageToken": {
                      "description": "The standard list page token.",
                      "location": "query",
                      "type": "string"
                    },
                    "name": {
                      "location": "path",
                      "description": "The name of the operation's parent resource.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleLongrunningListOperationsResponse"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations",
                  "path": "v1/{+name}/operations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "get": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}",
                  "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.operations.get",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "The name of the operation resource.",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "required": true
                    }
                  }
                },
                "delete": {
                  "id": "apihub.projects.locations.operations.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "The name of the operation resource to be deleted.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "httpMethod": "DELETE",
                  "response": {
                    "$ref": "Empty"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}"
                }
              }
            },
            "dependencies": {
              "methods": {
                "create": {
                  "description": "Create a dependency between two entities in the API hub.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/dependencies",
                  "path": "v1/{+parent}/dependencies",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1Dependency"
                  },
                  "id": "apihub.projects.locations.dependencies.create",
                  "parameters": {
                    "parent": {
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "description": "Required. The parent resource for the dependency resource. Format: `projects/{project}/locations/{location}`",
                      "location": "path"
                    },
                    "dependencyId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. The ID to use for the dependency resource, which will become the final component of the dependency's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if duplicate id is provided by the client. * If not provided, a system generated id will be used. This value should be 4-500 characters, and valid characters are `a-z[0-9]-_`."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Dependency"
                  },
                  "httpMethod": "POST"
                },
                "list": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListDependenciesResponse"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.dependencies.list",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent which owns this collection of dependency resources. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string"
                    },
                    "filter": {
                      "description": "Optional. An expression that filters the list of Dependencies. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. Allowed comparison operator is `=`. Filters are not case sensitive. The following fields in the `Dependency` are eligible for filtering: * `consumer.operation_resource_name` - The operation resource name for the consumer entity involved in a dependency. Allowed comparison operators: `=`. * `consumer.external_api_resource_name` - The external api resource name for the consumer entity involved in a dependency. Allowed comparison operators: `=`. * `supplier.operation_resource_name` - The operation resource name for the supplier entity involved in a dependency. Allowed comparison operators: `=`. * `supplier.external_api_resource_name` - The external api resource name for the supplier entity involved in a dependency. Allowed comparison operators: `=`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. For example, `consumer.operation_resource_name = \\\"projects/p1/locations/global/apis/a1/versions/v1/operations/o1\\\" OR supplier.operation_resource_name = \\\"projects/p1/locations/global/apis/a1/versions/v1/operations/o1\\\"` - The dependencies with either consumer or supplier operation resource name as _projects/p1/locations/global/apis/a1/versions/v1/operations/o1_.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageSize": {
                      "description": "Optional. The maximum number of dependency resources to return. The service may return fewer than this value. If unspecified, at most 50 dependencies will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                      "location": "query",
                      "type": "integer",
                      "format": "int32"
                    },
                    "pageToken": {
                      "description": "Optional. A page token, received from a previous `ListDependencies` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDependencies` must match the call that provided the page token.",
                      "location": "query",
                      "type": "string"
                    }
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/dependencies",
                  "description": "List dependencies based on the provided filter and pagination parameters.",
                  "path": "v1/{+parent}/dependencies",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ]
                },
                "patch": {
                  "id": "apihub.projects.locations.dependencies.patch",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/dependencies/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Identifier. The name of the dependency in the API Hub. Format: `projects/{project}/locations/{location}/dependencies/{dependency}`"
                    },
                    "updateMask": {
                      "description": "Required. The list of fields to update.",
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Dependency"
                  },
                  "httpMethod": "PATCH",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Dependency"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Update a dependency based on the update_mask provided in the request. The following fields in the dependency can be updated: * description",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/dependencies/{dependenciesId}"
                },
                "get": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1Dependency"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.dependencies.get",
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/dependencies/[^/]+$",
                      "type": "string",
                      "description": "Required. The name of the dependency resource to retrieve. Format: `projects/{project}/locations/{location}/dependencies/{dependency}`",
                      "location": "path"
                    }
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/dependencies/{dependenciesId}",
                  "description": "Get details about a dependency resource in the API hub.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ]
                },
                "delete": {
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Delete the dependency resource.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/dependencies/{dependenciesId}",
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "Empty"
                  },
                  "id": "apihub.projects.locations.dependencies.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the dependency resource to delete. Format: `projects/{project}/locations/{location}/dependencies/{dependency}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/dependencies/[^/]+$",
                      "required": true
                    }
                  },
                  "httpMethod": "DELETE"
                }
              }
            },
            "addons": {
              "methods": {
                "list": {
                  "id": "apihub.projects.locations.addons.list",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent resource where this addon will be created. Format: `projects/{project}/locations/{location}`.",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$"
                    },
                    "filter": {
                      "description": "Optional. An expression that filters the list of addons. The only supported filter is `plugin_instance_name`. It can be used to filter addons that are enabled for a given plugin instance. The format of the filter is `plugin_instance_name = \"projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}\"`.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of hub addons to return. The service may return fewer than this value. If unspecified, at most 50 hub addons will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListAddons` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListAddons` must match the call that provided the page token."
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListAddonsResponse"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "List addons.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/addons",
                  "path": "v1/{+parent}/addons",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "manageConfig": {
                  "id": "apihub.projects.locations.addons.manageConfig",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/addons/[^/]+$",
                      "description": "Required. The name of the addon for which the config is to be managed. Format: `projects/{project}/locations/{location}/addons/{addon}`.",
                      "location": "path"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1ManageAddonConfigRequest"
                  },
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}:manageConfig",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Manage addon config. This RPC is used for managing the config of the addon. Calling this RPC moves the addon into an updating state until the long-running operation succeeds.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/addons/{addonsId}:manageConfig"
                },
                "get": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1Addon"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.addons.get",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the addon to get. Format: `projects/{project}/locations/{location}/addons/{addon}`.",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/addons/[^/]+$"
                    }
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/addons/{addonsId}",
                  "description": "Get an addon.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ]
                }
              }
            },
            "discoveredApiObservations": {
              "methods": {
                "list": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListDiscoveredApiObservationsResponse"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.discoveredApiObservations.list",
                  "parameters": {
                    "pageToken": {
                      "description": "Optional. A page token, received from a previous `ListApiObservations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListApiObservations` must match the call that provided the page token.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The parent, which owns this collection of ApiObservations. Format: projects/{project}/locations/{location}",
                      "location": "path"
                    },
                    "pageSize": {
                      "description": "Optional. The maximum number of ApiObservations to return. The service may return fewer than this value. If unspecified, at most 10 ApiObservations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                      "location": "query",
                      "type": "integer",
                      "format": "int32"
                    }
                  },
                  "path": "v1/{+parent}/discoveredApiObservations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveredApiObservations",
                  "description": "Lists all the DiscoveredAPIObservations in a given project and location.",
                  "parameterOrder": [
                    "parent"
                  ]
                },
                "get": {
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Gets a DiscoveredAPIObservation in a given project, location and ApiObservation.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveredApiObservations/{discoveredApiObservationsId}",
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1DiscoveredApiObservation"
                  },
                  "id": "apihub.projects.locations.discoveredApiObservations.get",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the DiscoveredApiObservation to retrieve. Format: projects/{project}/locations/{location}/discoveredApiObservations/{discovered_api_observation}",
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/discoveredApiObservations/[^/]+$",
                      "type": "string"
                    }
                  },
                  "httpMethod": "GET"
                }
              },
              "resources": {
                "discoveredApiOperations": {
                  "methods": {
                    "list": {
                      "id": "apihub.projects.locations.discoveredApiObservations.discoveredApiOperations.list",
                      "parameters": {
                        "pageToken": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. A page token, received from a previous `ListDiscoveredApiApiOperations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDiscoveredApiApiOperations` must match the call that provided the page token."
                        },
                        "parent": {
                          "location": "path",
                          "description": "Required. The parent, which owns this collection of DiscoveredApiOperations. Format: projects/{project}/locations/{location}/discoveredApiObservations/{discovered_api_observation}",
                          "pattern": "^projects/[^/]+/locations/[^/]+/discoveredApiObservations/[^/]+$",
                          "required": true,
                          "type": "string"
                        },
                        "pageSize": {
                          "description": "Optional. DiscoveredApiOperations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                          "location": "query",
                          "type": "integer",
                          "format": "int32"
                        }
                      },
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "GoogleCloudApihubV1ListDiscoveredApiOperationsResponse"
                      },
                      "parameterOrder": [
                        "parent"
                      ],
                      "path": "v1/{+parent}/discoveredApiOperations",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "description": "Lists all the DiscoveredAPIOperations in a given project, location and ApiObservation.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveredApiObservations/{discoveredApiObservationsId}/discoveredApiOperations"
                    },
                    "get": {
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveredApiObservations/{discoveredApiObservationsId}/discoveredApiOperations/{discoveredApiOperationsId}",
                      "description": "Gets a DiscoveredAPIOperation in a given project, location, ApiObservation and ApiOperation.",
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "response": {
                        "$ref": "GoogleCloudApihubV1DiscoveredApiOperation"
                      },
                      "httpMethod": "GET",
                      "id": "apihub.projects.locations.discoveredApiObservations.discoveredApiOperations.get",
                      "parameters": {
                        "name": {
                          "description": "Required. The name of the DiscoveredApiOperation to retrieve. Format: projects/{project}/locations/{location}/discoveredApiObservations/{discovered_api_observation}/discoveredApiOperations/{discovered_api_operation}",
                          "location": "path",
                          "type": "string",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/discoveredApiObservations/[^/]+/discoveredApiOperations/[^/]+$"
                        }
                      }
                    }
                  }
                }
              }
            },
            "deployments": {
              "methods": {
                "create": {
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.deployments.create",
                  "parameters": {
                    "parent": {
                      "description": "Required. The parent resource for the deployment resource. Format: `projects/{project}/locations/{location}`",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$"
                    },
                    "deploymentId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. The ID to use for the deployment resource, which will become the final component of the deployment's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another deployment resource in the API hub. * If not provided, a system generated id will be used. This value should be 4-500 characters, and valid characters are /a-z[0-9]-_/."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Deployment"
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Deployment"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/deployments",
                  "description": "Create a deployment resource in the API hub. Once a deployment resource is created, it can be associated with API versions.",
                  "path": "v1/{+parent}/deployments",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "list": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListDeploymentsResponse"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.deployments.list",
                  "parameters": {
                    "pageToken": {
                      "description": "Optional. A page token, received from a previous `ListDeployments` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListDeployments` must match the call that provided the page token.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent, which owns this collection of deployment resources. Format: `projects/{project}/locations/{location}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string"
                    },
                    "filter": {
                      "description": "Optional. An expression that filters the list of Deployments. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `Deployments` are eligible for filtering: * `display_name` - The display name of the Deployment. Allowed comparison operators: `=`. * `create_time` - The time at which the Deployment was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. * `resource_uri` - A URI to the deployment resource. Allowed comparison operators: `=`. * `api_versions` - The API versions linked to this deployment. Allowed comparison operators: `:`. * `source_project` - The project/organization at source for the deployment. Allowed comparison operators: `=`. * `source_environment` - The environment at source for the deployment. Allowed comparison operators: `=`. * `deployment_type.enum_values.values.id` - The allowed value id of the deployment_type attribute associated with the Deployment. Allowed comparison operators: `:`. * `deployment_type.enum_values.values.display_name` - The allowed value display name of the deployment_type attribute associated with the Deployment. Allowed comparison operators: `:`. * `slo.string_values.values` -The allowed string value of the slo attribute associated with the deployment. Allowed comparison operators: `:`. * `environment.enum_values.values.id` - The allowed value id of the environment attribute associated with the deployment. Allowed comparison operators: `:`. * `environment.enum_values.values.display_name` - The allowed value display name of the environment attribute associated with the deployment. Allowed comparison operators: `:`. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.id` - The allowed value id of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-id is a placeholder that can be replaced with any user defined enum attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.enum_values.values.display_name` - The allowed value display name of the user defined enum attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-enum-display-name is a placeholder that can be replaced with any user defined enum attribute enum name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.string_values.values` - The allowed value of the user defined string attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-string is a placeholder that can be replaced with any user defined string attribute name. * `attributes.projects/test-project-id/locations/test-location-id/ attributes/user-defined-attribute-id.json_values.values` - The allowed value of the user defined JSON attribute associated with the Resource. Allowed comparison operator is `:`. Here user-defined-attribute-json is a placeholder that can be replaced with any user defined JSON attribute name. A filter function is also supported in the filter string. The filter function is `id(name)`. The `id(name)` function returns the id of the resource name. For example, `id(name) = \\\"deployment-1\\\"` is equivalent to `name = \\\"projects/test-project-id/locations/test-location-id/deployments/deployment-1\\\"` provided the parent is `projects/test-project-id/locations/test-location-id`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `environment.enum_values.values.id: staging-id` - The allowed value id of the environment attribute associated with the Deployment is _staging-id_. * `environment.enum_values.values.display_name: \\\"Staging Deployment\\\"` - The allowed value display name of the environment attribute associated with the Deployment is `Staging Deployment`. * `environment.enum_values.values.id: production-id AND create_time \u003c \\\"2021-08-15T14:50:00Z\\\" AND create_time \u003e \\\"2021-08-10T12:00:00Z\\\"` - The allowed value id of the environment attribute associated with the Deployment is _production-id_ and Deployment was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `environment.enum_values.values.id: production-id OR slo.string_values.values: \\\"99.99%\\\"` - The allowed value id of the environment attribute Deployment is _production-id_ or string value of the slo attribute is _99.99%_. * `environment.enum_values.values.id: staging-id AND attributes.projects/test-project-id/locations/test-location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.string_values.values: test` - The filter string specifies that the allowed value id of the environment attribute associated with the Deployment is _staging-id_ and the value of the user defined attribute of type string is _test_.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of deployment resources to return. The service may return fewer than this value. If unspecified, at most 50 deployments will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    }
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/deployments",
                  "description": "List deployment resources in the API hub.",
                  "path": "v1/{+parent}/deployments",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ]
                },
                "patch": {
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.deployments.patch",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/deployments/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Identifier. The name of the deployment. Format: `projects/{project}/locations/{location}/deployments/{deployment}`"
                    },
                    "updateMask": {
                      "description": "Required. The list of fields to update.",
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Deployment"
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Deployment"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/deployments/{deploymentsId}",
                  "description": "Update a deployment resource in the API hub. The following fields in the deployment resource can be updated: * display_name * description * documentation * deployment_type * resource_uri * endpoints * slo * environment * attributes * source_project * source_environment * management_url * source_uri The update_mask should be used to specify the fields being updated."
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Get details about a deployment and the API versions linked to it.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/deployments/{deploymentsId}",
                  "id": "apihub.projects.locations.deployments.get",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/deployments/[^/]+$",
                      "description": "Required. The name of the deployment resource to retrieve. Format: `projects/{project}/locations/{location}/deployments/{deployment}`",
                      "location": "path"
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Deployment"
                  }
                },
                "delete": {
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "DELETE",
                  "id": "apihub.projects.locations.deployments.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the deployment resource to delete. Format: `projects/{project}/locations/{location}/deployments/{deployment}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/deployments/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/deployments/{deploymentsId}",
                  "description": "Delete a deployment resource in the API hub.",
                  "parameterOrder": [
                    "name"
                  ]
                }
              }
            },
            "apiHubInstances": {
              "methods": {
                "create": {
                  "path": "v1/{+parent}/apiHubInstances",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances",
                  "description": "Provisions instance resources for the API Hub.",
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  },
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.apiHubInstances.create",
                  "parameters": {
                    "apiHubInstanceId": {
                      "description": "Optional. Identifier to assign to the Api Hub instance. Must be unique within scope of the parent resource. If the field is not provided, system generated id will be used. This value should be 4-40 characters, and valid characters are `/a-z[0-9]-_/`.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent resource for the Api Hub instance resource. Format: `projects/{project}/locations/{location}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1ApiHubInstance"
                  }
                },
                "delete": {
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Deletes the API hub instance. Deleting the API hub instance will also result in the removal of all associated runtime project attachments and the host project registration.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances/{apiHubInstancesId}",
                  "id": "apihub.projects.locations.apiHubInstances.delete",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/apiHubInstances/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Required. The name of the Api Hub instance to delete. Format: `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`."
                    }
                  },
                  "httpMethod": "DELETE",
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  }
                },
                "get": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1ApiHubInstance"
                  },
                  "id": "apihub.projects.locations.apiHubInstances.get",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the Api Hub instance to retrieve. Format: `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`.",
                      "location": "path",
                      "type": "string",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/apiHubInstances/[^/]+$"
                    }
                  },
                  "httpMethod": "GET",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Gets details of a single API Hub instance.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances/{apiHubInstancesId}",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "patch": {
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.apiHubInstances.patch",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Identifier. Format: `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/apiHubInstances/[^/]+$",
                      "required": true,
                      "type": "string"
                    },
                    "updateMask": {
                      "description": "Optional. The list of fields to update.",
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1ApiHubInstance"
                  },
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances/{apiHubInstancesId}",
                  "description": "Update an Api Hub instance. The following fields in the ApiHubInstance can be updated: * disable_search * vertex_location * agent_registry_sync_config The update_mask should be used to specify the fields being updated."
                },
                "lookup": {
                  "id": "apihub.projects.locations.apiHubInstances.lookup",
                  "parameters": {
                    "parent": {
                      "location": "path",
                      "description": "Required. There will always be only one Api Hub instance for a Google Cloud project across all locations. The parent resource for the Api Hub instance resource. Format: `projects/{project}/locations/{location}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1LookupApiHubInstanceResponse"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "path": "v1/{+parent}/apiHubInstances:lookup",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Looks up an Api Hub instance in a given Google Cloud project. There will always be only one Api Hub instance for a Google Cloud project across all locations.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances:lookup"
                }
              }
            },
            "hostProjectRegistrations": {
              "methods": {
                "create": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/hostProjectRegistrations",
                  "description": "Create a host project registration. A Google cloud project can be registered as a host project if it is not attached as a runtime project to another host project. A project can be registered as a host project only once. Subsequent register calls for the same project will fail.",
                  "path": "v1/{+parent}/hostProjectRegistrations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1HostProjectRegistration"
                  },
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.hostProjectRegistrations.create",
                  "parameters": {
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Required. The parent resource for the host project. Format: `projects/{project}/locations/{location}`"
                    },
                    "hostProjectRegistrationId": {
                      "description": "Required. The ID to use for the Host Project Registration, which will become the final component of the host project registration's resource name. The ID must be the same as the Google cloud project specified in the host_project_registration.gcp_project field.",
                      "location": "query",
                      "type": "string"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1HostProjectRegistration"
                  }
                },
                "list": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/hostProjectRegistrations",
                  "description": "Lists host project registrations.",
                  "path": "v1/{+parent}/hostProjectRegistrations",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListHostProjectRegistrationsResponse"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.hostProjectRegistrations.list",
                  "parameters": {
                    "filter": {
                      "description": "Optional. An expression that filters the list of HostProjectRegistrations. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. All standard operators as documented at https://google.aip.dev/160 are supported. The following fields in the `HostProjectRegistration` are eligible for filtering: * `name` - The name of the HostProjectRegistration. * `create_time` - The time at which the HostProjectRegistration was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. * `gcp_project` - The Google cloud project associated with the HostProjectRegistration.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListHostProjectRegistrations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListHostProjectRegistrations` must match the call that provided the page token."
                    },
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent, which owns this collection of host projects. Format: `projects/*/locations/*`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    },
                    "pageSize": {
                      "description": "Optional. The maximum number of host project registrations to return. The service may return fewer than this value. If unspecified, at most 50 host project registrations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                      "location": "query",
                      "type": "integer",
                      "format": "int32"
                    },
                    "orderBy": {
                      "description": "Optional. Hint for how to order the results.",
                      "location": "query",
                      "type": "string"
                    }
                  }
                },
                "get": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/hostProjectRegistrations/{hostProjectRegistrationsId}",
                  "description": "Get a host project registration.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1HostProjectRegistration"
                  },
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.hostProjectRegistrations.get",
                  "parameters": {
                    "name": {
                      "description": "Required. Host project registration resource name. projects/{project}/locations/{location}/hostProjectRegistrations/{host_project_registration_id}",
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/hostProjectRegistrations/[^/]+$",
                      "type": "string"
                    }
                  }
                }
              }
            },
            "runtimeProjectAttachments": {
              "methods": {
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/runtimeProjectAttachments/{runtimeProjectAttachmentsId}",
                  "description": "Gets a runtime project attachment.",
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.runtimeProjectAttachments.get",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the API resource to retrieve. Format: `projects/{project}/locations/{location}/runtimeProjectAttachments/{runtime_project_attachment}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/runtimeProjectAttachments/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1RuntimeProjectAttachment"
                  }
                },
                "delete": {
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "DELETE",
                  "id": "apihub.projects.locations.runtimeProjectAttachments.delete",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/runtimeProjectAttachments/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Required. The name of the Runtime Project Attachment to delete. Format: `projects/{project}/locations/{location}/runtimeProjectAttachments/{runtime_project_attachment}`"
                    }
                  },
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/runtimeProjectAttachments/{runtimeProjectAttachmentsId}",
                  "description": "Delete a runtime project attachment in the API Hub. This call will detach the runtime project from the host project.",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "create": {
                  "path": "v1/{+parent}/runtimeProjectAttachments",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/runtimeProjectAttachments",
                  "description": "Attaches a runtime project to the host project.",
                  "parameterOrder": [
                    "parent"
                  ],
                  "response": {
                    "$ref": "GoogleCloudApihubV1RuntimeProjectAttachment"
                  },
                  "httpMethod": "POST",
                  "id": "apihub.projects.locations.runtimeProjectAttachments.create",
                  "parameters": {
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Required. The parent resource for the Runtime Project Attachment. Format: `projects/{project}/locations/{location}`"
                    },
                    "runtimeProjectAttachmentId": {
                      "location": "query",
                      "type": "string",
                      "description": "Required. The ID to use for the Runtime Project Attachment, which will become the final component of the Runtime Project Attachment's name. The ID must be the same as the project ID of the Google cloud project specified in the runtime_project_attachment.runtime_project field."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1RuntimeProjectAttachment"
                  }
                },
                "list": {
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.runtimeProjectAttachments.list",
                  "parameters": {
                    "parent": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Required. The parent, which owns this collection of runtime project attachments. Format: `projects/{project}/locations/{location}`"
                    },
                    "pageSize": {
                      "description": "Optional. The maximum number of runtime project attachments to return. The service may return fewer than this value. If unspecified, at most 50 runtime project attachments will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
                      "location": "query",
                      "type": "integer",
                      "format": "int32"
                    },
                    "orderBy": {
                      "description": "Optional. Hint for how to order the results.",
                      "location": "query",
                      "type": "string"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. An expression that filters the list of RuntimeProjectAttachments. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. All standard operators as documented at https://google.aip.dev/160 are supported. The following fields in the `RuntimeProjectAttachment` are eligible for filtering: * `name` - The name of the RuntimeProjectAttachment. * `create_time` - The time at which the RuntimeProjectAttachment was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. * `runtime_project` - The Google cloud project associated with the RuntimeProjectAttachment."
                    },
                    "pageToken": {
                      "description": "Optional. A page token, received from a previous `ListRuntimeProjectAttachments` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListRuntimeProjectAttachments` must match the call that provided the page token.",
                      "location": "query",
                      "type": "string"
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/runtimeProjectAttachments",
                  "description": "List runtime projects attached to the host project.",
                  "path": "v1/{+parent}/runtimeProjectAttachments",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                }
              }
            },
            "plugins": {
              "methods": {
                "updateStyleGuide": {
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.plugins.updateStyleGuide",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Identifier. The name of the style guide. Format: `projects/{project}/locations/{location}/plugins/{plugin}/styleGuide`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/styleGuide$",
                      "required": true,
                      "type": "string"
                    },
                    "updateMask": {
                      "description": "Optional. The list of fields to update.",
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1StyleGuide"
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1StyleGuide"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/styleGuide",
                  "description": "Update the styleGuide to be used for liniting in by API hub.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "getStyleGuide": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1StyleGuide"
                  },
                  "id": "apihub.projects.locations.plugins.getStyleGuide",
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/styleGuide$",
                      "type": "string",
                      "description": "Required. The name of the spec to retrieve. Format: `projects/{project}/locations/{location}/plugins/{plugin}/styleGuide`.",
                      "location": "path"
                    }
                  },
                  "httpMethod": "GET",
                  "description": "Get the style guide being used for linting.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/styleGuide",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ]
                },
                "enable": {
                  "id": "apihub.projects.locations.plugins.enable",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the plugin to enable. Format: `projects/{project}/locations/{location}/plugins/{plugin}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1EnablePluginRequest"
                  },
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Plugin"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Enables a plugin. The `state` of the plugin after enabling is `ENABLED`",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}:enable",
                  "path": "v1/{+name}:enable",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "get": {
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.plugins.get",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the plugin to retrieve. Format: `projects/{project}/locations/{location}/plugins/{plugin}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Plugin"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}",
                  "description": "Get an API Hub plugin.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "disable": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Disables a plugin. The `state` of the plugin after disabling is `DISABLED`",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}:disable",
                  "path": "v1/{+name}:disable",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "apihub.projects.locations.plugins.disable",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the plugin to disable. Format: `projects/{project}/locations/{location}/plugins/{plugin}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1DisablePluginRequest"
                  },
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Plugin"
                  }
                },
                "delete": {
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}",
                  "description": "Delete a Plugin in API hub. Note, only user owned plugins can be deleted via this method.",
                  "parameterOrder": [
                    "name"
                  ],
                  "response": {
                    "$ref": "GoogleLongrunningOperation"
                  },
                  "httpMethod": "DELETE",
                  "id": "apihub.projects.locations.plugins.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the Plugin resource to delete. Format: `projects/{project}/locations/{location}/plugins/{plugin}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                      "required": true
                    }
                  }
                },
                "create": {
                  "response": {
                    "$ref": "GoogleCloudApihubV1Plugin"
                  },
                  "id": "apihub.projects.locations.plugins.create",
                  "parameters": {
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent resource where this plugin will be created. Format: `projects/{project}/locations/{location}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string"
                    },
                    "pluginId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. The ID to use for the Plugin resource, which will become the final component of the Plugin's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another Plugin resource in the API hub instance. * If not provided, a system generated id will be used. This value should be 4-63 characters, overall resource name which will be of format `projects/{project}/locations/{location}/plugins/{plugin}`, its length is limited to 1000 characters and valid characters are /a-z[0-9]-_/."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Plugin"
                  },
                  "httpMethod": "POST",
                  "description": "Create an API Hub plugin resource in the API hub. Once a plugin is created, it can be used to create plugin instances.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins",
                  "path": "v1/{+parent}/plugins",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "parent"
                  ]
                },
                "list": {
                  "parameterOrder": [
                    "parent"
                  ],
                  "path": "v1/{+parent}/plugins",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "List all the plugins in a given project and location.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins",
                  "id": "apihub.projects.locations.plugins.list",
                  "parameters": {
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent resource where this plugin will be created. Format: `projects/{project}/locations/{location}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "type": "string"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. An expression that filters the list of plugins. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `Plugins` are eligible for filtering: * `plugin_category` - The category of the Plugin. Allowed comparison operators: `=`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `plugin_category = ON_RAMP` - The plugin is of category on ramp."
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of hub plugins to return. The service may return fewer than this value. If unspecified, at most 50 hub plugins will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListPlugins` call. Provide this to retrieve the subsequent page. When paginating, all other parameters (except page_size) provided to `ListPlugins` must match the call that provided the page token."
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListPluginsResponse"
                  }
                }
              },
              "resources": {
                "instances": {
                  "methods": {
                    "manageSourceData": {
                      "description": "Manages data for a given plugin instance.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}:manageSourceData",
                      "path": "v1/{+name}:manageSourceData",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "response": {
                        "$ref": "GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse"
                      },
                      "id": "apihub.projects.locations.plugins.instances.manageSourceData",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "description": "Required. The name of the plugin instance for which data needs to be managed. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "required": true,
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest"
                      },
                      "httpMethod": "POST"
                    },
                    "executeAction": {
                      "description": "Executes a plugin instance in the API hub.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}:executeAction",
                      "path": "v1/{+name}:executeAction",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "response": {
                        "$ref": "GoogleLongrunningOperation"
                      },
                      "id": "apihub.projects.locations.plugins.instances.executeAction",
                      "parameters": {
                        "name": {
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "required": true,
                          "location": "path",
                          "description": "Required. The name of the plugin instance to execute. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1ExecutePluginInstanceActionRequest"
                      },
                      "httpMethod": "POST"
                    },
                    "get": {
                      "parameterOrder": [
                        "name"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}",
                      "description": "Get an API Hub plugin instance.",
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "GET",
                      "id": "apihub.projects.locations.plugins.instances.get",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "description": "Required. The name of the plugin instance to retrieve. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "required": true
                        }
                      },
                      "response": {
                        "$ref": "GoogleCloudApihubV1PluginInstance"
                      }
                    },
                    "create": {
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "Creates a Plugin instance in the API hub.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances",
                      "path": "v1/{+parent}/instances",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "apihub.projects.locations.plugins.instances.create",
                      "parameters": {
                        "pluginInstanceId": {
                          "description": "Optional. The ID to use for the plugin instance, which will become the final component of the plugin instance's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another plugin instance in the plugin resource. * If not provided, a system generated id will be used. This value should be 4-63 characters, and valid characters are /a-z[0-9]-_/.",
                          "location": "query",
                          "type": "string"
                        },
                        "parent": {
                          "description": "Required. The parent of the plugin instance resource. Format: `projects/{project}/locations/{location}/plugins/{plugin}`",
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1PluginInstance"
                      },
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "GoogleLongrunningOperation"
                      }
                    },
                    "list": {
                      "parameterOrder": [
                        "parent"
                      ],
                      "path": "v1/{+parent}/instances",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances",
                      "description": "List all the plugins in a given project and location. `-` can be used as wildcard value for {plugin_id}",
                      "httpMethod": "GET",
                      "id": "apihub.projects.locations.plugins.instances.list",
                      "parameters": {
                        "parent": {
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+$",
                          "type": "string",
                          "description": "Required. The parent resource where this plugin will be created. Format: `projects/{project}/locations/{location}/plugins/{plugin}`. To list plugin instances for multiple plugins, use the - character instead of the plugin ID.",
                          "location": "path"
                        },
                        "filter": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. An expression that filters the list of plugin instances. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `PluginInstances` are eligible for filtering: * `state` - The state of the Plugin Instance. Allowed comparison operators: `=`. * `source_project_id` - The source project id of the Plugin Instance. Allowed comparison operators: `=`. A filter function is also supported in the filter string. The filter function is `id(name)`. The `id(name)` function returns the id of the resource name. For example, `id(name) = \\\"plugin-instance-1\\\"` is equivalent to `name = \\\"projects/test-project-id/locations/test-location-id/plugins/plugin-1/instances/plugin-instance-1\\\"` provided the parent is `projects/test-project-id/locations/test-location-id/plugins/plugin-1`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `state = ENABLED` - The plugin instance is in enabled state."
                        },
                        "pageSize": {
                          "location": "query",
                          "type": "integer",
                          "format": "int32",
                          "description": "Optional. The maximum number of hub plugins to return. The service may return fewer than this value. If unspecified, at most 50 hub plugins will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                        },
                        "pageToken": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. A page token, received from a previous `ListPluginInstances` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPluginInstances` must match the call that provided the page token."
                        }
                      },
                      "response": {
                        "$ref": "GoogleCloudApihubV1ListPluginInstancesResponse"
                      }
                    },
                    "enableAction": {
                      "parameterOrder": [
                        "name"
                      ],
                      "path": "v1/{+name}:enableAction",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}:enableAction",
                      "description": "Enables a plugin instance in the API hub.",
                      "httpMethod": "POST",
                      "id": "apihub.projects.locations.plugins.instances.enableAction",
                      "parameters": {
                        "name": {
                          "description": "Required. The name of the plugin instance to enable. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
                          "location": "path",
                          "type": "string",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1EnablePluginInstanceActionRequest"
                      },
                      "response": {
                        "$ref": "GoogleLongrunningOperation"
                      }
                    },
                    "disableAction": {
                      "response": {
                        "$ref": "GoogleLongrunningOperation"
                      },
                      "id": "apihub.projects.locations.plugins.instances.disableAction",
                      "parameters": {
                        "name": {
                          "description": "Required. The name of the plugin instance to disable. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1DisablePluginInstanceActionRequest"
                      },
                      "httpMethod": "POST",
                      "path": "v1/{+name}:disableAction",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "description": "Disables a plugin instance in the API hub.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}:disableAction",
                      "parameterOrder": [
                        "name"
                      ]
                    },
                    "patch": {
                      "parameterOrder": [
                        "name"
                      ],
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}",
                      "description": "Updates a plugin instance in the API hub. The following fields in the plugin_instance can be updated currently: * display_name * schedule_cron_expression The update_mask should be used to specify the fields being updated. To update the auth_config and additional_config of the plugin instance, use the ApplyPluginInstanceConfig method.",
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "PATCH",
                      "id": "apihub.projects.locations.plugins.instances.patch",
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "required": true,
                          "type": "string",
                          "location": "path",
                          "description": "Identifier. The unique name of the plugin instance resource. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`"
                        },
                        "updateMask": {
                          "description": "Optional. The list of fields to update.",
                          "location": "query",
                          "type": "string",
                          "format": "google-fieldmask"
                        }
                      },
                      "request": {
                        "$ref": "GoogleCloudApihubV1PluginInstance"
                      },
                      "response": {
                        "$ref": "GoogleCloudApihubV1PluginInstance"
                      }
                    },
                    "delete": {
                      "id": "apihub.projects.locations.plugins.instances.delete",
                      "parameters": {
                        "name": {
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the plugin instance to delete. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`.",
                          "location": "path"
                        }
                      },
                      "httpMethod": "DELETE",
                      "response": {
                        "$ref": "GoogleLongrunningOperation"
                      },
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Deletes a plugin instance in the API hub.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}",
                      "path": "v1/{+name}",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ]
                    }
                  }
                },
                "styleGuide": {
                  "methods": {
                    "getContents": {
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Get the contents of the style guide.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/styleGuide:contents",
                      "path": "v1/{+name}:contents",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "apihub.projects.locations.plugins.styleGuide.getContents",
                      "parameters": {
                        "name": {
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/styleGuide$",
                          "type": "string",
                          "description": "Required. The name of the StyleGuide whose contents need to be retrieved. There is exactly one style guide resource per project per location. The expected format is `projects/{project}/locations/{location}/plugins/{plugin}/styleGuide`.",
                          "location": "path"
                        }
                      },
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "GoogleCloudApihubV1StyleGuideContents"
                      }
                    }
                  }
                }
              }
            },
            "attributes": {
              "methods": {
                "create": {
                  "id": "apihub.projects.locations.attributes.create",
                  "parameters": {
                    "attributeId": {
                      "description": "Optional. The ID to use for the attribute, which will become the final component of the attribute's resource name. This field is optional. * If provided, the same will be used. The service will throw an error if the specified id is already used by another attribute resource in the API hub. * If not provided, a system generated id will be used. This value should be 4-500 characters, and valid characters are /a-z[0-9]-_/.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "location": "path",
                      "description": "Required. The parent resource for Attribute. Format: `projects/{project}/locations/{location}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Attribute"
                  },
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "GoogleCloudApihubV1Attribute"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "path": "v1/{+parent}/attributes",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "description": "Create a user defined attribute. Certain pre defined attributes are already created by the API hub. These attributes will have type as `SYSTEM_DEFINED` and can be listed via ListAttributes method. Allowed values for the same can be updated via UpdateAttribute method.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/attributes"
                },
                "list": {
                  "id": "apihub.projects.locations.attributes.list",
                  "parameters": {
                    "parent": {
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true,
                      "location": "path",
                      "description": "Required. The parent resource for Attribute. Format: `projects/{project}/locations/{location}`"
                    },
                    "filter": {
                      "description": "Optional. An expression that filters the list of Attributes. A filter expression consists of a field name, a comparison operator, and a value for filtering. The value must be a string or a boolean. The comparison operator must be one of: `\u003c`, `\u003e` or `=`. Filters are not case sensitive. The following fields in the `Attribute` are eligible for filtering: * `display_name` - The display name of the Attribute. Allowed comparison operators: `=`. * `definition_type` - The definition type of the attribute. Allowed comparison operators: `=`. * `scope` - The scope of the attribute. Allowed comparison operators: `=`. * `data_type` - The type of the data of the attribute. Allowed comparison operators: `=`. * `mandatory` - Denotes whether the attribute is mandatory or not. Allowed comparison operators: `=`. * `create_time` - The time at which the Attribute was created. The value should be in the (RFC3339)[https://tools.ietf.org/html/rfc3339] format. Allowed comparison operators: `\u003e` and `\u003c`. Expressions are combined with either `AND` logic operator or `OR` logical operator but not both of them together i.e. only one of the `AND` or `OR` operator can be used throughout the filter string and both the operators cannot be used together. No other logical operators are supported. At most three filter fields are allowed in the filter string and if provided more than that then `INVALID_ARGUMENT` error is returned by the API. Here are a few examples: * `display_name = production` - - The display name of the attribute is _production_. * `(display_name = production) AND (create_time \u003c \\\"2021-08-15T14:50:00Z\\\") AND (create_time \u003e \\\"2021-08-10T12:00:00Z\\\")` - The display name of the attribute is _production_ and the attribute was created before _2021-08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `display_name = production OR scope = api` - The attribute where the display name is _production_ or the scope is _api_.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "format": "int32",
                      "description": "Optional. The maximum number of attribute resources to return. The service may return fewer than this value. If unspecified, at most 50 attributes will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. A page token, received from a previous `ListAttributes` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAttributes` must match the call that provided the page token."
                    }
                  },
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "GoogleCloudApihubV1ListAttributesResponse"
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "List all attributes.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/attributes",
                  "path": "v1/{+parent}/attributes",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "patch": {
                  "httpMethod": "PATCH",
                  "id": "apihub.projects.locations.attributes.patch",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/attributes/[^/]+$",
                      "required": true,
                      "type": "string",
                      "location": "path",
                      "description": "Identifier. The name of the attribute in the API Hub. Format: `projects/{project}/locations/{location}/attributes/{attribute}`"
                    },
                    "updateMask": {
                      "location": "query",
                      "type": "string",
                      "format": "google-fieldmask",
                      "description": "Required. The list of fields to update."
                    }
                  },
                  "request": {
                    "$ref": "GoogleCloudApihubV1Attribute"
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Attribute"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/attributes/{attributesId}",
                  "description": "Update the attribute. The following fields in the Attribute resource can be updated: * display_name The display name can be updated for user defined attributes only. * description The description can be updated for user defined attributes only. * allowed_values To update the list of allowed values, clients need to use the fetched list of allowed values and add or remove values to or from the same list. The mutable allowed values can be updated for both user defined and System defined attributes. The immutable allowed values cannot be updated or deleted. The updated list of allowed values cannot be empty. If an allowed value that is already used by some resource's attribute is deleted, then the association between the resource and the attribute value will also be deleted. * cardinality The cardinality can be updated for user defined attributes only. Cardinality can only be increased during an update. The update_mask should be used to specify the fields being updated.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "get": {
                  "httpMethod": "GET",
                  "id": "apihub.projects.locations.attributes.get",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the attribute to retrieve. Format: `projects/{project}/locations/{location}/attributes/{attribute}`",
                      "pattern": "^projects/[^/]+/locations/[^/]+/attributes/[^/]+$",
                      "required": true,
                      "type": "string"
                    }
                  },
                  "response": {
                    "$ref": "GoogleCloudApihubV1Attribute"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/attributes/{attributesId}",
                  "description": "Get details about the attribute.",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "delete": {
                  "response": {
                    "$ref": "Empty"
                  },
                  "id": "apihub.projects.locations.attributes.delete",
                  "parameters": {
                    "name": {
                      "location": "path",
                      "description": "Required. The name of the attribute to delete. Format: `projects/{project}/locations/{location}/attributes/{attribute}`",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/attributes/[^/]+$",
                      "required": true
                    }
                  },
                  "httpMethod": "DELETE",
                  "description": "Delete an attribute. Note: System defined attributes cannot be deleted. All associations of the attribute being deleted with any API hub resource will also get deleted.",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/attributes/{attributesId}",
                  "path": "v1/{+name}",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ]
                }
              }
            }
          },
          "methods": {
            "collectApiData": {
              "httpMethod": "POST",
              "id": "apihub.projects.locations.collectApiData",
              "parameters": {
                "location": {
                  "location": "path",
                  "description": "Required. The regional location of the API hub instance and its resources. Format: `projects/{project}/locations/{location}`",
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "required": true,
                  "type": "string"
                }
              },
              "request": {
                "$ref": "GoogleCloudApihubV1CollectApiDataRequest"
              },
              "response": {
                "$ref": "GoogleLongrunningOperation"
              },
              "parameterOrder": [
                "location"
              ],
              "path": "v1/{+location}:collectApiData",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}:collectApiData",
              "description": "Collect API data from a source and push it to Hub's collect layer."
            },
            "lookupRuntimeProjectAttachment": {
              "httpMethod": "GET",
              "id": "apihub.projects.locations.lookupRuntimeProjectAttachment",
              "parameters": {
                "name": {
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "required": true,
                  "type": "string",
                  "location": "path",
                  "description": "Required. Runtime project ID to look up runtime project attachment for. Lookup happens across all regions. Expected format: `projects/{project}/locations/{location}`."
                }
              },
              "response": {
                "$ref": "GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse"
              },
              "parameterOrder": [
                "name"
              ],
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}:lookupRuntimeProjectAttachment",
              "description": "Look up a runtime project attachment. This API can be called in the context of any project.",
              "path": "v1/{+name}:lookupRuntimeProjectAttachment",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ]
            },
            "searchResources": {
              "response": {
                "$ref": "GoogleCloudApihubV1SearchResourcesResponse"
              },
              "httpMethod": "POST",
              "id": "apihub.projects.locations.searchResources",
              "parameters": {
                "location": {
                  "location": "path",
                  "description": "Required. The resource name of the location which will be of the type `projects/{project_id}/locations/{location_id}`. This field is used to identify the instance of API-Hub in which resources should be searched.",
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "required": true,
                  "type": "string"
                }
              },
              "request": {
                "$ref": "GoogleCloudApihubV1SearchResourcesRequest"
              },
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}:searchResources",
              "description": "Search across API-Hub resources.",
              "path": "v1/{+location}:searchResources",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "parameterOrder": [
                "location"
              ]
            },
            "get": {
              "parameterOrder": [
                "name"
              ],
              "description": "Gets information about a location.",
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}",
              "path": "v1/{+name}",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "id": "apihub.projects.locations.get",
              "parameters": {
                "name": {
                  "description": "Resource name for the location.",
                  "location": "path",
                  "type": "string",
                  "required": true,
                  "pattern": "^projects/[^/]+/locations/[^/]+$"
                }
              },
              "httpMethod": "GET",
              "response": {
                "$ref": "GoogleCloudLocationLocation"
              }
            },
            "list": {
              "id": "apihub.projects.locations.list",
              "parameters": {
                "extraLocationTypes": {
                  "location": "query",
                  "type": "string",
                  "description": "Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage.",
                  "repeated": true
                },
                "name": {
                  "type": "string",
                  "pattern": "^projects/[^/]+$",
                  "required": true,
                  "location": "path",
                  "description": "The resource that owns the locations collection, if applicable."
                },
                "filter": {
                  "description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
                  "location": "query",
                  "type": "string"
                },
                "pageToken": {
                  "description": "A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.",
                  "location": "query",
                  "type": "string"
                },
                "pageSize": {
                  "location": "query",
                  "type": "integer",
                  "format": "int32",
                  "description": "The maximum number of results to return. If not set, the service selects a default."
                }
              },
              "httpMethod": "GET",
              "response": {
                "$ref": "GoogleCloudLocationListLocationsResponse"
              },
              "parameterOrder": [
                "name"
              ],
              "path": "v1/{+name}/locations",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "description": "Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version.",
              "flatPath": "v1/projects/{projectsId}/locations"
            },
            "retrieveApiViews": {
              "response": {
                "$ref": "GoogleCloudApihubV1RetrieveApiViewsResponse"
              },
              "httpMethod": "GET",
              "id": "apihub.projects.locations.retrieveApiViews",
              "parameters": {
                "pageToken": {
                  "location": "query",
                  "type": "string",
                  "description": "Optional. A page token, received from a previous `RetrieveApiViews` call. Provide this to retrieve the subsequent page."
                },
                "filter": {
                  "location": "query",
                  "type": "string",
                  "description": "Optional. The filter expression."
                },
                "view": {
                  "location": "query",
                  "description": "Required. The view type to return.",
                  "enumDescriptions": [
                    "The default view type.",
                    "The MCP server view in API hub.",
                    "The MCP tool view in API hub."
                  ],
                  "enum": [
                    "API_VIEW_TYPE_UNSPECIFIED",
                    "MCP_SERVER",
                    "MCP_TOOL"
                  ],
                  "type": "string"
                },
                "parent": {
                  "location": "path",
                  "description": "Required. The parent resource name. Format: `projects/{project}/locations/{location}`.",
                  "type": "string",
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "required": true
                },
                "pageSize": {
                  "location": "query",
                  "type": "integer",
                  "format": "int32",
                  "description": "Optional. The maximum number of results to return. Default to 100."
                }
              },
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}:retrieveApiViews",
              "description": "Retrieve API views.",
              "path": "v1/{+parent}:retrieveApiViews",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "parameterOrder": [
                "parent"
              ]
            }
          }
        }
      }
    }
  },
  "version_module": true,
  "canonicalName": "API hub",
  "kind": "discovery#restDescription",
  "mtlsRootUrl": "https://apihub.mtls.googleapis.com/",
  "baseUrl": "https://apihub.googleapis.com/",
  "rootUrl": "https://apihub.googleapis.com/"
}
