Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3Experiment

Represents an experiment in an environment.

Inheritance
object
GoogleCloudDialogflowCxV3Experiment
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v3.Data
Assembly: Google.Apis.Dialogflow.v3.dll
Syntax
public class GoogleCloudDialogflowCxV3Experiment : IDirectResponseSchema

Properties

CreateTime

object representation of CreateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

CreateTimeDateTimeOffset

DateTimeOffset representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreateTimeRaw

Creation time of this experiment.

Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type Description
string

Definition

The definition of the experiment.

Declaration
[JsonProperty("definition")]
public virtual GoogleCloudDialogflowCxV3ExperimentDefinition Definition { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3ExperimentDefinition

Description

The human-readable description of the experiment.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
string

DisplayName

Required. The human-readable name of the experiment (unique in an environment). Limit of 64 characters.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

EndTime

object representation of EndTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use EndTimeDateTimeOffset instead.")]
public virtual object EndTime { get; set; }
Property Value
Type Description
object

EndTimeDateTimeOffset

DateTimeOffset representation of EndTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? EndTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

EndTimeRaw

End time of this experiment.

Declaration
[JsonProperty("endTime")]
public virtual string EndTimeRaw { get; set; }
Property Value
Type Description
string

ExperimentLength

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.

Declaration
[JsonProperty("experimentLength")]
public virtual object ExperimentLength { get; set; }
Property Value
Type Description
object

LastUpdateTime

object representation of LastUpdateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use LastUpdateTimeDateTimeOffset instead.")]
public virtual object LastUpdateTime { get; set; }
Property Value
Type Description
object

LastUpdateTimeDateTimeOffset

DateTimeOffset representation of LastUpdateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? LastUpdateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

LastUpdateTimeRaw

Last update time of this experiment.

Declaration
[JsonProperty("lastUpdateTime")]
public virtual string LastUpdateTimeRaw { get; set; }
Property Value
Type Description
string

Name

The name of the experiment. Format: projects//locations//agents//environments//experiments/.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Result

Inference result of the experiment.

Declaration
[JsonProperty("result")]
public virtual GoogleCloudDialogflowCxV3ExperimentResult Result { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3ExperimentResult

RolloutConfig

The configuration for auto rollout. If set, there should be exactly two variants in the experiment (control variant being the default version of the flow), the traffic allocation for the non-control variant will gradually increase to 100% when conditions are met, and eventually replace the control variant to become the default version of the flow.

Declaration
[JsonProperty("rolloutConfig")]
public virtual GoogleCloudDialogflowCxV3RolloutConfig RolloutConfig { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3RolloutConfig

RolloutFailureReason

The reason why rollout has failed. Should only be set when state is ROLLOUT_FAILED.

Declaration
[JsonProperty("rolloutFailureReason")]
public virtual string RolloutFailureReason { get; set; }
Property Value
Type Description
string

RolloutState

State of the auto rollout process.

Declaration
[JsonProperty("rolloutState")]
public virtual GoogleCloudDialogflowCxV3RolloutState RolloutState { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3RolloutState

StartTime

object representation of StartTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeDateTimeOffset instead.")]
public virtual object StartTime { get; set; }
Property Value
Type Description
object

StartTimeDateTimeOffset

DateTimeOffset representation of StartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

StartTimeRaw

Start time of this experiment.

Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type Description
string

State

The current state of the experiment. Transition triggered by Experiments.StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.CancelExperiment: DRAFT->DONE or RUNNING->DONE.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
string

VariantsHistory

The history of updates to the experiment variants.

Declaration
[JsonProperty("variantsHistory")]
public virtual IList<GoogleCloudDialogflowCxV3VariantsHistory> VariantsHistory { get; set; }
Property Value
Type Description
IList<GoogleCloudDialogflowCxV3VariantsHistory>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX