com.pulumi.azurenative.monitor.inputs.SchemaMapArgs 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.monitor.inputs;
import com.pulumi.azurenative.monitor.inputs.RecordMapArgs;
import com.pulumi.azurenative.monitor.inputs.ResourceMapArgs;
import com.pulumi.azurenative.monitor.inputs.ScopeMapArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Schema map for azure monitor for logs.
*
*/
public final class SchemaMapArgs extends com.pulumi.resources.ResourceArgs {
public static final SchemaMapArgs Empty = new SchemaMapArgs();
/**
* Record Map.
*
*/
@Import(name="recordMap", required=true)
private Output> recordMap;
/**
* @return Record Map.
*
*/
public Output> recordMap() {
return this.recordMap;
}
/**
* Resource Map captures information about the entity for which telemetry is recorded. For example, metrics exposed by a Kubernetes container can be linked to a resource that specifies the cluster, namespace, pod, and container name.Resource may capture an entire hierarchy of entity identification. It may describe the host in the cloud and specific container or an application running in the process.
*
*/
@Import(name="resourceMap")
private @Nullable Output> resourceMap;
/**
* @return Resource Map captures information about the entity for which telemetry is recorded. For example, metrics exposed by a Kubernetes container can be linked to a resource that specifies the cluster, namespace, pod, and container name.Resource may capture an entire hierarchy of entity identification. It may describe the host in the cloud and specific container or an application running in the process.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy