1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. resourcemanager
  5. getAccountDeletionCheckTask
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.resourcemanager.getAccountDeletionCheckTask

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Using this data source can open Resource Manager Account Deletion Check Task.

    For information about Resource Manager Account Deletion Check Task and how to use it, see What is Resource Manager Account Deletion Check Task.

    NOTE: Available in v1.187.0+.

    NOTE: The member deletion feature is in invitational preview. You can contact the service manager of Alibaba Cloud to apply for a trial.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const task = alicloud.resourcemanager.getAccountDeletionCheckTask({
        accountId: "your_account_id",
    });
    export const abandonAbleChecksIds = task.then(task => task.abandonAbleChecks.map(__item => __item.checkId));
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    task = alicloud.resourcemanager.get_account_deletion_check_task(account_id="your_account_id")
    pulumi.export("abandonAbleChecksIds", [__item.check_id for __item in task.abandon_able_checks])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		task, err := resourcemanager.GetAccountDeletionCheckTask(ctx, &resourcemanager.GetAccountDeletionCheckTaskArgs{
    			AccountId: "your_account_id",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		var splat0 []*string
    		for _, val0 := range task.AbandonAbleChecks {
    			splat0 = append(splat0, val0.CheckId)
    		}
    		ctx.Export("abandonAbleChecksIds", splat0)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var task = AliCloud.ResourceManager.GetAccountDeletionCheckTask.Invoke(new()
        {
            AccountId = "your_account_id",
        });
    
        return new Dictionary<string, object?>
        {
            ["abandonAbleChecksIds"] = task.Apply(getAccountDeletionCheckTaskResult => getAccountDeletionCheckTaskResult.AbandonAbleChecks).Select(__item => __item.CheckId).ToList(),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
    import com.pulumi.alicloud.resourcemanager.inputs.GetAccountDeletionCheckTaskArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var task = ResourcemanagerFunctions.getAccountDeletionCheckTask(GetAccountDeletionCheckTaskArgs.builder()
                .accountId("your_account_id")
                .build());
    
            ctx.export("abandonAbleChecksIds", task.applyValue(getAccountDeletionCheckTaskResult -> getAccountDeletionCheckTaskResult.abandonAbleChecks()).stream().map(element -> element.checkId()).collect(toList()));
        }
    }
    
    Coming soon!```
    </pulumi-choosable>
    </div>
    
    
    
    
    ## Using getAccountDeletionCheckTask {#using}
    
    Two invocation forms are available. The direct form accepts plain
    arguments and either blocks until the result value is available, or
    returns a Promise-wrapped result. The output form accepts
    Input-wrapped arguments and returns an Output-wrapped result.
    
    <div>
    <pulumi-chooser type="language" options="typescript,python,go,csharp,java,yaml"></pulumi-chooser>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <div class="highlight"
    ><pre class="chroma"><code class="language-typescript" data-lang="typescript"
    ><span class="k">function </span>getAccountDeletionCheckTask<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetAccountDeletionCheckTaskArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Promise&lt;<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>></span
    ><span class="k">
    function </span>getAccountDeletionCheckTaskOutput<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetAccountDeletionCheckTaskOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Output&lt;<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>></span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="python">
    <div class="highlight"><pre class="chroma"><code class="language-python" data-lang="python"
    ><span class="k">def </span>get_account_deletion_check_task<span class="p">(</span><span class="nx">account_id</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
                                        <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>GetAccountDeletionCheckTaskResult</span
    ><span class="k">
    def </span>get_account_deletion_check_task_output<span class="p">(</span><span class="nx">account_id</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[str]]</span> = None<span class="p">,</span>
                                        <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>Output[GetAccountDeletionCheckTaskResult]</span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="go">
    <div class="highlight"><pre class="chroma"><code class="language-go" data-lang="go"
    ><span class="k">func </span>GetAccountDeletionCheckTask<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">GetAccountDeletionCheckTaskArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) (*<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>, error)</span
    ><span class="k">
    func </span>GetAccountDeletionCheckTaskOutput<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">GetAccountDeletionCheckTaskOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) GetAccountDeletionCheckTaskResultOutput</span
    ></code></pre></div>
    
    &gt; Note: This function is named `GetAccountDeletionCheckTask` in the Go SDK.
    
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <div class="highlight"><pre class="chroma"><code class="language-csharp" data-lang="csharp"><span class="k">public static class </span><span class="nx">GetAccountDeletionCheckTask </span><span class="p">
    {</span><span class="k">
        public static </span>Task&lt;<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>> <span class="p">InvokeAsync(</span><span class="nx">GetAccountDeletionCheckTaskArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="k">
        public static </span>Output&lt;<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>> <span class="p">Invoke(</span><span class="nx">GetAccountDeletionCheckTaskInvokeArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="p">
    }</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="java">
    <div class="highlight"><pre class="chroma"><code class="language-java" data-lang="java"><span class="k">public static CompletableFuture&lt;<span class="nx"><a href="#result">GetAccountDeletionCheckTaskResult</a></span>> </span>getAccountDeletionCheckTask<span class="p">(</span><span class="nx">GetAccountDeletionCheckTaskArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx">InvokeOptions</span><span class="p"> </span><span class="nx">options<span class="p">)</span>
    <span class="c">// Output-based functions aren't available in Java yet</span>
    </code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <div class="highlight"><pre class="chroma"><code class="language-yaml" data-lang="yaml"><span class="k">fn::invoke:</span>
    <span class="k">&nbsp;&nbsp;function:</span> alicloud:resourcemanager/getAccountDeletionCheckTask:getAccountDeletionCheckTask
    <span class="k">&nbsp;&nbsp;arguments:</span>
    <span class="c">&nbsp;&nbsp;&nbsp;&nbsp;# arguments dictionary</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    
    The following arguments are supported:
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="accountid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_csharp" style="color: inherit; text-decoration: inherit;">Account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="accountid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_go" style="color: inherit; text-decoration: inherit;">Account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="accountid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_java" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="accountid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_nodejs" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="account_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#account_id_python" style="color: inherit; text-decoration: inherit;">account_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required property-replacement"
                title="Required">
            <span id="accountid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_yaml" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the member that you want to delete.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## getAccountDeletionCheckTask Result {#result}
    
    The following output properties are available:
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandonablechecks_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandonablechecks_csharp" style="color: inherit; text-decoration: inherit;">Abandon<wbr>Able<wbr>Checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">List&lt;Pulumi.<wbr>Ali<wbr>Cloud.<wbr>Resource<wbr>Manager.<wbr>Outputs.<wbr>Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check&gt;</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="accountid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_csharp" style="color: inherit; text-decoration: inherit;">Account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allowdelete_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allowdelete_csharp" style="color: inherit; text-decoration: inherit;">Allow<wbr>Delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="notallowreasons_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#notallowreasons_csharp" style="color: inherit; text-decoration: inherit;">Not<wbr>Allow<wbr>Reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">List&lt;Pulumi.<wbr>Ali<wbr>Cloud.<wbr>Resource<wbr>Manager.<wbr>Outputs.<wbr>Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason&gt;</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_csharp" style="color: inherit; text-decoration: inherit;">Status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandonablechecks_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandonablechecks_go" style="color: inherit; text-decoration: inherit;">Abandon<wbr>Able<wbr>Checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">[]Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="accountid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_go" style="color: inherit; text-decoration: inherit;">Account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allowdelete_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allowdelete_go" style="color: inherit; text-decoration: inherit;">Allow<wbr>Delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="notallowreasons_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#notallowreasons_go" style="color: inherit; text-decoration: inherit;">Not<wbr>Allow<wbr>Reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">[]Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_go" style="color: inherit; text-decoration: inherit;">Status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandonablechecks_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandonablechecks_java" style="color: inherit; text-decoration: inherit;">abandon<wbr>Able<wbr>Checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">List&lt;Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check&gt;</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="accountid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_java" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allowdelete_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allowdelete_java" style="color: inherit; text-decoration: inherit;">allow<wbr>Delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="notallowreasons_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#notallowreasons_java" style="color: inherit; text-decoration: inherit;">not<wbr>Allow<wbr>Reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">List&lt;Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason&gt;</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_java" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandonablechecks_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandonablechecks_nodejs" style="color: inherit; text-decoration: inherit;">abandon<wbr>Able<wbr>Checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check[]</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="accountid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_nodejs" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allowdelete_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allowdelete_nodejs" style="color: inherit; text-decoration: inherit;">allow<wbr>Delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="notallowreasons_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#notallowreasons_nodejs" style="color: inherit; text-decoration: inherit;">not<wbr>Allow<wbr>Reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason[]</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_nodejs" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandon_able_checks_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandon_able_checks_python" style="color: inherit; text-decoration: inherit;">abandon_<wbr>able_<wbr>checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">Sequence[Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check]</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="account_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#account_id_python" style="color: inherit; text-decoration: inherit;">account_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allow_delete_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allow_delete_python" style="color: inherit; text-decoration: inherit;">allow_<wbr>delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="not_allow_reasons_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#not_allow_reasons_python" style="color: inherit; text-decoration: inherit;">not_<wbr>allow_<wbr>reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">Sequence[Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason]</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_python" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="abandonablechecks_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#abandonablechecks_yaml" style="color: inherit; text-decoration: inherit;">abandon<wbr>Able<wbr>Checks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktaskabandonablecheck">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>The check items that you can choose to ignore for the member deletion. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="accountid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#accountid_yaml" style="color: inherit; text-decoration: inherit;">account<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="allowdelete_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#allowdelete_yaml" style="color: inherit; text-decoration: inherit;">allow<wbr>Delete</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Indicates whether the member can be deleted.</dd><dt class="property-"
                title="">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="notallowreasons_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#notallowreasons_yaml" style="color: inherit; text-decoration: inherit;">not<wbr>Allow<wbr>Reasons</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getaccountdeletionchecktasknotallowreason">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>The reasons why the member cannot be deleted. Each element contains the following attributes:</dd><dt class="property-"
                title="">
            <span id="status_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_yaml" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The status of the check.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## Supporting Types
    
    
    <h4 id="getaccountdeletionchecktaskabandonablecheck">Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Abandon<wbr>Able<wbr>Check</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_csharp" style="color: inherit; text-decoration: inherit;">Check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_csharp" style="color: inherit; text-decoration: inherit;">Check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_csharp" style="color: inherit; text-decoration: inherit;">Description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_go" style="color: inherit; text-decoration: inherit;">Check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_go" style="color: inherit; text-decoration: inherit;">Check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_go" style="color: inherit; text-decoration: inherit;">Description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_java" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_java" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_java" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_nodejs" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_nodejs" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_nodejs" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="check_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#check_id_python" style="color: inherit; text-decoration: inherit;">check_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="check_name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#check_name_python" style="color: inherit; text-decoration: inherit;">check_<wbr>name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_python" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_yaml" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_yaml" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_yaml" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getaccountdeletionchecktasknotallowreason">Get<wbr>Account<wbr>Deletion<wbr>Check<wbr>Task<wbr>Not<wbr>Allow<wbr>Reason</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_csharp" style="color: inherit; text-decoration: inherit;">Check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_csharp" style="color: inherit; text-decoration: inherit;">Check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_csharp" style="color: inherit; text-decoration: inherit;">Description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_go" style="color: inherit; text-decoration: inherit;">Check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_go" style="color: inherit; text-decoration: inherit;">Check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_go" style="color: inherit; text-decoration: inherit;">Description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_java" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_java" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_java" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_nodejs" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_nodejs" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_nodejs" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="check_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#check_id_python" style="color: inherit; text-decoration: inherit;">check_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="check_name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#check_name_python" style="color: inherit; text-decoration: inherit;">check_<wbr>name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_python" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="checkid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkid_yaml" style="color: inherit; text-decoration: inherit;">check<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the check item.</dd><dt class="property-required"
                title="Required">
            <span id="checkname_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#checkname_yaml" style="color: inherit; text-decoration: inherit;">check<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the cloud service to which the check item belongs.</dd><dt class="property-required"
                title="Required">
            <span id="description_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#description_yaml" style="color: inherit; text-decoration: inherit;">description</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The description of the check item.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    
    <h2 id="package-details">Package Details</h2>
    <dl class="package-details">
    	<dt>Repository</dt>
    	<dd><a href="https://github.com/pulumi/pulumi-alicloud">Alibaba Cloud pulumi/pulumi-alicloud</a></dd>
    	<dt>License</dt>
    	<dd>Apache-2.0</dd>
    	<dt>Notes</dt>
    	<dd>This Pulumi package is based on the <a href="https://github.com/aliyun/terraform-provider-alicloud"><code>alicloud</code> Terraform Provider</a>.</dd>
    </dl>
    
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi