published on Friday, Mar 13, 2026 by Zscaler
published on Friday, Mar 13, 2026 by Zscaler
The zia_activation resource triggers the activation of ZIA configuration changes in the Zscaler Internet Access (ZIA) cloud service. After making configuration changes to ZIA resources, this resource can be used to activate and push those changes to the ZIA cloud. Delete is a no-op.
For more information, see the ZIA Configuration Activation documentation.
Example Usage
Basic Configuration Activation
Example coming soon!
Example coming soon!
Example coming soon!
import * as zia from "@bdzscaler/pulumi-zia";
const example = new zia.Activation("example", {
status: "ACTIVE",
});
import zscaler_pulumi_zia as zia
example = zia.Activation("example",
status="ACTIVE",
)
resources:
example:
type: zia:Activation
properties:
status: ACTIVE
Create Activation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Activation(name: string, args: ActivationArgs, opts?: CustomResourceOptions);@overload
def Activation(resource_name: str,
args: ActivationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Activation(resource_name: str,
opts: Optional[ResourceOptions] = None,
status: Optional[str] = None)func NewActivation(ctx *Context, name string, args ActivationArgs, opts ...ResourceOption) (*Activation, error)public Activation(string name, ActivationArgs args, CustomResourceOptions? opts = null)
public Activation(String name, ActivationArgs args)
public Activation(String name, ActivationArgs args, CustomResourceOptions options)
type: zia:Activation
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 ActivationArgs
- 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 ActivationArgs
- 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 ActivationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActivationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActivationArgs
- 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 activationResource = new Zia.Activation("activationResource", new()
{
Status = "string",
});
example, err := zia.NewActivation(ctx, "activationResource", &zia.ActivationArgs{
Status: pulumi.String("string"),
})
var activationResource = new Activation("activationResource", ActivationArgs.builder()
.status("string")
.build());
activation_resource = zia.Activation("activationResource", status="string")
const activationResource = new zia.Activation("activationResource", {status: "string"});
type: zia:Activation
properties:
status: string
Activation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Activation resource accepts the following input properties:
- Status string
- The activation status. Must be
ACTIVEto trigger configuration activation.
- Status string
- The activation status. Must be
ACTIVEto trigger configuration activation.
- status String
- The activation status. Must be
ACTIVEto trigger configuration activation.
- status string
- The activation status. Must be
ACTIVEto trigger configuration activation.
- status str
- The activation status. Must be
ACTIVEto trigger configuration activation.
- status String
- The activation status. Must be
ACTIVEto trigger configuration activation.
Outputs
All input properties are implicitly available as output properties. Additionally, the Activation resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the activation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the activation.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the activation.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Id string - The internal resource identifier for the activation.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
id str - The internal resource identifier for the activation.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the activation.
Import
This is a singleton resource and does not support traditional import. It is automatically managed by the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
published on Friday, Mar 13, 2026 by Zscaler
