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

com.pulumi.alicloud.resourcemanager.inputs.GetAccountDeletionCheckTaskArgs Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
Show newest version
// *** 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.resourcemanager.inputs;

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


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

    public static final GetAccountDeletionCheckTaskArgs Empty = new GetAccountDeletionCheckTaskArgs();

    /**
     * The ID of the member that you want to delete.
     * 
     */
    @Import(name="accountId", required=true)
    private Output accountId;

    /**
     * @return The ID of the member that you want to delete.
     * 
     */
    public Output accountId() {
        return this.accountId;
    }

    private GetAccountDeletionCheckTaskArgs() {}

    private GetAccountDeletionCheckTaskArgs(GetAccountDeletionCheckTaskArgs $) {
        this.accountId = $.accountId;
    }

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

    public static final class Builder {
        private GetAccountDeletionCheckTaskArgs $;

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

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

        /**
         * @param accountId The ID of the member that you want to delete.
         * 
         * @return builder
         * 
         */
        public Builder accountId(Output accountId) {
            $.accountId = accountId;
            return this;
        }

        /**
         * @param accountId The ID of the member that you want to delete.
         * 
         * @return builder
         * 
         */
        public Builder accountId(String accountId) {
            return accountId(Output.of(accountId));
        }

        public GetAccountDeletionCheckTaskArgs build() {
            if ($.accountId == null) {
                throw new MissingRequiredPropertyException("GetAccountDeletionCheckTaskArgs", "accountId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy