Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
This data source provides the list of Blue Green Deployments in Oracle Cloud Infrastructure MySQL Database service.
Lists blue/green deployments in a compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBlueGreenDeployments = oci.mysql.getBlueGreenDeployments({
compartmentId: compartmentId,
displayName: blueGreenDeploymentDisplayName,
sourceDbSystemId: testMysqlDbSystem.id,
state: blueGreenDeploymentState,
targetDbSystemId: testMysqlDbSystem.id,
});
import pulumi
import pulumi_oci as oci
test_blue_green_deployments = oci.mysql.get_blue_green_deployments(compartment_id=compartment_id,
display_name=blue_green_deployment_display_name,
source_db_system_id=test_mysql_db_system["id"],
state=blue_green_deployment_state,
target_db_system_id=test_mysql_db_system["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/mysql"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mysql.GetBlueGreenDeployments(ctx, &mysql.GetBlueGreenDeploymentsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(blueGreenDeploymentDisplayName),
SourceDbSystemId: pulumi.StringRef(testMysqlDbSystem.Id),
State: pulumi.StringRef(blueGreenDeploymentState),
TargetDbSystemId: pulumi.StringRef(testMysqlDbSystem.Id),
}, nil)
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 testBlueGreenDeployments = Oci.Mysql.GetBlueGreenDeployments.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = blueGreenDeploymentDisplayName,
SourceDbSystemId = testMysqlDbSystem.Id,
State = blueGreenDeploymentState,
TargetDbSystemId = testMysqlDbSystem.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Mysql.MysqlFunctions;
import com.pulumi.oci.Mysql.inputs.GetBlueGreenDeploymentsArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
final var testBlueGreenDeployments = MysqlFunctions.getBlueGreenDeployments(GetBlueGreenDeploymentsArgs.builder()
.compartmentId(compartmentId)
.displayName(blueGreenDeploymentDisplayName)
.sourceDbSystemId(testMysqlDbSystem.id())
.state(blueGreenDeploymentState)
.targetDbSystemId(testMysqlDbSystem.id())
.build());
}
}
variables:
testBlueGreenDeployments:
fn::invoke:
function: oci:Mysql:getBlueGreenDeployments
arguments:
compartmentId: ${compartmentId}
displayName: ${blueGreenDeploymentDisplayName}
sourceDbSystemId: ${testMysqlDbSystem.id}
state: ${blueGreenDeploymentState}
targetDbSystemId: ${testMysqlDbSystem.id}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_mysql_getbluegreendeployments" "testBlueGreenDeployments" {
compartment_id = compartmentId
display_name = blueGreenDeploymentDisplayName
source_db_system_id = testMysqlDbSystem.id
state = blueGreenDeploymentState
target_db_system_id = testMysqlDbSystem.id
}
Using getBlueGreenDeployments
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBlueGreenDeployments(args: GetBlueGreenDeploymentsArgs, opts?: InvokeOptions): Promise<GetBlueGreenDeploymentsResult>
function getBlueGreenDeploymentsOutput(args: GetBlueGreenDeploymentsOutputArgs, opts?: InvokeOutputOptions): Output<GetBlueGreenDeploymentsResult>def get_blue_green_deployments(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetBlueGreenDeploymentsFilter]] = None,
source_db_system_id: Optional[str] = None,
state: Optional[str] = None,
target_db_system_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBlueGreenDeploymentsResult
def get_blue_green_deployments_output(compartment_id: pulumi.Input[Optional[str]] = None,
display_name: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetBlueGreenDeploymentsFilterArgs]]]] = None,
source_db_system_id: pulumi.Input[Optional[str]] = None,
state: pulumi.Input[Optional[str]] = None,
target_db_system_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetBlueGreenDeploymentsResult]func GetBlueGreenDeployments(ctx *Context, args *GetBlueGreenDeploymentsArgs, opts ...InvokeOption) (*GetBlueGreenDeploymentsResult, error)
func GetBlueGreenDeploymentsOutput(ctx *Context, args *GetBlueGreenDeploymentsOutputArgs, opts ...InvokeOption) GetBlueGreenDeploymentsResultOutput> Note: This function is named GetBlueGreenDeployments in the Go SDK.
public static class GetBlueGreenDeployments
{
public static Task<GetBlueGreenDeploymentsResult> InvokeAsync(GetBlueGreenDeploymentsArgs args, InvokeOptions? opts = null)
public static Output<GetBlueGreenDeploymentsResult> Invoke(GetBlueGreenDeploymentsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetBlueGreenDeploymentsResult> Invoke(GetBlueGreenDeploymentsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetBlueGreenDeploymentsResult> getBlueGreenDeployments(GetBlueGreenDeploymentsArgs args, InvokeOptions options)
public static Output<GetBlueGreenDeploymentsResult> getBlueGreenDeployments(GetBlueGreenDeploymentsArgs args, InvokeOptions options)
public static Output<GetBlueGreenDeploymentsResult> getBlueGreenDeployments(GetBlueGreenDeploymentsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:Mysql/getBlueGreenDeployments:getBlueGreenDeployments
arguments:
# arguments dictionarydata "oci_mysql_get_blue_green_deployments" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - The compartment OCID.
- Display
Name string - Filters deployments by display name.
- Filters
List<Get
Blue Green Deployments Filter> - Source
Db stringSystem Id - Source DB system OCID filter.
- State string
- Filters deployments by lifecycle state.
- Target
Db stringSystem Id - Target DB system OCID filter.
- Compartment
Id string - The compartment OCID.
- Display
Name string - Filters deployments by display name.
- Filters
[]Get
Blue Green Deployments Filter - Source
Db stringSystem Id - Source DB system OCID filter.
- State string
- Filters deployments by lifecycle state.
- Target
Db stringSystem Id - Target DB system OCID filter.
- compartment_
id string - The compartment OCID.
- display_
name string - Filters deployments by display name.
- filters list(object)
- source_
db_ stringsystem_ id - Source DB system OCID filter.
- state string
- Filters deployments by lifecycle state.
- target_
db_ stringsystem_ id - Target DB system OCID filter.
- compartment
Id String - The compartment OCID.
- display
Name String - Filters deployments by display name.
- filters
List<Get
Blue Green Deployments Filter> - source
Db StringSystem Id - Source DB system OCID filter.
- state String
- Filters deployments by lifecycle state.
- target
Db StringSystem Id - Target DB system OCID filter.
- compartment
Id string - The compartment OCID.
- display
Name string - Filters deployments by display name.
- filters
Get
Blue Green Deployments Filter[] - source
Db stringSystem Id - Source DB system OCID filter.
- state string
- Filters deployments by lifecycle state.
- target
Db stringSystem Id - Target DB system OCID filter.
- compartment_
id str - The compartment OCID.
- display_
name str - Filters deployments by display name.
- filters
Sequence[Get
Blue Green Deployments Filter] - source_
db_ strsystem_ id - Source DB system OCID filter.
- state str
- Filters deployments by lifecycle state.
- target_
db_ strsystem_ id - Target DB system OCID filter.
- compartment
Id String - The compartment OCID.
- display
Name String - Filters deployments by display name.
- filters List<Property Map>
- source
Db StringSystem Id - Source DB system OCID filter.
- state String
- Filters deployments by lifecycle state.
- target
Db StringSystem Id - Target DB system OCID filter.
getBlueGreenDeployments Result
The following output properties are available:
- Blue
Green List<GetDeployment Collections Blue Green Deployments Blue Green Deployment Collection> - The list of blue_green_deployment_collection.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The display name of the blue/green deployment.
- Filters
List<Get
Blue Green Deployments Filter> - Source
Db stringSystem Id - Blue/original source DB system OCID for the deployment pair.
- State string
- The current lifecycle state.
- Target
Db stringSystem Id - Green/target DB system OCID for the deployment pair.
- Blue
Green []GetDeployment Collections Blue Green Deployments Blue Green Deployment Collection - The list of blue_green_deployment_collection.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The display name of the blue/green deployment.
- Filters
[]Get
Blue Green Deployments Filter - Source
Db stringSystem Id - Blue/original source DB system OCID for the deployment pair.
- State string
- The current lifecycle state.
- Target
Db stringSystem Id - Green/target DB system OCID for the deployment pair.
- blue_
green_ list(object)deployment_ collections - The list of blue_green_deployment_collection.
- compartment_
id string - The OCID of the compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- display_
name string - The display name of the blue/green deployment.
- filters list(object)
- source_
db_ stringsystem_ id - Blue/original source DB system OCID for the deployment pair.
- state string
- The current lifecycle state.
- target_
db_ stringsystem_ id - Green/target DB system OCID for the deployment pair.
- blue
Green List<GetDeployment Collections Blue Green Deployments Blue Green Deployment Collection> - The list of blue_green_deployment_collection.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The display name of the blue/green deployment.
- filters
List<Get
Blue Green Deployments Filter> - source
Db StringSystem Id - Blue/original source DB system OCID for the deployment pair.
- state String
- The current lifecycle state.
- target
Db StringSystem Id - Green/target DB system OCID for the deployment pair.
- blue
Green GetDeployment Collections Blue Green Deployments Blue Green Deployment Collection[] - The list of blue_green_deployment_collection.
- compartment
Id string - The OCID of the compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - The display name of the blue/green deployment.
- filters
Get
Blue Green Deployments Filter[] - source
Db stringSystem Id - Blue/original source DB system OCID for the deployment pair.
- state string
- The current lifecycle state.
- target
Db stringSystem Id - Green/target DB system OCID for the deployment pair.
- blue_
green_ Sequence[Getdeployment_ collections Blue Green Deployments Blue Green Deployment Collection] - The list of blue_green_deployment_collection.
- compartment_
id str - The OCID of the compartment.
- id str
- The provider-assigned unique ID for this managed resource.
- display_
name str - The display name of the blue/green deployment.
- filters
Sequence[Get
Blue Green Deployments Filter] - source_
db_ strsystem_ id - Blue/original source DB system OCID for the deployment pair.
- state str
- The current lifecycle state.
- target_
db_ strsystem_ id - Green/target DB system OCID for the deployment pair.
- blue
Green List<Property Map>Deployment Collections - The list of blue_green_deployment_collection.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The display name of the blue/green deployment.
- filters List<Property Map>
- source
Db StringSystem Id - Blue/original source DB system OCID for the deployment pair.
- state String
- The current lifecycle state.
- target
Db StringSystem Id - Green/target DB system OCID for the deployment pair.
Supporting Types
GetBlueGreenDeploymentsBlueGreenDeploymentCollection
GetBlueGreenDeploymentsBlueGreenDeploymentCollectionItem
- Active
Db stringSystem Id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- Channel
Details List<GetBlue Green Deployments Blue Green Deployment Collection Item Channel Detail> - Compartment
Id string - The compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Delete
Target boolDb System On Delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- Display
Name string - Filters deployments by display name.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the blue/green deployment.
- Lifecycle
Details string - Additional lifecycle details.
- Replication
Channel stringId - Replication channel OCID.
- Source
Db stringSystem Id - Source DB system OCID filter.
- Ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- State string
- Filters deployments by lifecycle state.
- Switchover
Status string - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - Switchover
Trigger int - Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Target
Db List<GetSystem Details Blue Green Deployments Blue Green Deployment Collection Item Target Db System Detail> - Target DB System details for a blue/green deployment.
- Target
Db stringSystem Id - Target DB system OCID filter.
- Time
Created string - The time the deployment was created.
- Time
Updated string - The time the deployment was last updated.
- Active
Db stringSystem Id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- Channel
Details []GetBlue Green Deployments Blue Green Deployment Collection Item Channel Detail - Compartment
Id string - The compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Delete
Target boolDb System On Delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- Display
Name string - Filters deployments by display name.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the blue/green deployment.
- Lifecycle
Details string - Additional lifecycle details.
- Replication
Channel stringId - Replication channel OCID.
- Source
Db stringSystem Id - Source DB system OCID filter.
- Ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- State string
- Filters deployments by lifecycle state.
- Switchover
Status string - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - Switchover
Trigger int - map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Target
Db []GetSystem Details Blue Green Deployments Blue Green Deployment Collection Item Target Db System Detail - Target DB System details for a blue/green deployment.
- Target
Db stringSystem Id - Target DB system OCID filter.
- Time
Created string - The time the deployment was created.
- Time
Updated string - The time the deployment was last updated.
- active_
db_ stringsystem_ id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- channel_
details list(object) - compartment_
id string - The compartment OCID.
- map(string)
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - delete_
target_ booldb_ system_ on_ delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- display_
name string - Filters deployments by display name.
- map(string)
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- The OCID of the blue/green deployment.
- lifecycle_
details string - Additional lifecycle details.
- replication_
channel_ stringid - Replication channel OCID.
- source_
db_ stringsystem_ id - Source DB system OCID filter.
- ssl_
mode string - SSL mode used for the replication channel created by the blue/green workflow.
- state string
- Filters deployments by lifecycle state.
- switchover_
status string - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - switchover_
trigger number - map(string)
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - target_
db_ list(object)system_ details - Target DB System details for a blue/green deployment.
- target_
db_ stringsystem_ id - Target DB system OCID filter.
- time_
created string - The time the deployment was created.
- time_
updated string - The time the deployment was last updated.
- active
Db StringSystem Id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- channel
Details List<GetBlue Green Deployments Blue Green Deployment Collection Item Channel Detail> - compartment
Id String - The compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - delete
Target BooleanDb System On Delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- display
Name String - Filters deployments by display name.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the blue/green deployment.
- lifecycle
Details String - Additional lifecycle details.
- replication
Channel StringId - Replication channel OCID.
- source
Db StringSystem Id - Source DB system OCID filter.
- ssl
Mode String - SSL mode used for the replication channel created by the blue/green workflow.
- state String
- Filters deployments by lifecycle state.
- switchover
Status String - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - switchover
Trigger Integer - Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Db List<GetSystem Details Blue Green Deployments Blue Green Deployment Collection Item Target Db System Detail> - Target DB System details for a blue/green deployment.
- target
Db StringSystem Id - Target DB system OCID filter.
- time
Created String - The time the deployment was created.
- time
Updated String - The time the deployment was last updated.
- active
Db stringSystem Id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- channel
Details GetBlue Green Deployments Blue Green Deployment Collection Item Channel Detail[] - compartment
Id string - The compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - delete
Target booleanDb System On Delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- display
Name string - Filters deployments by display name.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- The OCID of the blue/green deployment.
- lifecycle
Details string - Additional lifecycle details.
- replication
Channel stringId - Replication channel OCID.
- source
Db stringSystem Id - Source DB system OCID filter.
- ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- state string
- Filters deployments by lifecycle state.
- switchover
Status string - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - switchover
Trigger number - {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Db GetSystem Details Blue Green Deployments Blue Green Deployment Collection Item Target Db System Detail[] - Target DB System details for a blue/green deployment.
- target
Db stringSystem Id - Target DB system OCID filter.
- time
Created string - The time the deployment was created.
- time
Updated string - The time the deployment was last updated.
- active_
db_ strsystem_ id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- channel_
details Sequence[GetBlue Green Deployments Blue Green Deployment Collection Item Channel Detail] - compartment_
id str - The compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - delete_
target_ booldb_ system_ on_ delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- display_
name str - Filters deployments by display name.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id str
- The OCID of the blue/green deployment.
- lifecycle_
details str - Additional lifecycle details.
- replication_
channel_ strid - Replication channel OCID.
- source_
db_ strsystem_ id - Source DB system OCID filter.
- ssl_
mode str - SSL mode used for the replication channel created by the blue/green workflow.
- state str
- Filters deployments by lifecycle state.
- switchover_
status str - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - switchover_
trigger int - Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - target_
db_ Sequence[Getsystem_ details Blue Green Deployments Blue Green Deployment Collection Item Target Db System Detail] - Target DB System details for a blue/green deployment.
- target_
db_ strsystem_ id - Target DB system OCID filter.
- time_
created str - The time the deployment was created.
- time_
updated str - The time the deployment was last updated.
- active
Db StringSystem Id - The DB system OCID that currently owns the client-facing VIP and serves traffic.
- channel
Details List<Property Map> - compartment
Id String - The compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - delete
Target BooleanDb System On Delete - Whether to delete the target DB System when this Blue/Green deployment is deleted.
- display
Name String - Filters deployments by display name.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the blue/green deployment.
- lifecycle
Details String - Additional lifecycle details.
- replication
Channel StringId - Replication channel OCID.
- source
Db StringSystem Id - Source DB system OCID filter.
- ssl
Mode String - SSL mode used for the replication channel created by the blue/green workflow.
- state String
- Filters deployments by lifecycle state.
- switchover
Status String - Stage of the most recent switchover workflow.
SWITCHOVER_FAILEDindicates terminal switchover failure. - switchover
Trigger Number - Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Db List<Property Map>System Details - Target DB System details for a blue/green deployment.
- target
Db StringSystem Id - Target DB system OCID filter.
- time
Created String - The time the deployment was created.
- time
Updated String - The time the deployment was last updated.
GetBlueGreenDeploymentsBlueGreenDeploymentCollectionItemChannelDetail
- Applier
Username string - Source
Password string - Source
Username string - Ssl
Ca List<GetCertificates Blue Green Deployments Blue Green Deployment Collection Item Channel Detail Ssl Ca Certificate> - Ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- Applier
Username string - Source
Password string - Source
Username string - Ssl
Ca []GetCertificates Blue Green Deployments Blue Green Deployment Collection Item Channel Detail Ssl Ca Certificate - Ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- applier_
username string - source_
password string - source_
username string - ssl_
ca_ list(object)certificates - ssl_
mode string - SSL mode used for the replication channel created by the blue/green workflow.
- applier
Username String - source
Password String - source
Username String - ssl
Ca List<GetCertificates Blue Green Deployments Blue Green Deployment Collection Item Channel Detail Ssl Ca Certificate> - ssl
Mode String - SSL mode used for the replication channel created by the blue/green workflow.
- applier
Username string - source
Password string - source
Username string - ssl
Ca GetCertificates Blue Green Deployments Blue Green Deployment Collection Item Channel Detail Ssl Ca Certificate[] - ssl
Mode string - SSL mode used for the replication channel created by the blue/green workflow.
- applier_
username str - source_
password str - source_
username str - ssl_
ca_ Sequence[Getcertificates Blue Green Deployments Blue Green Deployment Collection Item Channel Detail Ssl Ca Certificate] - ssl_
mode str - SSL mode used for the replication channel created by the blue/green workflow.
- applier
Username String - source
Password String - source
Username String - ssl
Ca List<Property Map>Certificates - ssl
Mode String - SSL mode used for the replication channel created by the blue/green workflow.
GetBlueGreenDeploymentsBlueGreenDeploymentCollectionItemChannelDetailSslCaCertificate
- Certificate
Type string - Contents string
- Certificate
Type string - Contents string
- certificate_
type string - contents string
- certificate
Type String - contents String
- certificate
Type string - contents string
- certificate_
type str - contents str
- certificate
Type String - contents String
GetBlueGreenDeploymentsBlueGreenDeploymentCollectionItemTargetDbSystemDetail
- Configuration
Id string - The OCID of the configuration applied to the target DB System.
- Data
Storage intSize In Gb - Initial data storage size in GiBs for the target DB System.
- Mysql
Version string - Target MySQL engine version.
- Shape
Name string - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- Configuration
Id string - The OCID of the configuration applied to the target DB System.
- Data
Storage intSize In Gb - Initial data storage size in GiBs for the target DB System.
- Mysql
Version string - Target MySQL engine version.
- Shape
Name string - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- configuration_
id string - The OCID of the configuration applied to the target DB System.
- data_
storage_ numbersize_ in_ gb - Initial data storage size in GiBs for the target DB System.
- mysql_
version string - Target MySQL engine version.
- shape_
name string - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- configuration
Id String - The OCID of the configuration applied to the target DB System.
- data
Storage IntegerSize In Gb - Initial data storage size in GiBs for the target DB System.
- mysql
Version String - Target MySQL engine version.
- shape
Name String - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- configuration
Id string - The OCID of the configuration applied to the target DB System.
- data
Storage numberSize In Gb - Initial data storage size in GiBs for the target DB System.
- mysql
Version string - Target MySQL engine version.
- shape
Name string - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- configuration_
id str - The OCID of the configuration applied to the target DB System.
- data_
storage_ intsize_ in_ gb - Initial data storage size in GiBs for the target DB System.
- mysql_
version str - Target MySQL engine version.
- shape_
name str - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
- configuration
Id String - The OCID of the configuration applied to the target DB System.
- data
Storage NumberSize In Gb - Initial data storage size in GiBs for the target DB System.
- mysql
Version String - Target MySQL engine version.
- shape
Name String - The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the ListShapes operation.
GetBlueGreenDeploymentsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi