com.pulumi.meraki.networks.outputs.CameraQualityRetentionProfilesVideoSettingsMV93X 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 CameraQualityRetentionProfilesVideoSettingsMV93X {
/**
* @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 '1080x1080', '2112x2112' or '2880x2880'.
*
*/
private @Nullable String resolution;
private CameraQualityRetentionProfilesVideoSettingsMV93X() {}
/**
* @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 '1080x1080', '2112x2112' or '2880x2880'.
*
*/
public Optional resolution() {
return Optional.ofNullable(this.resolution);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CameraQualityRetentionProfilesVideoSettingsMV93X defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String quality;
private @Nullable String resolution;
public Builder() {}
public Builder(CameraQualityRetentionProfilesVideoSettingsMV93X 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 CameraQualityRetentionProfilesVideoSettingsMV93X build() {
final var _resultValue = new CameraQualityRetentionProfilesVideoSettingsMV93X();
_resultValue.quality = quality;
_resultValue.resolution = resolution;
return _resultValue;
}
}
}