ibm.AtrackerSettings
Explore with Pulumi AI
Create, update, and delete atracker_settingss with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const atrackerSettingsInstance = new ibm.AtrackerSettings("atrackerSettingsInstance", {
defaultTargets: [ibm_atracker_target.atracker_target_instance.id],
metadataRegionBackup: "eu-de",
metadataRegionPrimary: "us-south",
permittedTargetRegions: us_south,
privateApiEndpointOnly: false,
});
import pulumi
import pulumi_ibm as ibm
atracker_settings_instance = ibm.AtrackerSettings("atrackerSettingsInstance",
default_targets=[ibm_atracker_target["atracker_target_instance"]["id"]],
metadata_region_backup="eu-de",
metadata_region_primary="us-south",
permitted_target_regions=us_south,
private_api_endpoint_only=False)
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.NewAtrackerSettings(ctx, "atrackerSettingsInstance", &ibm.AtrackerSettingsArgs{
DefaultTargets: pulumi.StringArray{
ibm_atracker_target.Atracker_target_instance.Id,
},
MetadataRegionBackup: pulumi.String("eu-de"),
MetadataRegionPrimary: pulumi.String("us-south"),
PermittedTargetRegions: pulumi.Any(us_south),
PrivateApiEndpointOnly: pulumi.Bool(false),
})
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 atrackerSettingsInstance = new Ibm.AtrackerSettings("atrackerSettingsInstance", new()
{
DefaultTargets = new[]
{
ibm_atracker_target.Atracker_target_instance.Id,
},
MetadataRegionBackup = "eu-de",
MetadataRegionPrimary = "us-south",
PermittedTargetRegions = us_south,
PrivateApiEndpointOnly = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.AtrackerSettings;
import com.pulumi.ibm.AtrackerSettingsArgs;
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 atrackerSettingsInstance = new AtrackerSettings("atrackerSettingsInstance", AtrackerSettingsArgs.builder()
.defaultTargets(ibm_atracker_target.atracker_target_instance().id())
.metadataRegionBackup("eu-de")
.metadataRegionPrimary("us-south")
.permittedTargetRegions(us_south)
.privateApiEndpointOnly(false)
.build());
}
}
resources:
atrackerSettingsInstance:
type: ibm:AtrackerSettings
properties:
defaultTargets:
- ${ibm_atracker_target.atracker_target_instance.id}
metadataRegionBackup: eu-de
metadataRegionPrimary: us-south
permittedTargetRegions: ${["us-south"]}
privateApiEndpointOnly: false
Create AtrackerSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AtrackerSettings(name: string, args: AtrackerSettingsArgs, opts?: CustomResourceOptions);
@overload
def AtrackerSettings(resource_name: str,
args: AtrackerSettingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AtrackerSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
metadata_region_primary: Optional[str] = None,
private_api_endpoint_only: Optional[bool] = None,
atracker_settings_id: Optional[str] = None,
default_targets: Optional[Sequence[str]] = None,
metadata_region_backup: Optional[str] = None,
permitted_target_regions: Optional[Sequence[str]] = None)
func NewAtrackerSettings(ctx *Context, name string, args AtrackerSettingsArgs, opts ...ResourceOption) (*AtrackerSettings, error)
public AtrackerSettings(string name, AtrackerSettingsArgs args, CustomResourceOptions? opts = null)
public AtrackerSettings(String name, AtrackerSettingsArgs args)
public AtrackerSettings(String name, AtrackerSettingsArgs args, CustomResourceOptions options)
type: ibm:AtrackerSettings
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 AtrackerSettingsArgs
- 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 AtrackerSettingsArgs
- 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 AtrackerSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AtrackerSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AtrackerSettingsArgs
- 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 atrackerSettingsResource = new Ibm.AtrackerSettings("atrackerSettingsResource", new()
{
MetadataRegionPrimary = "string",
PrivateApiEndpointOnly = false,
AtrackerSettingsId = "string",
DefaultTargets = new[]
{
"string",
},
MetadataRegionBackup = "string",
PermittedTargetRegions = new[]
{
"string",
},
});
example, err := ibm.NewAtrackerSettings(ctx, "atrackerSettingsResource", &ibm.AtrackerSettingsArgs{
MetadataRegionPrimary: pulumi.String("string"),
PrivateApiEndpointOnly: pulumi.Bool(false),
AtrackerSettingsId: pulumi.String("string"),
DefaultTargets: pulumi.StringArray{
pulumi.String("string"),
},
MetadataRegionBackup: pulumi.String("string"),
PermittedTargetRegions: pulumi.StringArray{
pulumi.String("string"),
},
})
var atrackerSettingsResource = new AtrackerSettings("atrackerSettingsResource", AtrackerSettingsArgs.builder()
.metadataRegionPrimary("string")
.privateApiEndpointOnly(false)
.atrackerSettingsId("string")
.defaultTargets("string")
.metadataRegionBackup("string")
.permittedTargetRegions("string")
.build());
atracker_settings_resource = ibm.AtrackerSettings("atrackerSettingsResource",
metadata_region_primary="string",
private_api_endpoint_only=False,
atracker_settings_id="string",
default_targets=["string"],
metadata_region_backup="string",
permitted_target_regions=["string"])
const atrackerSettingsResource = new ibm.AtrackerSettings("atrackerSettingsResource", {
metadataRegionPrimary: "string",
privateApiEndpointOnly: false,
atrackerSettingsId: "string",
defaultTargets: ["string"],
metadataRegionBackup: "string",
permittedTargetRegions: ["string"],
});
type: ibm:AtrackerSettings
properties:
atrackerSettingsId: string
defaultTargets:
- string
metadataRegionBackup: string
metadataRegionPrimary: string
permittedTargetRegions:
- string
privateApiEndpointOnly: false
AtrackerSettings 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 AtrackerSettings resource accepts the following input properties:
- Metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Private
Api boolEndpoint Only - If you set this true then you cannot access api through public network.
- Atracker
Settings stringId - The unique identifier of the atracker_settings.
- Default
Targets List<string> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- Metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Permitted
Target List<string>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- Metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Private
Api boolEndpoint Only - If you set this true then you cannot access api through public network.
- Atracker
Settings stringId - The unique identifier of the atracker_settings.
- Default
Targets []string - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- Metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Permitted
Target []stringRegions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- metadata
Region StringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- private
Api BooleanEndpoint Only - If you set this true then you cannot access api through public network.
- atracker
Settings StringId - The unique identifier of the atracker_settings.
- default
Targets List<String> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- metadata
Region StringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target List<String>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- private
Api booleanEndpoint Only - If you set this true then you cannot access api through public network.
- atracker
Settings stringId - The unique identifier of the atracker_settings.
- default
Targets string[] - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target string[]Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- metadata_
region_ strprimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- private_
api_ boolendpoint_ only - If you set this true then you cannot access api through public network.
- atracker_
settings_ strid - The unique identifier of the atracker_settings.
- default_
targets Sequence[str] - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- metadata_
region_ strbackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted_
target_ Sequence[str]regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- metadata
Region StringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- private
Api BooleanEndpoint Only - If you set this true then you cannot access api through public network.
- atracker
Settings StringId - The unique identifier of the atracker_settings.
- default
Targets List<String> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- metadata
Region StringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target List<String>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
Outputs
All input properties are implicitly available as output properties. Additionally, the AtrackerSettings resource produces the following output properties:
- Api
Version double - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- (String) An optional message containing information about the audit log locations.
- Api
Version float64 - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- (String) An optional message containing information about the audit log locations.
- api
Version Double - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- (String) An optional message containing information about the audit log locations.
- api
Version number - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- id string
- The provider-assigned unique ID for this managed resource.
- message string
- (String) An optional message containing information about the audit log locations.
- api_
version float - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- id str
- The provider-assigned unique ID for this managed resource.
- message str
- (String) An optional message containing information about the audit log locations.
- api
Version Number - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- (String) An optional message containing information about the audit log locations.
Look up Existing AtrackerSettings Resource
Get an existing AtrackerSettings 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?: AtrackerSettingsState, opts?: CustomResourceOptions): AtrackerSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_version: Optional[float] = None,
atracker_settings_id: Optional[str] = None,
default_targets: Optional[Sequence[str]] = None,
message: Optional[str] = None,
metadata_region_backup: Optional[str] = None,
metadata_region_primary: Optional[str] = None,
permitted_target_regions: Optional[Sequence[str]] = None,
private_api_endpoint_only: Optional[bool] = None) -> AtrackerSettings
func GetAtrackerSettings(ctx *Context, name string, id IDInput, state *AtrackerSettingsState, opts ...ResourceOption) (*AtrackerSettings, error)
public static AtrackerSettings Get(string name, Input<string> id, AtrackerSettingsState? state, CustomResourceOptions? opts = null)
public static AtrackerSettings get(String name, Output<String> id, AtrackerSettingsState state, CustomResourceOptions options)
resources: _: type: ibm:AtrackerSettings 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.
- Api
Version double - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- Atracker
Settings stringId - The unique identifier of the atracker_settings.
- Default
Targets List<string> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- Message string
- (String) An optional message containing information about the audit log locations.
- Metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Permitted
Target List<string>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- Private
Api boolEndpoint Only - If you set this true then you cannot access api through public network.
- Api
Version float64 - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- Atracker
Settings stringId - The unique identifier of the atracker_settings.
- Default
Targets []string - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- Message string
- (String) An optional message containing information about the audit log locations.
- Metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- Permitted
Target []stringRegions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- Private
Api boolEndpoint Only - If you set this true then you cannot access api through public network.
- api
Version Double - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- atracker
Settings StringId - The unique identifier of the atracker_settings.
- default
Targets List<String> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- message String
- (String) An optional message containing information about the audit log locations.
- metadata
Region StringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- metadata
Region StringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target List<String>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- private
Api BooleanEndpoint Only - If you set this true then you cannot access api through public network.
- api
Version number - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- atracker
Settings stringId - The unique identifier of the atracker_settings.
- default
Targets string[] - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- message string
- (String) An optional message containing information about the audit log locations.
- metadata
Region stringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- metadata
Region stringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target string[]Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- private
Api booleanEndpoint Only - If you set this true then you cannot access api through public network.
- api_
version float - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- atracker_
settings_ strid - The unique identifier of the atracker_settings.
- default_
targets Sequence[str] - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- message str
- (String) An optional message containing information about the audit log locations.
- metadata_
region_ strbackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- metadata_
region_ strprimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted_
target_ Sequence[str]regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- private_
api_ boolendpoint_ only - If you set this true then you cannot access api through public network.
- api
Version Number - (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.
- Constraints: The maximum value is
2
. The minimum value is2
.
- Constraints: The maximum value is
- atracker
Settings StringId - The unique identifier of the atracker_settings.
- default
Targets List<String> - The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -]/
.
- Constraints: The list items must match regular expression
- message String
- (String) An optional message containing information about the audit log locations.
- metadata
Region StringBackup - To store all your meta data in a backup region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- metadata
Region StringPrimary - To store all your meta data in a single region.
- Constraints: The maximum length is
256
characters. The minimum length is3
characters. The value must match regular expression/^[a-zA-Z0-9 -_]/
.
- Constraints: The maximum length is
- permitted
Target List<String>Regions - If present then only these regions may be used to define a target.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9 -_]/
.
- Constraints: The list items must match regular expression
- private
Api BooleanEndpoint Only - If you set this true then you cannot access api through public network.
Import
You can import the ibm_atracker_settings
resource by using metadata_region_primary
. To store all your meta data in a single region.
Syntax
```sh $ pulumi import ibm:index/atrackerSettings:AtrackerSettings atracker_settings <metadata_region_primary> ```
Example
$ pulumi import ibm:index/atrackerSettings:AtrackerSettings atracker_settings us-south
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.