Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batchai.implementation;
import org.joda.time.DateTime;
import com.microsoft.azure.management.batchai.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.ProxyResource;
Experiment information.
/**
* Experiment information.
*/
@JsonFlatten
public class ExperimentInner extends ProxyResource {
Creation time.
Time when the Experiment was created.
/**
* Creation time.
* Time when the Experiment was created.
*/
@JsonProperty(value = "properties.creationTime", access = JsonProperty.Access.WRITE_ONLY)
private DateTime creationTime;
Provisioning state.
The provisioned state of the experiment. Possible values include:
'creating', 'succeeded', 'failed', 'deleting'.
/**
* Provisioning state.
* The provisioned state of the experiment. Possible values include:
* 'creating', 'succeeded', 'failed', 'deleting'.
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
Provisioning state transition time.
The time at which the experiment entered its current provisioning state.
/**
* Provisioning state transition time.
* The time at which the experiment entered its current provisioning state.
*/
@JsonProperty(value = "properties.provisioningStateTransitionTime", access = JsonProperty.Access.WRITE_ONLY)
private DateTime provisioningStateTransitionTime;
Get time when the Experiment was created.
Returns: the creationTime value
/**
* Get time when the Experiment was created.
*
* @return the creationTime value
*/
public DateTime creationTime() {
return this.creationTime;
}
Get the provisioned state of the experiment. Possible values include: 'creating', 'succeeded', 'failed', 'deleting'.
Returns: the provisioningState value
/**
* Get the provisioned state of the experiment. Possible values include: 'creating', 'succeeded', 'failed', 'deleting'.
*
* @return the provisioningState value
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
Get the time at which the experiment entered its current provisioning state.
Returns: the provisioningStateTransitionTime value
/**
* Get the time at which the experiment entered its current provisioning state.
*
* @return the provisioningStateTransitionTime value
*/
public DateTime provisioningStateTransitionTime() {
return this.provisioningStateTransitionTime;
}
}