com.pulumi.azurenative.costmanagement.Report 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;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.costmanagement.ReportArgs;
import com.pulumi.azurenative.costmanagement.outputs.ReportDefinitionResponse;
import com.pulumi.azurenative.costmanagement.outputs.ReportDeliveryInfoResponse;
import com.pulumi.azurenative.costmanagement.outputs.ReportScheduleResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* A report resource.
* Azure REST API version: 2018-08-01-preview. Prior API version in Azure Native 1.x: 2018-08-01-preview.
*
*/
@ResourceType(type="azure-native:costmanagement:Report")
public class Report extends com.pulumi.resources.CustomResource {
/**
* Has definition for the report.
*
*/
@Export(name="definition", refs={ReportDefinitionResponse.class}, tree="[0]")
private Output definition;
/**
* @return Has definition for the report.
*
*/
public Output definition() {
return this.definition;
}
/**
* Has delivery information for the report.
*
*/
@Export(name="deliveryInfo", refs={ReportDeliveryInfoResponse.class}, tree="[0]")
private Output deliveryInfo;
/**
* @return Has delivery information for the report.
*
*/
public Output deliveryInfo() {
return this.deliveryInfo;
}
/**
* The format of the report being delivered.
*
*/
@Export(name="format", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> format;
/**
* @return The format of the report being delivered.
*
*/
public Output> format() {
return Codegen.optional(this.format);
}
/**
* Resource name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Resource name.
*
*/
public Output name() {
return this.name;
}
/**
* Has schedule information for the report.
*
*/
@Export(name="schedule", refs={ReportScheduleResponse.class}, tree="[0]")
private Output* @Nullable */ ReportScheduleResponse> schedule;
/**
* @return Has schedule information for the report.
*
*/
public Output> schedule() {
return Codegen.optional(this.schedule);
}
/**
* Resource tags.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy