com.pulumi.meraki.organizations.outputs.InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel 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 java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel {
/**
* @return Name of the configured TLS certificate
*
*/
private @Nullable String certificateName;
/**
* @return Number of the vlan expected to be used to connect to the cloud
*
*/
private @Nullable Integer localInterface;
/**
* @return Number of the configured Loopback Interface used for TLS overlay
*
*/
private @Nullable Integer loopbackNumber;
/**
* @return Name of the configured TLS tunnel
*
*/
private @Nullable String name;
private InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel() {}
/**
* @return Name of the configured TLS certificate
*
*/
public Optional certificateName() {
return Optional.ofNullable(this.certificateName);
}
/**
* @return Number of the vlan expected to be used to connect to the cloud
*
*/
public Optional localInterface() {
return Optional.ofNullable(this.localInterface);
}
/**
* @return Number of the configured Loopback Interface used for TLS overlay
*
*/
public Optional loopbackNumber() {
return Optional.ofNullable(this.loopbackNumber);
}
/**
* @return Name of the configured TLS tunnel
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String certificateName;
private @Nullable Integer localInterface;
private @Nullable Integer loopbackNumber;
private @Nullable String name;
public Builder() {}
public Builder(InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel defaults) {
Objects.requireNonNull(defaults);
this.certificateName = defaults.certificateName;
this.localInterface = defaults.localInterface;
this.loopbackNumber = defaults.loopbackNumber;
this.name = defaults.name;
}
@CustomType.Setter
public Builder certificateName(@Nullable String certificateName) {
this.certificateName = certificateName;
return this;
}
@CustomType.Setter
public Builder localInterface(@Nullable Integer localInterface) {
this.localInterface = localInterface;
return this;
}
@CustomType.Setter
public Builder loopbackNumber(@Nullable Integer loopbackNumber) {
this.loopbackNumber = loopbackNumber;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel build() {
final var _resultValue = new InventoryOnboardingCloudMonitoringPrepareParametersDeviceTunnel();
_resultValue.certificateName = certificateName;
_resultValue.localInterface = localInterface;
_resultValue.loopbackNumber = loopbackNumber;
_resultValue.name = name;
return _resultValue;
}
}
}