
com.pulumi.azurenative.costmanagement.inputs.ReportDeliveryInfoArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.costmanagement.inputs;
import com.pulumi.azurenative.costmanagement.inputs.ReportDeliveryDestinationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
/**
* The delivery information associated with a report.
*
*/
public final class ReportDeliveryInfoArgs extends com.pulumi.resources.ResourceArgs {
public static final ReportDeliveryInfoArgs Empty = new ReportDeliveryInfoArgs();
/**
* Has destination for the report being delivered.
*
*/
@Import(name="destination", required=true)
private Output destination;
/**
* @return Has destination for the report being delivered.
*
*/
public Output destination() {
return this.destination;
}
private ReportDeliveryInfoArgs() {}
private ReportDeliveryInfoArgs(ReportDeliveryInfoArgs $) {
this.destination = $.destination;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ReportDeliveryInfoArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ReportDeliveryInfoArgs $;
public Builder() {
$ = new ReportDeliveryInfoArgs();
}
public Builder(ReportDeliveryInfoArgs defaults) {
$ = new ReportDeliveryInfoArgs(Objects.requireNonNull(defaults));
}
/**
* @param destination Has destination for the report being delivered.
*
* @return builder
*
*/
public Builder destination(Output destination) {
$.destination = destination;
return this;
}
/**
* @param destination Has destination for the report being delivered.
*
* @return builder
*
*/
public Builder destination(ReportDeliveryDestinationArgs destination) {
return destination(Output.of(destination));
}
public ReportDeliveryInfoArgs build() {
if ($.destination == null) {
throw new MissingRequiredPropertyException("ReportDeliveryInfoArgs", "destination");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy