FunctionArgs

data class FunctionArgs(val availableMemoryMb: Output<Int>? = null, val buildEnvironmentVariables: Output<Map<String, String>>? = null, val buildWorkerPool: Output<String>? = null, val description: Output<String>? = null, val dockerRegistry: Output<FunctionDockerRegistry>? = null, val dockerRepository: Output<String>? = null, val entryPoint: Output<String>? = null, val environmentVariables: Output<Map<String, String>>? = null, val eventTrigger: Output<EventTriggerArgs>? = null, val httpsTrigger: Output<HttpsTriggerArgs>? = null, val ingressSettings: Output<FunctionIngressSettings>? = null, val kmsKeyName: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val location: Output<String>? = null, val maxInstances: Output<Int>? = null, val minInstances: Output<Int>? = null, val name: Output<String>? = null, val network: Output<String>? = null, val project: Output<String>? = null, val runtime: Output<String>? = null, val secretEnvironmentVariables: Output<List<SecretEnvVarArgs>>? = null, val secretVolumes: Output<List<SecretVolumeArgs>>? = null, val serviceAccountEmail: Output<String>? = null, val sourceArchiveUrl: Output<String>? = null, val sourceRepository: Output<SourceRepositoryArgs>? = null, val sourceToken: Output<String>? = null, val sourceUploadUrl: Output<String>? = null, val timeout: Output<String>? = null, val vpcConnector: Output<String>? = null, val vpcConnectorEgressSettings: Output<FunctionVpcConnectorEgressSettings>? = null) : ConvertibleToJava<FunctionArgs>

Creates a new function. If a function with the given name already exists in the specified project, the long running operation will return ALREADY_EXISTS error.

Constructors

Link copied to clipboard
fun FunctionArgs(availableMemoryMb: Output<Int>? = null, buildEnvironmentVariables: Output<Map<String, String>>? = null, buildWorkerPool: Output<String>? = null, description: Output<String>? = null, dockerRegistry: Output<FunctionDockerRegistry>? = null, dockerRepository: Output<String>? = null, entryPoint: Output<String>? = null, environmentVariables: Output<Map<String, String>>? = null, eventTrigger: Output<EventTriggerArgs>? = null, httpsTrigger: Output<HttpsTriggerArgs>? = null, ingressSettings: Output<FunctionIngressSettings>? = null, kmsKeyName: Output<String>? = null, labels: Output<Map<String, String>>? = null, location: Output<String>? = null, maxInstances: Output<Int>? = null, minInstances: Output<Int>? = null, name: Output<String>? = null, network: Output<String>? = null, project: Output<String>? = null, runtime: Output<String>? = null, secretEnvironmentVariables: Output<List<SecretEnvVarArgs>>? = null, secretVolumes: Output<List<SecretVolumeArgs>>? = null, serviceAccountEmail: Output<String>? = null, sourceArchiveUrl: Output<String>? = null, sourceRepository: Output<SourceRepositoryArgs>? = null, sourceToken: Output<String>? = null, sourceUploadUrl: Output<String>? = null, timeout: Output<String>? = null, vpcConnector: Output<String>? = null, vpcConnectorEgressSettings: Output<FunctionVpcConnectorEgressSettings>? = null)

Functions

Link copied to clipboard
open override fun toJava(): FunctionArgs

Properties

Link copied to clipboard
val availableMemoryMb: Output<Int>? = null

The amount of memory in MB available for a function. Defaults to 256MB.

Link copied to clipboard

Build environment variables that shall be available during build time.

Link copied to clipboard
val buildWorkerPool: Output<String>? = null

Name of the Cloud Build Custom Worker Pool that should be used to build the function. The format of this field is projects/{project}/locations/{region}/workerPools/{workerPool} where {project} and {region} are the project id and region respectively where the worker pool is defined and {workerPool} is the short name of the worker pool. If the project id is not the same as the function, then the Cloud Functions Service Agent (service-@gcf-admin-robot.iam.gserviceaccount.com) must be granted the role Cloud Build Custom Workers Builder (roles/cloudbuild.customworkers.builder) in the project.

Link copied to clipboard
val description: Output<String>? = null

User-provided description of a function.

Link copied to clipboard

Docker Registry to use for this deployment. If docker_repository field is specified, this field will be automatically set as ARTIFACT_REGISTRY. If unspecified, it currently defaults to CONTAINER_REGISTRY. This field may be overridden by the backend for eligible deployments.

Link copied to clipboard
val dockerRepository: Output<String>? = null

User managed repository created in Artifact Registry optionally with a customer managed encryption key. If specified, deployments will use Artifact Registry. If unspecified and the deployment is eligible to use Artifact Registry, GCF will create and use a repository named 'gcf-artifacts' for every deployed region. This is the repository to which the function docker image will be pushed after it is built by Cloud Build. It must match the pattern projects/{project}/locations/{location}/repositories/{repository}. Cross-project repositories are not supported. Cross-location repositories are not supported. Repository format must be 'DOCKER'.

Link copied to clipboard
val entryPoint: Output<String>? = null

The name of the function (as defined in source code) that will be executed. Defaults to the resource name suffix, if not specified. For backward compatibility, if function with given name is not found, then the system will try to use function named "function". For Node.js this is name of a function exported by the module specified in source_location.

Link copied to clipboard
val environmentVariables: Output<Map<String, String>>? = null

Environment variables that shall be available during function execution.

Link copied to clipboard
val eventTrigger: Output<EventTriggerArgs>? = null

A source that fires events in response to a condition in another service.

Link copied to clipboard
val httpsTrigger: Output<HttpsTriggerArgs>? = null

An HTTPS endpoint type of source that can be triggered via URL.

Link copied to clipboard

The ingress settings for the function, controlling what traffic can reach it.

Link copied to clipboard
val kmsKeyName: Output<String>? = null

Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}. If specified, you must also provide an artifact registry repository using the docker_repository field that was created with the same KMS crypto key. The following service accounts need to be granted the role 'Cloud KMS CryptoKey Encrypter/Decrypter (roles/cloudkms.cryptoKeyEncrypterDecrypter)' on the Key/KeyRing/Project/Organization (least access preferred). 1. Google Cloud Functions service account (service-{project_number}@gcf-admin-robot.iam.gserviceaccount.com) - Required to protect the function's image. 2. Google Storage service account (service-{project_number}@gs-project-accounts.iam.gserviceaccount.com) - Required to protect the function's source code. If this service account does not exist, deploying a function without a KMS key or retrieving the service agent name provisions it. For more information, see https://cloud.google.com/storage/docs/projects#service-agents and https://cloud.google.com/storage/docs/getting-service-agent#gsutil. Google Cloud Functions delegates access to service agents to protect function resources in internal projects that are not accessible by the end user.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Labels associated with this Cloud Function.

Link copied to clipboard
val location: Output<String>? = null
Link copied to clipboard
val maxInstances: Output<Int>? = null

The limit on the maximum number of function instances that may coexist at a given time. In some cases, such as rapid traffic surges, Cloud Functions may, for a short period of time, create more instances than the specified max instances limit. If your function cannot tolerate this temporary behavior, you may want to factor in a safety margin and set a lower max instances value than your function can tolerate. See the Max Instances Guide for more details.

Link copied to clipboard
val minInstances: Output<Int>? = null

A lower bound for the number function instances that may coexist at a given time.

Link copied to clipboard
val name: Output<String>? = null

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

Link copied to clipboard
val network: Output<String>? = null

The VPC Network that this cloud function can connect to. It can be either the fully-qualified URI, or the short name of the network resource. If the short network name is used, the network must belong to the same project. Otherwise, it must belong to a project within the same organization. The format of this field is either projects/{project}/global/networks/{network} or {network}, where {project} is a project id where the network is defined, and {network} is the short name of the network. This field is mutually exclusive with vpc_connector and will be replaced by it. See the VPC documentation for more information on connecting Cloud projects.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val runtime: Output<String>? = null

The runtime in which to run the function. Required when deploying a new function, optional when updating an existing function. For a complete list of possible choices, see the gcloud command reference.

Link copied to clipboard

Secret environment variables configuration.

Link copied to clipboard
val secretVolumes: Output<List<SecretVolumeArgs>>? = null

Secret volumes configuration.

Link copied to clipboard
val serviceAccountEmail: Output<String>? = null

The email of the function's service account. If empty, defaults to {project_id}@appspot.gserviceaccount.com.

Link copied to clipboard
val sourceArchiveUrl: Output<String>? = null

The Google Cloud Storage URL, starting with gs://, pointing to the zip archive which contains the function.

Link copied to clipboard

Beta Feature The source repository where a function is hosted.

Link copied to clipboard
val sourceToken: Output<String>? = null

Input only. An identifier for Firebase function sources. Disclaimer: This field is only supported for Firebase function deployments.

Link copied to clipboard
val sourceUploadUrl: Output<String>? = null

The Google Cloud Storage signed URL used for source uploading, generated by calling google.cloud.functions.v1.GenerateUploadUrl. The signature is validated on write methods (Create, Update) The signature is stripped from the Function object on read methods (Get, List)

Link copied to clipboard
val timeout: Output<String>? = null

The function execution timeout. Execution is considered failed and can be terminated if the function is not completed at the end of the timeout period. Defaults to 60 seconds.

Link copied to clipboard
val vpcConnector: Output<String>? = null

The VPC Network Connector that this cloud function can connect to. It can be either the fully-qualified URI, or the short name of the network connector resource. The format of this field is projects/*/locations/*/connectors/* This field is mutually exclusive with network field and will eventually replace it. See the VPC documentation for more information on connecting Cloud projects.

Link copied to clipboard

The egress settings for the connector, controlling what traffic is diverted through it. //////