@@ -21,13 +21,15 @@ defmodule GoogleApi.Connectors.V1.Model.ConnectorInfraConfig do
2121
2222 ## Attributes
2323
24+ * `alwaysAllocateCpu` (*type:* `boolean()`, *default:* `nil`) - Indicates that the Cloud Run CPU should always be allocated.
2425 * `connectionRatelimitWindowSeconds` (*type:* `String.t`, *default:* `nil`) - The window used for ratelimiting runtime requests to connections.
2526 * `deploymentModel` (*type:* `String.t`, *default:* `nil`) - Indicate whether connector is deployed on GKE/CloudRun
2627 * `hpaConfig` (*type:* `GoogleApi.Connectors.V1.Model.HPAConfig.t`, *default:* `nil`) - HPA autoscaling config.
2728 * `internalclientRatelimitThreshold` (*type:* `String.t`, *default:* `nil`) - Max QPS supported for internal requests originating from Connd.
2829 * `maxInstanceRequestConcurrency` (*type:* `integer()`, *default:* `nil`) - Max Instance Request Conncurrency for Cloud Run service.
2930 * `migrateDeploymentModel` (*type:* `boolean()`, *default:* `nil`) - Indicate whether connector is being migrated to cloud run deployment model.
3031 * `migrateTls` (*type:* `boolean()`, *default:* `nil`) - Indicate whether connector is being migrated to TLS.
32+ * `provisionCloudSpanner` (*type:* `boolean()`, *default:* `nil`) - Indicate whether cloud spanner is required for connector job.
3133 * `ratelimitThreshold` (*type:* `String.t`, *default:* `nil`) - Max QPS supported by the connector version before throttling of requests.
3234 * `resourceLimits` (*type:* `GoogleApi.Connectors.V1.Model.ResourceLimits.t`, *default:* `nil`) - System resource limits.
3335 * `resourceRequests` (*type:* `GoogleApi.Connectors.V1.Model.ResourceRequests.t`, *default:* `nil`) - System resource requests.
@@ -37,26 +39,30 @@ defmodule GoogleApi.Connectors.V1.Model.ConnectorInfraConfig do
3739 use GoogleApi.Gax.ModelBase
3840
3941 @ type t :: % __MODULE__ {
42+ :alwaysAllocateCpu => boolean ( ) | nil ,
4043 :connectionRatelimitWindowSeconds => String . t ( ) | nil ,
4144 :deploymentModel => String . t ( ) | nil ,
4245 :hpaConfig => GoogleApi.Connectors.V1.Model.HPAConfig . t ( ) | nil ,
4346 :internalclientRatelimitThreshold => String . t ( ) | nil ,
4447 :maxInstanceRequestConcurrency => integer ( ) | nil ,
4548 :migrateDeploymentModel => boolean ( ) | nil ,
4649 :migrateTls => boolean ( ) | nil ,
50+ :provisionCloudSpanner => boolean ( ) | nil ,
4751 :ratelimitThreshold => String . t ( ) | nil ,
4852 :resourceLimits => GoogleApi.Connectors.V1.Model.ResourceLimits . t ( ) | nil ,
4953 :resourceRequests => GoogleApi.Connectors.V1.Model.ResourceRequests . t ( ) | nil ,
5054 :sharedDeployment => String . t ( ) | nil
5155 }
5256
57+ field ( :alwaysAllocateCpu )
5358 field ( :connectionRatelimitWindowSeconds )
5459 field ( :deploymentModel )
5560 field ( :hpaConfig , as: GoogleApi.Connectors.V1.Model.HPAConfig )
5661 field ( :internalclientRatelimitThreshold )
5762 field ( :maxInstanceRequestConcurrency )
5863 field ( :migrateDeploymentModel )
5964 field ( :migrateTls )
65+ field ( :provisionCloudSpanner )
6066 field ( :ratelimitThreshold )
6167 field ( :resourceLimits , as: GoogleApi.Connectors.V1.Model.ResourceLimits )
6268 field ( :resourceRequests , as: GoogleApi.Connectors.V1.Model.ResourceRequests )
0 commit comments