Class: Google::Apis::CloudfunctionsV1::CloudFunction
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1::CloudFunction
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v1/classes.rb,
lib/google/apis/cloudfunctions_v1/representations.rb,
lib/google/apis/cloudfunctions_v1/representations.rb
Overview
Describes a Cloud Function that contains user computation executed in response to an event. It encapsulate function and triggers configurations. Next tag: 35
Instance Attribute Summary collapse
-
#available_memory_mb ⇒ Fixnum
The amount of memory in MB available for a function.
-
#build_environment_variables ⇒ Hash<String,String>
Build environment variables that shall be available during build time.
-
#build_id ⇒ String
Output only.
-
#build_name ⇒ String
Output only.
-
#build_worker_pool ⇒ String
Name of the Cloud Build Custom Worker Pool that should be used to build the function.
-
#description ⇒ String
User-provided description of a function.
-
#entry_point ⇒ String
The name of the function (as defined in source code) that will be executed.
-
#environment_variables ⇒ Hash<String,String>
Environment variables that shall be available during function execution.
-
#event_trigger ⇒ Google::Apis::CloudfunctionsV1::EventTrigger
Describes EventTrigger, used to request events be sent from another service.
-
#https_trigger ⇒ Google::Apis::CloudfunctionsV1::HttpsTrigger
Describes HttpsTrigger, could be used to connect web hooks to function.
-
#ingress_settings ⇒ String
The ingress settings for the function, controlling what traffic can reach it.
-
#labels ⇒ Hash<String,String>
Labels associated with this Cloud Function.
-
#max_instances ⇒ Fixnum
The limit on the maximum number of function instances that may coexist at a given time.
-
#min_instances ⇒ Fixnum
A lower bound for the number function instances that may coexist at a given time.
-
#name ⇒ String
A user-defined name of the function.
-
#network ⇒ String
The VPC Network that this cloud function can connect to.
-
#runtime ⇒ String
The runtime in which to run the function.
-
#secret_environment_variables ⇒ Array<Google::Apis::CloudfunctionsV1::SecretEnvVar>
Secret environment variables configuration.
-
#secret_volumes ⇒ Array<Google::Apis::CloudfunctionsV1::SecretVolume>
Secret volumes configuration.
-
#service_account_email ⇒ String
The email of the function's service account.
-
#source_archive_url ⇒ String
The Google Cloud Storage URL, starting with
gs://, pointing to the zip archive which contains the function. -
#source_repository ⇒ Google::Apis::CloudfunctionsV1::SourceRepository
Describes SourceRepository, used to represent parameters related to source repository where a function is hosted.
-
#source_token ⇒ String
Input only.
-
#source_upload_url ⇒ String
The Google Cloud Storage signed URL used for source uploading, generated by calling [google.cloud.functions.v1.GenerateUploadUrl].
-
#status ⇒ String
Output only.
-
#timeout ⇒ String
The function execution timeout.
-
#update_time ⇒ String
Output only.
-
#version_id ⇒ Fixnum
Output only.
-
#vpc_connector ⇒ String
The VPC Network Connector that this cloud function can connect to.
-
#vpc_connector_egress_settings ⇒ String
The egress settings for the connector, controlling what traffic is diverted through it.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudFunction
constructor
A new instance of CloudFunction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudFunction
Returns a new instance of CloudFunction.
423 424 425 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 423 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_memory_mb ⇒ Fixnum
The amount of memory in MB available for a function. Defaults to 256MB.
Corresponds to the JSON property availableMemoryMb
227 228 229 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 227 def available_memory_mb @available_memory_mb end |
#build_environment_variables ⇒ Hash<String,String>
Build environment variables that shall be available during build time.
Corresponds to the JSON property buildEnvironmentVariables
232 233 234 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 232 def build_environment_variables @build_environment_variables end |
#build_id ⇒ String
Output only. The Cloud Build ID of the latest successful deployment of the
function.
Corresponds to the JSON property buildId
238 239 240 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 238 def build_id @build_id end |
#build_name ⇒ String
Output only. The Cloud Build Name of the function deployment. projects//
locations//builds/.
Corresponds to the JSON property buildName
244 245 246 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 244 def build_name @build_name end |
#build_worker_pool ⇒ String
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/workerPoolwhereprojectandregionare the project id
and region respectively where the worker pool is defined andworkerPool`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.
Corresponds to the JSON propertybuildWorkerPool`
256 257 258 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 256 def build_worker_pool @build_worker_pool end |
#description ⇒ String
User-provided description of a function.
Corresponds to the JSON property description
261 262 263 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 261 def description @description end |
#entry_point ⇒ String
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.
Corresponds to the JSON property entryPoint
270 271 272 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 270 def entry_point @entry_point end |
#environment_variables ⇒ Hash<String,String>
Environment variables that shall be available during function execution.
Corresponds to the JSON property environmentVariables
275 276 277 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 275 def environment_variables @environment_variables end |
#event_trigger ⇒ Google::Apis::CloudfunctionsV1::EventTrigger
Describes EventTrigger, used to request events be sent from another service.
Corresponds to the JSON property eventTrigger
280 281 282 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 280 def event_trigger @event_trigger end |
#https_trigger ⇒ Google::Apis::CloudfunctionsV1::HttpsTrigger
Describes HttpsTrigger, could be used to connect web hooks to function.
Corresponds to the JSON property httpsTrigger
285 286 287 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 285 def https_trigger @https_trigger end |
#ingress_settings ⇒ String
The ingress settings for the function, controlling what traffic can reach it.
Corresponds to the JSON property ingressSettings
290 291 292 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 290 def ingress_settings @ingress_settings end |
#labels ⇒ Hash<String,String>
Labels associated with this Cloud Function.
Corresponds to the JSON property labels
295 296 297 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 295 def labels @labels end |
#max_instances ⇒ Fixnum
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.
Corresponds to the JSON property maxInstances
306 307 308 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 306 def max_instances @max_instances end |
#min_instances ⇒ Fixnum
A lower bound for the number function instances that may coexist at a given
time.
Corresponds to the JSON property minInstances
312 313 314 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 312 def min_instances @min_instances end |
#name ⇒ String
A user-defined name of the function. Function names must be unique globally
and match pattern projects/*/locations/*/functions/*
Corresponds to the JSON property name
318 319 320 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 318 def name @name end |
#network ⇒ String
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/networkornetwork,
whereprojectis a project id where the network is defined, andnetwork`
is the short name of the network. This field is mutually exclusive with
vpc_connectorand will be replaced by it. See [the VPC documentation](https://
cloud.google.com/compute/docs/vpc) for more information on connecting Cloud
projects.
Corresponds to the JSON propertynetwork`
332 333 334 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 332 def network @network end |
#runtime ⇒ String
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.
Corresponds to the JSON property runtime
340 341 342 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 340 def runtime @runtime end |
#secret_environment_variables ⇒ Array<Google::Apis::CloudfunctionsV1::SecretEnvVar>
Secret environment variables configuration.
Corresponds to the JSON property secretEnvironmentVariables
345 346 347 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 345 def secret_environment_variables @secret_environment_variables end |
#secret_volumes ⇒ Array<Google::Apis::CloudfunctionsV1::SecretVolume>
Secret volumes configuration.
Corresponds to the JSON property secretVolumes
350 351 352 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 350 def secret_volumes @secret_volumes end |
#service_account_email ⇒ String
The email of the function's service account. If empty, defaults to `
project_id@appspot.gserviceaccount.com.
Corresponds to the JSON propertyserviceAccountEmail`
356 357 358 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 356 def service_account_email @service_account_email end |
#source_archive_url ⇒ String
The Google Cloud Storage URL, starting with gs://, pointing to the zip
archive which contains the function.
Corresponds to the JSON property sourceArchiveUrl
362 363 364 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 362 def source_archive_url @source_archive_url end |
#source_repository ⇒ Google::Apis::CloudfunctionsV1::SourceRepository
Describes SourceRepository, used to represent parameters related to source
repository where a function is hosted.
Corresponds to the JSON property sourceRepository
368 369 370 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 368 def source_repository @source_repository end |
#source_token ⇒ String
Input only. An identifier for Firebase function sources. Disclaimer: This
field is only supported for Firebase function deployments.
Corresponds to the JSON property sourceToken
374 375 376 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 374 def source_token @source_token end |
#source_upload_url ⇒ String
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)
Corresponds to the JSON property sourceUploadUrl
382 383 384 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 382 def source_upload_url @source_upload_url end |
#status ⇒ String
Output only. Status of the function deployment.
Corresponds to the JSON property status
387 388 389 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 387 def status @status end |
#timeout ⇒ String
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.
Corresponds to the JSON property timeout
394 395 396 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 394 def timeout @timeout end |
#update_time ⇒ String
Output only. The last update timestamp of a Cloud Function.
Corresponds to the JSON property updateTime
399 400 401 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 399 def update_time @update_time end |
#version_id ⇒ Fixnum
Output only. The version identifier of the Cloud Function. Each deployment
attempt results in a new version of a function being created.
Corresponds to the JSON property versionId
405 406 407 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 405 def version_id @version_id end |
#vpc_connector ⇒ String
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.
Corresponds to the JSON property vpcConnector
415 416 417 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 415 def vpc_connector @vpc_connector end |
#vpc_connector_egress_settings ⇒ String
The egress settings for the connector, controlling what traffic is diverted
through it.
Corresponds to the JSON property vpcConnectorEgressSettings
421 422 423 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 421 def vpc_connector_egress_settings @vpc_connector_egress_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 428 def update!(**args) @available_memory_mb = args[:available_memory_mb] if args.key?(:available_memory_mb) @build_environment_variables = args[:build_environment_variables] if args.key?(:build_environment_variables) @build_id = args[:build_id] if args.key?(:build_id) @build_name = args[:build_name] if args.key?(:build_name) @build_worker_pool = args[:build_worker_pool] if args.key?(:build_worker_pool) @description = args[:description] if args.key?(:description) @entry_point = args[:entry_point] if args.key?(:entry_point) @environment_variables = args[:environment_variables] if args.key?(:environment_variables) @event_trigger = args[:event_trigger] if args.key?(:event_trigger) @https_trigger = args[:https_trigger] if args.key?(:https_trigger) @ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings) @labels = args[:labels] if args.key?(:labels) @max_instances = args[:max_instances] if args.key?(:max_instances) @min_instances = args[:min_instances] if args.key?(:min_instances) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @runtime = args[:runtime] if args.key?(:runtime) @secret_environment_variables = args[:secret_environment_variables] if args.key?(:secret_environment_variables) @secret_volumes = args[:secret_volumes] if args.key?(:secret_volumes) @service_account_email = args[:service_account_email] if args.key?(:service_account_email) @source_archive_url = args[:source_archive_url] if args.key?(:source_archive_url) @source_repository = args[:source_repository] if args.key?(:source_repository) @source_token = args[:source_token] if args.key?(:source_token) @source_upload_url = args[:source_upload_url] if args.key?(:source_upload_url) @status = args[:status] if args.key?(:status) @timeout = args[:timeout] if args.key?(:timeout) @update_time = args[:update_time] if args.key?(:update_time) @version_id = args[:version_id] if args.key?(:version_id) @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector) @vpc_connector_egress_settings = args[:vpc_connector_egress_settings] if args.key?(:vpc_connector_egress_settings) end |