com.pulumi.azurenative.databasewatcher.TargetArgs 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.databasewatcher;
import com.pulumi.azurenative.databasewatcher.enums.TargetAuthenticationType;
import com.pulumi.azurenative.databasewatcher.inputs.VaultSecretArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TargetArgs extends com.pulumi.resources.ResourceArgs {
public static final TargetArgs Empty = new TargetArgs();
/**
* The server name to use in the connection string when connecting to a target. Port number and instance name must be specified separately.
*
*/
@Import(name="connectionServerName", required=true)
private Output connectionServerName;
/**
* @return The server name to use in the connection string when connecting to a target. Port number and instance name must be specified separately.
*
*/
public Output connectionServerName() {
return this.connectionServerName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The type of authentication to use when connecting to a target.
*
*/
@Import(name="targetAuthenticationType", required=true)
private Output> targetAuthenticationType;
/**
* @return The type of authentication to use when connecting to a target.
*
*/
public Output> targetAuthenticationType() {
return this.targetAuthenticationType;
}
/**
* The target resource name.
*
*/
@Import(name="targetName")
private @Nullable Output targetName;
/**
* @return The target resource name.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy