ibm.SccInstanceSettings
Explore with Pulumi AI
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:
- Event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- Scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- Event
Notifications SccInstance Settings Event Notifications Args - The Event Notifications settings. Nested schema for event_notifications:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Object
Storage SccInstance Settings Object Storage Args - The Cloud Object Storage settings. Nested schema for object_storage:
- Scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id String - The ID of the SCC instance in a particular region.
- object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance StringSettings Id - The unique identifier of the scc_instance_settings.
- event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id string - The ID of the SCC instance in a particular region.
- object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- event_
notifications SccInstance Settings Event Notifications Args - The Event Notifications settings. Nested schema for event_notifications:
- instance_
id str - The ID of the SCC instance in a particular region.
- object_
storage SccInstance Settings Object Storage Args - The Cloud Object Storage settings. Nested schema for object_storage:
- scc_
instance_ strsettings_ id - The unique identifier of the scc_instance_settings.
- event
Notifications Property Map - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id String - The ID of the SCC instance in a particular region.
- object
Storage Property Map - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance StringSettings Id - 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.
- Event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- Scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- Event
Notifications SccInstance Settings Event Notifications Args - The Event Notifications settings. Nested schema for event_notifications:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Object
Storage SccInstance Settings Object Storage Args - The Cloud Object Storage settings. Nested schema for object_storage:
- Scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id String - The ID of the SCC instance in a particular region.
- object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance StringSettings Id - The unique identifier of the scc_instance_settings.
- event
Notifications SccInstance Settings Event Notifications - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id string - The ID of the SCC instance in a particular region.
- object
Storage SccInstance Settings Object Storage - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance stringSettings Id - The unique identifier of the scc_instance_settings.
- event_
notifications SccInstance Settings Event Notifications Args - The Event Notifications settings. Nested schema for event_notifications:
- instance_
id str - The ID of the SCC instance in a particular region.
- object_
storage SccInstance Settings Object Storage Args - The Cloud Object Storage settings. Nested schema for object_storage:
- scc_
instance_ strsettings_ id - The unique identifier of the scc_instance_settings.
- event
Notifications Property Map - The Event Notifications settings. Nested schema for event_notifications:
- instance
Id String - The ID of the SCC instance in a particular region.
- object
Storage Property Map - The Cloud Object Storage settings. Nested schema for object_storage:
- scc
Instance StringSettings Id - The unique identifier of the scc_instance_settings.
Supporting Types
SccInstanceSettingsEventNotifications, SccInstanceSettingsEventNotificationsArgs
- Instance
Crn string - The Event Notifications instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- Source
Description string - The description of the Event Notifications connection source.
- Source
Id string - The connected Security and Compliance Center instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- Source
Name string - The name of the Event Notifications connection source.
- Updated
On string - The date when the Event Notifications connection was updated.
- Instance
Crn string - The Event Notifications instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- Source
Description string - The description of the Event Notifications connection source.
- Source
Id string - The connected Security and Compliance Center instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- Source
Name string - The name of the Event Notifications connection source.
- Updated
On string - The date when the Event Notifications connection was updated.
- instance
Crn String - The Event Notifications instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- source
Description String - The description of the Event Notifications connection source.
- source
Id String - The connected Security and Compliance Center instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- source
Name String - The name of the Event Notifications connection source.
- updated
On String - The date when the Event Notifications connection was updated.
- instance
Crn string - The Event Notifications instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- source
Description string - The description of the Event Notifications connection source.
- source
Id string - The connected Security and Compliance Center instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- source
Name string - The name of the Event Notifications connection source.
- updated
On 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 is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- source_
name str - The name of the Event Notifications connection source.
- updated_
on str - The date when the Event Notifications connection was updated.
- instance
Crn String - The Event Notifications instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- source
Description String - The description of the Event Notifications connection source.
- source
Id String - The connected Security and Compliance Center instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9]+(:[A-Za-z0-9]+)+)/
.
- Constraints: The maximum length is
- source
Name String - The name of the Event Notifications connection source.
- updated
On 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- Bucket
Endpoint string - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- Bucket
Location string - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- Instance
Crn string - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- Updated
On 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- Bucket
Endpoint string - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- Bucket
Location string - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- Instance
Crn string - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- Updated
On 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- bucket
Endpoint String - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- bucket
Location String - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- instance
Crn String - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- updated
On 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- bucket
Endpoint string - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- bucket
Location string - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- instance
Crn string - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- updated
On 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- bucket_
endpoint str - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- bucket_
location str - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- instance_
crn str - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- 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 is0
characters. The value must match regular expression/[A-Za-z]+|/
.
- Constraints: The maximum length is
- bucket
Endpoint String - The connected Cloud Object Storage bucket endpoint.
- Constraints: The maximum length is
512
characters. The minimum length is1
character. The value must match regular expression/([A-Za-z0-9-]+)/
.
- Constraints: The maximum length is
- bucket
Location String - The connected Cloud Object Storage bucket location.
- Constraints: The maximum length is
32
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z]+/
.
- Constraints: The maximum length is
- instance
Crn String - The connected Cloud Object Storage instance CRN.
- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^crn:v0-9*+,;=@\/]|%[0-9A-Z]{2})*){8}|$/
.
- Constraints: The maximum length is
- updated
On 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.