All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.monitoring.outputs.GetDataCollectionRuleDataSourceExtension 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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.monitoring.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GetDataCollectionRuleDataSourceExtension {
    /**
     * @return A JSON String which specifies the extension setting.
     * 
     */
    private String extensionJson;
    /**
     * @return The name of the VM extension.
     * 
     */
    private String extensionName;
    /**
     * @return Specifies a list of data sources this extension needs data from. An item should be a name of a supported data source which produces only one stream. Supported data sources type: `performance_counter`, `windows_event_log`,and `syslog`.
     * 
     */
    private List inputDataSources;
    /**
     * @return Specifies the name of the Data Collection Rule.
     * 
     */
    private String name;
    /**
     * @return Specifies a 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 List streams;

    private GetDataCollectionRuleDataSourceExtension() {}
    /**
     * @return A JSON String which specifies the extension setting.
     * 
     */
    public String extensionJson() {
        return this.extensionJson;
    }
    /**
     * @return The name of the VM extension.
     * 
     */
    public String extensionName() {
        return this.extensionName;
    }
    /**
     * @return Specifies a list of data sources this extension needs data from. An item should be a name of a supported data source which produces only one stream. Supported data sources type: `performance_counter`, `windows_event_log`,and `syslog`.
     * 
     */
    public List inputDataSources() {
        return this.inputDataSources;
    }
    /**
     * @return Specifies the name of the Data Collection Rule.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Specifies a 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.
     * 
     */
    public List streams() {
        return this.streams;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GetDataCollectionRuleDataSourceExtension defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String extensionJson;
        private String extensionName;
        private List inputDataSources;
        private String name;
        private List streams;
        public Builder() {}
        public Builder(GetDataCollectionRuleDataSourceExtension defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.extensionJson = defaults.extensionJson;
    	      this.extensionName = defaults.extensionName;
    	      this.inputDataSources = defaults.inputDataSources;
    	      this.name = defaults.name;
    	      this.streams = defaults.streams;
        }

        @CustomType.Setter
        public Builder extensionJson(String extensionJson) {
            if (extensionJson == null) {
              throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourceExtension", "extensionJson");
            }
            this.extensionJson = extensionJson;
            return this;
        }
        @CustomType.Setter
        public Builder extensionName(String extensionName) {
            if (extensionName == null) {
              throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourceExtension", "extensionName");
            }
            this.extensionName = extensionName;
            return this;
        }
        @CustomType.Setter
        public Builder inputDataSources(List inputDataSources) {
            if (inputDataSources == null) {
              throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourceExtension", "inputDataSources");
            }
            this.inputDataSources = inputDataSources;
            return this;
        }
        public Builder inputDataSources(String... inputDataSources) {
            return inputDataSources(List.of(inputDataSources));
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourceExtension", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder streams(List streams) {
            if (streams == null) {
              throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourceExtension", "streams");
            }
            this.streams = streams;
            return this;
        }
        public Builder streams(String... streams) {
            return streams(List.of(streams));
        }
        public GetDataCollectionRuleDataSourceExtension build() {
            final var _resultValue = new GetDataCollectionRuleDataSourceExtension();
            _resultValue.extensionJson = extensionJson;
            _resultValue.extensionName = extensionName;
            _resultValue.inputDataSources = inputDataSources;
            _resultValue.name = name;
            _resultValue.streams = streams;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy