class Google::Apis::ScriptV1::Deployment
Representation
of a single script deployment.
Attributes
deployment_config[RW]
Metadata the defines how a deployment is configured. Corresponds to the JSON property `deploymentConfig` @return [Google::Apis::ScriptV1::DeploymentConfig]
deployment_id[RW]
The deployment ID for this deployment. Corresponds to the JSON property `deploymentId` @return [String]
entry_points[RW]
The deployment's entry points. Corresponds to the JSON property `entryPoints` @return [Array<Google::Apis::ScriptV1::EntryPoint>]
update_time[RW]
Last modified date time stamp. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 103 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 108 def update!(**args) @deployment_config = args[:deployment_config] if args.key?(:deployment_config) @deployment_id = args[:deployment_id] if args.key?(:deployment_id) @entry_points = args[:entry_points] if args.key?(:entry_points) @update_time = args[:update_time] if args.key?(:update_time) end