1. Packages
  2. Strata Cloud Manager
  3. API Docs
  4. KerberosServerProfile
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

scm.KerberosServerProfile

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.1 published on Friday, May 31, 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.KerberosServerProfile("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.KerberosServerProfile("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.NewKerberosServerProfile(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.KerberosServerProfile("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.KerberosServerProfile;
    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 KerberosServerProfile("example");
    
        }
    }
    
    resources:
      example:
        type: scm:KerberosServerProfile
    

    Create KerberosServerProfile Resource

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

    Constructor syntax

    new KerberosServerProfile(name: string, args: KerberosServerProfileArgs, opts?: CustomResourceOptions);
    @overload
    def KerberosServerProfile(resource_name: str,
                              args: KerberosServerProfileArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def KerberosServerProfile(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              servers: Optional[Sequence[KerberosServerProfileServerArgs]] = None,
                              device: Optional[str] = None,
                              folder: Optional[str] = None,
                              snippet: Optional[str] = None)
    func NewKerberosServerProfile(ctx *Context, name string, args KerberosServerProfileArgs, opts ...ResourceOption) (*KerberosServerProfile, error)
    public KerberosServerProfile(string name, KerberosServerProfileArgs args, CustomResourceOptions? opts = null)
    public KerberosServerProfile(String name, KerberosServerProfileArgs args)
    public KerberosServerProfile(String name, KerberosServerProfileArgs args, CustomResourceOptions options)
    
    type: scm:KerberosServerProfile
    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 KerberosServerProfileArgs
    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 KerberosServerProfileArgs
    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 KerberosServerProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KerberosServerProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KerberosServerProfileArgs
    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 kerberosServerProfileResource = new Scm.KerberosServerProfile("kerberosServerProfileResource", new()
    {
        Servers = new[]
        {
            new Scm.Inputs.KerberosServerProfileServerArgs
            {
                Host = "string",
                Name = "string",
                Port = 0,
            },
        },
        Device = "string",
        Folder = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewKerberosServerProfile(ctx, "kerberosServerProfileResource", &scm.KerberosServerProfileArgs{
    	Servers: scm.KerberosServerProfileServerArray{
    		&scm.KerberosServerProfileServerArgs{
    			Host: pulumi.String("string"),
    			Name: pulumi.String("string"),
    			Port: pulumi.Int(0),
    		},
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var kerberosServerProfileResource = new KerberosServerProfile("kerberosServerProfileResource", KerberosServerProfileArgs.builder()
        .servers(KerberosServerProfileServerArgs.builder()
            .host("string")
            .name("string")
            .port(0)
            .build())
        .device("string")
        .folder("string")
        .snippet("string")
        .build());
    
    kerberos_server_profile_resource = scm.KerberosServerProfile("kerberosServerProfileResource",
        servers=[scm.KerberosServerProfileServerArgs(
            host="string",
            name="string",
            port=0,
        )],
        device="string",
        folder="string",
        snippet="string")
    
    const kerberosServerProfileResource = new scm.KerberosServerProfile("kerberosServerProfileResource", {
        servers: [{
            host: "string",
            name: "string",
            port: 0,
        }],
        device: "string",
        folder: "string",
        snippet: "string",
    });
    
    type: scm:KerberosServerProfile
    properties:
        device: string
        folder: string
        servers:
            - host: string
              name: string
              port: 0
        snippet: string
    

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

    Servers List<KerberosServerProfileServer>
    The Servers param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Snippet string
    The Snippet param.
    Servers []KerberosServerProfileServerArgs
    The Servers param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Snippet string
    The Snippet param.
    servers List<KerberosServerProfileServer>
    The Servers param.
    device String
    The Device param.
    folder String
    The Folder param.
    snippet String
    The Snippet param.
    servers KerberosServerProfileServer[]
    The Servers param.
    device string
    The Device param.
    folder string
    The Folder param.
    snippet string
    The Snippet param.
    servers Sequence[KerberosServerProfileServerArgs]
    The Servers param.
    device str
    The Device param.
    folder str
    The Folder param.
    snippet str
    The Snippet param.
    servers List<Property Map>
    The Servers param.
    device String
    The Device param.
    folder String
    The Folder param.
    snippet String
    The Snippet param.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KerberosServerProfile 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 KerberosServerProfile Resource

    Get an existing KerberosServerProfile 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?: KerberosServerProfileState, opts?: CustomResourceOptions): KerberosServerProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            servers: Optional[Sequence[KerberosServerProfileServerArgs]] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> KerberosServerProfile
    func GetKerberosServerProfile(ctx *Context, name string, id IDInput, state *KerberosServerProfileState, opts ...ResourceOption) (*KerberosServerProfile, error)
    public static KerberosServerProfile Get(string name, Input<string> id, KerberosServerProfileState? state, CustomResourceOptions? opts = null)
    public static KerberosServerProfile get(String name, Output<String> id, KerberosServerProfileState 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.
    Servers List<KerberosServerProfileServer>
    The Servers param.
    Snippet string
    The Snippet param.
    Tfid string
    Device string
    The Device param.
    Folder string
    The Folder param.
    Servers []KerberosServerProfileServerArgs
    The Servers param.
    Snippet string
    The Snippet param.
    Tfid string
    device String
    The Device param.
    folder String
    The Folder param.
    servers List<KerberosServerProfileServer>
    The Servers param.
    snippet String
    The Snippet param.
    tfid String
    device string
    The Device param.
    folder string
    The Folder param.
    servers KerberosServerProfileServer[]
    The Servers param.
    snippet string
    The Snippet param.
    tfid string
    device str
    The Device param.
    folder str
    The Folder param.
    servers Sequence[KerberosServerProfileServerArgs]
    The Servers param.
    snippet str
    The Snippet param.
    tfid str
    device String
    The Device param.
    folder String
    The Folder param.
    servers List<Property Map>
    The Servers param.
    snippet String
    The Snippet param.
    tfid String

    Supporting Types

    KerberosServerProfileServer, KerberosServerProfileServerArgs

    Host string
    The Host param.
    Name string
    The Name param.
    Port int
    The Port param. Value must be between 1 and 65535.
    Host string
    The Host param.
    Name string
    The Name param.
    Port int
    The Port param. Value must be between 1 and 65535.
    host String
    The Host param.
    name String
    The Name param.
    port Integer
    The Port param. Value must be between 1 and 65535.
    host string
    The Host param.
    name string
    The Name param.
    port number
    The Port param. Value must be between 1 and 65535.
    host str
    The Host param.
    name str
    The Name param.
    port int
    The Port param. Value must be between 1 and 65535.
    host String
    The Host param.
    name String
    The Name param.
    port Number
    The Port param. Value must be between 1 and 65535.

    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.1 published on Friday, May 31, 2024 by Pulumi