
com.pulumi.azurenative.app.outputs.GetContainerAppsAuthConfigResult 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.azurenative.app.outputs;
import com.pulumi.azurenative.app.outputs.AuthPlatformResponse;
import com.pulumi.azurenative.app.outputs.GlobalValidationResponse;
import com.pulumi.azurenative.app.outputs.HttpSettingsResponse;
import com.pulumi.azurenative.app.outputs.IdentityProvidersResponse;
import com.pulumi.azurenative.app.outputs.LoginResponse;
import com.pulumi.azurenative.app.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetContainerAppsAuthConfigResult {
/**
* @return The configuration settings that determines the validation flow of users using Service Authentication/Authorization.
*
*/
private @Nullable GlobalValidationResponse globalValidation;
/**
* @return The configuration settings of the HTTP requests for authentication and authorization requests made against ContainerApp Service Authentication/Authorization.
*
*/
private @Nullable HttpSettingsResponse httpSettings;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return The configuration settings of each of the identity providers used to configure ContainerApp Service Authentication/Authorization.
*
*/
private @Nullable IdentityProvidersResponse identityProviders;
/**
* @return The configuration settings of the login flow of users using ContainerApp Service Authentication/Authorization.
*
*/
private @Nullable LoginResponse login;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The configuration settings of the platform of ContainerApp Service Authentication/Authorization.
*
*/
private @Nullable AuthPlatformResponse platform;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetContainerAppsAuthConfigResult() {}
/**
* @return The configuration settings that determines the validation flow of users using Service Authentication/Authorization.
*
*/
public Optional globalValidation() {
return Optional.ofNullable(this.globalValidation);
}
/**
* @return The configuration settings of the HTTP requests for authentication and authorization requests made against ContainerApp Service Authentication/Authorization.
*
*/
public Optional httpSettings() {
return Optional.ofNullable(this.httpSettings);
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return The configuration settings of each of the identity providers used to configure ContainerApp Service Authentication/Authorization.
*
*/
public Optional identityProviders() {
return Optional.ofNullable(this.identityProviders);
}
/**
* @return The configuration settings of the login flow of users using ContainerApp Service Authentication/Authorization.
*
*/
public Optional login() {
return Optional.ofNullable(this.login);
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return The configuration settings of the platform of ContainerApp Service Authentication/Authorization.
*
*/
public Optional platform() {
return Optional.ofNullable(this.platform);
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContainerAppsAuthConfigResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable GlobalValidationResponse globalValidation;
private @Nullable HttpSettingsResponse httpSettings;
private String id;
private @Nullable IdentityProvidersResponse identityProviders;
private @Nullable LoginResponse login;
private String name;
private @Nullable AuthPlatformResponse platform;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetContainerAppsAuthConfigResult defaults) {
Objects.requireNonNull(defaults);
this.globalValidation = defaults.globalValidation;
this.httpSettings = defaults.httpSettings;
this.id = defaults.id;
this.identityProviders = defaults.identityProviders;
this.login = defaults.login;
this.name = defaults.name;
this.platform = defaults.platform;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder globalValidation(@Nullable GlobalValidationResponse globalValidation) {
this.globalValidation = globalValidation;
return this;
}
@CustomType.Setter
public Builder httpSettings(@Nullable HttpSettingsResponse httpSettings) {
this.httpSettings = httpSettings;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetContainerAppsAuthConfigResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder identityProviders(@Nullable IdentityProvidersResponse identityProviders) {
this.identityProviders = identityProviders;
return this;
}
@CustomType.Setter
public Builder login(@Nullable LoginResponse login) {
this.login = login;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetContainerAppsAuthConfigResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder platform(@Nullable AuthPlatformResponse platform) {
this.platform = platform;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetContainerAppsAuthConfigResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetContainerAppsAuthConfigResult", "type");
}
this.type = type;
return this;
}
public GetContainerAppsAuthConfigResult build() {
final var _resultValue = new GetContainerAppsAuthConfigResult();
_resultValue.globalValidation = globalValidation;
_resultValue.httpSettings = httpSettings;
_resultValue.id = id;
_resultValue.identityProviders = identityProviders;
_resultValue.login = login;
_resultValue.name = name;
_resultValue.platform = platform;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy