diff --git a/docs/dyn/integrations_v1alpha.projects.locations.connections.html b/docs/dyn/integrations_v1alpha.projects.locations.connections.html index 96e536e8b4d..b217a03a4ad 100644 --- a/docs/dyn/integrations_v1alpha.projects.locations.connections.html +++ b/docs/dyn/integrations_v1alpha.projects.locations.connections.html @@ -230,8 +230,21 @@

Method Details

"connectionRevision": "A String", # Output only. Connection revision. This field is only updated when the connection is created or updated by User. "connectorVersion": "A String", # Required. Connector version on which the connection is created. The format is: projects/*/locations/*/providers/*/connectors/*/versions/* Only global location is supported for ConnectorVersion resource. "connectorVersionInfraConfig": { # 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 Version. + "hpaConfig": { # Autoscaling config for connector deployment system metrics. # Output only. 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", # Output only. Max QPS supported for internal requests originating from Connd. "ratelimitThreshold": "A String", # Output only. Max QPS supported by the connector version before throttling of requests. + "resourceLimits": { # Resource limits defined for connection pods of a given connector type. # Output only. 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. # Output only. System resource requests. + "cpu": "A String", # Output only. CPU request. + "memory": "A String", # Output only. Memory request. + }, + "sharedDeployment": "A String", # Output only. The name of shared connector deployment. }, "connectorVersionLaunchStage": "A String", # Output only. Flag to mark the version indicating the launch stage. "createTime": "A String", # Output only. Created time. @@ -344,7 +357,9 @@

Method Details

"stringValue": "A String", # Value is a string. }, "enrichmentEnabled": True or False, # Enrichment Enabled. - "registrationDestinationConfig": { # Define the Connectors target endpoint. # Registration endpoint for auto regsitration. + "privateConnectivityEnabled": True or False, # Optional. Private Connectivity Enabled. + "publicEventsListenerEndpoint": "A String", # Optional. Public Events listener endpoint. + "registrationDestinationConfig": { # Define the Connectors target endpoint. # Registration endpoint for auto registration. "destinations": [ # The destinations for the key. { "host": "A String", # For publicly routable host. @@ -364,6 +379,7 @@

Method Details

}, }, "imageLocation": "A String", # Output only. GCR location where the runtime image is stored. formatted like: gcr.io/{bucketName}/{imageName} + "isTrustedTester": True or False, # Output only. Is trusted tester program enabled for the project. "labels": { # Optional. 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", }, diff --git a/googleapiclient/discovery_cache/documents/integrations.v1alpha.json b/googleapiclient/discovery_cache/documents/integrations.v1alpha.json index 8cdcfe4e13d..fe6316f2730 100644 --- a/googleapiclient/discovery_cache/documents/integrations.v1alpha.json +++ b/googleapiclient/discovery_cache/documents/integrations.v1alpha.json @@ -3257,7 +3257,7 @@ } } }, - "revision": "20230809", + "revision": "20230906", "rootUrl": "https://integrations.googleapis.com/", "schemas": { "CrmlogErrorCode": { @@ -8158,6 +8158,11 @@ "readOnly": true, "type": "string" }, + "isTrustedTester": { + "description": "Output only. Is trusted tester program enabled for the project.", + "readOnly": true, + "type": "boolean" + }, "labels": { "additionalProperties": { "type": "string" @@ -8271,6 +8276,11 @@ "description": "This cofiguration provides infra configs like rate limit threshold which need to be configurable for every connector version", "id": "GoogleCloudConnectorsV1ConnectorVersionInfraConfig", "properties": { + "hpaConfig": { + "$ref": "GoogleCloudConnectorsV1HPAConfig", + "description": "Output only. HPA autoscaling config.", + "readOnly": true + }, "internalclientRatelimitThreshold": { "description": "Output only. Max QPS supported for internal requests originating from Connd.", "format": "int64", @@ -8282,6 +8292,21 @@ "format": "int64", "readOnly": true, "type": "string" + }, + "resourceLimits": { + "$ref": "GoogleCloudConnectorsV1ResourceLimits", + "description": "Output only. System resource limits.", + "readOnly": true + }, + "resourceRequests": { + "$ref": "GoogleCloudConnectorsV1ResourceRequests", + "description": "Output only. System resource requests.", + "readOnly": true + }, + "sharedDeployment": { + "description": "Output only. The name of shared connector deployment.", + "readOnly": true, + "type": "string" } }, "type": "object" @@ -8371,9 +8396,17 @@ "description": "Enrichment Enabled.", "type": "boolean" }, + "privateConnectivityEnabled": { + "description": "Optional. Private Connectivity Enabled.", + "type": "boolean" + }, + "publicEventsListenerEndpoint": { + "description": "Optional. Public Events listener endpoint.", + "type": "string" + }, "registrationDestinationConfig": { "$ref": "GoogleCloudConnectorsV1DestinationConfig", - "description": "Registration endpoint for auto regsitration." + "description": "Registration endpoint for auto registration." } }, "type": "object" @@ -8409,12 +8442,14 @@ "enum": [ "STATE_UNSPECIFIED", "ACTIVE", - "ERROR" + "ERROR", + "PUBLIC_ENDPOINT_REQUIRED" ], "enumDescriptions": [ "Default state.", "Eventing is enabled and ready to receive events.", - "Eventing is not active due to an error." + "Eventing is not active due to an error.", + "Public endpoint required." ], "readOnly": true, "type": "string" @@ -8422,6 +8457,25 @@ }, "type": "object" }, + "GoogleCloudConnectorsV1HPAConfig": { + "description": "Autoscaling config for connector deployment system metrics.", + "id": "GoogleCloudConnectorsV1HPAConfig", + "properties": { + "cpuUtilizationThreshold": { + "description": "Output only. Percent CPU utilization where HPA triggers autoscaling.", + "format": "int64", + "readOnly": true, + "type": "string" + }, + "memoryUtilizationThreshold": { + "description": "Output only. Percent Memory utilization where HPA triggers autoscaling.", + "format": "int64", + "readOnly": true, + "type": "string" + } + }, + "type": "object" + }, "GoogleCloudConnectorsV1LockConfig": { "description": "Determines whether or no a connection is locked. If locked, a reason must be specified.", "id": "GoogleCloudConnectorsV1LockConfig", @@ -8465,6 +8519,40 @@ }, "type": "object" }, + "GoogleCloudConnectorsV1ResourceLimits": { + "description": "Resource limits defined for connection pods of a given connector type.", + "id": "GoogleCloudConnectorsV1ResourceLimits", + "properties": { + "cpu": { + "description": "Output only. CPU limit.", + "readOnly": true, + "type": "string" + }, + "memory": { + "description": "Output only. Memory limit.", + "readOnly": true, + "type": "string" + } + }, + "type": "object" + }, + "GoogleCloudConnectorsV1ResourceRequests": { + "description": "Resource requests defined for connection pods of a given connector type.", + "id": "GoogleCloudConnectorsV1ResourceRequests", + "properties": { + "cpu": { + "description": "Output only. CPU request.", + "readOnly": true, + "type": "string" + }, + "memory": { + "description": "Output only. Memory request.", + "readOnly": true, + "type": "string" + } + }, + "type": "object" + }, "GoogleCloudConnectorsV1Secret": { "description": "Secret provides a reference to entries in Secret Manager.", "id": "GoogleCloudConnectorsV1Secret",