All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.loganalytics.ClusterArgs Maven / Gradle / Ivy
Go to download
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.loganalytics;
import com.pulumi.azure.loganalytics.inputs.ClusterIdentityArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ClusterArgs extends com.pulumi.resources.ResourceArgs {
public static final ClusterArgs Empty = new ClusterArgs();
/**
* An `identity` block as defined below. Changing this forces a new Log Analytics Cluster to be created.
*
*/
@Import(name="identity", required=true)
private Output identity;
/**
* @return An `identity` block as defined below. Changing this forces a new Log Analytics Cluster to be created.
*
*/
public Output identity() {
return this.identity;
}
/**
* The Azure Region where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
*/
@Import(name="location")
private @Nullable Output location;
/**
* @return The Azure Region where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
*/
public Optional> location() {
return Optional.ofNullable(this.location);
}
/**
* The name which should be used for this Log Analytics Cluster. Changing this forces a new Log Analytics Cluster to be created.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return The name which should be used for this Log Analytics Cluster. Changing this forces a new Log Analytics Cluster to be created.
*
*/
public Optional> name() {
return Optional.ofNullable(this.name);
}
/**
* The name of the Resource Group where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the Resource Group where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `500`, `1000`, `2000` or `5000`. Defaults to `100`.
*
* > **NOTE:** The cluster capacity must start at 100 GB and can be set to 500, 1000, 2000 or 5000 GB/day. For more information on cluster costs, see [Dedicated clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/logs/cost-logs#dedicated-clusters). In v3.x the default value is `1000` GB, in v4.0 of the provider this will default to `100` GB.
*
*/
@Import(name="sizeGb")
private @Nullable Output sizeGb;
/**
* @return The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `500`, `1000`, `2000` or `5000`. Defaults to `100`.
*
* > **NOTE:** The cluster capacity must start at 100 GB and can be set to 500, 1000, 2000 or 5000 GB/day. For more information on cluster costs, see [Dedicated clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/logs/cost-logs#dedicated-clusters). In v3.x the default value is `1000` GB, in v4.0 of the provider this will default to `100` GB.
*
*/
public Optional> sizeGb() {
return Optional.ofNullable(this.sizeGb);
}
/**
* A mapping of tags which should be assigned to the Log Analytics Cluster.
*
*/
@Import(name="tags")
private @Nullable Output> tags;
/**
* @return A mapping of tags which should be assigned to the Log Analytics Cluster.
*
*/
public Optional>> tags() {
return Optional.ofNullable(this.tags);
}
private ClusterArgs() {}
private ClusterArgs(ClusterArgs $) {
this.identity = $.identity;
this.location = $.location;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.sizeGb = $.sizeGb;
this.tags = $.tags;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ClusterArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ClusterArgs $;
public Builder() {
$ = new ClusterArgs();
}
public Builder(ClusterArgs defaults) {
$ = new ClusterArgs(Objects.requireNonNull(defaults));
}
/**
* @param identity An `identity` block as defined below. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder identity(Output identity) {
$.identity = identity;
return this;
}
/**
* @param identity An `identity` block as defined below. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder identity(ClusterIdentityArgs identity) {
return identity(Output.of(identity));
}
/**
* @param location The Azure Region where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder location(@Nullable Output location) {
$.location = location;
return this;
}
/**
* @param location The Azure Region where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder location(String location) {
return location(Output.of(location));
}
/**
* @param name The name which should be used for this Log Analytics Cluster. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder name(@Nullable Output name) {
$.name = name;
return this;
}
/**
* @param name The name which should be used for this Log Analytics Cluster. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param resourceGroupName The name of the Resource Group where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the Resource Group where the Log Analytics Cluster should exist. Changing this forces a new Log Analytics Cluster to be created.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param sizeGb The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `500`, `1000`, `2000` or `5000`. Defaults to `100`.
*
* > **NOTE:** The cluster capacity must start at 100 GB and can be set to 500, 1000, 2000 or 5000 GB/day. For more information on cluster costs, see [Dedicated clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/logs/cost-logs#dedicated-clusters). In v3.x the default value is `1000` GB, in v4.0 of the provider this will default to `100` GB.
*
* @return builder
*
*/
public Builder sizeGb(@Nullable Output sizeGb) {
$.sizeGb = sizeGb;
return this;
}
/**
* @param sizeGb The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `500`, `1000`, `2000` or `5000`. Defaults to `100`.
*
* > **NOTE:** The cluster capacity must start at 100 GB and can be set to 500, 1000, 2000 or 5000 GB/day. For more information on cluster costs, see [Dedicated clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/logs/cost-logs#dedicated-clusters). In v3.x the default value is `1000` GB, in v4.0 of the provider this will default to `100` GB.
*
* @return builder
*
*/
public Builder sizeGb(Integer sizeGb) {
return sizeGb(Output.of(sizeGb));
}
/**
* @param tags A mapping of tags which should be assigned to the Log Analytics Cluster.
*
* @return builder
*
*/
public Builder tags(@Nullable Output> tags) {
$.tags = tags;
return this;
}
/**
* @param tags A mapping of tags which should be assigned to the Log Analytics Cluster.
*
* @return builder
*
*/
public Builder tags(Map tags) {
return tags(Output.of(tags));
}
public ClusterArgs build() {
if ($.identity == null) {
throw new MissingRequiredPropertyException("ClusterArgs", "identity");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ClusterArgs", "resourceGroupName");
}
return $;
}
}
}