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