Connectors API . projects . locations . providers . connectors . versions

Instance Methods

eventtypes()

Returns the eventtypes Resource.

close()

Close httplib2 connections.

fetchAuthSchema(name, view=None, x__xgafv=None)

fetch and return the list of auth config variables required to override the connection backend auth.

get(name, view=None, x__xgafv=None)

Gets details of a single connector version.

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

Lists Connector Versions in a given project and location.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
fetchAuthSchema(name, view=None, x__xgafv=None)
fetch and return the list of auth config variables required to override the connection backend auth.

Args:
  name: string, Required. Parent resource of the Connector Version, of the form: `projects/*/locations/*/providers/*/connectors/*/versions/*` (required)
  view: string, Optional. View of the AuthSchema. The default value is BASIC.
    Allowed values
      AUTH_SCHEMA_VIEW_UNSPECIFIED - Default value.
      BASIC - Basic view of the AuthSchema.
      JSON_SCHEMA - JSON schema view of the AuthSchema.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for Connectors.GetAuthSchema.
  "authSchemas": [ # List of AuthSchemas.
    { # AuthSchema defines the schema of an authentication type.
      "authFields": [ # List of AuthFields.
        { # AuthField defines a field in an authentication type.
          "dataType": "A String", # Data type of the field.
          "description": "A String", # Description of the field.
          "key": "A String", # Key of the field.
        },
      ],
      "authKey": "A String", # Auth key of the schema.
      "authType": "A String", # Auth type of the schema.
      "description": "A String", # Description of the schema.
      "displayName": "A String", # Display name of the schema.
      "isDefault": True or False, # Whether the auth schema is the default one.
    },
  ],
  "jsonSchema": { # JsonAuthSchema defines the JSON schema of all authentication types. # JSON schema of the AuthSchemas. This is only populated if the view is JSON_SCHEMA. The schema is in draft-07 format.
    "$schema": "A String", # JSON schema of the AuthSchemas.
    "oneOf": [ # List of AuthObjects.
      { # AuthObject defines a JSON schema of an authentication type.
        "additionalProperties": True or False, # Whether the object has additional properties.
        "authKey": "A String", # Auth key of the object.
        "authType": "A String", # Auth type of the object.
        "description": "A String", # Description of the object.
        "isDefault": True or False, # Whether the object is the default one.
        "properties": { # Properties of the object.
          "a_key": { # AuthProperty defines a property of an authentication type.
            "description": "A String", # Description of the property.
            "type": "A String", # Type of the property.
          },
        },
        "type": "A String", # Type of the object.
      },
    ],
  },
}
get(name, view=None, x__xgafv=None)
Gets details of a single connector version.

Args:
  name: string, Required. Resource name of the form: `projects/*/locations/*/providers/*/connectors/*/versions/*` Only global location is supported for ConnectorVersion resource. (required)
  view: string, Specifies which fields of the ConnectorVersion are returned in the response. Defaults to `CUSTOMER` view.
    Allowed values
      CONNECTOR_VERSION_VIEW_UNSPECIFIED - CONNECTOR_VERSION_VIEW_UNSPECIFIED.
      CONNECTOR_VERSION_VIEW_BASIC - Do not include role grant configs.
      CONNECTOR_VERSION_VIEW_FULL - Include role grant configs.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # ConnectorVersion indicates a specific version of a connector.
  "authConfigTemplates": [ # Output only. List of auth configs supported by the Connector Version.
    { # AuthConfigTemplate defines required field over an authentication type.
      "authKey": "A String", # Identifier key for auth config
      "authType": "A String", # The type of authentication configured.
      "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
        { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
          "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
            "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
            },
            "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
            "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
            "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
              "A String",
            ],
            "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
          },
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
            { # EnumOption definition
              "displayName": "A String", # Display name of the option.
              "id": "A String", # Id of the option.
            },
          ],
          "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
          "isAdvanced": True or False, # Indicates if current template is part of advanced settings
          "key": "A String", # Key of the config variable.
          "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
          "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
            "allowCustomValues": True or False, # Optional. Allow custom values.
            "multipleSelectOptions": [ # Required. Multiple select options.
              { # MultiplSelecteOption represents the single option for a config variable.
                "description": "A String", # Optional. Value of the option.
                "displayName": "A String", # Required. Display name of the option.
                "key": "A String", # Required. Key of the option.
                "preselected": True or False, # Optional. Indicates if the option is preselected.
              },
            ],
            "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
          },
          "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
          "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
            "fieldComparisons": [ # A list of fields to be compared.
              { # Field that needs to be compared.
                "boolValue": True or False, # Boolean value
                "comparator": "A String", # Comparator to use for comparing the field value.
                "intValue": "A String", # Integer value
                "key": "A String", # Key of the field.
                "stringValue": "A String", # String value
              },
            ],
            "logicalExpressions": [ # A list of nested conditions to be compared.
              # Object with schema name: LogicalExpression
            ],
            "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
          },
          "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
            "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
            "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
            "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
              "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
              "type": "A String", # Different types of resource supported.
            },
            "roles": [ # List of roles that need to be granted.
              "A String",
            ],
          },
          "state": "A String", # State of the config variable.
          "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
          "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
        },
      ],
      "description": "A String", # Connector specific description for an authentication template.
      "displayName": "A String", # Display name for authentication template.
      "isDefault": True or False, # Whether the auth config is the default one.
    },
  ],
  "authOverrideEnabled": True or False, # Output only. Flag to mark the dynamic auth override.
  "configVariableTemplates": [ # Output only. List of config variables needed to create a connection.
    { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
      "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
        "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
        "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
          "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
        },
        "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
        "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
        "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
          "A String",
        ],
        "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
      },
      "description": "A String", # Description.
      "displayName": "A String", # Display name of the parameter.
      "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
        { # EnumOption definition
          "displayName": "A String", # Display name of the option.
          "id": "A String", # Id of the option.
        },
      ],
      "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
      "isAdvanced": True or False, # Indicates if current template is part of advanced settings
      "key": "A String", # Key of the config variable.
      "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
      "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
        "allowCustomValues": True or False, # Optional. Allow custom values.
        "multipleSelectOptions": [ # Required. Multiple select options.
          { # MultiplSelecteOption represents the single option for a config variable.
            "description": "A String", # Optional. Value of the option.
            "displayName": "A String", # Required. Display name of the option.
            "key": "A String", # Required. Key of the option.
            "preselected": True or False, # Optional. Indicates if the option is preselected.
          },
        ],
        "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
      },
      "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
      "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
        "fieldComparisons": [ # A list of fields to be compared.
          { # Field that needs to be compared.
            "boolValue": True or False, # Boolean value
            "comparator": "A String", # Comparator to use for comparing the field value.
            "intValue": "A String", # Integer value
            "key": "A String", # Key of the field.
            "stringValue": "A String", # String value
          },
        ],
        "logicalExpressions": [ # A list of nested conditions to be compared.
          # Object with schema name: LogicalExpression
        ],
        "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
      },
      "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
        "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
        "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
        "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
          "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
          "type": "A String", # Different types of resource supported.
        },
        "roles": [ # List of roles that need to be granted.
          "A String",
        ],
      },
      "state": "A String", # State of the config variable.
      "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
      "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
    },
  ],
  "connectorInfraConfig": { # This cofiguration provides infra configs like rate limit threshold which need to be configurable for every connector version # Output only. Infra configs supported by Connector.
    "alwaysAllocateCpu": True or False, # Indicates that the Cloud Run CPU should always be allocated.
    "connectionRatelimitWindowSeconds": "A String", # The window used for ratelimiting runtime requests to connections.
    "connectorVersioningEnabled": True or False, # Indicate whether connector versioning is enabled.
    "deploymentModel": "A String", # Indicate whether connector is deployed on GKE/CloudRun
    "hpaConfig": { # Autoscaling config for connector deployment system metrics. # HPA autoscaling config.
      "cpuUtilizationThreshold": "A String", # Output only. Percent CPU utilization where HPA triggers autoscaling.
      "memoryUtilizationThreshold": "A String", # Output only. Percent Memory utilization where HPA triggers autoscaling.
    },
    "internalclientRatelimitThreshold": "A String", # Max QPS supported for internal requests originating from Connd.
    "maxInstanceRequestConcurrency": 42, # Max Instance Request Conncurrency for Cloud Run service.
    "migrateDeploymentModel": True or False, # Indicate whether connector is being migrated to cloud run deployment model.
    "migrateTls": True or False, # Indicate whether connector is being migrated to TLS.
    "provisionCloudSpanner": True or False, # Indicate whether cloud spanner is required for connector job.
    "ratelimitThreshold": "A String", # Max QPS supported by the connector version before throttling of requests.
    "resourceLimits": { # Resource limits defined for connection pods of a given connector type. # System resource limits.
      "cpu": "A String", # Output only. CPU limit.
      "memory": "A String", # Output only. Memory limit.
    },
    "resourceRequests": { # Resource requests defined for connection pods of a given connector type. # System resource requests.
      "cpu": "A String", # Output only. CPU request.
      "memory": "A String", # Output only. Memory request.
    },
    "sharedDeployment": "A String", # The name of shared connector deployment.
  },
  "createTime": "A String", # Output only. Created time.
  "destinationConfigTemplates": [ # Output only. List of destination configs needed to create a connection.
    { # DestinationConfigTemplate defines required destinations supported by the Connector.
      "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
        "A String",
      ],
      "defaultPort": 42, # The default port.
      "description": "A String", # Description.
      "displayName": "A String", # Display name of the parameter.
      "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
      "key": "A String", # Key of the destination.
      "max": 42, # The maximum number of destinations supported for this key.
      "min": 42, # The minimum number of destinations supported for this key.
      "portFieldType": "A String", # Whether port number should be provided by customers.
      "regexPattern": "A String", # Regex pattern for host.
    },
  ],
  "displayName": "A String", # Output only. Display name.
  "egressControlConfig": { # Egress control config for connector runtime. These configurations define the rules to identify which outbound domains/hosts needs to be whitelisted. It may be a static information for a particular connector version or it is derived from the configurations provided by the customer in Connection resource. # Output only. Configuration for Egress Control.
    "backends": "A String", # Static Comma separated backends which are common for all Connection resources. Supported formats for each backend are host:port or just host (host can be ip address or domain name).
    "extractionRules": { # Extraction Rules to identity the backends from customer provided configuration in Connection resource. # Extractions Rules to extract the backends from customer provided configuration.
      "extractionRule": [ # Collection of Extraction Rule.
        { # Extraction Rule.
          "extractionRegex": "A String", # Regex used to extract backend details from source. If empty, whole source value will be used.
          "source": { # Source to extract the backend from. # Source on which the rule is applied.
            "fieldId": "A String", # Field identifier. For example config vaiable name.
            "sourceType": "A String", # Type of the source.
          },
        },
      ],
    },
  },
  "eventingConfigTemplate": { # Eventing Config details of a connector version. # Output only. Eventing configuration supported by the Connector.
    "additionalVariables": [ # Additional fields that need to be rendered.
      { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
        "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
          "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
          "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
          },
          "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
          "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
          "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
            "A String",
          ],
          "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
        },
        "description": "A String", # Description.
        "displayName": "A String", # Display name of the parameter.
        "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
          { # EnumOption definition
            "displayName": "A String", # Display name of the option.
            "id": "A String", # Id of the option.
          },
        ],
        "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
        "isAdvanced": True or False, # Indicates if current template is part of advanced settings
        "key": "A String", # Key of the config variable.
        "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
        "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
          "allowCustomValues": True or False, # Optional. Allow custom values.
          "multipleSelectOptions": [ # Required. Multiple select options.
            { # MultiplSelecteOption represents the single option for a config variable.
              "description": "A String", # Optional. Value of the option.
              "displayName": "A String", # Required. Display name of the option.
              "key": "A String", # Required. Key of the option.
              "preselected": True or False, # Optional. Indicates if the option is preselected.
            },
          ],
          "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
        },
        "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
        "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
          "fieldComparisons": [ # A list of fields to be compared.
            { # Field that needs to be compared.
              "boolValue": True or False, # Boolean value
              "comparator": "A String", # Comparator to use for comparing the field value.
              "intValue": "A String", # Integer value
              "key": "A String", # Key of the field.
              "stringValue": "A String", # String value
            },
          ],
          "logicalExpressions": [ # A list of nested conditions to be compared.
            # Object with schema name: LogicalExpression
          ],
          "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
        },
        "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
          "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
          "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
          "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
            "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
            "type": "A String", # Different types of resource supported.
          },
          "roles": [ # List of roles that need to be granted.
            "A String",
          ],
        },
        "state": "A String", # State of the config variable.
        "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
        "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
      },
    ],
    "authConfigTemplates": [ # AuthConfigTemplates represents the auth values for the webhook adapter.
      { # AuthConfigTemplate defines required field over an authentication type.
        "authKey": "A String", # Identifier key for auth config
        "authType": "A String", # The type of authentication configured.
        "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
          { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
            "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
              "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
              },
              "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
              "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
              "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                "A String",
              ],
              "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
            },
            "description": "A String", # Description.
            "displayName": "A String", # Display name of the parameter.
            "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
              { # EnumOption definition
                "displayName": "A String", # Display name of the option.
                "id": "A String", # Id of the option.
              },
            ],
            "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
            "isAdvanced": True or False, # Indicates if current template is part of advanced settings
            "key": "A String", # Key of the config variable.
            "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
            "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
              "allowCustomValues": True or False, # Optional. Allow custom values.
              "multipleSelectOptions": [ # Required. Multiple select options.
                { # MultiplSelecteOption represents the single option for a config variable.
                  "description": "A String", # Optional. Value of the option.
                  "displayName": "A String", # Required. Display name of the option.
                  "key": "A String", # Required. Key of the option.
                  "preselected": True or False, # Optional. Indicates if the option is preselected.
                },
              ],
              "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
            },
            "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
            "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
              "fieldComparisons": [ # A list of fields to be compared.
                { # Field that needs to be compared.
                  "boolValue": True or False, # Boolean value
                  "comparator": "A String", # Comparator to use for comparing the field value.
                  "intValue": "A String", # Integer value
                  "key": "A String", # Key of the field.
                  "stringValue": "A String", # String value
                },
              ],
              "logicalExpressions": [ # A list of nested conditions to be compared.
                # Object with schema name: LogicalExpression
              ],
              "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
            },
            "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
              "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
              "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
              "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                "type": "A String", # Different types of resource supported.
              },
              "roles": [ # List of roles that need to be granted.
                "A String",
              ],
            },
            "state": "A String", # State of the config variable.
            "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
            "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
          },
        ],
        "description": "A String", # Connector specific description for an authentication template.
        "displayName": "A String", # Display name for authentication template.
        "isDefault": True or False, # Whether the auth config is the default one.
      },
    ],
    "autoRefresh": True or False, # Auto refresh to extend webhook life.
    "autoRegistrationSupported": True or False, # Auto Registration supported.
    "encryptionKeyTemplate": { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection. # Encryption key (can be either Google managed or CMEK).
      "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
        "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
        "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
          "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
        },
        "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
        "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
        "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
          "A String",
        ],
        "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
      },
      "description": "A String", # Description.
      "displayName": "A String", # Display name of the parameter.
      "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
        { # EnumOption definition
          "displayName": "A String", # Display name of the option.
          "id": "A String", # Id of the option.
        },
      ],
      "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
      "isAdvanced": True or False, # Indicates if current template is part of advanced settings
      "key": "A String", # Key of the config variable.
      "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
      "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
        "allowCustomValues": True or False, # Optional. Allow custom values.
        "multipleSelectOptions": [ # Required. Multiple select options.
          { # MultiplSelecteOption represents the single option for a config variable.
            "description": "A String", # Optional. Value of the option.
            "displayName": "A String", # Required. Display name of the option.
            "key": "A String", # Required. Key of the option.
            "preselected": True or False, # Optional. Indicates if the option is preselected.
          },
        ],
        "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
      },
      "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
      "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
        "fieldComparisons": [ # A list of fields to be compared.
          { # Field that needs to be compared.
            "boolValue": True or False, # Boolean value
            "comparator": "A String", # Comparator to use for comparing the field value.
            "intValue": "A String", # Integer value
            "key": "A String", # Key of the field.
            "stringValue": "A String", # String value
          },
        ],
        "logicalExpressions": [ # A list of nested conditions to be compared.
          # Object with schema name: LogicalExpression
        ],
        "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
      },
      "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
        "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
        "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
        "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
          "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
          "type": "A String", # Different types of resource supported.
        },
        "roles": [ # List of roles that need to be granted.
          "A String",
        ],
      },
      "state": "A String", # State of the config variable.
      "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
      "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
    },
    "enrichmentSupported": True or False, # Enrichment Supported.
    "eventListenerType": "A String", # The type of the event listener for a specific connector.
    "isEventingSupported": True or False, # Is Eventing Supported.
    "listenerAuthConfigTemplates": [ # ListenerAuthConfigTemplates represents the auth values for the event listener.
      { # AuthConfigTemplate defines required field over an authentication type.
        "authKey": "A String", # Identifier key for auth config
        "authType": "A String", # The type of authentication configured.
        "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
          { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
            "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
              "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
              },
              "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
              "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
              "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                "A String",
              ],
              "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
            },
            "description": "A String", # Description.
            "displayName": "A String", # Display name of the parameter.
            "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
              { # EnumOption definition
                "displayName": "A String", # Display name of the option.
                "id": "A String", # Id of the option.
              },
            ],
            "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
            "isAdvanced": True or False, # Indicates if current template is part of advanced settings
            "key": "A String", # Key of the config variable.
            "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
            "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
              "allowCustomValues": True or False, # Optional. Allow custom values.
              "multipleSelectOptions": [ # Required. Multiple select options.
                { # MultiplSelecteOption represents the single option for a config variable.
                  "description": "A String", # Optional. Value of the option.
                  "displayName": "A String", # Required. Display name of the option.
                  "key": "A String", # Required. Key of the option.
                  "preselected": True or False, # Optional. Indicates if the option is preselected.
                },
              ],
              "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
            },
            "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
            "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
              "fieldComparisons": [ # A list of fields to be compared.
                { # Field that needs to be compared.
                  "boolValue": True or False, # Boolean value
                  "comparator": "A String", # Comparator to use for comparing the field value.
                  "intValue": "A String", # Integer value
                  "key": "A String", # Key of the field.
                  "stringValue": "A String", # String value
                },
              ],
              "logicalExpressions": [ # A list of nested conditions to be compared.
                # Object with schema name: LogicalExpression
              ],
              "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
            },
            "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
              "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
              "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
              "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                "type": "A String", # Different types of resource supported.
              },
              "roles": [ # List of roles that need to be granted.
                "A String",
              ],
            },
            "state": "A String", # State of the config variable.
            "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
            "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
          },
        ],
        "description": "A String", # Connector specific description for an authentication template.
        "displayName": "A String", # Display name for authentication template.
        "isDefault": True or False, # Whether the auth config is the default one.
      },
    ],
    "proxyDestinationConfig": { # DestinationConfigTemplate defines required destinations supported by the Connector. # Proxy destination config template.
      "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
        "A String",
      ],
      "defaultPort": 42, # The default port.
      "description": "A String", # Description.
      "displayName": "A String", # Display name of the parameter.
      "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
      "key": "A String", # Key of the destination.
      "max": 42, # The maximum number of destinations supported for this key.
      "min": 42, # The minimum number of destinations supported for this key.
      "portFieldType": "A String", # Whether port number should be provided by customers.
      "regexPattern": "A String", # Regex pattern for host.
    },
    "registrationDestinationConfig": { # DestinationConfigTemplate defines required destinations supported by the Connector. # Registration host destination config template.
      "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
        "A String",
      ],
      "defaultPort": 42, # The default port.
      "description": "A String", # Description.
      "displayName": "A String", # Display name of the parameter.
      "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
      "key": "A String", # Key of the destination.
      "max": 42, # The maximum number of destinations supported for this key.
      "min": 42, # The minimum number of destinations supported for this key.
      "portFieldType": "A String", # Whether port number should be provided by customers.
      "regexPattern": "A String", # Regex pattern for host.
    },
    "triggerConfigVariables": [ # Trigger Config fields that needs to be rendered
      { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
        "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
          "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
          "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
          },
          "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
          "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
          "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
            "A String",
          ],
          "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
        },
        "description": "A String", # Description.
        "displayName": "A String", # Display name of the parameter.
        "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
          { # EnumOption definition
            "displayName": "A String", # Display name of the option.
            "id": "A String", # Id of the option.
          },
        ],
        "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
        "isAdvanced": True or False, # Indicates if current template is part of advanced settings
        "key": "A String", # Key of the config variable.
        "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
        "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
          "allowCustomValues": True or False, # Optional. Allow custom values.
          "multipleSelectOptions": [ # Required. Multiple select options.
            { # MultiplSelecteOption represents the single option for a config variable.
              "description": "A String", # Optional. Value of the option.
              "displayName": "A String", # Required. Display name of the option.
              "key": "A String", # Required. Key of the option.
              "preselected": True or False, # Optional. Indicates if the option is preselected.
            },
          ],
          "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
        },
        "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
        "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
          "fieldComparisons": [ # A list of fields to be compared.
            { # Field that needs to be compared.
              "boolValue": True or False, # Boolean value
              "comparator": "A String", # Comparator to use for comparing the field value.
              "intValue": "A String", # Integer value
              "key": "A String", # Key of the field.
              "stringValue": "A String", # String value
            },
          ],
          "logicalExpressions": [ # A list of nested conditions to be compared.
            # Object with schema name: LogicalExpression
          ],
          "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
        },
        "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
          "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
          "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
          "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
            "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
            "type": "A String", # Different types of resource supported.
          },
          "roles": [ # List of roles that need to be granted.
            "A String",
          ],
        },
        "state": "A String", # State of the config variable.
        "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
        "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
      },
    ],
  },
  "isAsyncOperationsSupported": True or False, # Output only. Is async operations supported.
  "isCustomActionsSupported": True or False, # Output only. Is custom actions supported.
  "isCustomEntitiesSupported": True or False, # Output only. Is custom entities supported.
  "labels": { # Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
    "a_key": "A String",
  },
  "launchStage": "A String", # Output only. Flag to mark the version indicating the launch stage.
  "name": "A String", # Output only. Resource name of the Version. Format: projects/{project}/locations/{location}/providers/{provider}/connectors/{connector}/versions/{version} Only global location is supported for Connector resource.
  "releaseVersion": "A String", # Output only. ReleaseVersion of the connector, for example: "1.0.1-alpha".
  "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Output only. Role grant configuration for this config variable. It will be DEPRECATED soon.
    "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
    "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
    "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
      "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
      "type": "A String", # Different types of resource supported.
    },
    "roles": [ # List of roles that need to be granted.
      "A String",
    ],
  },
  "roleGrants": [ # Output only. Role grant configurations for this connector version.
    { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user.
      "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
      "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
      "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
        "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
        "type": "A String", # Different types of resource supported.
      },
      "roles": [ # List of roles that need to be granted.
        "A String",
      ],
    },
  ],
  "schemaRefreshConfig": { # Config for connection schema refresh # Connection Schema Refresh Config
    "useActionDisplayNames": True or False, # Whether to use displayName for actions in UI.
    "useSynchronousSchemaRefresh": True or False, # Whether to use synchronous schema refresh.
  },
  "sslConfigTemplate": { # Ssl config details of a connector version # Output only. Ssl configuration supported by the Connector.
    "additionalVariables": [ # Any additional fields that need to be rendered
      { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
        "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
          "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
          "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
          },
          "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
          "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
          "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
            "A String",
          ],
          "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
        },
        "description": "A String", # Description.
        "displayName": "A String", # Display name of the parameter.
        "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
          { # EnumOption definition
            "displayName": "A String", # Display name of the option.
            "id": "A String", # Id of the option.
          },
        ],
        "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
        "isAdvanced": True or False, # Indicates if current template is part of advanced settings
        "key": "A String", # Key of the config variable.
        "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
        "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
          "allowCustomValues": True or False, # Optional. Allow custom values.
          "multipleSelectOptions": [ # Required. Multiple select options.
            { # MultiplSelecteOption represents the single option for a config variable.
              "description": "A String", # Optional. Value of the option.
              "displayName": "A String", # Required. Display name of the option.
              "key": "A String", # Required. Key of the option.
              "preselected": True or False, # Optional. Indicates if the option is preselected.
            },
          ],
          "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
        },
        "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
        "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
          "fieldComparisons": [ # A list of fields to be compared.
            { # Field that needs to be compared.
              "boolValue": True or False, # Boolean value
              "comparator": "A String", # Comparator to use for comparing the field value.
              "intValue": "A String", # Integer value
              "key": "A String", # Key of the field.
              "stringValue": "A String", # String value
            },
          ],
          "logicalExpressions": [ # A list of nested conditions to be compared.
            # Object with schema name: LogicalExpression
          ],
          "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
        },
        "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
          "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
          "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
          "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
            "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
            "type": "A String", # Different types of resource supported.
          },
          "roles": [ # List of roles that need to be granted.
            "A String",
          ],
        },
        "state": "A String", # State of the config variable.
        "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
        "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
      },
    ],
    "clientCertType": [ # List of supported Client Cert Types
      "A String",
    ],
    "isTlsMandatory": True or False, # Boolean for determining if the connector version mandates TLS.
    "serverCertType": [ # List of supported Server Cert Types
      "A String",
    ],
    "sslType": "A String", # Controls the ssl type for the given connector version
  },
  "supportedRuntimeFeatures": { # Supported runtime features of a connector version. # Output only. Information about the runtime features supported by the Connector.
    "actionApis": True or False, # Specifies if the connector supports action apis like 'executeAction'.
    "entityApis": True or False, # Specifies if the connector supports entity apis like 'createEntity'.
    "sqlQuery": True or False, # Specifies if the connector supports 'ExecuteSqlQuery' operation.
  },
  "supportedStandardActions": [ # Output only. Supported standard actions.
    { # Standard action
      "name": "A String", # Name of the standard action.
    },
  ],
  "supportedStandardEntities": [ # Output only. Supported standard entities.
    { # Standard entity
      "name": "A String", # Name of the standard entity.
    },
  ],
  "unsupportedConnectionTypes": [ # Output only. Unsupported connection types.
    "A String",
  ],
  "updateTime": "A String", # Output only. Updated time.
}
list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)
Lists Connector Versions in a given project and location.

Args:
  parent: string, Required. Parent resource of the connectors, of the form: `projects/*/locations/*/providers/*/connectors/*` Only global location is supported for ConnectorVersion resource. (required)
  pageSize: integer, Page size.
  pageToken: string, Page token.
  view: string, Specifies which fields of the ConnectorVersion are returned in the response. Defaults to `BASIC` view.
    Allowed values
      CONNECTOR_VERSION_VIEW_UNSPECIFIED - CONNECTOR_VERSION_VIEW_UNSPECIFIED.
      CONNECTOR_VERSION_VIEW_BASIC - Do not include role grant configs.
      CONNECTOR_VERSION_VIEW_FULL - Include role grant configs.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for Connectors.ListConnectorVersions.
  "connectorVersions": [ # A list of connector versions.
    { # ConnectorVersion indicates a specific version of a connector.
      "authConfigTemplates": [ # Output only. List of auth configs supported by the Connector Version.
        { # AuthConfigTemplate defines required field over an authentication type.
          "authKey": "A String", # Identifier key for auth config
          "authType": "A String", # The type of authentication configured.
          "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
            { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
              "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
                "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                  "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
                },
                "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
                "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
                "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                  "A String",
                ],
                "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
              },
              "description": "A String", # Description.
              "displayName": "A String", # Display name of the parameter.
              "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
                { # EnumOption definition
                  "displayName": "A String", # Display name of the option.
                  "id": "A String", # Id of the option.
                },
              ],
              "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
              "isAdvanced": True or False, # Indicates if current template is part of advanced settings
              "key": "A String", # Key of the config variable.
              "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
              "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
                "allowCustomValues": True or False, # Optional. Allow custom values.
                "multipleSelectOptions": [ # Required. Multiple select options.
                  { # MultiplSelecteOption represents the single option for a config variable.
                    "description": "A String", # Optional. Value of the option.
                    "displayName": "A String", # Required. Display name of the option.
                    "key": "A String", # Required. Key of the option.
                    "preselected": True or False, # Optional. Indicates if the option is preselected.
                  },
                ],
                "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
              },
              "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
              "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
                "fieldComparisons": [ # A list of fields to be compared.
                  { # Field that needs to be compared.
                    "boolValue": True or False, # Boolean value
                    "comparator": "A String", # Comparator to use for comparing the field value.
                    "intValue": "A String", # Integer value
                    "key": "A String", # Key of the field.
                    "stringValue": "A String", # String value
                  },
                ],
                "logicalExpressions": [ # A list of nested conditions to be compared.
                  # Object with schema name: LogicalExpression
                ],
                "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
              },
              "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
                "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
                "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
                "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                  "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                  "type": "A String", # Different types of resource supported.
                },
                "roles": [ # List of roles that need to be granted.
                  "A String",
                ],
              },
              "state": "A String", # State of the config variable.
              "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
              "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
            },
          ],
          "description": "A String", # Connector specific description for an authentication template.
          "displayName": "A String", # Display name for authentication template.
          "isDefault": True or False, # Whether the auth config is the default one.
        },
      ],
      "authOverrideEnabled": True or False, # Output only. Flag to mark the dynamic auth override.
      "configVariableTemplates": [ # Output only. List of config variables needed to create a connection.
        { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
          "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
            "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
            },
            "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
            "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
            "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
              "A String",
            ],
            "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
          },
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
            { # EnumOption definition
              "displayName": "A String", # Display name of the option.
              "id": "A String", # Id of the option.
            },
          ],
          "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
          "isAdvanced": True or False, # Indicates if current template is part of advanced settings
          "key": "A String", # Key of the config variable.
          "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
          "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
            "allowCustomValues": True or False, # Optional. Allow custom values.
            "multipleSelectOptions": [ # Required. Multiple select options.
              { # MultiplSelecteOption represents the single option for a config variable.
                "description": "A String", # Optional. Value of the option.
                "displayName": "A String", # Required. Display name of the option.
                "key": "A String", # Required. Key of the option.
                "preselected": True or False, # Optional. Indicates if the option is preselected.
              },
            ],
            "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
          },
          "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
          "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
            "fieldComparisons": [ # A list of fields to be compared.
              { # Field that needs to be compared.
                "boolValue": True or False, # Boolean value
                "comparator": "A String", # Comparator to use for comparing the field value.
                "intValue": "A String", # Integer value
                "key": "A String", # Key of the field.
                "stringValue": "A String", # String value
              },
            ],
            "logicalExpressions": [ # A list of nested conditions to be compared.
              # Object with schema name: LogicalExpression
            ],
            "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
          },
          "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
            "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
            "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
            "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
              "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
              "type": "A String", # Different types of resource supported.
            },
            "roles": [ # List of roles that need to be granted.
              "A String",
            ],
          },
          "state": "A String", # State of the config variable.
          "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
          "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
        },
      ],
      "connectorInfraConfig": { # This cofiguration provides infra configs like rate limit threshold which need to be configurable for every connector version # Output only. Infra configs supported by Connector.
        "alwaysAllocateCpu": True or False, # Indicates that the Cloud Run CPU should always be allocated.
        "connectionRatelimitWindowSeconds": "A String", # The window used for ratelimiting runtime requests to connections.
        "connectorVersioningEnabled": True or False, # Indicate whether connector versioning is enabled.
        "deploymentModel": "A String", # Indicate whether connector is deployed on GKE/CloudRun
        "hpaConfig": { # Autoscaling config for connector deployment system metrics. # HPA autoscaling config.
          "cpuUtilizationThreshold": "A String", # Output only. Percent CPU utilization where HPA triggers autoscaling.
          "memoryUtilizationThreshold": "A String", # Output only. Percent Memory utilization where HPA triggers autoscaling.
        },
        "internalclientRatelimitThreshold": "A String", # Max QPS supported for internal requests originating from Connd.
        "maxInstanceRequestConcurrency": 42, # Max Instance Request Conncurrency for Cloud Run service.
        "migrateDeploymentModel": True or False, # Indicate whether connector is being migrated to cloud run deployment model.
        "migrateTls": True or False, # Indicate whether connector is being migrated to TLS.
        "provisionCloudSpanner": True or False, # Indicate whether cloud spanner is required for connector job.
        "ratelimitThreshold": "A String", # Max QPS supported by the connector version before throttling of requests.
        "resourceLimits": { # Resource limits defined for connection pods of a given connector type. # System resource limits.
          "cpu": "A String", # Output only. CPU limit.
          "memory": "A String", # Output only. Memory limit.
        },
        "resourceRequests": { # Resource requests defined for connection pods of a given connector type. # System resource requests.
          "cpu": "A String", # Output only. CPU request.
          "memory": "A String", # Output only. Memory request.
        },
        "sharedDeployment": "A String", # The name of shared connector deployment.
      },
      "createTime": "A String", # Output only. Created time.
      "destinationConfigTemplates": [ # Output only. List of destination configs needed to create a connection.
        { # DestinationConfigTemplate defines required destinations supported by the Connector.
          "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
            "A String",
          ],
          "defaultPort": 42, # The default port.
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
          "key": "A String", # Key of the destination.
          "max": 42, # The maximum number of destinations supported for this key.
          "min": 42, # The minimum number of destinations supported for this key.
          "portFieldType": "A String", # Whether port number should be provided by customers.
          "regexPattern": "A String", # Regex pattern for host.
        },
      ],
      "displayName": "A String", # Output only. Display name.
      "egressControlConfig": { # Egress control config for connector runtime. These configurations define the rules to identify which outbound domains/hosts needs to be whitelisted. It may be a static information for a particular connector version or it is derived from the configurations provided by the customer in Connection resource. # Output only. Configuration for Egress Control.
        "backends": "A String", # Static Comma separated backends which are common for all Connection resources. Supported formats for each backend are host:port or just host (host can be ip address or domain name).
        "extractionRules": { # Extraction Rules to identity the backends from customer provided configuration in Connection resource. # Extractions Rules to extract the backends from customer provided configuration.
          "extractionRule": [ # Collection of Extraction Rule.
            { # Extraction Rule.
              "extractionRegex": "A String", # Regex used to extract backend details from source. If empty, whole source value will be used.
              "source": { # Source to extract the backend from. # Source on which the rule is applied.
                "fieldId": "A String", # Field identifier. For example config vaiable name.
                "sourceType": "A String", # Type of the source.
              },
            },
          ],
        },
      },
      "eventingConfigTemplate": { # Eventing Config details of a connector version. # Output only. Eventing configuration supported by the Connector.
        "additionalVariables": [ # Additional fields that need to be rendered.
          { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
            "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
              "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
              },
              "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
              "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
              "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                "A String",
              ],
              "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
            },
            "description": "A String", # Description.
            "displayName": "A String", # Display name of the parameter.
            "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
              { # EnumOption definition
                "displayName": "A String", # Display name of the option.
                "id": "A String", # Id of the option.
              },
            ],
            "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
            "isAdvanced": True or False, # Indicates if current template is part of advanced settings
            "key": "A String", # Key of the config variable.
            "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
            "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
              "allowCustomValues": True or False, # Optional. Allow custom values.
              "multipleSelectOptions": [ # Required. Multiple select options.
                { # MultiplSelecteOption represents the single option for a config variable.
                  "description": "A String", # Optional. Value of the option.
                  "displayName": "A String", # Required. Display name of the option.
                  "key": "A String", # Required. Key of the option.
                  "preselected": True or False, # Optional. Indicates if the option is preselected.
                },
              ],
              "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
            },
            "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
            "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
              "fieldComparisons": [ # A list of fields to be compared.
                { # Field that needs to be compared.
                  "boolValue": True or False, # Boolean value
                  "comparator": "A String", # Comparator to use for comparing the field value.
                  "intValue": "A String", # Integer value
                  "key": "A String", # Key of the field.
                  "stringValue": "A String", # String value
                },
              ],
              "logicalExpressions": [ # A list of nested conditions to be compared.
                # Object with schema name: LogicalExpression
              ],
              "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
            },
            "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
              "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
              "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
              "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                "type": "A String", # Different types of resource supported.
              },
              "roles": [ # List of roles that need to be granted.
                "A String",
              ],
            },
            "state": "A String", # State of the config variable.
            "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
            "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
          },
        ],
        "authConfigTemplates": [ # AuthConfigTemplates represents the auth values for the webhook adapter.
          { # AuthConfigTemplate defines required field over an authentication type.
            "authKey": "A String", # Identifier key for auth config
            "authType": "A String", # The type of authentication configured.
            "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
              { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
                "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
                  "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
                  "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                    "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
                  },
                  "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
                  "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
                  "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                    "A String",
                  ],
                  "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
                },
                "description": "A String", # Description.
                "displayName": "A String", # Display name of the parameter.
                "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
                  { # EnumOption definition
                    "displayName": "A String", # Display name of the option.
                    "id": "A String", # Id of the option.
                  },
                ],
                "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
                "isAdvanced": True or False, # Indicates if current template is part of advanced settings
                "key": "A String", # Key of the config variable.
                "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
                "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
                  "allowCustomValues": True or False, # Optional. Allow custom values.
                  "multipleSelectOptions": [ # Required. Multiple select options.
                    { # MultiplSelecteOption represents the single option for a config variable.
                      "description": "A String", # Optional. Value of the option.
                      "displayName": "A String", # Required. Display name of the option.
                      "key": "A String", # Required. Key of the option.
                      "preselected": True or False, # Optional. Indicates if the option is preselected.
                    },
                  ],
                  "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
                },
                "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
                "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
                  "fieldComparisons": [ # A list of fields to be compared.
                    { # Field that needs to be compared.
                      "boolValue": True or False, # Boolean value
                      "comparator": "A String", # Comparator to use for comparing the field value.
                      "intValue": "A String", # Integer value
                      "key": "A String", # Key of the field.
                      "stringValue": "A String", # String value
                    },
                  ],
                  "logicalExpressions": [ # A list of nested conditions to be compared.
                    # Object with schema name: LogicalExpression
                  ],
                  "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
                },
                "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
                  "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
                  "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
                  "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                    "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                    "type": "A String", # Different types of resource supported.
                  },
                  "roles": [ # List of roles that need to be granted.
                    "A String",
                  ],
                },
                "state": "A String", # State of the config variable.
                "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
                "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
              },
            ],
            "description": "A String", # Connector specific description for an authentication template.
            "displayName": "A String", # Display name for authentication template.
            "isDefault": True or False, # Whether the auth config is the default one.
          },
        ],
        "autoRefresh": True or False, # Auto refresh to extend webhook life.
        "autoRegistrationSupported": True or False, # Auto Registration supported.
        "encryptionKeyTemplate": { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection. # Encryption key (can be either Google managed or CMEK).
          "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
            "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
            "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
            },
            "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
            "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
            "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
              "A String",
            ],
            "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
          },
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
            { # EnumOption definition
              "displayName": "A String", # Display name of the option.
              "id": "A String", # Id of the option.
            },
          ],
          "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
          "isAdvanced": True or False, # Indicates if current template is part of advanced settings
          "key": "A String", # Key of the config variable.
          "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
          "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
            "allowCustomValues": True or False, # Optional. Allow custom values.
            "multipleSelectOptions": [ # Required. Multiple select options.
              { # MultiplSelecteOption represents the single option for a config variable.
                "description": "A String", # Optional. Value of the option.
                "displayName": "A String", # Required. Display name of the option.
                "key": "A String", # Required. Key of the option.
                "preselected": True or False, # Optional. Indicates if the option is preselected.
              },
            ],
            "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
          },
          "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
          "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
            "fieldComparisons": [ # A list of fields to be compared.
              { # Field that needs to be compared.
                "boolValue": True or False, # Boolean value
                "comparator": "A String", # Comparator to use for comparing the field value.
                "intValue": "A String", # Integer value
                "key": "A String", # Key of the field.
                "stringValue": "A String", # String value
              },
            ],
            "logicalExpressions": [ # A list of nested conditions to be compared.
              # Object with schema name: LogicalExpression
            ],
            "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
          },
          "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
            "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
            "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
            "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
              "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
              "type": "A String", # Different types of resource supported.
            },
            "roles": [ # List of roles that need to be granted.
              "A String",
            ],
          },
          "state": "A String", # State of the config variable.
          "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
          "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
        },
        "enrichmentSupported": True or False, # Enrichment Supported.
        "eventListenerType": "A String", # The type of the event listener for a specific connector.
        "isEventingSupported": True or False, # Is Eventing Supported.
        "listenerAuthConfigTemplates": [ # ListenerAuthConfigTemplates represents the auth values for the event listener.
          { # AuthConfigTemplate defines required field over an authentication type.
            "authKey": "A String", # Identifier key for auth config
            "authType": "A String", # The type of authentication configured.
            "configVariableTemplates": [ # Config variables to describe an `AuthConfig` for a `Connection`.
              { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
                "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
                  "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
                  "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                    "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
                  },
                  "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
                  "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
                  "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                    "A String",
                  ],
                  "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
                },
                "description": "A String", # Description.
                "displayName": "A String", # Display name of the parameter.
                "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
                  { # EnumOption definition
                    "displayName": "A String", # Display name of the option.
                    "id": "A String", # Id of the option.
                  },
                ],
                "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
                "isAdvanced": True or False, # Indicates if current template is part of advanced settings
                "key": "A String", # Key of the config variable.
                "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
                "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
                  "allowCustomValues": True or False, # Optional. Allow custom values.
                  "multipleSelectOptions": [ # Required. Multiple select options.
                    { # MultiplSelecteOption represents the single option for a config variable.
                      "description": "A String", # Optional. Value of the option.
                      "displayName": "A String", # Required. Display name of the option.
                      "key": "A String", # Required. Key of the option.
                      "preselected": True or False, # Optional. Indicates if the option is preselected.
                    },
                  ],
                  "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
                },
                "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
                "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
                  "fieldComparisons": [ # A list of fields to be compared.
                    { # Field that needs to be compared.
                      "boolValue": True or False, # Boolean value
                      "comparator": "A String", # Comparator to use for comparing the field value.
                      "intValue": "A String", # Integer value
                      "key": "A String", # Key of the field.
                      "stringValue": "A String", # String value
                    },
                  ],
                  "logicalExpressions": [ # A list of nested conditions to be compared.
                    # Object with schema name: LogicalExpression
                  ],
                  "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
                },
                "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
                  "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
                  "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
                  "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                    "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                    "type": "A String", # Different types of resource supported.
                  },
                  "roles": [ # List of roles that need to be granted.
                    "A String",
                  ],
                },
                "state": "A String", # State of the config variable.
                "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
                "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
              },
            ],
            "description": "A String", # Connector specific description for an authentication template.
            "displayName": "A String", # Display name for authentication template.
            "isDefault": True or False, # Whether the auth config is the default one.
          },
        ],
        "proxyDestinationConfig": { # DestinationConfigTemplate defines required destinations supported by the Connector. # Proxy destination config template.
          "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
            "A String",
          ],
          "defaultPort": 42, # The default port.
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
          "key": "A String", # Key of the destination.
          "max": 42, # The maximum number of destinations supported for this key.
          "min": 42, # The minimum number of destinations supported for this key.
          "portFieldType": "A String", # Whether port number should be provided by customers.
          "regexPattern": "A String", # Regex pattern for host.
        },
        "registrationDestinationConfig": { # DestinationConfigTemplate defines required destinations supported by the Connector. # Registration host destination config template.
          "autocompleteSuggestions": [ # Autocomplete suggestions for destination URL field.
            "A String",
          ],
          "defaultPort": 42, # The default port.
          "description": "A String", # Description.
          "displayName": "A String", # Display name of the parameter.
          "isAdvanced": True or False, # Whether the current destination tempalate is part of Advanced settings
          "key": "A String", # Key of the destination.
          "max": 42, # The maximum number of destinations supported for this key.
          "min": 42, # The minimum number of destinations supported for this key.
          "portFieldType": "A String", # Whether port number should be provided by customers.
          "regexPattern": "A String", # Regex pattern for host.
        },
        "triggerConfigVariables": [ # Trigger Config fields that needs to be rendered
          { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
            "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
              "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
              },
              "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
              "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
              "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                "A String",
              ],
              "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
            },
            "description": "A String", # Description.
            "displayName": "A String", # Display name of the parameter.
            "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
              { # EnumOption definition
                "displayName": "A String", # Display name of the option.
                "id": "A String", # Id of the option.
              },
            ],
            "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
            "isAdvanced": True or False, # Indicates if current template is part of advanced settings
            "key": "A String", # Key of the config variable.
            "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
            "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
              "allowCustomValues": True or False, # Optional. Allow custom values.
              "multipleSelectOptions": [ # Required. Multiple select options.
                { # MultiplSelecteOption represents the single option for a config variable.
                  "description": "A String", # Optional. Value of the option.
                  "displayName": "A String", # Required. Display name of the option.
                  "key": "A String", # Required. Key of the option.
                  "preselected": True or False, # Optional. Indicates if the option is preselected.
                },
              ],
              "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
            },
            "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
            "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
              "fieldComparisons": [ # A list of fields to be compared.
                { # Field that needs to be compared.
                  "boolValue": True or False, # Boolean value
                  "comparator": "A String", # Comparator to use for comparing the field value.
                  "intValue": "A String", # Integer value
                  "key": "A String", # Key of the field.
                  "stringValue": "A String", # String value
                },
              ],
              "logicalExpressions": [ # A list of nested conditions to be compared.
                # Object with schema name: LogicalExpression
              ],
              "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
            },
            "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
              "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
              "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
              "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                "type": "A String", # Different types of resource supported.
              },
              "roles": [ # List of roles that need to be granted.
                "A String",
              ],
            },
            "state": "A String", # State of the config variable.
            "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
            "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
          },
        ],
      },
      "isAsyncOperationsSupported": True or False, # Output only. Is async operations supported.
      "isCustomActionsSupported": True or False, # Output only. Is custom actions supported.
      "isCustomEntitiesSupported": True or False, # Output only. Is custom entities supported.
      "labels": { # Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
        "a_key": "A String",
      },
      "launchStage": "A String", # Output only. Flag to mark the version indicating the launch stage.
      "name": "A String", # Output only. Resource name of the Version. Format: projects/{project}/locations/{location}/providers/{provider}/connectors/{connector}/versions/{version} Only global location is supported for Connector resource.
      "releaseVersion": "A String", # Output only. ReleaseVersion of the connector, for example: "1.0.1-alpha".
      "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Output only. Role grant configuration for this config variable. It will be DEPRECATED soon.
        "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
        "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
        "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
          "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
          "type": "A String", # Different types of resource supported.
        },
        "roles": [ # List of roles that need to be granted.
          "A String",
        ],
      },
      "roleGrants": [ # Output only. Role grant configurations for this connector version.
        { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user.
          "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
          "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
          "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
            "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
            "type": "A String", # Different types of resource supported.
          },
          "roles": [ # List of roles that need to be granted.
            "A String",
          ],
        },
      ],
      "schemaRefreshConfig": { # Config for connection schema refresh # Connection Schema Refresh Config
        "useActionDisplayNames": True or False, # Whether to use displayName for actions in UI.
        "useSynchronousSchemaRefresh": True or False, # Whether to use synchronous schema refresh.
      },
      "sslConfigTemplate": { # Ssl config details of a connector version # Output only. Ssl configuration supported by the Connector.
        "additionalVariables": [ # Any additional fields that need to be rendered
          { # ConfigVariableTemplate provides metadata about a `ConfigVariable` that is used in a Connection.
            "authorizationCodeLink": { # This configuration captures the details required to render an authorization link for the OAuth Authorization Code Flow. # Authorization code link options. To be populated if `ValueType` is `AUTHORIZATION_CODE`
              "clientId": "A String", # The client ID assigned to the Google Cloud Connectors OAuth app for the connector data source.
              "clientSecret": { # Secret provides a reference to entries in Secret Manager. # Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector data source.
                "secretVersion": "A String", # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
              },
              "enablePkce": True or False, # Whether to enable PKCE for the auth code flow.
              "omitQueryParams": True or False, # Optional. Omit query params from the redirect URI.
              "scopes": [ # The scopes for which the user will authorize Google Cloud Connectors on the connector data source.
                "A String",
              ],
              "uri": "A String", # The base URI the user must click to trigger the authorization code login flow.
            },
            "description": "A String", # Description.
            "displayName": "A String", # Display name of the parameter.
            "enumOptions": [ # Enum options. To be populated if `ValueType` is `ENUM`
              { # EnumOption definition
                "displayName": "A String", # Display name of the option.
                "id": "A String", # Id of the option.
              },
            ],
            "enumSource": "A String", # Optional. enum source denotes the source of api to fill the enum options
            "isAdvanced": True or False, # Indicates if current template is part of advanced settings
            "key": "A String", # Key of the config variable.
            "locationType": "A String", # Optional. Location Tyep denotes where this value should be sent in BYOC connections.
            "multipleSelectConfig": { # MultipleSelectConfig represents the multiple options for a config variable. # Optional. MultipleSelectConfig represents the multiple options for a config variable.
              "allowCustomValues": True or False, # Optional. Allow custom values.
              "multipleSelectOptions": [ # Required. Multiple select options.
                { # MultiplSelecteOption represents the single option for a config variable.
                  "description": "A String", # Optional. Value of the option.
                  "displayName": "A String", # Required. Display name of the option.
                  "key": "A String", # Required. Key of the option.
                  "preselected": True or False, # Optional. Indicates if the option is preselected.
                },
              ],
              "valueSeparator": "A String", # Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
            },
            "required": True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
            "requiredCondition": { # Struct for representing boolean expressions. # Condition under which a field would be required. The condition can be represented in the form of a logical expression.
              "fieldComparisons": [ # A list of fields to be compared.
                { # Field that needs to be compared.
                  "boolValue": True or False, # Boolean value
                  "comparator": "A String", # Comparator to use for comparing the field value.
                  "intValue": "A String", # Integer value
                  "key": "A String", # Key of the field.
                  "stringValue": "A String", # String value
                },
              ],
              "logicalExpressions": [ # A list of nested conditions to be compared.
                # Object with schema name: LogicalExpression
              ],
              "logicalOperator": "A String", # The logical operator to use between the fields and conditions.
            },
            "roleGrant": { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user. # Role grant configuration for the config variable.
              "helperTextTemplate": "A String", # Template that UI can use to provide helper text to customers.
              "principal": "A String", # Prinicipal/Identity for whom the role need to assigned.
              "resource": { # Resource definition # Resource on which the roles needs to be granted for the principal.
                "pathTemplate": "A String", # Template to uniquely represent a Google Cloud resource in a format IAM expects This is a template that can have references to other values provided in the config variable template.
                "type": "A String", # Different types of resource supported.
              },
              "roles": [ # List of roles that need to be granted.
                "A String",
              ],
            },
            "state": "A String", # State of the config variable.
            "validationRegex": "A String", # Regular expression in RE2 syntax used for validating the `value` of a `ConfigVariable`.
            "valueType": "A String", # Type of the parameter: string, int, bool etc. consider custom type for the benefit for the validation.
          },
        ],
        "clientCertType": [ # List of supported Client Cert Types
          "A String",
        ],
        "isTlsMandatory": True or False, # Boolean for determining if the connector version mandates TLS.
        "serverCertType": [ # List of supported Server Cert Types
          "A String",
        ],
        "sslType": "A String", # Controls the ssl type for the given connector version
      },
      "supportedRuntimeFeatures": { # Supported runtime features of a connector version. # Output only. Information about the runtime features supported by the Connector.
        "actionApis": True or False, # Specifies if the connector supports action apis like 'executeAction'.
        "entityApis": True or False, # Specifies if the connector supports entity apis like 'createEntity'.
        "sqlQuery": True or False, # Specifies if the connector supports 'ExecuteSqlQuery' operation.
      },
      "supportedStandardActions": [ # Output only. Supported standard actions.
        { # Standard action
          "name": "A String", # Name of the standard action.
        },
      ],
      "supportedStandardEntities": [ # Output only. Supported standard entities.
        { # Standard entity
          "name": "A String", # Name of the standard entity.
        },
      ],
      "unsupportedConnectionTypes": [ # Output only. Unsupported connection types.
        "A String",
      ],
      "updateTime": "A String", # Output only. Updated time.
    },
  ],
  "nextPageToken": "A String", # Next page token.
  "unreachable": [ # Locations that could not be reached.
    "A String",
  ],
}
list_next()
Retrieves the next page of results.

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

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