
com.pulumi.azurenative.securityinsights.inputs.GetWatchlistItemPlainArgs 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.securityinsights.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetWatchlistItemPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetWatchlistItemPlainArgs Empty = new GetWatchlistItemPlainArgs();
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The watchlist alias
*
*/
@Import(name="watchlistAlias", required=true)
private String watchlistAlias;
/**
* @return The watchlist alias
*
*/
public String watchlistAlias() {
return this.watchlistAlias;
}
/**
* The watchlist item id (GUID)
*
*/
@Import(name="watchlistItemId", required=true)
private String watchlistItemId;
/**
* @return The watchlist item id (GUID)
*
*/
public String watchlistItemId() {
return this.watchlistItemId;
}
/**
* The name of the workspace.
*
*/
@Import(name="workspaceName", required=true)
private String workspaceName;
/**
* @return The name of the workspace.
*
*/
public String workspaceName() {
return this.workspaceName;
}
private GetWatchlistItemPlainArgs() {}
private GetWatchlistItemPlainArgs(GetWatchlistItemPlainArgs $) {
this.resourceGroupName = $.resourceGroupName;
this.watchlistAlias = $.watchlistAlias;
this.watchlistItemId = $.watchlistItemId;
this.workspaceName = $.workspaceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWatchlistItemPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetWatchlistItemPlainArgs $;
public Builder() {
$ = new GetWatchlistItemPlainArgs();
}
public Builder(GetWatchlistItemPlainArgs defaults) {
$ = new GetWatchlistItemPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param watchlistAlias The watchlist alias
*
* @return builder
*
*/
public Builder watchlistAlias(String watchlistAlias) {
$.watchlistAlias = watchlistAlias;
return this;
}
/**
* @param watchlistItemId The watchlist item id (GUID)
*
* @return builder
*
*/
public Builder watchlistItemId(String watchlistItemId) {
$.watchlistItemId = watchlistItemId;
return this;
}
/**
* @param workspaceName The name of the workspace.
*
* @return builder
*
*/
public Builder workspaceName(String workspaceName) {
$.workspaceName = workspaceName;
return this;
}
public GetWatchlistItemPlainArgs build() {
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetWatchlistItemPlainArgs", "resourceGroupName");
}
if ($.watchlistAlias == null) {
throw new MissingRequiredPropertyException("GetWatchlistItemPlainArgs", "watchlistAlias");
}
if ($.watchlistItemId == null) {
throw new MissingRequiredPropertyException("GetWatchlistItemPlainArgs", "watchlistItemId");
}
if ($.workspaceName == null) {
throw new MissingRequiredPropertyException("GetWatchlistItemPlainArgs", "workspaceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy