com.pulumi.meraki.networks.outputs.CameraQualityRetentionProfilesVideoSettingsMV63X Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
A Pulumi package for creating and managing Cisco Meraki 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.meraki.networks.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class CameraQualityRetentionProfilesVideoSettingsMV63X {
/**
* @return Quality of the camera. Can be one of 'Standard', 'Enhanced' or 'High'.
*
*/
private @Nullable String quality;
/**
* @return Resolution of the camera. Can be one of '1920x1080', '2688x1512' or '3840x2160'.
*
*/
private @Nullable String resolution;
private CameraQualityRetentionProfilesVideoSettingsMV63X() {}
/**
* @return Quality of the camera. Can be one of 'Standard', 'Enhanced' or 'High'.
*
*/
public Optional quality() {
return Optional.ofNullable(this.quality);
}
/**
* @return Resolution of the camera. Can be one of '1920x1080', '2688x1512' or '3840x2160'.
*
*/
public Optional resolution() {
return Optional.ofNullable(this.resolution);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CameraQualityRetentionProfilesVideoSettingsMV63X defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String quality;
private @Nullable String resolution;
public Builder() {}
public Builder(CameraQualityRetentionProfilesVideoSettingsMV63X defaults) {
Objects.requireNonNull(defaults);
this.quality = defaults.quality;
this.resolution = defaults.resolution;
}
@CustomType.Setter
public Builder quality(@Nullable String quality) {
this.quality = quality;
return this;
}
@CustomType.Setter
public Builder resolution(@Nullable String resolution) {
this.resolution = resolution;
return this;
}
public CameraQualityRetentionProfilesVideoSettingsMV63X build() {
final var _resultValue = new CameraQualityRetentionProfilesVideoSettingsMV63X();
_resultValue.quality = quality;
_resultValue.resolution = resolution;
return _resultValue;
}
}
}