com.pulumi.meraki.organizations.outputs.GetCameraBoundariesLinesByDeviceItemBoundaries 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.organizations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.meraki.organizations.outputs.GetCameraBoundariesLinesByDeviceItemBoundariesDirectionVertex;
import com.pulumi.meraki.organizations.outputs.GetCameraBoundariesLinesByDeviceItemBoundariesVertex;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetCameraBoundariesLinesByDeviceItemBoundaries {
/**
* @return The line boundary crossing direction vertex
*
*/
private GetCameraBoundariesLinesByDeviceItemBoundariesDirectionVertex directionVertex;
/**
* @return The line boundary id
*
*/
private String id;
/**
* @return The line boundary name
*
*/
private String name;
/**
* @return The line boundary type
*
*/
private String type;
/**
* @return The line boundary vertices
*
*/
private List vertices;
private GetCameraBoundariesLinesByDeviceItemBoundaries() {}
/**
* @return The line boundary crossing direction vertex
*
*/
public GetCameraBoundariesLinesByDeviceItemBoundariesDirectionVertex directionVertex() {
return this.directionVertex;
}
/**
* @return The line boundary id
*
*/
public String id() {
return this.id;
}
/**
* @return The line boundary name
*
*/
public String name() {
return this.name;
}
/**
* @return The line boundary type
*
*/
public String type() {
return this.type;
}
/**
* @return The line boundary vertices
*
*/
public List vertices() {
return this.vertices;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCameraBoundariesLinesByDeviceItemBoundaries defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private GetCameraBoundariesLinesByDeviceItemBoundariesDirectionVertex directionVertex;
private String id;
private String name;
private String type;
private List vertices;
public Builder() {}
public Builder(GetCameraBoundariesLinesByDeviceItemBoundaries defaults) {
Objects.requireNonNull(defaults);
this.directionVertex = defaults.directionVertex;
this.id = defaults.id;
this.name = defaults.name;
this.type = defaults.type;
this.vertices = defaults.vertices;
}
@CustomType.Setter
public Builder directionVertex(GetCameraBoundariesLinesByDeviceItemBoundariesDirectionVertex directionVertex) {
if (directionVertex == null) {
throw new MissingRequiredPropertyException("GetCameraBoundariesLinesByDeviceItemBoundaries", "directionVertex");
}
this.directionVertex = directionVertex;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetCameraBoundariesLinesByDeviceItemBoundaries", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetCameraBoundariesLinesByDeviceItemBoundaries", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetCameraBoundariesLinesByDeviceItemBoundaries", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder vertices(List vertices) {
if (vertices == null) {
throw new MissingRequiredPropertyException("GetCameraBoundariesLinesByDeviceItemBoundaries", "vertices");
}
this.vertices = vertices;
return this;
}
public Builder vertices(GetCameraBoundariesLinesByDeviceItemBoundariesVertex... vertices) {
return vertices(List.of(vertices));
}
public GetCameraBoundariesLinesByDeviceItemBoundaries build() {
final var _resultValue = new GetCameraBoundariesLinesByDeviceItemBoundaries();
_resultValue.directionVertex = directionVertex;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.type = type;
_resultValue.vertices = vertices;
return _resultValue;
}
}
}