1. Packages
  2. Ibm Provider
  3. API Docs
  4. SccInstanceSettings
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.SccInstanceSettings

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, and delete scc_instance_settingss with this resource.

    NOTE: Security Compliance Center is a regional service. Please specify the IBM Cloud Provider attribute region to target another region. Else, exporting the environmental variable IBMCLOUD_SCC_API_ENDPOINT will also override which region is being targeted for all ibm providers(ex. export IBMCLOUD_SCC_API_ENDPOINT=https://eu-es.compliance.cloud.ibm.com).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const sccInstanceSettingsInstance = new ibm.SccInstanceSettings("sccInstanceSettingsInstance", {
        eventNotifications: {
            instanceCrn: "<event_notifications_crn>",
        },
        instanceId: "00000000-1111-2222-3333-444444444444",
        objectStorage: {
            bucket: "<cloud_object_storage_bucket>",
            instanceCrn: "<cloud_object_storage_crn>",
        },
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    scc_instance_settings_instance = ibm.SccInstanceSettings("sccInstanceSettingsInstance",
        event_notifications={
            "instance_crn": "<event_notifications_crn>",
        },
        instance_id="00000000-1111-2222-3333-444444444444",
        object_storage={
            "bucket": "<cloud_object_storage_bucket>",
            "instance_crn": "<cloud_object_storage_crn>",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewSccInstanceSettings(ctx, "sccInstanceSettingsInstance", &ibm.SccInstanceSettingsArgs{
    			EventNotifications: &ibm.SccInstanceSettingsEventNotificationsArgs{
    				InstanceCrn: pulumi.String("<event_notifications_crn>"),
    			},
    			InstanceId: pulumi.String("00000000-1111-2222-3333-444444444444"),
    			ObjectStorage: &ibm.SccInstanceSettingsObjectStorageArgs{
    				Bucket:      pulumi.String("<cloud_object_storage_bucket>"),
    				InstanceCrn: pulumi.String("<cloud_object_storage_crn>"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var sccInstanceSettingsInstance = new Ibm.SccInstanceSettings("sccInstanceSettingsInstance", new()
        {
            EventNotifications = new Ibm.Inputs.SccInstanceSettingsEventNotificationsArgs
            {
                InstanceCrn = "<event_notifications_crn>",
            },
            InstanceId = "00000000-1111-2222-3333-444444444444",
            ObjectStorage = new Ibm.Inputs.SccInstanceSettingsObjectStorageArgs
            {
                Bucket = "<cloud_object_storage_bucket>",
                InstanceCrn = "<cloud_object_storage_crn>",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.SccInstanceSettings;
    import com.pulumi.ibm.SccInstanceSettingsArgs;
    import com.pulumi.ibm.inputs.SccInstanceSettingsEventNotificationsArgs;
    import com.pulumi.ibm.inputs.SccInstanceSettingsObjectStorageArgs;
    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 sccInstanceSettingsInstance = new SccInstanceSettings("sccInstanceSettingsInstance", SccInstanceSettingsArgs.builder()
                .eventNotifications(SccInstanceSettingsEventNotificationsArgs.builder()
                    .instanceCrn("<event_notifications_crn>")
                    .build())
                .instanceId("00000000-1111-2222-3333-444444444444")
                .objectStorage(SccInstanceSettingsObjectStorageArgs.builder()
                    .bucket("<cloud_object_storage_bucket>")
                    .instanceCrn("<cloud_object_storage_crn>")
                    .build())
                .build());
    
        }
    }
    
    resources:
      sccInstanceSettingsInstance:
        type: ibm:SccInstanceSettings
        properties:
          eventNotifications:
            instanceCrn: <event_notifications_crn>
          instanceId: 00000000-1111-2222-3333-444444444444
          objectStorage:
            bucket: <cloud_object_storage_bucket>
            instanceCrn: <cloud_object_storage_crn>
    

    Create SccInstanceSettings Resource

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

    Constructor syntax

    new SccInstanceSettings(name: string, args: SccInstanceSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def SccInstanceSettings(resource_name: str,
                            args: SccInstanceSettingsArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SccInstanceSettings(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            event_notifications: Optional[SccInstanceSettingsEventNotificationsArgs] = None,
                            instance_id: Optional[str] = None,
                            object_storage: Optional[SccInstanceSettingsObjectStorageArgs] = None,
                            scc_instance_settings_id: Optional[str] = None)
    func NewSccInstanceSettings(ctx *Context, name string, args SccInstanceSettingsArgs, opts ...ResourceOption) (*SccInstanceSettings, error)
    public SccInstanceSettings(string name, SccInstanceSettingsArgs args, CustomResourceOptions? opts = null)
    public SccInstanceSettings(String name, SccInstanceSettingsArgs args)
    public SccInstanceSettings(String name, SccInstanceSettingsArgs args, CustomResourceOptions options)
    
    type: ibm:SccInstanceSettings
    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 SccInstanceSettingsArgs
    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 SccInstanceSettingsArgs
    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 SccInstanceSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SccInstanceSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SccInstanceSettingsArgs
    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 sccInstanceSettingsResource = new Ibm.SccInstanceSettings("sccInstanceSettingsResource", new()
    {
        EventNotifications = new Ibm.Inputs.SccInstanceSettingsEventNotificationsArgs
        {
            InstanceCrn = "string",
            SourceDescription = "string",
            SourceId = "string",
            SourceName = "string",
            UpdatedOn = "string",
        },
        InstanceId = "string",
        ObjectStorage = new Ibm.Inputs.SccInstanceSettingsObjectStorageArgs
        {
            Bucket = "string",
            BucketEndpoint = "string",
            BucketLocation = "string",
            InstanceCrn = "string",
            UpdatedOn = "string",
        },
        SccInstanceSettingsId = "string",
    });
    
    example, err := ibm.NewSccInstanceSettings(ctx, "sccInstanceSettingsResource", &ibm.SccInstanceSettingsArgs{
    	EventNotifications: &ibm.SccInstanceSettingsEventNotificationsArgs{
    		InstanceCrn:       pulumi.String("string"),
    		SourceDescription: pulumi.String("string"),
    		SourceId:          pulumi.String("string"),
    		SourceName:        pulumi.String("string"),
    		UpdatedOn:         pulumi.String("string"),
    	},
    	InstanceId: pulumi.String("string"),
    	ObjectStorage: &ibm.SccInstanceSettingsObjectStorageArgs{
    		Bucket:         pulumi.String("string"),
    		BucketEndpoint: pulumi.String("string"),
    		BucketLocation: pulumi.String("string"),
    		InstanceCrn:    pulumi.String("string"),
    		UpdatedOn:      pulumi.String("string"),
    	},
    	SccInstanceSettingsId: pulumi.String("string"),
    })
    
    var sccInstanceSettingsResource = new SccInstanceSettings("sccInstanceSettingsResource", SccInstanceSettingsArgs.builder()
        .eventNotifications(SccInstanceSettingsEventNotificationsArgs.builder()
            .instanceCrn("string")
            .sourceDescription("string")
            .sourceId("string")
            .sourceName("string")
            .updatedOn("string")
            .build())
        .instanceId("string")
        .objectStorage(SccInstanceSettingsObjectStorageArgs.builder()
            .bucket("string")
            .bucketEndpoint("string")
            .bucketLocation("string")
            .instanceCrn("string")
            .updatedOn("string")
            .build())
        .sccInstanceSettingsId("string")
        .build());
    
    scc_instance_settings_resource = ibm.SccInstanceSettings("sccInstanceSettingsResource",
        event_notifications={
            "instance_crn": "string",
            "source_description": "string",
            "source_id": "string",
            "source_name": "string",
            "updated_on": "string",
        },
        instance_id="string",
        object_storage={
            "bucket": "string",
            "bucket_endpoint": "string",
            "bucket_location": "string",
            "instance_crn": "string",
            "updated_on": "string",
        },
        scc_instance_settings_id="string")
    
    const sccInstanceSettingsResource = new ibm.SccInstanceSettings("sccInstanceSettingsResource", {
        eventNotifications: {
            instanceCrn: "string",
            sourceDescription: "string",
            sourceId: "string",
            sourceName: "string",
            updatedOn: "string",
        },
        instanceId: "string",
        objectStorage: {
            bucket: "string",
            bucketEndpoint: "string",
            bucketLocation: "string",
            instanceCrn: "string",
            updatedOn: "string",
        },
        sccInstanceSettingsId: "string",
    });
    
    type: ibm:SccInstanceSettings
    properties:
        eventNotifications:
            instanceCrn: string
            sourceDescription: string
            sourceId: string
            sourceName: string
            updatedOn: string
        instanceId: string
        objectStorage:
            bucket: string
            bucketEndpoint: string
            bucketLocation: string
            instanceCrn: string
            updatedOn: string
        sccInstanceSettingsId: string
    

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

    EventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    InstanceId string
    The ID of the SCC instance in a particular region.
    ObjectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    SccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    EventNotifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings. Nested schema for event_notifications:
    InstanceId string
    The ID of the SCC instance in a particular region.
    ObjectStorage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings. Nested schema for object_storage:
    SccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId String
    The ID of the SCC instance in a particular region.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId String
    The unique identifier of the scc_instance_settings.
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId string
    The ID of the SCC instance in a particular region.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    event_notifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings. Nested schema for event_notifications:
    instance_id str
    The ID of the SCC instance in a particular region.
    object_storage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings. Nested schema for object_storage:
    scc_instance_settings_id str
    The unique identifier of the scc_instance_settings.
    eventNotifications Property Map
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId String
    The ID of the SCC instance in a particular region.
    objectStorage Property Map
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId String
    The unique identifier of the scc_instance_settings.

    Outputs

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

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

    Look up Existing SccInstanceSettings Resource

    Get an existing SccInstanceSettings 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?: SccInstanceSettingsState, opts?: CustomResourceOptions): SccInstanceSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            event_notifications: Optional[SccInstanceSettingsEventNotificationsArgs] = None,
            instance_id: Optional[str] = None,
            object_storage: Optional[SccInstanceSettingsObjectStorageArgs] = None,
            scc_instance_settings_id: Optional[str] = None) -> SccInstanceSettings
    func GetSccInstanceSettings(ctx *Context, name string, id IDInput, state *SccInstanceSettingsState, opts ...ResourceOption) (*SccInstanceSettings, error)
    public static SccInstanceSettings Get(string name, Input<string> id, SccInstanceSettingsState? state, CustomResourceOptions? opts = null)
    public static SccInstanceSettings get(String name, Output<String> id, SccInstanceSettingsState state, CustomResourceOptions options)
    resources:  _:    type: ibm:SccInstanceSettings    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:
    EventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    InstanceId string
    The ID of the SCC instance in a particular region.
    ObjectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    SccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    EventNotifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings. Nested schema for event_notifications:
    InstanceId string
    The ID of the SCC instance in a particular region.
    ObjectStorage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings. Nested schema for object_storage:
    SccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId String
    The ID of the SCC instance in a particular region.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId String
    The unique identifier of the scc_instance_settings.
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId string
    The ID of the SCC instance in a particular region.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId string
    The unique identifier of the scc_instance_settings.
    event_notifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings. Nested schema for event_notifications:
    instance_id str
    The ID of the SCC instance in a particular region.
    object_storage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings. Nested schema for object_storage:
    scc_instance_settings_id str
    The unique identifier of the scc_instance_settings.
    eventNotifications Property Map
    The Event Notifications settings. Nested schema for event_notifications:
    instanceId String
    The ID of the SCC instance in a particular region.
    objectStorage Property Map
    The Cloud Object Storage settings. Nested schema for object_storage:
    sccInstanceSettingsId String
    The unique identifier of the scc_instance_settings.

    Supporting Types

    SccInstanceSettingsEventNotifications, SccInstanceSettingsEventNotificationsArgs

    InstanceCrn string
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    SourceDescription string
    The description of the Event Notifications connection source.
    SourceId string
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    SourceName string
    The name of the Event Notifications connection source.
    UpdatedOn string
    The date when the Event Notifications connection was updated.
    InstanceCrn string
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    SourceDescription string
    The description of the Event Notifications connection source.
    SourceId string
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    SourceName string
    The name of the Event Notifications connection source.
    UpdatedOn string
    The date when the Event Notifications connection was updated.
    instanceCrn String
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    sourceDescription String
    The description of the Event Notifications connection source.
    sourceId String
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    sourceName String
    The name of the Event Notifications connection source.
    updatedOn String
    The date when the Event Notifications connection was updated.
    instanceCrn string
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    sourceDescription string
    The description of the Event Notifications connection source.
    sourceId string
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    sourceName string
    The name of the Event Notifications connection source.
    updatedOn string
    The date when the Event Notifications connection was updated.
    instance_crn str
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    source_description str
    The description of the Event Notifications connection source.
    source_id str
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    source_name str
    The name of the Event Notifications connection source.
    updated_on str
    The date when the Event Notifications connection was updated.
    instanceCrn String
    The Event Notifications instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    sourceDescription String
    The description of the Event Notifications connection source.
    sourceId String
    The connected Security and Compliance Center instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/.
    sourceName String
    The name of the Event Notifications connection source.
    updatedOn String
    The date when the Event Notifications connection was updated.

    SccInstanceSettingsObjectStorage, SccInstanceSettingsObjectStorageArgs

    Bucket string
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    BucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    BucketLocation string
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    InstanceCrn string
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    UpdatedOn string
    The date when the bucket connection was updated.
    Bucket string
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    BucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    BucketLocation string
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    InstanceCrn string
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    UpdatedOn string
    The date when the bucket connection was updated.
    bucket String
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    bucketEndpoint String
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    bucketLocation String
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    instanceCrn String
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    updatedOn String
    The date when the bucket connection was updated.
    bucket string
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    bucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    bucketLocation string
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    instanceCrn string
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    updatedOn string
    The date when the bucket connection was updated.
    bucket str
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    bucket_endpoint str
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    bucket_location str
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    instance_crn str
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    updated_on str
    The date when the bucket connection was updated.
    bucket String
    The connected Cloud Object Storage bucket name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+|/.
    bucketEndpoint String
    The connected Cloud Object Storage bucket endpoint.

    • Constraints: The maximum length is 512 characters. The minimum length is 1 character. The value must match regular expression /([A-Za-z0-9-]+)/.
    bucketLocation String
    The connected Cloud Object Storage bucket location.

    • Constraints: The maximum length is 32 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z]+/.
    instanceCrn String
    The connected Cloud Object Storage instance CRN.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/.
    updatedOn String
    The date when the bucket connection was updated.

    Import

    You can import the ibm_scc_instance_settings resource by using instance_id. The unique identifier of the scc_instance_settings.

    Syntax

    bash

    $ pulumi import ibm:index/sccInstanceSettings:SccInstanceSettings scc_instance_settings <instance_id>
    

    Example

    bash

    $ pulumi import ibm:index/sccInstanceSettings:SccInstanceSettings scc_instance_settings 00000000-1111-2222-3333-444444444444
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud