1. Packages
  2. Strata Cloud Manager (Palo Alto SCM)
  3. API Docs
  4. OcspResponder
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

scm.OcspResponder

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.OcspResponder("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.OcspResponder("example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scm.NewOcspResponder(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Scm.OcspResponder("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.OcspResponder;
    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 OcspResponder("example");
    
        }
    }
    
    resources:
      example:
        type: scm:OcspResponder
    

    Create OcspResponder Resource

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

    Constructor syntax

    new OcspResponder(name: string, args: OcspResponderArgs, opts?: CustomResourceOptions);
    @overload
    def OcspResponder(resource_name: str,
                      args: OcspResponderArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def OcspResponder(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      host_name: Optional[str] = None,
                      device: Optional[str] = None,
                      folder: Optional[str] = None,
                      name: Optional[str] = None,
                      snippet: Optional[str] = None)
    func NewOcspResponder(ctx *Context, name string, args OcspResponderArgs, opts ...ResourceOption) (*OcspResponder, error)
    public OcspResponder(string name, OcspResponderArgs args, CustomResourceOptions? opts = null)
    public OcspResponder(String name, OcspResponderArgs args)
    public OcspResponder(String name, OcspResponderArgs args, CustomResourceOptions options)
    
    type: scm:OcspResponder
    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 OcspResponderArgs
    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 OcspResponderArgs
    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 OcspResponderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OcspResponderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OcspResponderArgs
    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 ocspResponderResource = new Scm.OcspResponder("ocspResponderResource", new()
    {
        HostName = "string",
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewOcspResponder(ctx, "ocspResponderResource", &scm.OcspResponderArgs{
    	HostName: pulumi.String("string"),
    	Device:   pulumi.String("string"),
    	Folder:   pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Snippet:  pulumi.String("string"),
    })
    
    var ocspResponderResource = new OcspResponder("ocspResponderResource", OcspResponderArgs.builder()
        .hostName("string")
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .build());
    
    ocsp_responder_resource = scm.OcspResponder("ocspResponderResource",
        host_name="string",
        device="string",
        folder="string",
        name="string",
        snippet="string")
    
    const ocspResponderResource = new scm.OcspResponder("ocspResponderResource", {
        hostName: "string",
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
    });
    
    type: scm:OcspResponder
    properties:
        device: string
        folder: string
        hostName: string
        name: string
        snippet: string
    

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

    HostName string
    The HostName param. String length must be between 1 and 255 characters.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    Snippet string
    The Snippet param.
    HostName string
    The HostName param. String length must be between 1 and 255 characters.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    Snippet string
    The Snippet param.
    hostName String
    The HostName param. String length must be between 1 and 255 characters.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet String
    The Snippet param.
    hostName string
    The HostName param. String length must be between 1 and 255 characters.
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet string
    The Snippet param.
    host_name str
    The HostName param. String length must be between 1 and 255 characters.
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet str
    The Snippet param.
    hostName String
    The HostName param. String length must be between 1 and 255 characters.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet String
    The Snippet param.

    Outputs

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

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

    Look up Existing OcspResponder Resource

    Get an existing OcspResponder 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?: OcspResponderState, opts?: CustomResourceOptions): OcspResponder
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            host_name: Optional[str] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> OcspResponder
    func GetOcspResponder(ctx *Context, name string, id IDInput, state *OcspResponderState, opts ...ResourceOption) (*OcspResponder, error)
    public static OcspResponder Get(string name, Input<string> id, OcspResponderState? state, CustomResourceOptions? opts = null)
    public static OcspResponder get(String name, Output<String> id, OcspResponderState 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:
    Device string
    The Device param.
    Folder string
    The Folder param.
    HostName string
    The HostName param. String length must be between 1 and 255 characters.
    Name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    Snippet string
    The Snippet param.
    Tfid string
    Device string
    The Device param.
    Folder string
    The Folder param.
    HostName string
    The HostName param. String length must be between 1 and 255 characters.
    Name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    Snippet string
    The Snippet param.
    Tfid string
    device String
    The Device param.
    folder String
    The Folder param.
    hostName String
    The HostName param. String length must be between 1 and 255 characters.
    name String
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet String
    The Snippet param.
    tfid String
    device string
    The Device param.
    folder string
    The Folder param.
    hostName string
    The HostName param. String length must be between 1 and 255 characters.
    name string
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet string
    The Snippet param.
    tfid string
    device str
    The Device param.
    folder str
    The Folder param.
    host_name str
    The HostName param. String length must be between 1 and 255 characters.
    name str
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet str
    The Snippet param.
    tfid str
    device String
    The Device param.
    folder String
    The Folder param.
    hostName String
    The HostName param. String length must be between 1 and 255 characters.
    name String
    alphanumeric string [:0-9a-zA-Z._-]. String length must not exceed 63 characters. String validation regex: ^[a-zA-Z0-9._-]+$.
    snippet String
    The Snippet param.
    tfid String

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi