
com.pulumi.azurenative.videoanalyzer.outputs.VideoSequenceAbsoluteTimeMarkersResponse 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.
// *** 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.videoanalyzer.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class VideoSequenceAbsoluteTimeMarkersResponse {
/**
* @return The sequence of datetime ranges. Example: '[["2021-10-05T03:30:00Z", "2021-10-05T03:40:00Z"]]'.
*
*/
private String ranges;
/**
* @return The discriminator for derived types.
* Expected value is '#Microsoft.VideoAnalyzer.VideoSequenceAbsoluteTimeMarkers'.
*
*/
private String type;
private VideoSequenceAbsoluteTimeMarkersResponse() {}
/**
* @return The sequence of datetime ranges. Example: '[["2021-10-05T03:30:00Z", "2021-10-05T03:40:00Z"]]'.
*
*/
public String ranges() {
return this.ranges;
}
/**
* @return The discriminator for derived types.
* Expected value is '#Microsoft.VideoAnalyzer.VideoSequenceAbsoluteTimeMarkers'.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VideoSequenceAbsoluteTimeMarkersResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String ranges;
private String type;
public Builder() {}
public Builder(VideoSequenceAbsoluteTimeMarkersResponse defaults) {
Objects.requireNonNull(defaults);
this.ranges = defaults.ranges;
this.type = defaults.type;
}
@CustomType.Setter
public Builder ranges(String ranges) {
if (ranges == null) {
throw new MissingRequiredPropertyException("VideoSequenceAbsoluteTimeMarkersResponse", "ranges");
}
this.ranges = ranges;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("VideoSequenceAbsoluteTimeMarkersResponse", "type");
}
this.type = type;
return this;
}
public VideoSequenceAbsoluteTimeMarkersResponse build() {
final var _resultValue = new VideoSequenceAbsoluteTimeMarkersResponse();
_resultValue.ranges = ranges;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy