com.pulumi.azure.management.outputs.GroupPolicyAssignmentOverrideSelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.management.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GroupPolicyAssignmentOverrideSelector {
private @Nullable List ins;
/**
* @return Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
*
*/
private @Nullable String kind;
private @Nullable List notIns;
private GroupPolicyAssignmentOverrideSelector() {}
public List ins() {
return this.ins == null ? List.of() : this.ins;
}
/**
* @return Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
public List notIns() {
return this.notIns == null ? List.of() : this.notIns;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GroupPolicyAssignmentOverrideSelector defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List ins;
private @Nullable String kind;
private @Nullable List notIns;
public Builder() {}
public Builder(GroupPolicyAssignmentOverrideSelector defaults) {
Objects.requireNonNull(defaults);
this.ins = defaults.ins;
this.kind = defaults.kind;
this.notIns = defaults.notIns;
}
@CustomType.Setter
public Builder ins(@Nullable List ins) {
this.ins = ins;
return this;
}
public Builder ins(String... ins) {
return ins(List.of(ins));
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder notIns(@Nullable List notIns) {
this.notIns = notIns;
return this;
}
public Builder notIns(String... notIns) {
return notIns(List.of(notIns));
}
public GroupPolicyAssignmentOverrideSelector build() {
final var _resultValue = new GroupPolicyAssignmentOverrideSelector();
_resultValue.ins = ins;
_resultValue.kind = kind;
_resultValue.notIns = notIns;
return _resultValue;
}
}
}