com.pulumi.azure.appservice.inputs.FunctionAppConnectionStringArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.appservice.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class FunctionAppConnectionStringArgs extends com.pulumi.resources.ResourceArgs {
public static final FunctionAppConnectionStringArgs Empty = new FunctionAppConnectionStringArgs();
/**
* The name of the Connection String.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the Connection String.
*
*/
public Output name() {
return this.name;
}
/**
* The type of the Connection String. Possible values are `APIHub`, `Custom`, `DocDb`, `EventHub`, `MySQL`, `NotificationHub`, `PostgreSQL`, `RedisCache`, `ServiceBus`, `SQLAzure` and `SQLServer`.
*
*/
@Import(name="type", required=true)
private Output type;
/**
* @return The type of the Connection String. Possible values are `APIHub`, `Custom`, `DocDb`, `EventHub`, `MySQL`, `NotificationHub`, `PostgreSQL`, `RedisCache`, `ServiceBus`, `SQLAzure` and `SQLServer`.
*
*/
public Output type() {
return this.type;
}
/**
* The value for the Connection String.
*
*/
@Import(name="value", required=true)
private Output value;
/**
* @return The value for the Connection String.
*
*/
public Output value() {
return this.value;
}
private FunctionAppConnectionStringArgs() {}
private FunctionAppConnectionStringArgs(FunctionAppConnectionStringArgs $) {
this.name = $.name;
this.type = $.type;
this.value = $.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FunctionAppConnectionStringArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private FunctionAppConnectionStringArgs $;
public Builder() {
$ = new FunctionAppConnectionStringArgs();
}
public Builder(FunctionAppConnectionStringArgs defaults) {
$ = new FunctionAppConnectionStringArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the Connection String.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the Connection String.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param type The type of the Connection String. Possible values are `APIHub`, `Custom`, `DocDb`, `EventHub`, `MySQL`, `NotificationHub`, `PostgreSQL`, `RedisCache`, `ServiceBus`, `SQLAzure` and `SQLServer`.
*
* @return builder
*
*/
public Builder type(Output type) {
$.type = type;
return this;
}
/**
* @param type The type of the Connection String. Possible values are `APIHub`, `Custom`, `DocDb`, `EventHub`, `MySQL`, `NotificationHub`, `PostgreSQL`, `RedisCache`, `ServiceBus`, `SQLAzure` and `SQLServer`.
*
* @return builder
*
*/
public Builder type(String type) {
return type(Output.of(type));
}
/**
* @param value The value for the Connection String.
*
* @return builder
*
*/
public Builder value(Output value) {
$.value = value;
return this;
}
/**
* @param value The value for the Connection String.
*
* @return builder
*
*/
public Builder value(String value) {
return value(Output.of(value));
}
public FunctionAppConnectionStringArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("FunctionAppConnectionStringArgs", "name");
}
if ($.type == null) {
throw new MissingRequiredPropertyException("FunctionAppConnectionStringArgs", "type");
}
if ($.value == null) {
throw new MissingRequiredPropertyException("FunctionAppConnectionStringArgs", "value");
}
return $;
}
}
}