Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Experiment
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Experiment
- 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 an experiment in an environment.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Creation time of this experiment.
-
#definition ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentDefinition
Definition of the experiment.
-
#description ⇒ String
The human-readable description of the experiment.
-
#display_name ⇒ String
Required.
-
#end_time ⇒ String
End time of this experiment.
-
#experiment_length ⇒ String
Maximum number of days to run the experiment/rollout.
-
#last_update_time ⇒ String
Last update time of this experiment.
-
#name ⇒ String
The name of the experiment.
-
#result ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResult
The inference result which includes an objective metric to optimize and the confidence interval.
-
#start_time ⇒ String
Start time of this experiment.
-
#state ⇒ String
The current state of the experiment.
-
#variants_history ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3VariantsHistory>
The history of updates to the experiment variants.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Experiment
constructor
A new instance of GoogleCloudDialogflowCxV3Experiment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Experiment
Returns a new instance of GoogleCloudDialogflowCxV3Experiment.
964 965 966 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Creation time of this experiment.
Corresponds to the JSON property createTime
900 901 902 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 900 def create_time @create_time end |
#definition ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentDefinition
Definition of the experiment.
Corresponds to the JSON property definition
905 906 907 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 905 def definition @definition end |
#description ⇒ String
The human-readable description of the experiment.
Corresponds to the JSON property description
910 911 912 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 910 def description @description end |
#display_name ⇒ String
Required. The human-readable name of the experiment (unique in an environment).
Limit of 64 characters.
Corresponds to the JSON property displayName
916 917 918 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 916 def display_name @display_name end |
#end_time ⇒ String
End time of this experiment.
Corresponds to the JSON property endTime
921 922 923 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 921 def end_time @end_time end |
#experiment_length ⇒ String
Maximum number of days to run the experiment/rollout. If auto-rollout is not
enabled, default value and maximum will be 30 days. If auto-rollout is enabled,
default value and maximum will be 6 days.
Corresponds to the JSON property experimentLength
928 929 930 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 928 def experiment_length @experiment_length end |
#last_update_time ⇒ String
Last update time of this experiment.
Corresponds to the JSON property lastUpdateTime
933 934 935 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 933 def last_update_time @last_update_time end |
#name ⇒ String
The name of the experiment. Format: projects//locations//agents//environments//
experiments/..
Corresponds to the JSON property name
939 940 941 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 939 def name @name end |
#result ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResult
The inference result which includes an objective metric to optimize and the
confidence interval.
Corresponds to the JSON property result
945 946 947 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 945 def result @result end |
#start_time ⇒ String
Start time of this experiment.
Corresponds to the JSON property startTime
950 951 952 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 950 def start_time @start_time end |
#state ⇒ String
The current state of the experiment. Transition triggered by Expriments.
StartExperiment: PENDING->RUNNING. Transition triggered by Expriments.
CancelExperiment: PENDING->CANCELLED or RUNNING->CANCELLED.
Corresponds to the JSON property state
957 958 959 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 957 def state @state end |
#variants_history ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3VariantsHistory>
The history of updates to the experiment variants.
Corresponds to the JSON property variantsHistory
962 963 964 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 962 def variants_history @variants_history end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
969 970 971 972 973 974 975 976 977 978 979 980 981 982 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 969 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @definition = args[:definition] if args.key?(:definition) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @end_time = args[:end_time] if args.key?(:end_time) @experiment_length = args[:experiment_length] if args.key?(:experiment_length) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @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) @variants_history = args[:variants_history] if args.key?(:variants_history) end |