oci.ComputeCloud.AtCustomerCccInfrastructure
Explore with Pulumi AI
This resource provides the Ccc Infrastructure resource in Oracle Cloud Infrastructure Compute Cloud At Customer service.
Creates a Compute Cloud@Customer infrastructure. Once created, Oracle Services must connect the rack in the data center to this Oracle Cloud Infrastructure resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCccInfrastructure = new oci.computecloud.AtCustomerCccInfrastructure("test_ccc_infrastructure", {
    compartmentId: compartmentId,
    displayName: cccInfrastructureDisplayName,
    subnetId: testSubnet.id,
    cccUpgradeScheduleId: testCccUpgradeSchedule.id,
    connectionDetails: cccInfrastructureConnectionDetails,
    connectionState: cccInfrastructureConnectionState,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: cccInfrastructureDescription,
    freeformTags: {
        "bar-key": "value",
    },
});
import pulumi
import pulumi_oci as oci
test_ccc_infrastructure = oci.compute_cloud.AtCustomerCccInfrastructure("test_ccc_infrastructure",
    compartment_id=compartment_id,
    display_name=ccc_infrastructure_display_name,
    subnet_id=test_subnet["id"],
    ccc_upgrade_schedule_id=test_ccc_upgrade_schedule["id"],
    connection_details=ccc_infrastructure_connection_details,
    connection_state=ccc_infrastructure_connection_state,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=ccc_infrastructure_description,
    freeform_tags={
        "bar-key": "value",
    })
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/computecloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := computecloud.NewAtCustomerCccInfrastructure(ctx, "test_ccc_infrastructure", &computecloud.AtCustomerCccInfrastructureArgs{
			CompartmentId:        pulumi.Any(compartmentId),
			DisplayName:          pulumi.Any(cccInfrastructureDisplayName),
			SubnetId:             pulumi.Any(testSubnet.Id),
			CccUpgradeScheduleId: pulumi.Any(testCccUpgradeSchedule.Id),
			ConnectionDetails:    pulumi.Any(cccInfrastructureConnectionDetails),
			ConnectionState:      pulumi.Any(cccInfrastructureConnectionState),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(cccInfrastructureDescription),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testCccInfrastructure = new Oci.ComputeCloud.AtCustomerCccInfrastructure("test_ccc_infrastructure", new()
    {
        CompartmentId = compartmentId,
        DisplayName = cccInfrastructureDisplayName,
        SubnetId = testSubnet.Id,
        CccUpgradeScheduleId = testCccUpgradeSchedule.Id,
        ConnectionDetails = cccInfrastructureConnectionDetails,
        ConnectionState = cccInfrastructureConnectionState,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = cccInfrastructureDescription,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ComputeCloud.AtCustomerCccInfrastructure;
import com.pulumi.oci.ComputeCloud.AtCustomerCccInfrastructureArgs;
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 testCccInfrastructure = new AtCustomerCccInfrastructure("testCccInfrastructure", AtCustomerCccInfrastructureArgs.builder()
            .compartmentId(compartmentId)
            .displayName(cccInfrastructureDisplayName)
            .subnetId(testSubnet.id())
            .cccUpgradeScheduleId(testCccUpgradeSchedule.id())
            .connectionDetails(cccInfrastructureConnectionDetails)
            .connectionState(cccInfrastructureConnectionState)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(cccInfrastructureDescription)
            .freeformTags(Map.of("bar-key", "value"))
            .build());
    }
}
resources:
  testCccInfrastructure:
    type: oci:ComputeCloud:AtCustomerCccInfrastructure
    name: test_ccc_infrastructure
    properties:
      compartmentId: ${compartmentId}
      displayName: ${cccInfrastructureDisplayName}
      subnetId: ${testSubnet.id}
      cccUpgradeScheduleId: ${testCccUpgradeSchedule.id}
      connectionDetails: ${cccInfrastructureConnectionDetails}
      connectionState: ${cccInfrastructureConnectionState}
      definedTags:
        foo-namespace.bar-key: value
      description: ${cccInfrastructureDescription}
      freeformTags:
        bar-key: value
Create AtCustomerCccInfrastructure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AtCustomerCccInfrastructure(name: string, args: AtCustomerCccInfrastructureArgs, opts?: CustomResourceOptions);@overload
def AtCustomerCccInfrastructure(resource_name: str,
                                args: AtCustomerCccInfrastructureArgs,
                                opts: Optional[ResourceOptions] = None)
@overload
def AtCustomerCccInfrastructure(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                compartment_id: Optional[str] = None,
                                display_name: Optional[str] = None,
                                subnet_id: Optional[str] = None,
                                ccc_upgrade_schedule_id: Optional[str] = None,
                                connection_details: Optional[str] = None,
                                connection_state: Optional[str] = None,
                                defined_tags: Optional[Mapping[str, str]] = None,
                                description: Optional[str] = None,
                                freeform_tags: Optional[Mapping[str, str]] = None)func NewAtCustomerCccInfrastructure(ctx *Context, name string, args AtCustomerCccInfrastructureArgs, opts ...ResourceOption) (*AtCustomerCccInfrastructure, error)public AtCustomerCccInfrastructure(string name, AtCustomerCccInfrastructureArgs args, CustomResourceOptions? opts = null)
public AtCustomerCccInfrastructure(String name, AtCustomerCccInfrastructureArgs args)
public AtCustomerCccInfrastructure(String name, AtCustomerCccInfrastructureArgs args, CustomResourceOptions options)
type: oci:ComputeCloud:AtCustomerCccInfrastructure
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 AtCustomerCccInfrastructureArgs
- 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 AtCustomerCccInfrastructureArgs
- 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 AtCustomerCccInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AtCustomerCccInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AtCustomerCccInfrastructureArgs
- 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 atCustomerCccInfrastructureResource = new Oci.ComputeCloud.AtCustomerCccInfrastructure("atCustomerCccInfrastructureResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    SubnetId = "string",
    CccUpgradeScheduleId = "string",
    ConnectionDetails = "string",
    ConnectionState = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
example, err := computecloud.NewAtCustomerCccInfrastructure(ctx, "atCustomerCccInfrastructureResource", &computecloud.AtCustomerCccInfrastructureArgs{
	CompartmentId:        pulumi.String("string"),
	DisplayName:          pulumi.String("string"),
	SubnetId:             pulumi.String("string"),
	CccUpgradeScheduleId: pulumi.String("string"),
	ConnectionDetails:    pulumi.String("string"),
	ConnectionState:      pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var atCustomerCccInfrastructureResource = new AtCustomerCccInfrastructure("atCustomerCccInfrastructureResource", AtCustomerCccInfrastructureArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .subnetId("string")
    .cccUpgradeScheduleId("string")
    .connectionDetails("string")
    .connectionState("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .build());
at_customer_ccc_infrastructure_resource = oci.compute_cloud.AtCustomerCccInfrastructure("atCustomerCccInfrastructureResource",
    compartment_id="string",
    display_name="string",
    subnet_id="string",
    ccc_upgrade_schedule_id="string",
    connection_details="string",
    connection_state="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    })
const atCustomerCccInfrastructureResource = new oci.computecloud.AtCustomerCccInfrastructure("atCustomerCccInfrastructureResource", {
    compartmentId: "string",
    displayName: "string",
    subnetId: "string",
    cccUpgradeScheduleId: "string",
    connectionDetails: "string",
    connectionState: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
});
type: oci:ComputeCloud:AtCustomerCccInfrastructure
properties:
    cccUpgradeScheduleId: string
    compartmentId: string
    connectionDetails: string
    connectionState: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    subnetId: string
AtCustomerCccInfrastructure 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 AtCustomerCccInfrastructure resource accepts the following input properties:
- CompartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- DisplayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- SubnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- ConnectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- ConnectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- CompartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- DisplayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- SubnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- ConnectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- ConnectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- compartmentId String
- (Updatable) The compartment OCID associated with the infrastructure.
- displayName String
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- subnetId String
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- cccUpgrade StringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- connectionDetails String
- (Updatable) A message describing the current connection state in more detail.
- connectionState String
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- compartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- displayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- subnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- cccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- connectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- connectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- compartment_id str
- (Updatable) The compartment OCID associated with the infrastructure.
- display_name str
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- subnet_id str
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- ccc_upgrade_ strschedule_ id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- connection_details str
- (Updatable) A message describing the current connection state in more detail.
- connection_state str
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- compartmentId String
- (Updatable) The compartment OCID associated with the infrastructure.
- displayName String
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- subnetId String
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- cccUpgrade StringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- connectionDetails String
- (Updatable) A message describing the current connection state in more detail.
- connectionState String
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Outputs
All input properties are implicitly available as output properties. Additionally, the AtCustomerCccInfrastructure resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- InfrastructureInventories List<AtCustomer Ccc Infrastructure Infrastructure Inventory> 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- InfrastructureNetwork List<AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration> 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- LifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- ProvisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- ProvisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- ShortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- State string
- The current state of the Compute Cloud@Customer infrastructure.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- TimeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- UpgradeInformations List<AtCustomer Ccc Infrastructure Upgrade Information> 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- InfrastructureInventories []AtCustomer Ccc Infrastructure Infrastructure Inventory 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- InfrastructureNetwork []AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- LifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- ProvisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- ProvisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- ShortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- State string
- The current state of the Compute Cloud@Customer infrastructure.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- TimeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- UpgradeInformations []AtCustomer Ccc Infrastructure Upgrade Information 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructureInventories List<AtCustomer Ccc Infrastructure Infrastructure Inventory> 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork List<AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration> 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails String
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint String
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin String
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName String
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state String
- The current state of the Compute Cloud@Customer infrastructure.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated String
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations List<AtCustomer Ccc Infrastructure Upgrade Information> 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- id string
- The provider-assigned unique ID for this managed resource.
- infrastructureInventories AtCustomer Ccc Infrastructure Infrastructure Inventory[] 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration[] 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state string
- The current state of the Compute Cloud@Customer infrastructure.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations AtCustomer Ccc Infrastructure Upgrade Information[] 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- id str
- The provider-assigned unique ID for this managed resource.
- infrastructure_inventories Sequence[AtCustomer Ccc Infrastructure Infrastructure Inventory] 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructure_network_ Sequence[Atconfigurations Customer Ccc Infrastructure Infrastructure Network Configuration] 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycle_details str
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioning_fingerprint str
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioning_pin str
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- short_name str
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state str
- The current state of the Compute Cloud@Customer infrastructure.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- time_updated str
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgrade_informations Sequence[AtCustomer Ccc Infrastructure Upgrade Information] 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructureInventories List<Property Map>
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork List<Property Map>Configurations 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails String
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint String
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin String
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName String
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state String
- The current state of the Compute Cloud@Customer infrastructure.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated String
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations List<Property Map>
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
Look up Existing AtCustomerCccInfrastructure Resource
Get an existing AtCustomerCccInfrastructure 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?: AtCustomerCccInfrastructureState, opts?: CustomResourceOptions): AtCustomerCccInfrastructure@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ccc_upgrade_schedule_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        connection_details: Optional[str] = None,
        connection_state: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        infrastructure_inventories: Optional[Sequence[AtCustomerCccInfrastructureInfrastructureInventoryArgs]] = None,
        infrastructure_network_configurations: Optional[Sequence[AtCustomerCccInfrastructureInfrastructureNetworkConfigurationArgs]] = None,
        lifecycle_details: Optional[str] = None,
        provisioning_fingerprint: Optional[str] = None,
        provisioning_pin: Optional[str] = None,
        short_name: Optional[str] = None,
        state: Optional[str] = None,
        subnet_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        upgrade_informations: Optional[Sequence[AtCustomerCccInfrastructureUpgradeInformationArgs]] = None) -> AtCustomerCccInfrastructurefunc GetAtCustomerCccInfrastructure(ctx *Context, name string, id IDInput, state *AtCustomerCccInfrastructureState, opts ...ResourceOption) (*AtCustomerCccInfrastructure, error)public static AtCustomerCccInfrastructure Get(string name, Input<string> id, AtCustomerCccInfrastructureState? state, CustomResourceOptions? opts = null)public static AtCustomerCccInfrastructure get(String name, Output<String> id, AtCustomerCccInfrastructureState state, CustomResourceOptions options)resources:  _:    type: oci:ComputeCloud:AtCustomerCccInfrastructure    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.
- CccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- CompartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- ConnectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- ConnectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- DisplayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InfrastructureInventories List<AtCustomer Ccc Infrastructure Infrastructure Inventory> 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- InfrastructureNetwork List<AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration> 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- LifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- ProvisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- ProvisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- ShortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- State string
- The current state of the Compute Cloud@Customer infrastructure.
- SubnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- TimeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- UpgradeInformations List<AtCustomer Ccc Infrastructure Upgrade Information> 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- CccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- CompartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- ConnectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- ConnectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- DisplayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- InfrastructureInventories []AtCustomer Ccc Infrastructure Infrastructure Inventory Args 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- InfrastructureNetwork []AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration Args 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- LifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- ProvisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- ProvisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- ShortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- State string
- The current state of the Compute Cloud@Customer infrastructure.
- SubnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- TimeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- UpgradeInformations []AtCustomer Ccc Infrastructure Upgrade Information Args 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- cccUpgrade StringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- compartmentId String
- (Updatable) The compartment OCID associated with the infrastructure.
- connectionDetails String
- (Updatable) A message describing the current connection state in more detail.
- connectionState String
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- displayName String
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- infrastructureInventories List<AtCustomer Ccc Infrastructure Infrastructure Inventory> 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork List<AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration> 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails String
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint String
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin String
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName String
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state String
- The current state of the Compute Cloud@Customer infrastructure.
- subnetId String
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated String
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations List<AtCustomer Ccc Infrastructure Upgrade Information> 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- cccUpgrade stringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- compartmentId string
- (Updatable) The compartment OCID associated with the infrastructure.
- connectionDetails string
- (Updatable) A message describing the current connection state in more detail.
- connectionState string
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- displayName string
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- infrastructureInventories AtCustomer Ccc Infrastructure Infrastructure Inventory[] 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork AtConfigurations Customer Ccc Infrastructure Infrastructure Network Configuration[] 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails string
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint string
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin string
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName string
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state string
- The current state of the Compute Cloud@Customer infrastructure.
- subnetId string
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated string
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations AtCustomer Ccc Infrastructure Upgrade Information[] 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- ccc_upgrade_ strschedule_ id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- compartment_id str
- (Updatable) The compartment OCID associated with the infrastructure.
- connection_details str
- (Updatable) A message describing the current connection state in more detail.
- connection_state str
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- display_name str
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- infrastructure_inventories Sequence[AtCustomer Ccc Infrastructure Infrastructure Inventory Args] 
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructure_network_ Sequence[Atconfigurations Customer Ccc Infrastructure Infrastructure Network Configuration Args] 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycle_details str
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioning_fingerprint str
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioning_pin str
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- short_name str
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state str
- The current state of the Compute Cloud@Customer infrastructure.
- subnet_id str
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- time_updated str
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgrade_informations Sequence[AtCustomer Ccc Infrastructure Upgrade Information Args] 
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
- cccUpgrade StringSchedule Id 
- (Updatable) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.
- compartmentId String
- (Updatable) The compartment OCID associated with the infrastructure.
- connectionDetails String
- (Updatable) A message describing the current connection state in more detail.
- connectionState String
- (Updatable) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.
- displayName String
- (Updatable) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- infrastructureInventories List<Property Map>
- Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.
- infrastructureNetwork List<Property Map>Configurations 
- Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.
- lifecycleDetails String
- A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.
- provisioningFingerprint String
- Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.
- provisioningPin String
- Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).
- shortName String
- The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.
- state String
- The current state of the Compute Cloud@Customer infrastructure.
- subnetId String
- (Updatable) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.
- timeUpdated String
- Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.
- upgradeInformations List<Property Map>
- Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.
Supporting Types
AtCustomerCccInfrastructureInfrastructureInventory, AtCustomerCccInfrastructureInfrastructureInventoryArgs            
- CapacityStorage intTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- ComputeNode intCount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- ManagementNode intCount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- PerformanceStorage intTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- SerialNumber string
- The serial number of the Compute Cloud@Customer infrastructure rack.
- CapacityStorage intTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- ComputeNode intCount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- ManagementNode intCount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- PerformanceStorage intTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- SerialNumber string
- The serial number of the Compute Cloud@Customer infrastructure rack.
- capacityStorage IntegerTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- computeNode IntegerCount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- managementNode IntegerCount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- performanceStorage IntegerTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- serialNumber String
- The serial number of the Compute Cloud@Customer infrastructure rack.
- capacityStorage numberTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- computeNode numberCount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- managementNode numberCount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- performanceStorage numberTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- serialNumber string
- The serial number of the Compute Cloud@Customer infrastructure rack.
- capacity_storage_ inttray_ count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- compute_node_ intcount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- management_node_ intcount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- performance_storage_ inttray_ count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- serial_number str
- The serial number of the Compute Cloud@Customer infrastructure rack.
- capacityStorage NumberTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.
- computeNode NumberCount 
- The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.
- managementNode NumberCount 
- The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.
- performanceStorage NumberTray Count 
- The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.
- serialNumber String
- The serial number of the Compute Cloud@Customer infrastructure rack.
AtCustomerCccInfrastructureInfrastructureNetworkConfiguration, AtCustomerCccInfrastructureInfrastructureNetworkConfigurationArgs              
- DnsIps List<string>
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- InfrastructureRouting List<AtDynamics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic> 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- InfrastructureRouting List<AtStatics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Static> 
- Static routing information for a rack.
- ManagementNodes List<AtCustomer Ccc Infrastructure Infrastructure Network Configuration Management Node> 
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- MgmtVip stringHostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- MgmtVip stringIp 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- SpineIps List<string>
- Addresses of the network spine switches.
- SpineVip string
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- UplinkDomain string
- Domain name to be used as the base domain for the internal network and by public facing services.
- UplinkGateway stringIp 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- UplinkNetmask string
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- UplinkPort intCount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- UplinkPort stringForward Error Correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- UplinkPort intSpeed In Gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- UplinkVlan intMtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
- DnsIps []string
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- InfrastructureRouting []AtDynamics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- InfrastructureRouting []AtStatics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Static 
- Static routing information for a rack.
- ManagementNodes []AtCustomer Ccc Infrastructure Infrastructure Network Configuration Management Node 
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- MgmtVip stringHostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- MgmtVip stringIp 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- SpineIps []string
- Addresses of the network spine switches.
- SpineVip string
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- UplinkDomain string
- Domain name to be used as the base domain for the internal network and by public facing services.
- UplinkGateway stringIp 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- UplinkNetmask string
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- UplinkPort intCount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- UplinkPort stringForward Error Correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- UplinkPort intSpeed In Gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- UplinkVlan intMtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
- dnsIps List<String>
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- infrastructureRouting List<AtDynamics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic> 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- infrastructureRouting List<AtStatics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Static> 
- Static routing information for a rack.
- managementNodes List<AtCustomer Ccc Infrastructure Infrastructure Network Configuration Management Node> 
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- mgmtVip StringHostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- mgmtVip StringIp 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- spineIps List<String>
- Addresses of the network spine switches.
- spineVip String
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- uplinkDomain String
- Domain name to be used as the base domain for the internal network and by public facing services.
- uplinkGateway StringIp 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- uplinkNetmask String
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- uplinkPort IntegerCount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- uplinkPort StringForward Error Correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- uplinkPort IntegerSpeed In Gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- uplinkVlan IntegerMtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
- dnsIps string[]
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- infrastructureRouting AtDynamics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic[] 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- infrastructureRouting AtStatics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Static[] 
- Static routing information for a rack.
- managementNodes AtCustomer Ccc Infrastructure Infrastructure Network Configuration Management Node[] 
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- mgmtVip stringHostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- mgmtVip stringIp 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- spineIps string[]
- Addresses of the network spine switches.
- spineVip string
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- uplinkDomain string
- Domain name to be used as the base domain for the internal network and by public facing services.
- uplinkGateway stringIp 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- uplinkNetmask string
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- uplinkPort numberCount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- uplinkPort stringForward Error Correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- uplinkPort numberSpeed In Gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- uplinkVlan numberMtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
- dns_ips Sequence[str]
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- infrastructure_routing_ Sequence[Atdynamics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic] 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- infrastructure_routing_ Sequence[Atstatics Customer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Static] 
- Static routing information for a rack.
- management_nodes Sequence[AtCustomer Ccc Infrastructure Infrastructure Network Configuration Management Node] 
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- mgmt_vip_ strhostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- mgmt_vip_ strip 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- spine_ips Sequence[str]
- Addresses of the network spine switches.
- spine_vip str
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- uplink_domain str
- Domain name to be used as the base domain for the internal network and by public facing services.
- uplink_gateway_ strip 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- uplink_netmask str
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- uplink_port_ intcount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- uplink_port_ strforward_ error_ correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- uplink_port_ intspeed_ in_ gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- uplink_vlan_ intmtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
- dnsIps List<String>
- The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.
- infrastructureRouting List<Property Map>Dynamics 
- Dynamic routing information for the Compute Cloud@Customer infrastructure.
- infrastructureRouting List<Property Map>Statics 
- Static routing information for a rack.
- managementNodes List<Property Map>
- Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.
- mgmtVip StringHostname 
- The hostname corresponding to the virtual IP (VIP) address of the management nodes.
- mgmtVip StringIp 
- The IP address used as the virtual IP (VIP) address of the management nodes.
- spineIps List<String>
- Addresses of the network spine switches.
- spineVip String
- The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.
- uplinkDomain String
- Domain name to be used as the base domain for the internal network and by public facing services.
- uplinkGateway StringIp 
- Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.
- uplinkNetmask String
- Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.
- uplinkPort NumberCount 
- Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.
- uplinkPort StringForward Error Correction 
- The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.
- uplinkPort NumberSpeed In Gbps 
- Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.
- uplinkVlan NumberMtu 
- The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.
AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingDynamic, AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingDynamicArgs                    
- BgpTopology string
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- OracleAsn int
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- PeerInformations List<AtCustomer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic Peer Information> 
- The list of peer devices in the dynamic routing configuration.
- BgpTopology string
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- OracleAsn int
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- PeerInformations []AtCustomer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic Peer Information 
- The list of peer devices in the dynamic routing configuration.
- bgpTopology String
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- oracleAsn Integer
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- peerInformations List<AtCustomer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic Peer Information> 
- The list of peer devices in the dynamic routing configuration.
- bgpTopology string
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- oracleAsn number
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- peerInformations AtCustomer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic Peer Information[] 
- The list of peer devices in the dynamic routing configuration.
- bgp_topology str
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- oracle_asn int
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- peer_informations Sequence[AtCustomer Ccc Infrastructure Infrastructure Network Configuration Infrastructure Routing Dynamic Peer Information] 
- The list of peer devices in the dynamic routing configuration.
- bgpTopology String
- The topology in use for the Border Gateway Protocol (BGP) configuration.
- oracleAsn Number
- The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
- peerInformations List<Property Map>
- The list of peer devices in the dynamic routing configuration.
AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingDynamicPeerInformation, AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingDynamicPeerInformationArgs                        
AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingStatic, AtCustomerCccInfrastructureInfrastructureNetworkConfigurationInfrastructureRoutingStaticArgs                    
- UplinkHsrp intGroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- UplinkVlan int
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
- UplinkHsrp intGroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- UplinkVlan int
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
- uplinkHsrp IntegerGroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- uplinkVlan Integer
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
- uplinkHsrp numberGroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- uplinkVlan number
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
- uplink_hsrp_ intgroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- uplink_vlan int
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
- uplinkHsrp NumberGroup 
- The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.
- uplinkVlan Number
- The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).
AtCustomerCccInfrastructureInfrastructureNetworkConfigurationManagementNode, AtCustomerCccInfrastructureInfrastructureNetworkConfigurationManagementNodeArgs                  
AtCustomerCccInfrastructureUpgradeInformation, AtCustomerCccInfrastructureUpgradeInformationArgs            
- CurrentVersion string
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- IsActive bool
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- ScheduledUpgrade stringDuration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- TimeOf stringScheduled Upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
- CurrentVersion string
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- IsActive bool
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- ScheduledUpgrade stringDuration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- TimeOf stringScheduled Upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
- currentVersion String
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- isActive Boolean
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- scheduledUpgrade StringDuration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- timeOf StringScheduled Upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
- currentVersion string
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- isActive boolean
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- scheduledUpgrade stringDuration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- timeOf stringScheduled Upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
- current_version str
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- is_active bool
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- scheduled_upgrade_ strduration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- time_of_ strscheduled_ upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
- currentVersion String
- The current version of software installed on the Compute Cloud@Customer infrastructure.
- isActive Boolean
- Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).
- scheduledUpgrade StringDuration 
- Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.
- timeOf StringScheduled Upgrade 
- Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.
Import
CccInfrastructures can be imported using the id, e.g.
$ pulumi import oci:ComputeCloud/atCustomerCccInfrastructure:AtCustomerCccInfrastructure test_ccc_infrastructure "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.