com.pulumi.azurenative.media.outputs.UtcClipTimeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.media.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class UtcClipTimeResponse {
/**
* @return The discriminator for derived types.
* Expected value is '#Microsoft.Media.UtcClipTime'.
*
*/
private String odataType;
/**
* @return The time position on the timeline of the input media based on Utc time.
*
*/
private String time;
private UtcClipTimeResponse() {}
/**
* @return The discriminator for derived types.
* Expected value is '#Microsoft.Media.UtcClipTime'.
*
*/
public String odataType() {
return this.odataType;
}
/**
* @return The time position on the timeline of the input media based on Utc time.
*
*/
public String time() {
return this.time;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(UtcClipTimeResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String odataType;
private String time;
public Builder() {}
public Builder(UtcClipTimeResponse defaults) {
Objects.requireNonNull(defaults);
this.odataType = defaults.odataType;
this.time = defaults.time;
}
@CustomType.Setter
public Builder odataType(String odataType) {
if (odataType == null) {
throw new MissingRequiredPropertyException("UtcClipTimeResponse", "odataType");
}
this.odataType = odataType;
return this;
}
@CustomType.Setter
public Builder time(String time) {
if (time == null) {
throw new MissingRequiredPropertyException("UtcClipTimeResponse", "time");
}
this.time = time;
return this;
}
public UtcClipTimeResponse build() {
final var _resultValue = new UtcClipTimeResponse();
_resultValue.odataType = odataType;
_resultValue.time = time;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy