com.pulumi.alicloud.nlb.inputs.GetSecurityPoliciesPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alicloud Show documentation
Show all versions of alicloud Show documentation
A Pulumi package for creating and managing AliCloud 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.alicloud.nlb.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetSecurityPoliciesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSecurityPoliciesPlainArgs Empty = new GetSecurityPoliciesPlainArgs();
/**
* A list of Security Policy IDs.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of Security Policy IDs.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* A regex string to filter results by Security Policy name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by Security Policy name.
*
*/
public Optional nameRegex() {
return Optional.ofNullable(this.nameRegex);
}
/**
* File name where to save data source results (after running `pulumi preview`).
*
*/
@Import(name="outputFile")
private @Nullable String outputFile;
/**
* @return File name where to save data source results (after running `pulumi preview`).
*
*/
public Optional outputFile() {
return Optional.ofNullable(this.outputFile);
}
/**
* The ID of the resource group.
*
*/
@Import(name="resourceGroupId")
private @Nullable String resourceGroupId;
/**
* @return The ID of the resource group.
*
*/
public Optional resourceGroupId() {
return Optional.ofNullable(this.resourceGroupId);
}
/**
* The names of the TLS security policies.
*
*/
@Import(name="securityPolicyNames")
private @Nullable List securityPolicyNames;
/**
* @return The names of the TLS security policies.
*
*/
public Optional> securityPolicyNames() {
return Optional.ofNullable(this.securityPolicyNames);
}
/**
* The status of the resource. Valid values: `Available`, `Configuring`.
*
*/
@Import(name="status")
private @Nullable String status;
/**
* @return The status of the resource. Valid values: `Available`, `Configuring`.
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
@Import(name="tags")
private @Nullable Map tags;
public Optional