com.pulumi.azure.appservice.outputs.AppServiceLogsHttpLogs 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.azure.appservice.outputs.AppServiceLogsHttpLogsAzureBlobStorage;
import com.pulumi.azure.appservice.outputs.AppServiceLogsHttpLogsFileSystem;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AppServiceLogsHttpLogs {
/**
* @return An `azure_blob_storage` block as defined below.
*
*/
private @Nullable AppServiceLogsHttpLogsAzureBlobStorage azureBlobStorage;
/**
* @return A `file_system` block as defined below.
*
*/
private @Nullable AppServiceLogsHttpLogsFileSystem fileSystem;
private AppServiceLogsHttpLogs() {}
/**
* @return An `azure_blob_storage` block as defined below.
*
*/
public Optional azureBlobStorage() {
return Optional.ofNullable(this.azureBlobStorage);
}
/**
* @return A `file_system` block as defined below.
*
*/
public Optional fileSystem() {
return Optional.ofNullable(this.fileSystem);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AppServiceLogsHttpLogs defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable AppServiceLogsHttpLogsAzureBlobStorage azureBlobStorage;
private @Nullable AppServiceLogsHttpLogsFileSystem fileSystem;
public Builder() {}
public Builder(AppServiceLogsHttpLogs defaults) {
Objects.requireNonNull(defaults);
this.azureBlobStorage = defaults.azureBlobStorage;
this.fileSystem = defaults.fileSystem;
}
@CustomType.Setter
public Builder azureBlobStorage(@Nullable AppServiceLogsHttpLogsAzureBlobStorage azureBlobStorage) {
this.azureBlobStorage = azureBlobStorage;
return this;
}
@CustomType.Setter
public Builder fileSystem(@Nullable AppServiceLogsHttpLogsFileSystem fileSystem) {
this.fileSystem = fileSystem;
return this;
}
public AppServiceLogsHttpLogs build() {
final var _resultValue = new AppServiceLogsHttpLogs();
_resultValue.azureBlobStorage = azureBlobStorage;
_resultValue.fileSystem = fileSystem;
return _resultValue;
}
}
}