1. Packages
  2. Ibm Provider
  3. API Docs
  4. CbrZone
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.CbrZone

Explore with Pulumi AI

Create, update, and delete cbr_zones with this resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const cbrZoneInstance = new ibm.CbrZone("cbrZoneInstance", {
    accountId: "12ab34cd56ef78ab90cd12ef34ab56cd",
    addresses: [
        {
            type: "ipAddress",
            value: "169.23.56.234",
        },
        {
            type: "ipRange",
            value: "169.23.22.0-169.23.22.255",
        },
    ],
    description: "this is an example of zone",
    excludeds: [
        {
            type: "ipAddress",
            value: "169.23.22.10",
        },
        {
            type: "ipAddress",
            value: "169.23.22.11",
        },
        {
            type: "ipAddress",
            value: "value",
        },
    ],
});
Copy
import pulumi
import pulumi_ibm as ibm

cbr_zone_instance = ibm.CbrZone("cbrZoneInstance",
    account_id="12ab34cd56ef78ab90cd12ef34ab56cd",
    addresses=[
        {
            "type": "ipAddress",
            "value": "169.23.56.234",
        },
        {
            "type": "ipRange",
            "value": "169.23.22.0-169.23.22.255",
        },
    ],
    description="this is an example of zone",
    excludeds=[
        {
            "type": "ipAddress",
            "value": "169.23.22.10",
        },
        {
            "type": "ipAddress",
            "value": "169.23.22.11",
        },
        {
            "type": "ipAddress",
            "value": "value",
        },
    ])
Copy
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.NewCbrZone(ctx, "cbrZoneInstance", &ibm.CbrZoneArgs{
			AccountId: pulumi.String("12ab34cd56ef78ab90cd12ef34ab56cd"),
			Addresses: ibm.CbrZoneAddressArray{
				&ibm.CbrZoneAddressArgs{
					Type:  pulumi.String("ipAddress"),
					Value: pulumi.String("169.23.56.234"),
				},
				&ibm.CbrZoneAddressArgs{
					Type:  pulumi.String("ipRange"),
					Value: pulumi.String("169.23.22.0-169.23.22.255"),
				},
			},
			Description: pulumi.String("this is an example of zone"),
			Excludeds: ibm.CbrZoneExcludedArray{
				&ibm.CbrZoneExcludedArgs{
					Type:  pulumi.String("ipAddress"),
					Value: pulumi.String("169.23.22.10"),
				},
				&ibm.CbrZoneExcludedArgs{
					Type:  pulumi.String("ipAddress"),
					Value: pulumi.String("169.23.22.11"),
				},
				&ibm.CbrZoneExcludedArgs{
					Type:  pulumi.String("ipAddress"),
					Value: pulumi.String("value"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var cbrZoneInstance = new Ibm.CbrZone("cbrZoneInstance", new()
    {
        AccountId = "12ab34cd56ef78ab90cd12ef34ab56cd",
        Addresses = new[]
        {
            new Ibm.Inputs.CbrZoneAddressArgs
            {
                Type = "ipAddress",
                Value = "169.23.56.234",
            },
            new Ibm.Inputs.CbrZoneAddressArgs
            {
                Type = "ipRange",
                Value = "169.23.22.0-169.23.22.255",
            },
        },
        Description = "this is an example of zone",
        Excludeds = new[]
        {
            new Ibm.Inputs.CbrZoneExcludedArgs
            {
                Type = "ipAddress",
                Value = "169.23.22.10",
            },
            new Ibm.Inputs.CbrZoneExcludedArgs
            {
                Type = "ipAddress",
                Value = "169.23.22.11",
            },
            new Ibm.Inputs.CbrZoneExcludedArgs
            {
                Type = "ipAddress",
                Value = "value",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.CbrZone;
import com.pulumi.ibm.CbrZoneArgs;
import com.pulumi.ibm.inputs.CbrZoneAddressArgs;
import com.pulumi.ibm.inputs.CbrZoneExcludedArgs;
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 cbrZoneInstance = new CbrZone("cbrZoneInstance", CbrZoneArgs.builder()
            .accountId("12ab34cd56ef78ab90cd12ef34ab56cd")
            .addresses(            
                CbrZoneAddressArgs.builder()
                    .type("ipAddress")
                    .value("169.23.56.234")
                    .build(),
                CbrZoneAddressArgs.builder()
                    .type("ipRange")
                    .value("169.23.22.0-169.23.22.255")
                    .build())
            .description("this is an example of zone")
            .excludeds(            
                CbrZoneExcludedArgs.builder()
                    .type("ipAddress")
                    .value("169.23.22.10")
                    .build(),
                CbrZoneExcludedArgs.builder()
                    .type("ipAddress")
                    .value("169.23.22.11")
                    .build(),
                CbrZoneExcludedArgs.builder()
                    .type("ipAddress")
                    .value("value")
                    .build())
            .build());

    }
}
Copy
resources:
  cbrZoneInstance:
    type: ibm:CbrZone
    properties:
      accountId: 12ab34cd56ef78ab90cd12ef34ab56cd
      addresses:
        - type: ipAddress
          value: 169.23.56.234
        - type: ipRange
          value: 169.23.22.0-169.23.22.255
      description: this is an example of zone
      excludeds:
        - type: ipAddress
          value: 169.23.22.10
        - type: ipAddress
          value: 169.23.22.11
        - type: ipAddress
          value: value
Copy

Create CbrZone Resource

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

Constructor syntax

new CbrZone(name: string, args: CbrZoneArgs, opts?: CustomResourceOptions);
@overload
def CbrZone(resource_name: str,
            args: CbrZoneArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def CbrZone(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            addresses: Optional[Sequence[CbrZoneAddressArgs]] = None,
            cbr_zone_id: Optional[str] = None,
            description: Optional[str] = None,
            excludeds: Optional[Sequence[CbrZoneExcludedArgs]] = None,
            name: Optional[str] = None,
            timeouts: Optional[CbrZoneTimeoutsArgs] = None,
            transaction_id: Optional[str] = None,
            x_correlation_id: Optional[str] = None)
func NewCbrZone(ctx *Context, name string, args CbrZoneArgs, opts ...ResourceOption) (*CbrZone, error)
public CbrZone(string name, CbrZoneArgs args, CustomResourceOptions? opts = null)
public CbrZone(String name, CbrZoneArgs args)
public CbrZone(String name, CbrZoneArgs args, CustomResourceOptions options)
type: ibm:CbrZone
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CbrZoneArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CbrZoneArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CbrZoneArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CbrZoneArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CbrZoneArgs
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 cbrZoneResource = new Ibm.CbrZone("cbrZoneResource", new()
{
    AccountId = "string",
    Addresses = new[]
    {
        new Ibm.Inputs.CbrZoneAddressArgs
        {
            Type = "string",
            Ref = new Ibm.Inputs.CbrZoneAddressRefArgs
            {
                AccountId = "string",
                Location = "string",
                ServiceInstance = "string",
                ServiceName = "string",
                ServiceType = "string",
            },
            Value = "string",
        },
    },
    CbrZoneId = "string",
    Description = "string",
    Excludeds = new[]
    {
        new Ibm.Inputs.CbrZoneExcludedArgs
        {
            Type = "string",
            Value = "string",
        },
    },
    Name = "string",
    Timeouts = new Ibm.Inputs.CbrZoneTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Update = "string",
    },
    TransactionId = "string",
    XCorrelationId = "string",
});
Copy
example, err := ibm.NewCbrZone(ctx, "cbrZoneResource", &ibm.CbrZoneArgs{
	AccountId: pulumi.String("string"),
	Addresses: ibm.CbrZoneAddressArray{
		&ibm.CbrZoneAddressArgs{
			Type: pulumi.String("string"),
			Ref: &ibm.CbrZoneAddressRefArgs{
				AccountId:       pulumi.String("string"),
				Location:        pulumi.String("string"),
				ServiceInstance: pulumi.String("string"),
				ServiceName:     pulumi.String("string"),
				ServiceType:     pulumi.String("string"),
			},
			Value: pulumi.String("string"),
		},
	},
	CbrZoneId:   pulumi.String("string"),
	Description: pulumi.String("string"),
	Excludeds: ibm.CbrZoneExcludedArray{
		&ibm.CbrZoneExcludedArgs{
			Type:  pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	Timeouts: &ibm.CbrZoneTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
		Update: pulumi.String("string"),
	},
	TransactionId:  pulumi.String("string"),
	XCorrelationId: pulumi.String("string"),
})
Copy
var cbrZoneResource = new CbrZone("cbrZoneResource", CbrZoneArgs.builder()
    .accountId("string")
    .addresses(CbrZoneAddressArgs.builder()
        .type("string")
        .ref(CbrZoneAddressRefArgs.builder()
            .accountId("string")
            .location("string")
            .serviceInstance("string")
            .serviceName("string")
            .serviceType("string")
            .build())
        .value("string")
        .build())
    .cbrZoneId("string")
    .description("string")
    .excludeds(CbrZoneExcludedArgs.builder()
        .type("string")
        .value("string")
        .build())
    .name("string")
    .timeouts(CbrZoneTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .update("string")
        .build())
    .transactionId("string")
    .xCorrelationId("string")
    .build());
Copy
cbr_zone_resource = ibm.CbrZone("cbrZoneResource",
    account_id="string",
    addresses=[{
        "type": "string",
        "ref": {
            "account_id": "string",
            "location": "string",
            "service_instance": "string",
            "service_name": "string",
            "service_type": "string",
        },
        "value": "string",
    }],
    cbr_zone_id="string",
    description="string",
    excludeds=[{
        "type": "string",
        "value": "string",
    }],
    name="string",
    timeouts={
        "create": "string",
        "delete": "string",
        "update": "string",
    },
    transaction_id="string",
    x_correlation_id="string")
Copy
const cbrZoneResource = new ibm.CbrZone("cbrZoneResource", {
    accountId: "string",
    addresses: [{
        type: "string",
        ref: {
            accountId: "string",
            location: "string",
            serviceInstance: "string",
            serviceName: "string",
            serviceType: "string",
        },
        value: "string",
    }],
    cbrZoneId: "string",
    description: "string",
    excludeds: [{
        type: "string",
        value: "string",
    }],
    name: "string",
    timeouts: {
        create: "string",
        "delete": "string",
        update: "string",
    },
    transactionId: "string",
    xCorrelationId: "string",
});
Copy
type: ibm:CbrZone
properties:
    accountId: string
    addresses:
        - ref:
            accountId: string
            location: string
            serviceInstance: string
            serviceName: string
            serviceType: string
          type: string
          value: string
    cbrZoneId: string
    description: string
    excludeds:
        - type: string
          value: string
    name: string
    timeouts:
        create: string
        delete: string
        update: string
    transactionId: string
    xCorrelationId: string
Copy

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

AccountId This property is required. string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
Addresses List<CbrZoneAddress>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
CbrZoneId string
The unique identifier of the cbr_zone.
Description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
Excludeds List<CbrZoneExcluded>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
Name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
Timeouts CbrZoneTimeouts
TransactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
XCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
AccountId This property is required. string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
Addresses []CbrZoneAddressArgs
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
CbrZoneId string
The unique identifier of the cbr_zone.
Description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
Excludeds []CbrZoneExcludedArgs
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
Name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
Timeouts CbrZoneTimeoutsArgs
TransactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
XCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId This property is required. String
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addresses List<CbrZoneAddress>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId String
The unique identifier of the cbr_zone.
description String
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
excludeds List<CbrZoneExcluded>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
name String
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeouts
transactionId String
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId String
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId This property is required. string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addresses CbrZoneAddress[]
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId string
The unique identifier of the cbr_zone.
description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
excludeds CbrZoneExcluded[]
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeouts
transactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
account_id This property is required. str
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addresses Sequence[CbrZoneAddressArgs]
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbr_zone_id str
The unique identifier of the cbr_zone.
description str
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
excludeds Sequence[CbrZoneExcludedArgs]
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
name str
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeoutsArgs
transaction_id str
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
x_correlation_id str
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId This property is required. String
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addresses List<Property Map>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId String
The unique identifier of the cbr_zone.
description String
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
excludeds List<Property Map>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
name String
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts Property Map
transactionId String
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId String
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.

Outputs

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

AddressCount double
(Integer) The number of addresses in the zone.
CreatedAt string
(String) The time the resource was created.
CreatedById string
(String) IAM ID of the user or service which created the resource.
Crn string
(String) The zone CRN.
Etag string
ETag identifier for cbr_zone.
ExcludedCount double
(Integer) The number of excluded addresses in the zone.
Href string
(String) The href link to the resource.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedAt string
(String) The last time the resource was modified.
LastModifiedById string
(String) IAM ID of the user or service which modified the resource.
AddressCount float64
(Integer) The number of addresses in the zone.
CreatedAt string
(String) The time the resource was created.
CreatedById string
(String) IAM ID of the user or service which created the resource.
Crn string
(String) The zone CRN.
Etag string
ETag identifier for cbr_zone.
ExcludedCount float64
(Integer) The number of excluded addresses in the zone.
Href string
(String) The href link to the resource.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedAt string
(String) The last time the resource was modified.
LastModifiedById string
(String) IAM ID of the user or service which modified the resource.
addressCount Double
(Integer) The number of addresses in the zone.
createdAt String
(String) The time the resource was created.
createdById String
(String) IAM ID of the user or service which created the resource.
crn String
(String) The zone CRN.
etag String
ETag identifier for cbr_zone.
excludedCount Double
(Integer) The number of excluded addresses in the zone.
href String
(String) The href link to the resource.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedAt String
(String) The last time the resource was modified.
lastModifiedById String
(String) IAM ID of the user or service which modified the resource.
addressCount number
(Integer) The number of addresses in the zone.
createdAt string
(String) The time the resource was created.
createdById string
(String) IAM ID of the user or service which created the resource.
crn string
(String) The zone CRN.
etag string
ETag identifier for cbr_zone.
excludedCount number
(Integer) The number of excluded addresses in the zone.
href string
(String) The href link to the resource.
id string
The provider-assigned unique ID for this managed resource.
lastModifiedAt string
(String) The last time the resource was modified.
lastModifiedById string
(String) IAM ID of the user or service which modified the resource.
address_count float
(Integer) The number of addresses in the zone.
created_at str
(String) The time the resource was created.
created_by_id str
(String) IAM ID of the user or service which created the resource.
crn str
(String) The zone CRN.
etag str
ETag identifier for cbr_zone.
excluded_count float
(Integer) The number of excluded addresses in the zone.
href str
(String) The href link to the resource.
id str
The provider-assigned unique ID for this managed resource.
last_modified_at str
(String) The last time the resource was modified.
last_modified_by_id str
(String) IAM ID of the user or service which modified the resource.
addressCount Number
(Integer) The number of addresses in the zone.
createdAt String
(String) The time the resource was created.
createdById String
(String) IAM ID of the user or service which created the resource.
crn String
(String) The zone CRN.
etag String
ETag identifier for cbr_zone.
excludedCount Number
(Integer) The number of excluded addresses in the zone.
href String
(String) The href link to the resource.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedAt String
(String) The last time the resource was modified.
lastModifiedById String
(String) IAM ID of the user or service which modified the resource.

Look up Existing CbrZone Resource

Get an existing CbrZone 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?: CbrZoneState, opts?: CustomResourceOptions): CbrZone
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        address_count: Optional[float] = None,
        addresses: Optional[Sequence[CbrZoneAddressArgs]] = None,
        cbr_zone_id: Optional[str] = None,
        created_at: Optional[str] = None,
        created_by_id: Optional[str] = None,
        crn: Optional[str] = None,
        description: Optional[str] = None,
        etag: Optional[str] = None,
        excluded_count: Optional[float] = None,
        excludeds: Optional[Sequence[CbrZoneExcludedArgs]] = None,
        href: Optional[str] = None,
        last_modified_at: Optional[str] = None,
        last_modified_by_id: Optional[str] = None,
        name: Optional[str] = None,
        timeouts: Optional[CbrZoneTimeoutsArgs] = None,
        transaction_id: Optional[str] = None,
        x_correlation_id: Optional[str] = None) -> CbrZone
func GetCbrZone(ctx *Context, name string, id IDInput, state *CbrZoneState, opts ...ResourceOption) (*CbrZone, error)
public static CbrZone Get(string name, Input<string> id, CbrZoneState? state, CustomResourceOptions? opts = null)
public static CbrZone get(String name, Output<String> id, CbrZoneState state, CustomResourceOptions options)
resources:  _:    type: ibm:CbrZone    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccountId string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
AddressCount double
(Integer) The number of addresses in the zone.
Addresses List<CbrZoneAddress>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
CbrZoneId string
The unique identifier of the cbr_zone.
CreatedAt string
(String) The time the resource was created.
CreatedById string
(String) IAM ID of the user or service which created the resource.
Crn string
(String) The zone CRN.
Description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
Etag string
ETag identifier for cbr_zone.
ExcludedCount double
(Integer) The number of excluded addresses in the zone.
Excludeds List<CbrZoneExcluded>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
Href string
(String) The href link to the resource.
LastModifiedAt string
(String) The last time the resource was modified.
LastModifiedById string
(String) IAM ID of the user or service which modified the resource.
Name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
Timeouts CbrZoneTimeouts
TransactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
XCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
AccountId string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
AddressCount float64
(Integer) The number of addresses in the zone.
Addresses []CbrZoneAddressArgs
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
CbrZoneId string
The unique identifier of the cbr_zone.
CreatedAt string
(String) The time the resource was created.
CreatedById string
(String) IAM ID of the user or service which created the resource.
Crn string
(String) The zone CRN.
Description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
Etag string
ETag identifier for cbr_zone.
ExcludedCount float64
(Integer) The number of excluded addresses in the zone.
Excludeds []CbrZoneExcludedArgs
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
Href string
(String) The href link to the resource.
LastModifiedAt string
(String) The last time the resource was modified.
LastModifiedById string
(String) IAM ID of the user or service which modified the resource.
Name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
Timeouts CbrZoneTimeoutsArgs
TransactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
XCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId String
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addressCount Double
(Integer) The number of addresses in the zone.
addresses List<CbrZoneAddress>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId String
The unique identifier of the cbr_zone.
createdAt String
(String) The time the resource was created.
createdById String
(String) IAM ID of the user or service which created the resource.
crn String
(String) The zone CRN.
description String
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
etag String
ETag identifier for cbr_zone.
excludedCount Double
(Integer) The number of excluded addresses in the zone.
excludeds List<CbrZoneExcluded>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
href String
(String) The href link to the resource.
lastModifiedAt String
(String) The last time the resource was modified.
lastModifiedById String
(String) IAM ID of the user or service which modified the resource.
name String
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeouts
transactionId String
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId String
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId string
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addressCount number
(Integer) The number of addresses in the zone.
addresses CbrZoneAddress[]
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId string
The unique identifier of the cbr_zone.
createdAt string
(String) The time the resource was created.
createdById string
(String) IAM ID of the user or service which created the resource.
crn string
(String) The zone CRN.
description string
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
etag string
ETag identifier for cbr_zone.
excludedCount number
(Integer) The number of excluded addresses in the zone.
excludeds CbrZoneExcluded[]
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
href string
(String) The href link to the resource.
lastModifiedAt string
(String) The last time the resource was modified.
lastModifiedById string
(String) IAM ID of the user or service which modified the resource.
name string
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeouts
transactionId string
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId string
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
account_id str
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
address_count float
(Integer) The number of addresses in the zone.
addresses Sequence[CbrZoneAddressArgs]
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbr_zone_id str
The unique identifier of the cbr_zone.
created_at str
(String) The time the resource was created.
created_by_id str
(String) IAM ID of the user or service which created the resource.
crn str
(String) The zone CRN.
description str
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
etag str
ETag identifier for cbr_zone.
excluded_count float
(Integer) The number of excluded addresses in the zone.
excludeds Sequence[CbrZoneExcludedArgs]
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
href str
(String) The href link to the resource.
last_modified_at str
(String) The last time the resource was modified.
last_modified_by_id str
(String) IAM ID of the user or service which modified the resource.
name str
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts CbrZoneTimeoutsArgs
transaction_id str
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
x_correlation_id str
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.
accountId String
The id of the account owning this zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
addressCount Number
(Integer) The number of addresses in the zone.
addresses List<Property Map>
The list of addresses in the zone.

  • Constraints: The maximum length is 1000 items. The minimum length is 0 items. Nested schema for addresses:
cbrZoneId String
The unique identifier of the cbr_zone.
createdAt String
(String) The time the resource was created.
createdById String
(String) IAM ID of the user or service which created the resource.
crn String
(String) The zone CRN.
description String
The description of the zone.

  • Constraints: The maximum length is 300 characters. The minimum length is 0 characters. The value must match regular expression /^[\x20-\xFE]*$/.
etag String
ETag identifier for cbr_zone.
excludedCount Number
(Integer) The number of excluded addresses in the zone.
excludeds List<Property Map>
The list of excluded addresses in the zone. Only addresses of type ipAddress, ipRange, and subnet can be excluded.

  • Constraints: The maximum length is 1000 items. Nested schema for excluded:
href String
(String) The href link to the resource.
lastModifiedAt String
(String) The last time the resource was modified.
lastModifiedById String
(String) IAM ID of the user or service which modified the resource.
name String
The name of the zone.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9 \-_]+$/.
timeouts Property Map
transactionId String
The Transaction-Id header behaves as the X-Correlation-Id header. It is supported for backward compatibility with other IBM platform services that support the Transaction-Id header only. If both X-Correlation-Id and Transaction-Id are provided, X-Correlation-Id has the precedence over Transaction-Id.
xCorrelationId String
The supplied or generated value of this header is logged for a request and repeated in a response header for the corresponding response. The same value is used for downstream requests and retries of those requests. If a value of this headers is not supplied in a request, the service generates a random (version 4) UUID.

Supporting Types

CbrZoneAddress
, CbrZoneAddressArgs

Type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
Ref CbrZoneAddressRef
A service reference value. Nested schema for ref:
Value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
Type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
Ref CbrZoneAddressRef
A service reference value. Nested schema for ref:
Value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. String
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
ref CbrZoneAddressRef
A service reference value. Nested schema for ref:
value String
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
ref CbrZoneAddressRef
A service reference value. Nested schema for ref:
value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. str
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
ref CbrZoneAddressRef
A service reference value. Nested schema for ref:
value str
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. String
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
ref Property Map
A service reference value. Nested schema for ref:
value String
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.

CbrZoneAddressRef
, CbrZoneAddressRefArgs

AccountId This property is required. string
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
Location string
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
ServiceInstance string
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
ServiceName string
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
ServiceType string
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.
AccountId This property is required. string
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
Location string
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
ServiceInstance string
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
ServiceName string
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
ServiceType string
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.
accountId This property is required. String
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
location String
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceInstance String
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
serviceName String
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceType String
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.
accountId This property is required. string
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
location string
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceInstance string
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
serviceName string
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceType string
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.
account_id This property is required. str
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
location str
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
service_instance str
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
service_name str
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
service_type str
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.
accountId This property is required. String
The id of the account owning the service.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\-]+$/.
location String
The location.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceInstance String
The service instance.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-\/]+$/.
serviceName String
The service name.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z\-]+$/.
serviceType String
The service type.

  • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-z_]+$/.

CbrZoneExcluded
, CbrZoneExcludedArgs

Type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
Value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
Type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
Value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. String
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
value String
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. string
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
value string
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. str
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
value str
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.
type This property is required. String
The type of address.

  • Constraints: Allowable values are: ipAddress, ipRange, subnet, vpc, serviceRef.
value String
The IP address.

  • Constraints: The maximum length is 45 characters. The minimum length is 2 characters. The value must match regular expression /^[a-zA-Z0-9:.]+$/.

CbrZoneTimeouts
, CbrZoneTimeoutsArgs

Create string
Delete string
Update string
Create string
Delete string
Update string
create String
delete String
update String
create string
delete string
update string
create str
delete str
update str
create String
delete String
update String

Import

You can import the ibm_cbr_zone resource by using id. The globally unique ID of the zone.

Syntax

```sh
$ pulumi import ibm:index/cbrZone:CbrZone cbr_zone <id>
```

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.