1. Packages
  2. Hsdp Provider
  3. API Docs
  4. BlrBucket
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

hsdp.BlrBucket

Explore with Pulumi AI

hsdp logo
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

    Create and manage Blob Repository Buckets

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as hsdp from "@pulumi/hsdp";
    
    const store = new hsdp.BlrBucket("store", {
        propositionId: data.hsdp_connect_mdm_propososition.prop.id,
        enableCdn: false,
        corsConfiguration: {
            allowedOrigins: ["https://foo.hsdp.io"],
            allowedMethods: ["GET"],
            exposeHeaders: ["X-Hsdp-Signature"],
        },
    });
    
    import pulumi
    import pulumi_hsdp as hsdp
    
    store = hsdp.BlrBucket("store",
        proposition_id=data["hsdp_connect_mdm_propososition"]["prop"]["id"],
        enable_cdn=False,
        cors_configuration={
            "allowed_origins": ["https://foo.hsdp.io"],
            "allowed_methods": ["GET"],
            "expose_headers": ["X-Hsdp-Signature"],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/hsdp/hsdp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hsdp.NewBlrBucket(ctx, "store", &hsdp.BlrBucketArgs{
    			PropositionId: pulumi.Any(data.Hsdp_connect_mdm_propososition.Prop.Id),
    			EnableCdn:     pulumi.Bool(false),
    			CorsConfiguration: &hsdp.BlrBucketCorsConfigurationArgs{
    				AllowedOrigins: pulumi.StringArray{
    					pulumi.String("https://foo.hsdp.io"),
    				},
    				AllowedMethods: pulumi.StringArray{
    					pulumi.String("GET"),
    				},
    				ExposeHeaders: pulumi.StringArray{
    					pulumi.String("X-Hsdp-Signature"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Hsdp = Pulumi.Hsdp;
    
    return await Deployment.RunAsync(() => 
    {
        var store = new Hsdp.BlrBucket("store", new()
        {
            PropositionId = data.Hsdp_connect_mdm_propososition.Prop.Id,
            EnableCdn = false,
            CorsConfiguration = new Hsdp.Inputs.BlrBucketCorsConfigurationArgs
            {
                AllowedOrigins = new[]
                {
                    "https://foo.hsdp.io",
                },
                AllowedMethods = new[]
                {
                    "GET",
                },
                ExposeHeaders = new[]
                {
                    "X-Hsdp-Signature",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hsdp.BlrBucket;
    import com.pulumi.hsdp.BlrBucketArgs;
    import com.pulumi.hsdp.inputs.BlrBucketCorsConfigurationArgs;
    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 store = new BlrBucket("store", BlrBucketArgs.builder()
                .propositionId(data.hsdp_connect_mdm_propososition().prop().id())
                .enableCdn(false)
                .corsConfiguration(BlrBucketCorsConfigurationArgs.builder()
                    .allowedOrigins("https://foo.hsdp.io")
                    .allowedMethods("GET")
                    .exposeHeaders("X-Hsdp-Signature")
                    .build())
                .build());
    
        }
    }
    
    resources:
      store:
        type: hsdp:BlrBucket
        properties:
          propositionId: ${data.hsdp_connect_mdm_propososition.prop.id}
          enableCdn: false
          corsConfiguration:
            allowedOrigins:
              - https://foo.hsdp.io
            allowedMethods:
              - GET
            exposeHeaders:
              - X-Hsdp-Signature
    

    Attributes reference

    In addition to all arguments above, the following attributes are exported:

    • id - The ID reference of the service action (format: Bucket/${GUID})
    • guid - The GUID of the bucket

    Create BlrBucket Resource

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

    Constructor syntax

    new BlrBucket(name: string, args: BlrBucketArgs, opts?: CustomResourceOptions);
    @overload
    def BlrBucket(resource_name: str,
                  args: BlrBucketArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def BlrBucket(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  proposition_id: Optional[str] = None,
                  blr_bucket_id: Optional[str] = None,
                  cache_control_age: Optional[float] = None,
                  cors_configuration: Optional[BlrBucketCorsConfigurationArgs] = None,
                  enable_cdn: Optional[bool] = None,
                  enable_create_or_delete_blob_meta: Optional[bool] = None,
                  enable_hsdp_domain: Optional[bool] = None,
                  name: Optional[str] = None,
                  price_class: Optional[str] = None,
                  principal: Optional[BlrBucketPrincipalArgs] = None)
    func NewBlrBucket(ctx *Context, name string, args BlrBucketArgs, opts ...ResourceOption) (*BlrBucket, error)
    public BlrBucket(string name, BlrBucketArgs args, CustomResourceOptions? opts = null)
    public BlrBucket(String name, BlrBucketArgs args)
    public BlrBucket(String name, BlrBucketArgs args, CustomResourceOptions options)
    
    type: hsdp:BlrBucket
    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 BlrBucketArgs
    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 BlrBucketArgs
    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 BlrBucketArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BlrBucketArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BlrBucketArgs
    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 blrBucketResource = new Hsdp.BlrBucket("blrBucketResource", new()
    {
        PropositionId = "string",
        BlrBucketId = "string",
        CacheControlAge = 0,
        CorsConfiguration = new Hsdp.Inputs.BlrBucketCorsConfigurationArgs
        {
            AllowedMethods = new[]
            {
                "string",
            },
            AllowedOrigins = new[]
            {
                "string",
            },
            AllowedHeaders = new[]
            {
                "string",
            },
            ExposeHeaders = new[]
            {
                "string",
            },
            MaxAgeSeconds = 0,
        },
        EnableCdn = false,
        EnableCreateOrDeleteBlobMeta = false,
        EnableHsdpDomain = false,
        Name = "string",
        PriceClass = "string",
        Principal = new Hsdp.Inputs.BlrBucketPrincipalArgs
        {
            Endpoint = "string",
            Environment = "string",
            Oauth2ClientId = "string",
            Oauth2Password = "string",
            Password = "string",
            Region = "string",
            ServiceId = "string",
            ServicePrivateKey = "string",
            UaaPassword = "string",
            UaaUsername = "string",
            Username = "string",
        },
    });
    
    example, err := hsdp.NewBlrBucket(ctx, "blrBucketResource", &hsdp.BlrBucketArgs{
    	PropositionId:   pulumi.String("string"),
    	BlrBucketId:     pulumi.String("string"),
    	CacheControlAge: pulumi.Float64(0),
    	CorsConfiguration: &hsdp.BlrBucketCorsConfigurationArgs{
    		AllowedMethods: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		AllowedOrigins: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		AllowedHeaders: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ExposeHeaders: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MaxAgeSeconds: pulumi.Float64(0),
    	},
    	EnableCdn:                    pulumi.Bool(false),
    	EnableCreateOrDeleteBlobMeta: pulumi.Bool(false),
    	EnableHsdpDomain:             pulumi.Bool(false),
    	Name:                         pulumi.String("string"),
    	PriceClass:                   pulumi.String("string"),
    	Principal: &hsdp.BlrBucketPrincipalArgs{
    		Endpoint:          pulumi.String("string"),
    		Environment:       pulumi.String("string"),
    		Oauth2ClientId:    pulumi.String("string"),
    		Oauth2Password:    pulumi.String("string"),
    		Password:          pulumi.String("string"),
    		Region:            pulumi.String("string"),
    		ServiceId:         pulumi.String("string"),
    		ServicePrivateKey: pulumi.String("string"),
    		UaaPassword:       pulumi.String("string"),
    		UaaUsername:       pulumi.String("string"),
    		Username:          pulumi.String("string"),
    	},
    })
    
    var blrBucketResource = new BlrBucket("blrBucketResource", BlrBucketArgs.builder()
        .propositionId("string")
        .blrBucketId("string")
        .cacheControlAge(0)
        .corsConfiguration(BlrBucketCorsConfigurationArgs.builder()
            .allowedMethods("string")
            .allowedOrigins("string")
            .allowedHeaders("string")
            .exposeHeaders("string")
            .maxAgeSeconds(0)
            .build())
        .enableCdn(false)
        .enableCreateOrDeleteBlobMeta(false)
        .enableHsdpDomain(false)
        .name("string")
        .priceClass("string")
        .principal(BlrBucketPrincipalArgs.builder()
            .endpoint("string")
            .environment("string")
            .oauth2ClientId("string")
            .oauth2Password("string")
            .password("string")
            .region("string")
            .serviceId("string")
            .servicePrivateKey("string")
            .uaaPassword("string")
            .uaaUsername("string")
            .username("string")
            .build())
        .build());
    
    blr_bucket_resource = hsdp.BlrBucket("blrBucketResource",
        proposition_id="string",
        blr_bucket_id="string",
        cache_control_age=0,
        cors_configuration={
            "allowed_methods": ["string"],
            "allowed_origins": ["string"],
            "allowed_headers": ["string"],
            "expose_headers": ["string"],
            "max_age_seconds": 0,
        },
        enable_cdn=False,
        enable_create_or_delete_blob_meta=False,
        enable_hsdp_domain=False,
        name="string",
        price_class="string",
        principal={
            "endpoint": "string",
            "environment": "string",
            "oauth2_client_id": "string",
            "oauth2_password": "string",
            "password": "string",
            "region": "string",
            "service_id": "string",
            "service_private_key": "string",
            "uaa_password": "string",
            "uaa_username": "string",
            "username": "string",
        })
    
    const blrBucketResource = new hsdp.BlrBucket("blrBucketResource", {
        propositionId: "string",
        blrBucketId: "string",
        cacheControlAge: 0,
        corsConfiguration: {
            allowedMethods: ["string"],
            allowedOrigins: ["string"],
            allowedHeaders: ["string"],
            exposeHeaders: ["string"],
            maxAgeSeconds: 0,
        },
        enableCdn: false,
        enableCreateOrDeleteBlobMeta: false,
        enableHsdpDomain: false,
        name: "string",
        priceClass: "string",
        principal: {
            endpoint: "string",
            environment: "string",
            oauth2ClientId: "string",
            oauth2Password: "string",
            password: "string",
            region: "string",
            serviceId: "string",
            servicePrivateKey: "string",
            uaaPassword: "string",
            uaaUsername: "string",
            username: "string",
        },
    });
    
    type: hsdp:BlrBucket
    properties:
        blrBucketId: string
        cacheControlAge: 0
        corsConfiguration:
            allowedHeaders:
                - string
            allowedMethods:
                - string
            allowedOrigins:
                - string
            exposeHeaders:
                - string
            maxAgeSeconds: 0
        enableCdn: false
        enableCreateOrDeleteBlobMeta: false
        enableHsdpDomain: false
        name: string
        priceClass: string
        principal:
            endpoint: string
            environment: string
            oauth2ClientId: string
            oauth2Password: string
            password: string
            region: string
            serviceId: string
            servicePrivateKey: string
            uaaPassword: string
            uaaUsername: string
            username: string
        propositionId: string
    

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

    PropositionId string
    The proposition ID where this bucket falls under
    BlrBucketId string
    CacheControlAge double
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    CorsConfiguration BlrBucketCorsConfiguration
    EnableCdn bool
    Enable CDN or not
    EnableCreateOrDeleteBlobMeta bool
    Enables creation or deletion of Blob meta data
    EnableHsdpDomain bool
    Enable HSDP domain mapping
    Name string
    The name of the device group
    PriceClass string
    Principal BlrBucketPrincipal
    PropositionId string
    The proposition ID where this bucket falls under
    BlrBucketId string
    CacheControlAge float64
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    CorsConfiguration BlrBucketCorsConfigurationArgs
    EnableCdn bool
    Enable CDN or not
    EnableCreateOrDeleteBlobMeta bool
    Enables creation or deletion of Blob meta data
    EnableHsdpDomain bool
    Enable HSDP domain mapping
    Name string
    The name of the device group
    PriceClass string
    Principal BlrBucketPrincipalArgs
    propositionId String
    The proposition ID where this bucket falls under
    blrBucketId String
    cacheControlAge Double
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration BlrBucketCorsConfiguration
    enableCdn Boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta Boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain Boolean
    Enable HSDP domain mapping
    name String
    The name of the device group
    priceClass String
    principal BlrBucketPrincipal
    propositionId string
    The proposition ID where this bucket falls under
    blrBucketId string
    cacheControlAge number
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration BlrBucketCorsConfiguration
    enableCdn boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain boolean
    Enable HSDP domain mapping
    name string
    The name of the device group
    priceClass string
    principal BlrBucketPrincipal
    proposition_id str
    The proposition ID where this bucket falls under
    blr_bucket_id str
    cache_control_age float
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    cors_configuration BlrBucketCorsConfigurationArgs
    enable_cdn bool
    Enable CDN or not
    enable_create_or_delete_blob_meta bool
    Enables creation or deletion of Blob meta data
    enable_hsdp_domain bool
    Enable HSDP domain mapping
    name str
    The name of the device group
    price_class str
    principal BlrBucketPrincipalArgs
    propositionId String
    The proposition ID where this bucket falls under
    blrBucketId String
    cacheControlAge Number
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration Property Map
    enableCdn Boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta Boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain Boolean
    Enable HSDP domain mapping
    name String
    The name of the device group
    priceClass String
    principal Property Map

    Outputs

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

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

    Look up Existing BlrBucket Resource

    Get an existing BlrBucket 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?: BlrBucketState, opts?: CustomResourceOptions): BlrBucket
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            blr_bucket_id: Optional[str] = None,
            cache_control_age: Optional[float] = None,
            cors_configuration: Optional[BlrBucketCorsConfigurationArgs] = None,
            enable_cdn: Optional[bool] = None,
            enable_create_or_delete_blob_meta: Optional[bool] = None,
            enable_hsdp_domain: Optional[bool] = None,
            guid: Optional[str] = None,
            name: Optional[str] = None,
            price_class: Optional[str] = None,
            principal: Optional[BlrBucketPrincipalArgs] = None,
            proposition_id: Optional[str] = None) -> BlrBucket
    func GetBlrBucket(ctx *Context, name string, id IDInput, state *BlrBucketState, opts ...ResourceOption) (*BlrBucket, error)
    public static BlrBucket Get(string name, Input<string> id, BlrBucketState? state, CustomResourceOptions? opts = null)
    public static BlrBucket get(String name, Output<String> id, BlrBucketState state, CustomResourceOptions options)
    resources:  _:    type: hsdp:BlrBucket    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:
    BlrBucketId string
    CacheControlAge double
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    CorsConfiguration BlrBucketCorsConfiguration
    EnableCdn bool
    Enable CDN or not
    EnableCreateOrDeleteBlobMeta bool
    Enables creation or deletion of Blob meta data
    EnableHsdpDomain bool
    Enable HSDP domain mapping
    Guid string
    Name string
    The name of the device group
    PriceClass string
    Principal BlrBucketPrincipal
    PropositionId string
    The proposition ID where this bucket falls under
    BlrBucketId string
    CacheControlAge float64
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    CorsConfiguration BlrBucketCorsConfigurationArgs
    EnableCdn bool
    Enable CDN or not
    EnableCreateOrDeleteBlobMeta bool
    Enables creation or deletion of Blob meta data
    EnableHsdpDomain bool
    Enable HSDP domain mapping
    Guid string
    Name string
    The name of the device group
    PriceClass string
    Principal BlrBucketPrincipalArgs
    PropositionId string
    The proposition ID where this bucket falls under
    blrBucketId String
    cacheControlAge Double
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration BlrBucketCorsConfiguration
    enableCdn Boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta Boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain Boolean
    Enable HSDP domain mapping
    guid String
    name String
    The name of the device group
    priceClass String
    principal BlrBucketPrincipal
    propositionId String
    The proposition ID where this bucket falls under
    blrBucketId string
    cacheControlAge number
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration BlrBucketCorsConfiguration
    enableCdn boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain boolean
    Enable HSDP domain mapping
    guid string
    name string
    The name of the device group
    priceClass string
    principal BlrBucketPrincipal
    propositionId string
    The proposition ID where this bucket falls under
    blr_bucket_id str
    cache_control_age float
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    cors_configuration BlrBucketCorsConfigurationArgs
    enable_cdn bool
    Enable CDN or not
    enable_create_or_delete_blob_meta bool
    Enables creation or deletion of Blob meta data
    enable_hsdp_domain bool
    Enable HSDP domain mapping
    guid str
    name str
    The name of the device group
    price_class str
    principal BlrBucketPrincipalArgs
    proposition_id str
    The proposition ID where this bucket falls under
    blrBucketId String
    cacheControlAge Number
    Cache control age settings (Max: 1800, Min: 300, Default: 1)
    corsConfiguration Property Map
    enableCdn Boolean
    Enable CDN or not
    enableCreateOrDeleteBlobMeta Boolean
    Enables creation or deletion of Blob meta data
    enableHsdpDomain Boolean
    Enable HSDP domain mapping
    guid String
    name String
    The name of the device group
    priceClass String
    principal Property Map
    propositionId String
    The proposition ID where this bucket falls under

    Supporting Types

    BlrBucketCorsConfiguration, BlrBucketCorsConfigurationArgs

    AllowedMethods List<string>
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    AllowedOrigins List<string>
    ) List of allowed origins
    AllowedHeaders List<string>
    ExposeHeaders List<string>
    ) List of headers to expose
    MaxAgeSeconds double
    Max age in seconds
    AllowedMethods []string
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    AllowedOrigins []string
    ) List of allowed origins
    AllowedHeaders []string
    ExposeHeaders []string
    ) List of headers to expose
    MaxAgeSeconds float64
    Max age in seconds
    allowedMethods List<String>
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    allowedOrigins List<String>
    ) List of allowed origins
    allowedHeaders List<String>
    exposeHeaders List<String>
    ) List of headers to expose
    maxAgeSeconds Double
    Max age in seconds
    allowedMethods string[]
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    allowedOrigins string[]
    ) List of allowed origins
    allowedHeaders string[]
    exposeHeaders string[]
    ) List of headers to expose
    maxAgeSeconds number
    Max age in seconds
    allowed_methods Sequence[str]
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    allowed_origins Sequence[str]
    ) List of allowed origins
    allowed_headers Sequence[str]
    expose_headers Sequence[str]
    ) List of headers to expose
    max_age_seconds float
    Max age in seconds
    allowedMethods List<String>
    ) Allowed methods: [GET, PUT, POST, DELETE, HEAD]
    allowedOrigins List<String>
    ) List of allowed origins
    allowedHeaders List<String>
    exposeHeaders List<String>
    ) List of headers to expose
    maxAgeSeconds Number
    Max age in seconds

    BlrBucketPrincipal, BlrBucketPrincipalArgs

    Import

    $ pulumi import hsdp:index/blrBucket:BlrBucket An existing Bucket using `hsdp_blr_bucket`, e.g.
    

    bash

    $ pulumi import hsdp:index/blrBucket:BlrBucket target Bucket/guid-of-the-bucket-to-import
    

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

    Package Details

    Repository
    hsdp philips-software/terraform-provider-hsdp
    License
    Notes
    This Pulumi package is based on the hsdp Terraform Provider.
    hsdp logo
    hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software