
com.pulumi.azurenative.insights.inputs.GetDiagnosticSettingPlainArgs 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.insights.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetDiagnosticSettingPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDiagnosticSettingPlainArgs Empty = new GetDiagnosticSettingPlainArgs();
/**
* The name of the diagnostic setting.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return The name of the diagnostic setting.
*
*/
public String name() {
return this.name;
}
/**
* The identifier of the resource.
*
*/
@Import(name="resourceUri", required=true)
private String resourceUri;
/**
* @return The identifier of the resource.
*
*/
public String resourceUri() {
return this.resourceUri;
}
private GetDiagnosticSettingPlainArgs() {}
private GetDiagnosticSettingPlainArgs(GetDiagnosticSettingPlainArgs $) {
this.name = $.name;
this.resourceUri = $.resourceUri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDiagnosticSettingPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDiagnosticSettingPlainArgs $;
public Builder() {
$ = new GetDiagnosticSettingPlainArgs();
}
public Builder(GetDiagnosticSettingPlainArgs defaults) {
$ = new GetDiagnosticSettingPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the diagnostic setting.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param resourceUri The identifier of the resource.
*
* @return builder
*
*/
public Builder resourceUri(String resourceUri) {
$.resourceUri = resourceUri;
return this;
}
public GetDiagnosticSettingPlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetDiagnosticSettingPlainArgs", "name");
}
if ($.resourceUri == null) {
throw new MissingRequiredPropertyException("GetDiagnosticSettingPlainArgs", "resourceUri");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy