1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. AppConnectorAssistantSchedule
Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler

zpa.AppConnectorAssistantSchedule

Explore with Pulumi AI

zpa logo
Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler

    Use the zpa_app_connector_assistant_schedule resource sets the scheduled frequency at which the disconnected App Connectors are eligible for deletion. The supported value for frequency is days. The frequencyInterval field is the number of days after an App Connector disconnects for it to become eligible for deletion. The minimum supported value for frequencyInterval is 5.

    NOTE - When enabling the Assistant Schedule for the first time, you must provide the customer_id information. If you authenticated using environment variables and used ZPA_CUSTOMER_ID environment variable, you don’t have to define the customer_id attribute in the HCL configuration, and the provider will automatically use the value from the environment variable ZPA_CUSTOMER_ID

    Example Usage

    Defined Customer ID Value

    import * as pulumi from "@pulumi/pulumi";
    import * as zpa from "@bdzscaler/pulumi-zpa";
    
    const _this = new zpa.AppConnectorAssistantSchedule("this", {
        customerId: "123456789101112",
        deleteDisabled: true,
        enabled: true,
        frequency: "days",
        frequencyInterval: "5",
    });
    
    import pulumi
    import zscaler_pulumi_zpa as zpa
    
    this = zpa.AppConnectorAssistantSchedule("this",
        customer_id="123456789101112",
        delete_disabled=True,
        enabled=True,
        frequency="days",
        frequency_interval="5")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zpa.NewAppConnectorAssistantSchedule(ctx, "this", &zpa.AppConnectorAssistantScheduleArgs{
    			CustomerId:        pulumi.String("123456789101112"),
    			DeleteDisabled:    pulumi.Bool(true),
    			Enabled:           pulumi.Bool(true),
    			Frequency:         pulumi.String("days"),
    			FrequencyInterval: pulumi.String("5"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zpa = Zscaler.Zpa;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Zpa.AppConnectorAssistantSchedule("this", new()
        {
            CustomerId = "123456789101112",
            DeleteDisabled = true,
            Enabled = true,
            Frequency = "days",
            FrequencyInterval = "5",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zpa.AppConnectorAssistantSchedule;
    import com.pulumi.zpa.AppConnectorAssistantScheduleArgs;
    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) {
            var this_ = new AppConnectorAssistantSchedule("this", AppConnectorAssistantScheduleArgs.builder()
                .customerId("123456789101112")
                .deleteDisabled(true)
                .enabled(true)
                .frequency("days")
                .frequencyInterval("5")
                .build());
    
        }
    }
    
    resources:
      this:
        type: zpa:AppConnectorAssistantSchedule
        properties:
          customerId: '123456789101112'
          deleteDisabled: true
          enabled: true
          frequency: days
          frequencyInterval: '5'
    

    Customer ID Via Environment Variable

    import * as pulumi from "@pulumi/pulumi";
    import * as zpa from "@bdzscaler/pulumi-zpa";
    
    const _this = new zpa.AppConnectorAssistantSchedule("this", {
        deleteDisabled: true,
        enabled: true,
        frequency: "days",
        frequencyInterval: "5",
    });
    
    import pulumi
    import zscaler_pulumi_zpa as zpa
    
    this = zpa.AppConnectorAssistantSchedule("this",
        delete_disabled=True,
        enabled=True,
        frequency="days",
        frequency_interval="5")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zpa.NewAppConnectorAssistantSchedule(ctx, "this", &zpa.AppConnectorAssistantScheduleArgs{
    			DeleteDisabled:    pulumi.Bool(true),
    			Enabled:           pulumi.Bool(true),
    			Frequency:         pulumi.String("days"),
    			FrequencyInterval: pulumi.String("5"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zpa = Zscaler.Zpa;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Zpa.AppConnectorAssistantSchedule("this", new()
        {
            DeleteDisabled = true,
            Enabled = true,
            Frequency = "days",
            FrequencyInterval = "5",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zpa.AppConnectorAssistantSchedule;
    import com.pulumi.zpa.AppConnectorAssistantScheduleArgs;
    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) {
            var this_ = new AppConnectorAssistantSchedule("this", AppConnectorAssistantScheduleArgs.builder()
                .deleteDisabled(true)
                .enabled(true)
                .frequency("days")
                .frequencyInterval("5")
                .build());
    
        }
    }
    
    resources:
      this:
        type: zpa:AppConnectorAssistantSchedule
        properties:
          deleteDisabled: true
          enabled: true
          frequency: days
          frequencyInterval: '5'
    

    Create AppConnectorAssistantSchedule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AppConnectorAssistantSchedule(name: string, args?: AppConnectorAssistantScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def AppConnectorAssistantSchedule(resource_name: str,
                                      args: Optional[AppConnectorAssistantScheduleArgs] = None,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppConnectorAssistantSchedule(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      customer_id: Optional[str] = None,
                                      delete_disabled: Optional[bool] = None,
                                      enabled: Optional[bool] = None,
                                      frequency: Optional[str] = None,
                                      frequency_interval: Optional[str] = None)
    func NewAppConnectorAssistantSchedule(ctx *Context, name string, args *AppConnectorAssistantScheduleArgs, opts ...ResourceOption) (*AppConnectorAssistantSchedule, error)
    public AppConnectorAssistantSchedule(string name, AppConnectorAssistantScheduleArgs? args = null, CustomResourceOptions? opts = null)
    public AppConnectorAssistantSchedule(String name, AppConnectorAssistantScheduleArgs args)
    public AppConnectorAssistantSchedule(String name, AppConnectorAssistantScheduleArgs args, CustomResourceOptions options)
    
    type: zpa:AppConnectorAssistantSchedule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AppConnectorAssistantScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AppConnectorAssistantScheduleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AppConnectorAssistantScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppConnectorAssistantScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppConnectorAssistantScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var appConnectorAssistantScheduleResource = new Zpa.AppConnectorAssistantSchedule("appConnectorAssistantScheduleResource", new()
    {
        CustomerId = "string",
        DeleteDisabled = false,
        Enabled = false,
        Frequency = "string",
        FrequencyInterval = "string",
    });
    
    example, err := zpa.NewAppConnectorAssistantSchedule(ctx, "appConnectorAssistantScheduleResource", &zpa.AppConnectorAssistantScheduleArgs{
    	CustomerId:        pulumi.String("string"),
    	DeleteDisabled:    pulumi.Bool(false),
    	Enabled:           pulumi.Bool(false),
    	Frequency:         pulumi.String("string"),
    	FrequencyInterval: pulumi.String("string"),
    })
    
    var appConnectorAssistantScheduleResource = new AppConnectorAssistantSchedule("appConnectorAssistantScheduleResource", AppConnectorAssistantScheduleArgs.builder()
        .customerId("string")
        .deleteDisabled(false)
        .enabled(false)
        .frequency("string")
        .frequencyInterval("string")
        .build());
    
    app_connector_assistant_schedule_resource = zpa.AppConnectorAssistantSchedule("appConnectorAssistantScheduleResource",
        customer_id="string",
        delete_disabled=False,
        enabled=False,
        frequency="string",
        frequency_interval="string")
    
    const appConnectorAssistantScheduleResource = new zpa.AppConnectorAssistantSchedule("appConnectorAssistantScheduleResource", {
        customerId: "string",
        deleteDisabled: false,
        enabled: false,
        frequency: "string",
        frequencyInterval: "string",
    });
    
    type: zpa:AppConnectorAssistantSchedule
    properties:
        customerId: string
        deleteDisabled: false
        enabled: false
        frequency: string
        frequencyInterval: string
    

    AppConnectorAssistantSchedule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AppConnectorAssistantSchedule resource accepts the following input properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppConnectorAssistantSchedule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AppConnectorAssistantSchedule Resource

    Get an existing AppConnectorAssistantSchedule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AppConnectorAssistantScheduleState, opts?: CustomResourceOptions): AppConnectorAssistantSchedule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            customer_id: Optional[str] = None,
            delete_disabled: Optional[bool] = None,
            enabled: Optional[bool] = None,
            frequency: Optional[str] = None,
            frequency_interval: Optional[str] = None) -> AppConnectorAssistantSchedule
    func GetAppConnectorAssistantSchedule(ctx *Context, name string, id IDInput, state *AppConnectorAssistantScheduleState, opts ...ResourceOption) (*AppConnectorAssistantSchedule, error)
    public static AppConnectorAssistantSchedule Get(string name, Input<string> id, AppConnectorAssistantScheduleState? state, CustomResourceOptions? opts = null)
    public static AppConnectorAssistantSchedule get(String name, Output<String> id, AppConnectorAssistantScheduleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:

    Import

    Import is not currently supported for this resource.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    zpa zscaler/pulumi-zpa
    License
    MIT
    Notes
    This Pulumi package is based on the zpa Terraform Provider.
    zpa logo
    Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler