com.pulumi.azure.appservice.outputs.GetWindowsWebAppAuthSettingsV2FacebookV2 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetWindowsWebAppAuthSettingsV2FacebookV2 {
/**
* @return The App ID of the Facebook app used for login.
*
*/
private String appId;
/**
* @return The app setting name that contains the `app_secret` value used for Facebook login.
*
*/
private String appSecretSettingName;
/**
* @return The version of the Facebook API to be used while logging in.
*
*/
private String graphApiVersion;
/**
* @return The list of Login scopes that are requested as part of Microsoft Account authentication.
*
*/
private List loginScopes;
private GetWindowsWebAppAuthSettingsV2FacebookV2() {}
/**
* @return The App ID of the Facebook app used for login.
*
*/
public String appId() {
return this.appId;
}
/**
* @return The app setting name that contains the `app_secret` value used for Facebook login.
*
*/
public String appSecretSettingName() {
return this.appSecretSettingName;
}
/**
* @return The version of the Facebook API to be used while logging in.
*
*/
public String graphApiVersion() {
return this.graphApiVersion;
}
/**
* @return The list of Login scopes that are requested as part of Microsoft Account authentication.
*
*/
public List loginScopes() {
return this.loginScopes;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWindowsWebAppAuthSettingsV2FacebookV2 defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String appId;
private String appSecretSettingName;
private String graphApiVersion;
private List loginScopes;
public Builder() {}
public Builder(GetWindowsWebAppAuthSettingsV2FacebookV2 defaults) {
Objects.requireNonNull(defaults);
this.appId = defaults.appId;
this.appSecretSettingName = defaults.appSecretSettingName;
this.graphApiVersion = defaults.graphApiVersion;
this.loginScopes = defaults.loginScopes;
}
@CustomType.Setter
public Builder appId(String appId) {
if (appId == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppAuthSettingsV2FacebookV2", "appId");
}
this.appId = appId;
return this;
}
@CustomType.Setter
public Builder appSecretSettingName(String appSecretSettingName) {
if (appSecretSettingName == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppAuthSettingsV2FacebookV2", "appSecretSettingName");
}
this.appSecretSettingName = appSecretSettingName;
return this;
}
@CustomType.Setter
public Builder graphApiVersion(String graphApiVersion) {
if (graphApiVersion == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppAuthSettingsV2FacebookV2", "graphApiVersion");
}
this.graphApiVersion = graphApiVersion;
return this;
}
@CustomType.Setter
public Builder loginScopes(List loginScopes) {
if (loginScopes == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppAuthSettingsV2FacebookV2", "loginScopes");
}
this.loginScopes = loginScopes;
return this;
}
public Builder loginScopes(String... loginScopes) {
return loginScopes(List.of(loginScopes));
}
public GetWindowsWebAppAuthSettingsV2FacebookV2 build() {
final var _resultValue = new GetWindowsWebAppAuthSettingsV2FacebookV2();
_resultValue.appId = appId;
_resultValue.appSecretSettingName = appSecretSettingName;
_resultValue.graphApiVersion = graphApiVersion;
_resultValue.loginScopes = loginScopes;
return _resultValue;
}
}
}