All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appservice.outputs.LinuxWebAppSlotAuthSettingsFacebook Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class LinuxWebAppSlotAuthSettingsFacebook {
    /**
     * @return The App ID of the Facebook app used for login.
     * 
     */
    private String appId;
    /**
     * @return The App Secret of the Facebook app used for Facebook login. Cannot be specified with `app_secret_setting_name`.
     * 
     */
    private @Nullable String appSecret;
    /**
     * @return The app setting name that contains the `app_secret` value used for Facebook login. Cannot be specified with `app_secret`.
     * 
     */
    private @Nullable String appSecretSettingName;
    /**
     * @return Specifies a list of OAuth 2.0 scopes to be requested as part of Facebook login authentication.
     * 
     */
    private @Nullable List oauthScopes;

    private LinuxWebAppSlotAuthSettingsFacebook() {}
    /**
     * @return The App ID of the Facebook app used for login.
     * 
     */
    public String appId() {
        return this.appId;
    }
    /**
     * @return The App Secret of the Facebook app used for Facebook login. Cannot be specified with `app_secret_setting_name`.
     * 
     */
    public Optional appSecret() {
        return Optional.ofNullable(this.appSecret);
    }
    /**
     * @return The app setting name that contains the `app_secret` value used for Facebook login. Cannot be specified with `app_secret`.
     * 
     */
    public Optional appSecretSettingName() {
        return Optional.ofNullable(this.appSecretSettingName);
    }
    /**
     * @return Specifies a list of OAuth 2.0 scopes to be requested as part of Facebook login authentication.
     * 
     */
    public List oauthScopes() {
        return this.oauthScopes == null ? List.of() : this.oauthScopes;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(LinuxWebAppSlotAuthSettingsFacebook defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String appId;
        private @Nullable String appSecret;
        private @Nullable String appSecretSettingName;
        private @Nullable List oauthScopes;
        public Builder() {}
        public Builder(LinuxWebAppSlotAuthSettingsFacebook defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.appId = defaults.appId;
    	      this.appSecret = defaults.appSecret;
    	      this.appSecretSettingName = defaults.appSecretSettingName;
    	      this.oauthScopes = defaults.oauthScopes;
        }

        @CustomType.Setter
        public Builder appId(String appId) {
            if (appId == null) {
              throw new MissingRequiredPropertyException("LinuxWebAppSlotAuthSettingsFacebook", "appId");
            }
            this.appId = appId;
            return this;
        }
        @CustomType.Setter
        public Builder appSecret(@Nullable String appSecret) {

            this.appSecret = appSecret;
            return this;
        }
        @CustomType.Setter
        public Builder appSecretSettingName(@Nullable String appSecretSettingName) {

            this.appSecretSettingName = appSecretSettingName;
            return this;
        }
        @CustomType.Setter
        public Builder oauthScopes(@Nullable List oauthScopes) {

            this.oauthScopes = oauthScopes;
            return this;
        }
        public Builder oauthScopes(String... oauthScopes) {
            return oauthScopes(List.of(oauthScopes));
        }
        public LinuxWebAppSlotAuthSettingsFacebook build() {
            final var _resultValue = new LinuxWebAppSlotAuthSettingsFacebook();
            _resultValue.appId = appId;
            _resultValue.appSecret = appSecret;
            _resultValue.appSecretSettingName = appSecretSettingName;
            _resultValue.oauthScopes = oauthScopes;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy