All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.networksecurity.v1beta1.inputs.GetOrganizationAddressGroupArgs 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.googlenative.networksecurity.v1beta1.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;


public final class GetOrganizationAddressGroupArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetOrganizationAddressGroupArgs Empty = new GetOrganizationAddressGroupArgs();

    @Import(name="addressGroupId", required=true)
    private Output addressGroupId;

    public Output addressGroupId() {
        return this.addressGroupId;
    }

    @Import(name="location", required=true)
    private Output location;

    public Output location() {
        return this.location;
    }

    @Import(name="organizationId", required=true)
    private Output organizationId;

    public Output organizationId() {
        return this.organizationId;
    }

    private GetOrganizationAddressGroupArgs() {}

    private GetOrganizationAddressGroupArgs(GetOrganizationAddressGroupArgs $) {
        this.addressGroupId = $.addressGroupId;
        this.location = $.location;
        this.organizationId = $.organizationId;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetOrganizationAddressGroupArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetOrganizationAddressGroupArgs $;

        public Builder() {
            $ = new GetOrganizationAddressGroupArgs();
        }

        public Builder(GetOrganizationAddressGroupArgs defaults) {
            $ = new GetOrganizationAddressGroupArgs(Objects.requireNonNull(defaults));
        }

        public Builder addressGroupId(Output addressGroupId) {
            $.addressGroupId = addressGroupId;
            return this;
        }

        public Builder addressGroupId(String addressGroupId) {
            return addressGroupId(Output.of(addressGroupId));
        }

        public Builder location(Output location) {
            $.location = location;
            return this;
        }

        public Builder location(String location) {
            return location(Output.of(location));
        }

        public Builder organizationId(Output organizationId) {
            $.organizationId = organizationId;
            return this;
        }

        public Builder organizationId(String organizationId) {
            return organizationId(Output.of(organizationId));
        }

        public GetOrganizationAddressGroupArgs build() {
            $.addressGroupId = Objects.requireNonNull($.addressGroupId, "expected parameter 'addressGroupId' to be non-null");
            $.location = Objects.requireNonNull($.location, "expected parameter 'location' to be non-null");
            $.organizationId = Objects.requireNonNull($.organizationId, "expected parameter 'organizationId' to be non-null");
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy