Class: Google::Apis::CloudfunctionsV1beta2::CloudFunction
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1beta2::CloudFunction
- Defined in:
- generated/google/apis/cloudfunctions_v1beta2/classes.rb,
generated/google/apis/cloudfunctions_v1beta2/representations.rb,
generated/google/apis/cloudfunctions_v1beta2/representations.rb
Overview
Describes a Cloud Function that contains user computation executed in response to an event. It encapsulate function and triggers configurations.
Instance Attribute Summary collapse
-
#available_memory_mb ⇒ Fixnum
The amount of memory in MB available for a function.
-
#entry_point ⇒ String
The name of the function (as defined in source code) that will be executed.
-
#environment_variables ⇒ Hash<String,String>
Beta Feature Environment variables that shall be available during function execution.
-
#event_trigger ⇒ Google::Apis::CloudfunctionsV1beta2::EventTrigger
Describes EventTrigger, used to request events be sent from another service.
-
#https_trigger ⇒ Google::Apis::CloudfunctionsV1beta2::HttpsTrigger
Describes HTTPSTrigger, could be used to connect web hooks to function.
-
#labels ⇒ Hash<String,String>
Labels associated with this Cloud Function.
-
#latest_operation ⇒ String
Output only.
-
#max_instances ⇒ Fixnum
The limit on the maximum number of 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 the function is going to run.
-
#service_account ⇒ String
Output only.
-
#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::CloudfunctionsV1beta2::SourceRepository
Describes the location of the function source in a remote repository.
-
#source_repository_url ⇒ String
The URL pointing to the hosted repository where the function is defined.
-
#source_upload_url ⇒ String
The Google Cloud Storage signed URL used for source uploading, generated by google.cloud.functions.v1beta2.GenerateUploadUrl Corresponds to the JSON property
sourceUploadUrl
. -
#status ⇒ String
Output only.
-
#timeout ⇒ String
The function execution timeout.
-
#update_time ⇒ String
Output only.
-
#version_id ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudFunction
constructor
A new instance of CloudFunction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CloudFunction
Returns a new instance of CloudFunction
224 225 226 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 224 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
86 87 88 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 86 def available_memory_mb @available_memory_mb 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
96 97 98 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 96 def entry_point @entry_point end |
#environment_variables ⇒ Hash<String,String>
Beta Feature
Environment variables that shall be available during function execution.
Corresponds to the JSON property environmentVariables
102 103 104 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 102 def environment_variables @environment_variables end |
#event_trigger ⇒ Google::Apis::CloudfunctionsV1beta2::EventTrigger
Describes EventTrigger, used to request events be sent from another
service.
Corresponds to the JSON property eventTrigger
108 109 110 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 108 def event_trigger @event_trigger end |
#https_trigger ⇒ Google::Apis::CloudfunctionsV1beta2::HttpsTrigger
Describes HTTPSTrigger, could be used to connect web hooks to function.
Corresponds to the JSON property httpsTrigger
113 114 115 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 113 def https_trigger @https_trigger end |
#labels ⇒ Hash<String,String>
Labels associated with this Cloud Function.
Corresponds to the JSON property labels
118 119 120 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 118 def labels @labels end |
#latest_operation ⇒ String
Output only. Name of the most recent operation modifying the function. If
the function status is DEPLOYING
or DELETING
, then it points to the
active operation.
Corresponds to the JSON property latestOperation
125 126 127 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 125 def latest_operation @latest_operation end |
#max_instances ⇒ Fixnum
The limit on the maximum number of function instances that may coexist at a
given time. This feature is currently in alpha, available only for
whitelisted users.
Corresponds to the JSON property maxInstances
132 133 134 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 132 def max_instances @max_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
138 139 140 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 138 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/
networkor
network`, where
projectis a project id where the network is defined, and
networkis
the short name of the network.
See [the VPC documentation](https://cloud.google.com/compute/docs/vpc) for
more information on connecting Cloud projects.
This feature is currently in alpha, available only for whitelisted users.
Corresponds to the JSON property
network`
153 154 155 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 153 def network @network end |
#runtime ⇒ String
The runtime in which the function is going to run. If empty, defaults to
Node.js 6.
Corresponds to the JSON property runtime
159 160 161 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 159 def runtime @runtime end |
#service_account ⇒ String
Output only. The service account of the function.
Corresponds to the JSON property serviceAccount
164 165 166 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 164 def service_account @service_account 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
170 171 172 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 170 def source_archive_url @source_archive_url end |
#source_repository ⇒ Google::Apis::CloudfunctionsV1beta2::SourceRepository
Describes the location of the function source in a remote repository.
Corresponds to the JSON property sourceRepository
175 176 177 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 175 def source_repository @source_repository end |
#source_repository_url ⇒ String
The URL pointing to the hosted repository where the function is defined.
There are supported Cloud Source Repository URLs in the following
formats:
To refer to a specific commit:
https://source.developers.google.com/projects/*/repos/*/revisions/*/paths/*
To refer to a moveable alias (branch):
https://source.developers.google.com/projects/*/repos/*/moveable-aliases/*/
paths/*
In particular, to refer to HEAD use master
moveable alias.
To refer to a specific fixed alias (tag):
https://source.developers.google.com/projects/*/repos/*/fixed-aliases/*/paths/
*
You may omit paths/*
if you want to use the main directory.
Corresponds to the JSON property sourceRepositoryUrl
192 193 194 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 192 def source_repository_url @source_repository_url end |
#source_upload_url ⇒ String
The Google Cloud Storage signed URL used for source uploading, generated
by google.cloud.functions.v1beta2.GenerateUploadUrl
Corresponds to the JSON property sourceUploadUrl
198 199 200 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 198 def source_upload_url @source_upload_url end |
#status ⇒ String
Output only. Status of the function deployment.
Corresponds to the JSON property status
203 204 205 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 203 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
210 211 212 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 210 def timeout @timeout end |
#update_time ⇒ String
Output only. The last update timestamp of a Cloud Function.
Corresponds to the JSON property updateTime
215 216 217 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 215 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
222 223 224 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 222 def version_id @version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 229 def update!(**args) @available_memory_mb = args[:available_memory_mb] if args.key?(:available_memory_mb) @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) @labels = args[:labels] if args.key?(:labels) @latest_operation = args[:latest_operation] if args.key?(:latest_operation) @max_instances = args[:max_instances] if args.key?(:max_instances) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @runtime = args[:runtime] if args.key?(:runtime) @service_account = args[:service_account] if args.key?(:service_account) @source_archive_url = args[:source_archive_url] if args.key?(:source_archive_url) @source_repository = args[:source_repository] if args.key?(:source_repository) @source_repository_url = args[:source_repository_url] if args.key?(:source_repository_url) @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) end |