1. Packages
  2. OVH
  3. API Docs
  4. Dbaas
  5. LogsRolePermissionStream
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.Dbaas.LogsRolePermissionStream

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Reference a DBaaS logs role stream permission.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ovh from "@ovhcloud/pulumi-ovh";
    
    const permission = new ovh.dbaas.LogsRolePermissionStream("permission", {
        serviceName: "ldp-xx-xxxxx",
        roleId: ovh_dbaas_logs_role.ro.id,
        streamId: ovh_dbaas_logs_output_graylog_stream.mystream.stream_id,
    });
    
    import pulumi
    import pulumi_ovh as ovh
    
    permission = ovh.dbaas.LogsRolePermissionStream("permission",
        service_name="ldp-xx-xxxxx",
        role_id=ovh_dbaas_logs_role["ro"]["id"],
        stream_id=ovh_dbaas_logs_output_graylog_stream["mystream"]["stream_id"])
    
    package main
    
    import (
    	"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/dbaas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dbaas.NewLogsRolePermissionStream(ctx, "permission", &dbaas.LogsRolePermissionStreamArgs{
    			ServiceName: pulumi.String("ldp-xx-xxxxx"),
    			RoleId:      pulumi.Any(ovh_dbaas_logs_role.Ro.Id),
    			StreamId:    pulumi.Any(ovh_dbaas_logs_output_graylog_stream.Mystream.Stream_id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ovh = Pulumi.Ovh;
    
    return await Deployment.RunAsync(() => 
    {
        var permission = new Ovh.Dbaas.LogsRolePermissionStream("permission", new()
        {
            ServiceName = "ldp-xx-xxxxx",
            RoleId = ovh_dbaas_logs_role.Ro.Id,
            StreamId = ovh_dbaas_logs_output_graylog_stream.Mystream.Stream_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ovh.Dbaas.LogsRolePermissionStream;
    import com.pulumi.ovh.Dbaas.LogsRolePermissionStreamArgs;
    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 permission = new LogsRolePermissionStream("permission", LogsRolePermissionStreamArgs.builder()
                .serviceName("ldp-xx-xxxxx")
                .roleId(ovh_dbaas_logs_role.ro().id())
                .streamId(ovh_dbaas_logs_output_graylog_stream.mystream().stream_id())
                .build());
    
        }
    }
    
    resources:
      permission:
        type: ovh:Dbaas:LogsRolePermissionStream
        properties:
          serviceName: ldp-xx-xxxxx
          roleId: ${ovh_dbaas_logs_role.ro.id}
          streamId: ${ovh_dbaas_logs_output_graylog_stream.mystream.stream_id}
    

    Create LogsRolePermissionStream Resource

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

    Constructor syntax

    new LogsRolePermissionStream(name: string, args: LogsRolePermissionStreamArgs, opts?: CustomResourceOptions);
    @overload
    def LogsRolePermissionStream(resource_name: str,
                                 args: LogsRolePermissionStreamArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def LogsRolePermissionStream(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 role_id: Optional[str] = None,
                                 service_name: Optional[str] = None,
                                 stream_id: Optional[str] = None)
    func NewLogsRolePermissionStream(ctx *Context, name string, args LogsRolePermissionStreamArgs, opts ...ResourceOption) (*LogsRolePermissionStream, error)
    public LogsRolePermissionStream(string name, LogsRolePermissionStreamArgs args, CustomResourceOptions? opts = null)
    public LogsRolePermissionStream(String name, LogsRolePermissionStreamArgs args)
    public LogsRolePermissionStream(String name, LogsRolePermissionStreamArgs args, CustomResourceOptions options)
    
    type: ovh:Dbaas:LogsRolePermissionStream
    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 LogsRolePermissionStreamArgs
    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 LogsRolePermissionStreamArgs
    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 LogsRolePermissionStreamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogsRolePermissionStreamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogsRolePermissionStreamArgs
    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 logsRolePermissionStreamResource = new Ovh.Dbaas.LogsRolePermissionStream("logsRolePermissionStreamResource", new()
    {
        RoleId = "string",
        ServiceName = "string",
        StreamId = "string",
    });
    
    example, err := Dbaas.NewLogsRolePermissionStream(ctx, "logsRolePermissionStreamResource", &Dbaas.LogsRolePermissionStreamArgs{
    	RoleId:      pulumi.String("string"),
    	ServiceName: pulumi.String("string"),
    	StreamId:    pulumi.String("string"),
    })
    
    var logsRolePermissionStreamResource = new LogsRolePermissionStream("logsRolePermissionStreamResource", LogsRolePermissionStreamArgs.builder()
        .roleId("string")
        .serviceName("string")
        .streamId("string")
        .build());
    
    logs_role_permission_stream_resource = ovh.dbaas.LogsRolePermissionStream("logsRolePermissionStreamResource",
        role_id="string",
        service_name="string",
        stream_id="string")
    
    const logsRolePermissionStreamResource = new ovh.dbaas.LogsRolePermissionStream("logsRolePermissionStreamResource", {
        roleId: "string",
        serviceName: "string",
        streamId: "string",
    });
    
    type: ovh:Dbaas:LogsRolePermissionStream
    properties:
        roleId: string
        serviceName: string
        streamId: string
    

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

    RoleId string
    The DBaaS Logs role id
    ServiceName string
    The service name
    StreamId string
    The DBaaS Logs Graylog output stream id
    RoleId string
    The DBaaS Logs role id
    ServiceName string
    The service name
    StreamId string
    The DBaaS Logs Graylog output stream id
    roleId String
    The DBaaS Logs role id
    serviceName String
    The service name
    streamId String
    The DBaaS Logs Graylog output stream id
    roleId string
    The DBaaS Logs role id
    serviceName string
    The service name
    streamId string
    The DBaaS Logs Graylog output stream id
    role_id str
    The DBaaS Logs role id
    service_name str
    The service name
    stream_id str
    The DBaaS Logs Graylog output stream id
    roleId String
    The DBaaS Logs role id
    serviceName String
    The service name
    streamId String
    The DBaaS Logs Graylog output stream id

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    PermissionId string
    Permission ID
    PermissionType string
    Permission type (e.g., READ_ONLY)
    Id string
    The provider-assigned unique ID for this managed resource.
    PermissionId string
    Permission ID
    PermissionType string
    Permission type (e.g., READ_ONLY)
    id String
    The provider-assigned unique ID for this managed resource.
    permissionId String
    Permission ID
    permissionType String
    Permission type (e.g., READ_ONLY)
    id string
    The provider-assigned unique ID for this managed resource.
    permissionId string
    Permission ID
    permissionType string
    Permission type (e.g., READ_ONLY)
    id str
    The provider-assigned unique ID for this managed resource.
    permission_id str
    Permission ID
    permission_type str
    Permission type (e.g., READ_ONLY)
    id String
    The provider-assigned unique ID for this managed resource.
    permissionId String
    Permission ID
    permissionType String
    Permission type (e.g., READ_ONLY)

    Look up Existing LogsRolePermissionStream Resource

    Get an existing LogsRolePermissionStream 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?: LogsRolePermissionStreamState, opts?: CustomResourceOptions): LogsRolePermissionStream
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            permission_id: Optional[str] = None,
            permission_type: Optional[str] = None,
            role_id: Optional[str] = None,
            service_name: Optional[str] = None,
            stream_id: Optional[str] = None) -> LogsRolePermissionStream
    func GetLogsRolePermissionStream(ctx *Context, name string, id IDInput, state *LogsRolePermissionStreamState, opts ...ResourceOption) (*LogsRolePermissionStream, error)
    public static LogsRolePermissionStream Get(string name, Input<string> id, LogsRolePermissionStreamState? state, CustomResourceOptions? opts = null)
    public static LogsRolePermissionStream get(String name, Output<String> id, LogsRolePermissionStreamState state, CustomResourceOptions options)
    resources:  _:    type: ovh:Dbaas:LogsRolePermissionStream    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:
    PermissionId string
    Permission ID
    PermissionType string
    Permission type (e.g., READ_ONLY)
    RoleId string
    The DBaaS Logs role id
    ServiceName string
    The service name
    StreamId string
    The DBaaS Logs Graylog output stream id
    PermissionId string
    Permission ID
    PermissionType string
    Permission type (e.g., READ_ONLY)
    RoleId string
    The DBaaS Logs role id
    ServiceName string
    The service name
    StreamId string
    The DBaaS Logs Graylog output stream id
    permissionId String
    Permission ID
    permissionType String
    Permission type (e.g., READ_ONLY)
    roleId String
    The DBaaS Logs role id
    serviceName String
    The service name
    streamId String
    The DBaaS Logs Graylog output stream id
    permissionId string
    Permission ID
    permissionType string
    Permission type (e.g., READ_ONLY)
    roleId string
    The DBaaS Logs role id
    serviceName string
    The service name
    streamId string
    The DBaaS Logs Graylog output stream id
    permission_id str
    Permission ID
    permission_type str
    Permission type (e.g., READ_ONLY)
    role_id str
    The DBaaS Logs role id
    service_name str
    The service name
    stream_id str
    The DBaaS Logs Graylog output stream id
    permissionId String
    Permission ID
    permissionType String
    Permission type (e.g., READ_ONLY)
    roleId String
    The DBaaS Logs role id
    serviceName String
    The service name
    streamId String
    The DBaaS Logs Graylog output stream id

    Import

    DBaaS logs role stream permission can be imported using the service_name, role_id and id of the permission, separated by “/” E.g.,

    bash

    $ pulumi import ovh:Dbaas/logsRolePermissionStream:LogsRolePermissionStream ovh_dbaas_logs_role_permission_stream.perm ldp-ra-XX/dc145bc2-eb01-4efe-a802-XXXXXX/e4818fa8-f426-11ef-a1f6-XXXXXXX
    

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

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud