
com.pulumi.azurenative.securityinsights.outputs.CustomizableConnectionsConfigResponse 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.securityinsights.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CustomizableConnectionsConfigResponse {
/**
* @return Gets or sets the template name. The template includes ARM templates that can be created by the connector, usually it will be the dataConnectors ARM templates.
*
*/
private String templateSpecName;
/**
* @return Gets or sets the template version.
*
*/
private String templateSpecVersion;
private CustomizableConnectionsConfigResponse() {}
/**
* @return Gets or sets the template name. The template includes ARM templates that can be created by the connector, usually it will be the dataConnectors ARM templates.
*
*/
public String templateSpecName() {
return this.templateSpecName;
}
/**
* @return Gets or sets the template version.
*
*/
public String templateSpecVersion() {
return this.templateSpecVersion;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CustomizableConnectionsConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String templateSpecName;
private String templateSpecVersion;
public Builder() {}
public Builder(CustomizableConnectionsConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.templateSpecName = defaults.templateSpecName;
this.templateSpecVersion = defaults.templateSpecVersion;
}
@CustomType.Setter
public Builder templateSpecName(String templateSpecName) {
if (templateSpecName == null) {
throw new MissingRequiredPropertyException("CustomizableConnectionsConfigResponse", "templateSpecName");
}
this.templateSpecName = templateSpecName;
return this;
}
@CustomType.Setter
public Builder templateSpecVersion(String templateSpecVersion) {
if (templateSpecVersion == null) {
throw new MissingRequiredPropertyException("CustomizableConnectionsConfigResponse", "templateSpecVersion");
}
this.templateSpecVersion = templateSpecVersion;
return this;
}
public CustomizableConnectionsConfigResponse build() {
final var _resultValue = new CustomizableConnectionsConfigResponse();
_resultValue.templateSpecName = templateSpecName;
_resultValue.templateSpecVersion = templateSpecVersion;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy