com.pulumi.azure.appservice.outputs.WindowsFunctionAppAuthSettingsGithub 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;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WindowsFunctionAppAuthSettingsGithub {
/**
* @return The ID of the GitHub app used for login.
*
*/
private String clientId;
/**
* @return The Client Secret of the GitHub app used for GitHub login. Cannot be specified with `client_secret_setting_name`.
*
*/
private @Nullable String clientSecret;
/**
* @return The app setting name that contains the `client_secret` value used for GitHub login. Cannot be specified with `client_secret`.
*
*/
private @Nullable String clientSecretSettingName;
/**
* @return Specifies a list of OAuth 2.0 scopes that will be requested as part of GitHub login authentication.
*
*/
private @Nullable List oauthScopes;
private WindowsFunctionAppAuthSettingsGithub() {}
/**
* @return The ID of the GitHub app used for login.
*
*/
public String clientId() {
return this.clientId;
}
/**
* @return The Client Secret of the GitHub app used for GitHub login. Cannot be specified with `client_secret_setting_name`.
*
*/
public Optional clientSecret() {
return Optional.ofNullable(this.clientSecret);
}
/**
* @return The app setting name that contains the `client_secret` value used for GitHub login. Cannot be specified with `client_secret`.
*
*/
public Optional clientSecretSettingName() {
return Optional.ofNullable(this.clientSecretSettingName);
}
/**
* @return Specifies a list of OAuth 2.0 scopes that will be requested as part of GitHub login authentication.
*
*/
public List oauthScopes() {
return this.oauthScopes == null ? List.of() : this.oauthScopes;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WindowsFunctionAppAuthSettingsGithub defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String clientId;
private @Nullable String clientSecret;
private @Nullable String clientSecretSettingName;
private @Nullable List oauthScopes;
public Builder() {}
public Builder(WindowsFunctionAppAuthSettingsGithub defaults) {
Objects.requireNonNull(defaults);
this.clientId = defaults.clientId;
this.clientSecret = defaults.clientSecret;
this.clientSecretSettingName = defaults.clientSecretSettingName;
this.oauthScopes = defaults.oauthScopes;
}
@CustomType.Setter
public Builder clientId(String clientId) {
if (clientId == null) {
throw new MissingRequiredPropertyException("WindowsFunctionAppAuthSettingsGithub", "clientId");
}
this.clientId = clientId;
return this;
}
@CustomType.Setter
public Builder clientSecret(@Nullable String clientSecret) {
this.clientSecret = clientSecret;
return this;
}
@CustomType.Setter
public Builder clientSecretSettingName(@Nullable String clientSecretSettingName) {
this.clientSecretSettingName = clientSecretSettingName;
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 WindowsFunctionAppAuthSettingsGithub build() {
final var _resultValue = new WindowsFunctionAppAuthSettingsGithub();
_resultValue.clientId = clientId;
_resultValue.clientSecret = clientSecret;
_resultValue.clientSecretSettingName = clientSecretSettingName;
_resultValue.oauthScopes = oauthScopes;
return _resultValue;
}
}
}