meraki.networks.PiiRequestsDelete
Explore with Pulumi AI
~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = new meraki.networks.PiiRequestsDelete("example", {
networkId: "string",
requestId: "string",
});
export const merakiNetworksPiiRequestsDeleteExample = example;
import pulumi
import pulumi_meraki as meraki
example = meraki.networks.PiiRequestsDelete("example",
network_id="string",
request_id="string")
pulumi.export("merakiNetworksPiiRequestsDeleteExample", example)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := networks.NewPiiRequestsDelete(ctx, "example", &networks.PiiRequestsDeleteArgs{
NetworkId: pulumi.String("string"),
RequestId: pulumi.String("string"),
})
if err != nil {
return err
}
ctx.Export("merakiNetworksPiiRequestsDeleteExample", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = new Meraki.Networks.PiiRequestsDelete("example", new()
{
NetworkId = "string",
RequestId = "string",
});
return new Dictionary<string, object?>
{
["merakiNetworksPiiRequestsDeleteExample"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.PiiRequestsDelete;
import com.pulumi.meraki.networks.PiiRequestsDeleteArgs;
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 example = new PiiRequestsDelete("example", PiiRequestsDeleteArgs.builder()
.networkId("string")
.requestId("string")
.build());
ctx.export("merakiNetworksPiiRequestsDeleteExample", example);
}
}
resources:
example:
type: meraki:networks:PiiRequestsDelete
properties:
networkId: string
requestId: string
outputs:
merakiNetworksPiiRequestsDeleteExample: ${example}
Create PiiRequestsDelete Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PiiRequestsDelete(name: string, args: PiiRequestsDeleteArgs, opts?: CustomResourceOptions);
@overload
def PiiRequestsDelete(resource_name: str,
args: PiiRequestsDeleteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PiiRequestsDelete(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
request_id: Optional[str] = None)
func NewPiiRequestsDelete(ctx *Context, name string, args PiiRequestsDeleteArgs, opts ...ResourceOption) (*PiiRequestsDelete, error)
public PiiRequestsDelete(string name, PiiRequestsDeleteArgs args, CustomResourceOptions? opts = null)
public PiiRequestsDelete(String name, PiiRequestsDeleteArgs args)
public PiiRequestsDelete(String name, PiiRequestsDeleteArgs args, CustomResourceOptions options)
type: meraki:networks:PiiRequestsDelete
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 PiiRequestsDeleteArgs
- 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 PiiRequestsDeleteArgs
- 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 PiiRequestsDeleteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PiiRequestsDeleteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PiiRequestsDeleteArgs
- 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 piiRequestsDeleteResource = new Meraki.Networks.PiiRequestsDelete("piiRequestsDeleteResource", new()
{
NetworkId = "string",
RequestId = "string",
});
example, err := networks.NewPiiRequestsDelete(ctx, "piiRequestsDeleteResource", &networks.PiiRequestsDeleteArgs{
NetworkId: pulumi.String("string"),
RequestId: pulumi.String("string"),
})
var piiRequestsDeleteResource = new PiiRequestsDelete("piiRequestsDeleteResource", PiiRequestsDeleteArgs.builder()
.networkId("string")
.requestId("string")
.build());
pii_requests_delete_resource = meraki.networks.PiiRequestsDelete("piiRequestsDeleteResource",
network_id="string",
request_id="string")
const piiRequestsDeleteResource = new meraki.networks.PiiRequestsDelete("piiRequestsDeleteResource", {
networkId: "string",
requestId: "string",
});
type: meraki:networks:PiiRequestsDelete
properties:
networkId: string
requestId: string
PiiRequestsDelete 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 PiiRequestsDelete resource accepts the following input properties:
- network_
id str - networkId path parameter. Network ID
- request_
id str - requestId path parameter. Request ID
Outputs
All input properties are implicitly available as output properties. Additionally, the PiiRequestsDelete 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 PiiRequestsDelete Resource
Get an existing PiiRequestsDelete 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?: PiiRequestsDeleteState, opts?: CustomResourceOptions): PiiRequestsDelete
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
request_id: Optional[str] = None) -> PiiRequestsDelete
func GetPiiRequestsDelete(ctx *Context, name string, id IDInput, state *PiiRequestsDeleteState, opts ...ResourceOption) (*PiiRequestsDelete, error)
public static PiiRequestsDelete Get(string name, Input<string> id, PiiRequestsDeleteState? state, CustomResourceOptions? opts = null)
public static PiiRequestsDelete get(String name, Output<String> id, PiiRequestsDeleteState 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.
- network_
id str - networkId path parameter. Network ID
- request_
id str - requestId path parameter. Request ID
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.