1. Packages
  2. Cyral Provider
  3. API Docs
  4. SidecarCredentials
cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc

cyral.SidecarCredentials

Explore with Pulumi AI

cyral logo
cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cyral from "@pulumi/cyral";
    
    const someResourceName = new cyral.SidecarCredentials("someResourceName", {sidecarId: cyral_sidecar.SOME_SIDECAR_RESOURCE_NAME.id});
    
    import pulumi
    import pulumi_cyral as cyral
    
    some_resource_name = cyral.SidecarCredentials("someResourceName", sidecar_id=cyral_sidecar["SOME_SIDECAR_RESOURCE_NAME"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/cyral/v4/cyral"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cyral.NewSidecarCredentials(ctx, "someResourceName", &cyral.SidecarCredentialsArgs{
    			SidecarId: pulumi.Any(cyral_sidecar.SOME_SIDECAR_RESOURCE_NAME.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cyral = Pulumi.Cyral;
    
    return await Deployment.RunAsync(() => 
    {
        var someResourceName = new Cyral.SidecarCredentials("someResourceName", new()
        {
            SidecarId = cyral_sidecar.SOME_SIDECAR_RESOURCE_NAME.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cyral.SidecarCredentials;
    import com.pulumi.cyral.SidecarCredentialsArgs;
    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 someResourceName = new SidecarCredentials("someResourceName", SidecarCredentialsArgs.builder()
                .sidecarId(cyral_sidecar.SOME_SIDECAR_RESOURCE_NAME().id())
                .build());
    
        }
    }
    
    resources:
      someResourceName:
        type: cyral:SidecarCredentials
        properties:
          sidecarId: ${cyral_sidecar.SOME_SIDECAR_RESOURCE_NAME.id}
    

    Create SidecarCredentials Resource

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

    Constructor syntax

    new SidecarCredentials(name: string, args: SidecarCredentialsArgs, opts?: CustomResourceOptions);
    @overload
    def SidecarCredentials(resource_name: str,
                           args: SidecarCredentialsArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SidecarCredentials(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           sidecar_id: Optional[str] = None)
    func NewSidecarCredentials(ctx *Context, name string, args SidecarCredentialsArgs, opts ...ResourceOption) (*SidecarCredentials, error)
    public SidecarCredentials(string name, SidecarCredentialsArgs args, CustomResourceOptions? opts = null)
    public SidecarCredentials(String name, SidecarCredentialsArgs args)
    public SidecarCredentials(String name, SidecarCredentialsArgs args, CustomResourceOptions options)
    
    type: cyral:SidecarCredentials
    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 SidecarCredentialsArgs
    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 SidecarCredentialsArgs
    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 SidecarCredentialsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SidecarCredentialsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SidecarCredentialsArgs
    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 sidecarCredentialsResource = new Cyral.SidecarCredentials("sidecarCredentialsResource", new()
    {
        SidecarId = "string",
    });
    
    example, err := cyral.NewSidecarCredentials(ctx, "sidecarCredentialsResource", &cyral.SidecarCredentialsArgs{
    	SidecarId: pulumi.String("string"),
    })
    
    var sidecarCredentialsResource = new SidecarCredentials("sidecarCredentialsResource", SidecarCredentialsArgs.builder()
        .sidecarId("string")
        .build());
    
    sidecar_credentials_resource = cyral.SidecarCredentials("sidecarCredentialsResource", sidecar_id="string")
    
    const sidecarCredentialsResource = new cyral.SidecarCredentials("sidecarCredentialsResource", {sidecarId: "string"});
    
    type: cyral:SidecarCredentials
    properties:
        sidecarId: string
    

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

    SidecarId string
    ID of the sidecar to create new credentials.
    SidecarId string
    ID of the sidecar to create new credentials.
    sidecarId String
    ID of the sidecar to create new credentials.
    sidecarId string
    ID of the sidecar to create new credentials.
    sidecar_id str
    ID of the sidecar to create new credentials.
    sidecarId String
    ID of the sidecar to create new credentials.

    Outputs

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

    ClientId string
    Sidecar client ID.
    ClientSecret string
    Sidecar client secret.
    Id string
    The provider-assigned unique ID for this managed resource.
    ClientId string
    Sidecar client ID.
    ClientSecret string
    Sidecar client secret.
    Id string
    The provider-assigned unique ID for this managed resource.
    clientId String
    Sidecar client ID.
    clientSecret String
    Sidecar client secret.
    id String
    The provider-assigned unique ID for this managed resource.
    clientId string
    Sidecar client ID.
    clientSecret string
    Sidecar client secret.
    id string
    The provider-assigned unique ID for this managed resource.
    client_id str
    Sidecar client ID.
    client_secret str
    Sidecar client secret.
    id str
    The provider-assigned unique ID for this managed resource.
    clientId String
    Sidecar client ID.
    clientSecret String
    Sidecar client secret.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SidecarCredentials Resource

    Get an existing SidecarCredentials 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?: SidecarCredentialsState, opts?: CustomResourceOptions): SidecarCredentials
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            sidecar_id: Optional[str] = None) -> SidecarCredentials
    func GetSidecarCredentials(ctx *Context, name string, id IDInput, state *SidecarCredentialsState, opts ...ResourceOption) (*SidecarCredentials, error)
    public static SidecarCredentials Get(string name, Input<string> id, SidecarCredentialsState? state, CustomResourceOptions? opts = null)
    public static SidecarCredentials get(String name, Output<String> id, SidecarCredentialsState state, CustomResourceOptions options)
    resources:  _:    type: cyral:SidecarCredentials    get:      id: ${id}
    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:
    ClientId string
    Sidecar client ID.
    ClientSecret string
    Sidecar client secret.
    SidecarId string
    ID of the sidecar to create new credentials.
    ClientId string
    Sidecar client ID.
    ClientSecret string
    Sidecar client secret.
    SidecarId string
    ID of the sidecar to create new credentials.
    clientId String
    Sidecar client ID.
    clientSecret String
    Sidecar client secret.
    sidecarId String
    ID of the sidecar to create new credentials.
    clientId string
    Sidecar client ID.
    clientSecret string
    Sidecar client secret.
    sidecarId string
    ID of the sidecar to create new credentials.
    client_id str
    Sidecar client ID.
    client_secret str
    Sidecar client secret.
    sidecar_id str
    ID of the sidecar to create new credentials.
    clientId String
    Sidecar client ID.
    clientSecret String
    Sidecar client secret.
    sidecarId String
    ID of the sidecar to create new credentials.

    Package Details

    Repository
    cyral cyralinc/terraform-provider-cyral
    License
    Notes
    This Pulumi package is based on the cyral Terraform Provider.
    cyral logo
    cyral 4.16.3 published on Monday, Apr 14, 2025 by cyralinc