Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Deployment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

Represents a deployment in an environment. A deployment happens when a flow version configured to be active in the environment. You can configure running pre-deployment steps, e.g. running validation test cases, experiment auto- rollout, etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Deployment

Returns a new instance of GoogleCloudDialogflowCxV3Deployment.



1284
1285
1286
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1284

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

End time of this deployment. Corresponds to the JSON property endTime

Returns:

  • (String)


1255
1256
1257
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1255

def end_time
  @end_time
end

#flow_versionString

The name of the flow version for this deployment. Format: projects//locations// agents//flows//versions/. Corresponds to the JSON property flowVersion

Returns:

  • (String)


1261
1262
1263
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1261

def flow_version
  @flow_version
end

#nameString

The name of the deployment. Format: projects//locations//agents//environments// deployments/. Corresponds to the JSON property name

Returns:

  • (String)


1267
1268
1269
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1267

def name
  @name
end

#resultGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeploymentResult

Result of the deployment. Corresponds to the JSON property result



1272
1273
1274
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1272

def result
  @result
end

#start_timeString

Start time of this deployment. Corresponds to the JSON property startTime

Returns:

  • (String)


1277
1278
1279
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1277

def start_time
  @start_time
end

#stateString

The current state of the deployment. Corresponds to the JSON property state

Returns:

  • (String)


1282
1283
1284
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1282

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1289
1290
1291
1292
1293
1294
1295
1296
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1289

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @flow_version = args[:flow_version] if args.key?(:flow_version)
  @name = args[:name] if args.key?(:name)
  @result = args[:result] if args.key?(:result)
  @start_time = args[:start_time] if args.key?(:start_time)
  @state = args[:state] if args.key?(:state)
end