class Google::Apis::ScriptV1::DeploymentConfig
Metadata the defines how a deployment is configured.
Attributes
description[RW]
The description for this deployment. Corresponds to the JSON property `description` @return [String]
manifest_file_name[RW]
The manifest file name for this deployment. Corresponds to the JSON property `manifestFileName` @return [String]
script_id[RW]
The script project's Drive ID. Corresponds to the JSON property `scriptId` @return [String]
version_number[RW]
The version number on which this deployment is based. Corresponds to the JSON property `versionNumber` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 140 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/script_v1/classes.rb, line 145 def update!(**args) @description = args[:description] if args.key?(:description) @manifest_file_name = args[:manifest_file_name] if args.key?(:manifest_file_name) @script_id = args[:script_id] if args.key?(:script_id) @version_number = args[:version_number] if args.key?(:version_number) end