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