
com.pulumi.azurenative.iotoperationsdataprocessor.outputs.GetDatasetResult 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.iotoperationsdataprocessor.outputs;
import com.pulumi.azurenative.iotoperationsdataprocessor.outputs.DatasetPropertyKeyResponse;
import com.pulumi.azurenative.iotoperationsdataprocessor.outputs.ExtendedLocationResponse;
import com.pulumi.azurenative.iotoperationsdataprocessor.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetDatasetResult {
/**
* @return Detailed description of the Dataset.
*
*/
private @Nullable String description;
/**
* @return Edge location of the resource.
*
*/
private ExtendedLocationResponse extendedLocation;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return List of keys that can be used for joining on enrich.
*
*/
private @Nullable Map keys;
/**
* @return The geo-location where the resource lives
*
*/
private String location;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Path to the payload in the message. Enrich will add only the payload to the enriched message, other fields will not be kept except for in the indexes.
*
*/
private @Nullable String payload;
/**
* @return The status of the last operation.
*
*/
private String provisioningState;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return Resource tags.
*
*/
private @Nullable Map tags;
/**
* @return Path to an RFC3339 timestamp in the message. If no path is provided, the ingestion time of the record is used for time-based joins.
*
*/
private @Nullable String timestamp;
/**
* @return Time to live for individual records.
*
*/
private @Nullable String ttl;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetDatasetResult() {}
/**
* @return Detailed description of the Dataset.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Edge location of the resource.
*
*/
public ExtendedLocationResponse extendedLocation() {
return this.extendedLocation;
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return List of keys that can be used for joining on enrich.
*
*/
public Map keys() {
return this.keys == null ? Map.of() : this.keys;
}
/**
* @return The geo-location where the resource lives
*
*/
public String location() {
return this.location;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return Path to the payload in the message. Enrich will add only the payload to the enriched message, other fields will not be kept except for in the indexes.
*
*/
public Optional payload() {
return Optional.ofNullable(this.payload);
}
/**
* @return The status of the last operation.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Resource tags.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return Path to an RFC3339 timestamp in the message. If no path is provided, the ingestion time of the record is used for time-based joins.
*
*/
public Optional timestamp() {
return Optional.ofNullable(this.timestamp);
}
/**
* @return Time to live for individual records.
*
*/
public Optional ttl() {
return Optional.ofNullable(this.ttl);
}
/**
* @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(GetDatasetResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private ExtendedLocationResponse extendedLocation;
private String id;
private @Nullable Map keys;
private String location;
private String name;
private @Nullable String payload;
private String provisioningState;
private SystemDataResponse systemData;
private @Nullable Map tags;
private @Nullable String timestamp;
private @Nullable String ttl;
private String type;
public Builder() {}
public Builder(GetDatasetResult defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.extendedLocation = defaults.extendedLocation;
this.id = defaults.id;
this.keys = defaults.keys;
this.location = defaults.location;
this.name = defaults.name;
this.payload = defaults.payload;
this.provisioningState = defaults.provisioningState;
this.systemData = defaults.systemData;
this.tags = defaults.tags;
this.timestamp = defaults.timestamp;
this.ttl = defaults.ttl;
this.type = defaults.type;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder extendedLocation(ExtendedLocationResponse extendedLocation) {
if (extendedLocation == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "extendedLocation");
}
this.extendedLocation = extendedLocation;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder keys(@Nullable Map keys) {
this.keys = keys;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder payload(@Nullable String payload) {
this.payload = payload;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder timestamp(@Nullable String timestamp) {
this.timestamp = timestamp;
return this;
}
@CustomType.Setter
public Builder ttl(@Nullable String ttl) {
this.ttl = ttl;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetDatasetResult", "type");
}
this.type = type;
return this;
}
public GetDatasetResult build() {
final var _resultValue = new GetDatasetResult();
_resultValue.description = description;
_resultValue.extendedLocation = extendedLocation;
_resultValue.id = id;
_resultValue.keys = keys;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.payload = payload;
_resultValue.provisioningState = provisioningState;
_resultValue.systemData = systemData;
_resultValue.tags = tags;
_resultValue.timestamp = timestamp;
_resultValue.ttl = ttl;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy