1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. CameraCustomAnalyticsArtifacts
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

meraki.organizations.CameraCustomAnalyticsArtifacts

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = new meraki.organizations.CameraCustomAnalyticsArtifacts("example", {
        name: "example",
        organizationId: "string",
    });
    export const merakiOrganizationsCameraCustomAnalyticsArtifactsExample = example;
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.CameraCustomAnalyticsArtifacts("example",
        name="example",
        organization_id="string")
    pulumi.export("merakiOrganizationsCameraCustomAnalyticsArtifactsExample", example)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := organizations.NewCameraCustomAnalyticsArtifacts(ctx, "example", &organizations.CameraCustomAnalyticsArtifactsArgs{
    			Name:           pulumi.String("example"),
    			OrganizationId: pulumi.String("string"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsCameraCustomAnalyticsArtifactsExample", example)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Meraki.Organizations.CameraCustomAnalyticsArtifacts("example", new()
        {
            Name = "example",
            OrganizationId = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsCameraCustomAnalyticsArtifactsExample"] = example,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.CameraCustomAnalyticsArtifacts;
    import com.pulumi.meraki.organizations.CameraCustomAnalyticsArtifactsArgs;
    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 CameraCustomAnalyticsArtifacts("example", CameraCustomAnalyticsArtifactsArgs.builder()
                .name("example")
                .organizationId("string")
                .build());
    
            ctx.export("merakiOrganizationsCameraCustomAnalyticsArtifactsExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:organizations:CameraCustomAnalyticsArtifacts
        properties:
          name: example
          organizationId: string
    outputs:
      merakiOrganizationsCameraCustomAnalyticsArtifactsExample: ${example}
    

    Create CameraCustomAnalyticsArtifacts Resource

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

    Constructor syntax

    new CameraCustomAnalyticsArtifacts(name: string, args: CameraCustomAnalyticsArtifactsArgs, opts?: CustomResourceOptions);
    @overload
    def CameraCustomAnalyticsArtifacts(resource_name: str,
                                       args: CameraCustomAnalyticsArtifactsArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def CameraCustomAnalyticsArtifacts(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       organization_id: Optional[str] = None,
                                       artifact_id: Optional[str] = None,
                                       name: Optional[str] = None)
    func NewCameraCustomAnalyticsArtifacts(ctx *Context, name string, args CameraCustomAnalyticsArtifactsArgs, opts ...ResourceOption) (*CameraCustomAnalyticsArtifacts, error)
    public CameraCustomAnalyticsArtifacts(string name, CameraCustomAnalyticsArtifactsArgs args, CustomResourceOptions? opts = null)
    public CameraCustomAnalyticsArtifacts(String name, CameraCustomAnalyticsArtifactsArgs args)
    public CameraCustomAnalyticsArtifacts(String name, CameraCustomAnalyticsArtifactsArgs args, CustomResourceOptions options)
    
    type: meraki:organizations:CameraCustomAnalyticsArtifacts
    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 CameraCustomAnalyticsArtifactsArgs
    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 CameraCustomAnalyticsArtifactsArgs
    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 CameraCustomAnalyticsArtifactsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CameraCustomAnalyticsArtifactsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CameraCustomAnalyticsArtifactsArgs
    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 cameraCustomAnalyticsArtifactsResource = new Meraki.Organizations.CameraCustomAnalyticsArtifacts("cameraCustomAnalyticsArtifactsResource", new()
    {
        OrganizationId = "string",
        ArtifactId = "string",
        Name = "string",
    });
    
    example, err := organizations.NewCameraCustomAnalyticsArtifacts(ctx, "cameraCustomAnalyticsArtifactsResource", &organizations.CameraCustomAnalyticsArtifactsArgs{
    	OrganizationId: pulumi.String("string"),
    	ArtifactId:     pulumi.String("string"),
    	Name:           pulumi.String("string"),
    })
    
    var cameraCustomAnalyticsArtifactsResource = new CameraCustomAnalyticsArtifacts("cameraCustomAnalyticsArtifactsResource", CameraCustomAnalyticsArtifactsArgs.builder()
        .organizationId("string")
        .artifactId("string")
        .name("string")
        .build());
    
    camera_custom_analytics_artifacts_resource = meraki.organizations.CameraCustomAnalyticsArtifacts("cameraCustomAnalyticsArtifactsResource",
        organization_id="string",
        artifact_id="string",
        name="string")
    
    const cameraCustomAnalyticsArtifactsResource = new meraki.organizations.CameraCustomAnalyticsArtifacts("cameraCustomAnalyticsArtifactsResource", {
        organizationId: "string",
        artifactId: "string",
        name: "string",
    });
    
    type: meraki:organizations:CameraCustomAnalyticsArtifacts
    properties:
        artifactId: string
        name: string
        organizationId: string
    

    CameraCustomAnalyticsArtifacts 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 CameraCustomAnalyticsArtifacts resource accepts the following input properties:

    OrganizationId string
    Organization ID
    ArtifactId string
    Custom analytics artifact ID
    Name string
    Custom analytics artifact name
    OrganizationId string
    Organization ID
    ArtifactId string
    Custom analytics artifact ID
    Name string
    Custom analytics artifact name
    organizationId String
    Organization ID
    artifactId String
    Custom analytics artifact ID
    name String
    Custom analytics artifact name
    organizationId string
    Organization ID
    artifactId string
    Custom analytics artifact ID
    name string
    Custom analytics artifact name
    organization_id str
    Organization ID
    artifact_id str
    Custom analytics artifact ID
    name str
    Custom analytics artifact name
    organizationId String
    Organization ID
    artifactId String
    Custom analytics artifact ID
    name String
    Custom analytics artifact name

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    Id string
    The provider-assigned unique ID for this managed resource.
    Status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    id String
    The provider-assigned unique ID for this managed resource.
    status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    id string
    The provider-assigned unique ID for this managed resource.
    status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    id str
    The provider-assigned unique ID for this managed resource.
    status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    id String
    The provider-assigned unique ID for this managed resource.
    status Property Map
    Custom analytics artifact status

    Look up Existing CameraCustomAnalyticsArtifacts Resource

    Get an existing CameraCustomAnalyticsArtifacts 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?: CameraCustomAnalyticsArtifactsState, opts?: CustomResourceOptions): CameraCustomAnalyticsArtifacts
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            artifact_id: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            status: Optional[CameraCustomAnalyticsArtifactsStatusArgs] = None) -> CameraCustomAnalyticsArtifacts
    func GetCameraCustomAnalyticsArtifacts(ctx *Context, name string, id IDInput, state *CameraCustomAnalyticsArtifactsState, opts ...ResourceOption) (*CameraCustomAnalyticsArtifacts, error)
    public static CameraCustomAnalyticsArtifacts Get(string name, Input<string> id, CameraCustomAnalyticsArtifactsState? state, CustomResourceOptions? opts = null)
    public static CameraCustomAnalyticsArtifacts get(String name, Output<String> id, CameraCustomAnalyticsArtifactsState 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:
    ArtifactId string
    Custom analytics artifact ID
    Name string
    Custom analytics artifact name
    OrganizationId string
    Organization ID
    Status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    ArtifactId string
    Custom analytics artifact ID
    Name string
    Custom analytics artifact name
    OrganizationId string
    Organization ID
    Status CameraCustomAnalyticsArtifactsStatusArgs
    Custom analytics artifact status
    artifactId String
    Custom analytics artifact ID
    name String
    Custom analytics artifact name
    organizationId String
    Organization ID
    status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    artifactId string
    Custom analytics artifact ID
    name string
    Custom analytics artifact name
    organizationId string
    Organization ID
    status CameraCustomAnalyticsArtifactsStatus
    Custom analytics artifact status
    artifact_id str
    Custom analytics artifact ID
    name str
    Custom analytics artifact name
    organization_id str
    Organization ID
    status CameraCustomAnalyticsArtifactsStatusArgs
    Custom analytics artifact status
    artifactId String
    Custom analytics artifact ID
    name String
    Custom analytics artifact name
    organizationId String
    Organization ID
    status Property Map
    Custom analytics artifact status

    Supporting Types

    CameraCustomAnalyticsArtifactsStatus, CameraCustomAnalyticsArtifactsStatusArgs

    Message string
    Status message
    Type string
    Status type
    Message string
    Status message
    Type string
    Status type
    message String
    Status message
    type String
    Status type
    message string
    Status message
    type string
    Status type
    message str
    Status message
    type str
    Status type
    message String
    Status message
    type String
    Status type

    Import

    $ pulumi import meraki:organizations/cameraCustomAnalyticsArtifacts:CameraCustomAnalyticsArtifacts example "artifact_id,organization_id"
    

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

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi