
com.pulumi.azurenative.insights.outputs.ExtensionDataSourceResponse Maven / Gradle / Ivy
// *** 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.insights.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ExtensionDataSourceResponse {
/**
* @return The name of the VM extension.
*
*/
private String extensionName;
/**
* @return The extension settings. The format is specific for particular extension.
*
*/
private @Nullable Object extensionSettings;
/**
* @return The list of data sources this extension needs data from.
*
*/
private @Nullable List inputDataSources;
/**
* @return A friendly name for the data source.
* This name should be unique across all data sources (regardless of type) within the data collection rule.
*
*/
private @Nullable String name;
/**
* @return List of streams that this data source will be sent to.
* A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
*
*/
private @Nullable List streams;
private ExtensionDataSourceResponse() {}
/**
* @return The name of the VM extension.
*
*/
public String extensionName() {
return this.extensionName;
}
/**
* @return The extension settings. The format is specific for particular extension.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy