com.pulumi.azure.appservice.Connection 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;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.appservice.ConnectionArgs;
import com.pulumi.azure.appservice.inputs.ConnectionState;
import com.pulumi.azure.appservice.outputs.ConnectionAuthentication;
import com.pulumi.azure.appservice.outputs.ConnectionSecretStore;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Manages a service connector for app service.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Service Connector for app service can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:appservice/connection:Connection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Web/sites/webapp/providers/Microsoft.ServiceLinker/linkers/serviceconnector1
* ```
*
*/
@ResourceType(type="azure:appservice/connection:Connection")
public class Connection extends com.pulumi.resources.CustomResource {
/**
* The ID of the data source web app. Changing this forces a new resource to be created.
*
*/
@Export(name="appServiceId", refs={String.class}, tree="[0]")
private Output appServiceId;
/**
* @return The ID of the data source web app. Changing this forces a new resource to be created.
*
*/
public Output appServiceId() {
return this.appServiceId;
}
/**
* The authentication info. An `authentication` block as defined below.
*
* > **Note:** If a Managed Identity is used, this will need to be configured on the App Service.
*
*/
@Export(name="authentication", refs={ConnectionAuthentication.class}, tree="[0]")
private Output authentication;
/**
* @return The authentication info. An `authentication` block as defined below.
*
* > **Note:** If a Managed Identity is used, this will need to be configured on the App Service.
*
*/
public Output authentication() {
return this.authentication;
}
@Export(name="clientType", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> clientType;
public Output> clientType() {
return Codegen.optional(this.clientType);
}
/**
* The name of the service connection. Changing this forces a new resource to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the service connection. Changing this forces a new resource to be created.
*
*/
public Output name() {
return this.name;
}
@Export(name="secretStore", refs={ConnectionSecretStore.class}, tree="[0]")
private Output* @Nullable */ ConnectionSecretStore> secretStore;
public Output> secretStore() {
return Codegen.optional(this.secretStore);
}
/**
* The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are `Postgres`, `PostgresFlexible`, `Mysql`, `Sql`, `Redis`, `RedisEnterprise`, `CosmosCassandra`, `CosmosGremlin`, `CosmosMongo`, `CosmosSql`, `CosmosTable`, `StorageBlob`, `StorageQueue`, `StorageFile`, `StorageTable`, `AppConfig`, `EventHub`, `ServiceBus`, `SignalR`, `WebPubSub`, `ConfluentKafka`. The integration guide can be found [here](https://learn.microsoft.com/en-us/azure/service-connector/how-to-integrate-postgres).
*
*/
@Export(name="targetResourceId", refs={String.class}, tree="[0]")
private Output targetResourceId;
/**
* @return The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are `Postgres`, `PostgresFlexible`, `Mysql`, `Sql`, `Redis`, `RedisEnterprise`, `CosmosCassandra`, `CosmosGremlin`, `CosmosMongo`, `CosmosSql`, `CosmosTable`, `StorageBlob`, `StorageQueue`, `StorageFile`, `StorageTable`, `AppConfig`, `EventHub`, `ServiceBus`, `SignalR`, `WebPubSub`, `ConfluentKafka`. The integration guide can be found [here](https://learn.microsoft.com/en-us/azure/service-connector/how-to-integrate-postgres).
*
*/
public Output targetResourceId() {
return this.targetResourceId;
}
@Export(name="vnetSolution", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> vnetSolution;
public Output> vnetSolution() {
return Codegen.optional(this.vnetSolution);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public Connection(java.lang.String name) {
this(name, ConnectionArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public Connection(java.lang.String name, ConnectionArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public Connection(java.lang.String name, ConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:appservice/connection:Connection", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private Connection(java.lang.String name, Output id, @Nullable ConnectionState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:appservice/connection:Connection", name, state, makeResourceOptions(options, id), false);
}
private static ConnectionArgs makeArgs(ConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? ConnectionArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static Connection get(java.lang.String name, Output id, @Nullable ConnectionState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new Connection(name, id, state, options);
}
}