com.pulumi.azure.appservice.inputs.SlotAuthSettingsMicrosoftArgs 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SlotAuthSettingsMicrosoftArgs extends com.pulumi.resources.ResourceArgs {
public static final SlotAuthSettingsMicrosoftArgs Empty = new SlotAuthSettingsMicrosoftArgs();
/**
* The OAuth 2.0 client ID that was created for the app used for authentication.
*
*/
@Import(name="clientId", required=true)
private Output clientId;
/**
* @return The OAuth 2.0 client ID that was created for the app used for authentication.
*
*/
public Output clientId() {
return this.clientId;
}
/**
* The OAuth 2.0 client secret that was created for the app used for authentication.
*
*/
@Import(name="clientSecret", required=true)
private Output clientSecret;
/**
* @return The OAuth 2.0 client secret that was created for the app used for authentication.
*
*/
public Output clientSecret() {
return this.clientSecret;
}
/**
* The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication. <https://msdn.microsoft.com/en-us/library/dn631845.aspx>
*
*/
@Import(name="oauthScopes")
private @Nullable Output> oauthScopes;
/**
* @return The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication. <https://msdn.microsoft.com/en-us/library/dn631845.aspx>
*
*/
public Optional