Class: Google::Apis::CloudfunctionsV1::OperationMetadataV1
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1::OperationMetadataV1
- 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
Metadata describing an Operation
Instance Attribute Summary collapse
-
#build_id ⇒ String
The Cloud Build ID of the function created or updated by an API call.
-
#build_name ⇒ String
The Cloud Build Name of the function deployment.
-
#request ⇒ Hash<String,Object>
The original request that started the operation.
-
#source_token ⇒ String
An identifier for Firebase function sources.
-
#target ⇒ String
Target of the operation - for example
projects/project-1/locations/region-1/ functions/function-1Corresponds to the JSON propertytarget. -
#type ⇒ String
Type of operation.
-
#update_time ⇒ String
The last update timestamp of the operation.
-
#version_id ⇒ Fixnum
Version id of the function created or updated by an API call.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationMetadataV1
constructor
A new instance of OperationMetadataV1.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationMetadataV1
Returns a new instance of OperationMetadataV1.
937 938 939 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_id ⇒ String
The Cloud Build ID of the function created or updated by an API call. This
field is only populated for Create and Update operations.
Corresponds to the JSON property buildId
896 897 898 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 896 def build_id @build_id end |
#build_name ⇒ String
The Cloud Build Name of the function deployment. This field is only populated
for Create and Update operations. projects//locations//builds/.
Corresponds to the JSON property buildName
902 903 904 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 902 def build_name @build_name end |
#request ⇒ Hash<String,Object>
The original request that started the operation.
Corresponds to the JSON property request
907 908 909 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 907 def request @request end |
#source_token ⇒ String
An identifier for Firebase function sources. Disclaimer: This field is only
supported for Firebase function deployments.
Corresponds to the JSON property sourceToken
913 914 915 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 913 def source_token @source_token end |
#target ⇒ String
Target of the operation - for example projects/project-1/locations/region-1/
functions/function-1
Corresponds to the JSON property target
919 920 921 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 919 def target @target end |
#type ⇒ String
Type of operation.
Corresponds to the JSON property type
924 925 926 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 924 def type @type end |
#update_time ⇒ String
The last update timestamp of the operation.
Corresponds to the JSON property updateTime
929 930 931 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 929 def update_time @update_time end |
#version_id ⇒ Fixnum
Version id of the function created or updated by an API call. This field is
only populated for Create and Update operations.
Corresponds to the JSON property versionId
935 936 937 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 935 def version_id @version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
942 943 944 945 946 947 948 949 950 951 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 942 def update!(**args) @build_id = args[:build_id] if args.key?(:build_id) @build_name = args[:build_name] if args.key?(:build_name) @request = args[:request] if args.key?(:request) @source_token = args[:source_token] if args.key?(:source_token) @target = args[:target] if args.key?(:target) @type = args[:type] if args.key?(:type) @update_time = args[:update_time] if args.key?(:update_time) @version_id = args[:version_id] if args.key?(:version_id) end |