com.pulumi.azure.appservice.SlotArgs Maven / Gradle / Ivy
// *** 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.appservice.inputs.SlotAuthSettingsArgs;
import com.pulumi.azure.appservice.inputs.SlotConnectionStringArgs;
import com.pulumi.azure.appservice.inputs.SlotIdentityArgs;
import com.pulumi.azure.appservice.inputs.SlotLogsArgs;
import com.pulumi.azure.appservice.inputs.SlotSiteConfigArgs;
import com.pulumi.azure.appservice.inputs.SlotStorageAccountArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SlotArgs extends com.pulumi.resources.ResourceArgs {
public static final SlotArgs Empty = new SlotArgs();
/**
* The name of the App Service within which to create the App Service Slot. Changing this forces a new resource to be created.
*
*/
@Import(name="appServiceName", required=true)
private Output appServiceName;
/**
* @return The name of the App Service within which to create the App Service Slot. Changing this forces a new resource to be created.
*
*/
public Output appServiceName() {
return this.appServiceName;
}
/**
* The ID of the App Service Plan within which to create this App Service Slot. Changing this forces a new resource to be created.
*
*/
@Import(name="appServicePlanId", required=true)
private Output appServicePlanId;
/**
* @return The ID of the App Service Plan within which to create this App Service Slot. Changing this forces a new resource to be created.
*
*/
public Output appServicePlanId() {
return this.appServicePlanId;
}
/**
* A key-value pair of App Settings.
*
*/
@Import(name="appSettings")
private @Nullable Output