oci.GoldenGate.getDeployments
Explore with Pulumi AI
This data source provides the list of Deployments in Oracle Cloud Infrastructure Golden Gate service.
Lists the Deployments in a compartment.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDeployments = Oci.GoldenGate.GetDeployments.Invoke(new()
{
CompartmentId = @var.Compartment_id,
AssignableConnectionId = oci_golden_gate_connection.Test_connection.Id,
AssignedConnectionId = oci_golden_gate_connection.Test_connection.Id,
DisplayName = @var.Deployment_display_name,
Fqdn = @var.Deployment_fqdn,
LifecycleSubState = @var.Deployment_lifecycle_sub_state,
State = @var.Deployment_state,
SupportedConnectionType = @var.Deployment_supported_connection_type,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/GoldenGate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := GoldenGate.GetDeployments(ctx, &goldengate.GetDeploymentsArgs{
CompartmentId: _var.Compartment_id,
AssignableConnectionId: pulumi.StringRef(oci_golden_gate_connection.Test_connection.Id),
AssignedConnectionId: pulumi.StringRef(oci_golden_gate_connection.Test_connection.Id),
DisplayName: pulumi.StringRef(_var.Deployment_display_name),
Fqdn: pulumi.StringRef(_var.Deployment_fqdn),
LifecycleSubState: pulumi.StringRef(_var.Deployment_lifecycle_sub_state),
State: pulumi.StringRef(_var.Deployment_state),
SupportedConnectionType: pulumi.StringRef(_var.Deployment_supported_connection_type),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.GoldenGateFunctions;
import com.pulumi.oci.GoldenGate.inputs.GetDeploymentsArgs;
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) {
final var testDeployments = GoldenGateFunctions.getDeployments(GetDeploymentsArgs.builder()
.compartmentId(var_.compartment_id())
.assignableConnectionId(oci_golden_gate_connection.test_connection().id())
.assignedConnectionId(oci_golden_gate_connection.test_connection().id())
.displayName(var_.deployment_display_name())
.fqdn(var_.deployment_fqdn())
.lifecycleSubState(var_.deployment_lifecycle_sub_state())
.state(var_.deployment_state())
.supportedConnectionType(var_.deployment_supported_connection_type())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_deployments = oci.GoldenGate.get_deployments(compartment_id=var["compartment_id"],
assignable_connection_id=oci_golden_gate_connection["test_connection"]["id"],
assigned_connection_id=oci_golden_gate_connection["test_connection"]["id"],
display_name=var["deployment_display_name"],
fqdn=var["deployment_fqdn"],
lifecycle_sub_state=var["deployment_lifecycle_sub_state"],
state=var["deployment_state"],
supported_connection_type=var["deployment_supported_connection_type"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDeployments = oci.GoldenGate.getDeployments({
compartmentId: _var.compartment_id,
assignableConnectionId: oci_golden_gate_connection.test_connection.id,
assignedConnectionId: oci_golden_gate_connection.test_connection.id,
displayName: _var.deployment_display_name,
fqdn: _var.deployment_fqdn,
lifecycleSubState: _var.deployment_lifecycle_sub_state,
state: _var.deployment_state,
supportedConnectionType: _var.deployment_supported_connection_type,
});
variables:
testDeployments:
fn::invoke:
Function: oci:GoldenGate:getDeployments
Arguments:
compartmentId: ${var.compartment_id}
assignableConnectionId: ${oci_golden_gate_connection.test_connection.id}
assignedConnectionId: ${oci_golden_gate_connection.test_connection.id}
displayName: ${var.deployment_display_name}
fqdn: ${var.deployment_fqdn}
lifecycleSubState: ${var.deployment_lifecycle_sub_state}
state: ${var.deployment_state}
supportedConnectionType: ${var.deployment_supported_connection_type}
Using getDeployments
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 getDeployments(args: GetDeploymentsArgs, opts?: InvokeOptions): Promise<GetDeploymentsResult>
function getDeploymentsOutput(args: GetDeploymentsOutputArgs, opts?: InvokeOptions): Output<GetDeploymentsResult>
def get_deployments(assignable_connection_id: Optional[str] = None,
assigned_connection_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_goldengate.GetDeploymentsFilter]] = None,
fqdn: Optional[str] = None,
lifecycle_sub_state: Optional[str] = None,
state: Optional[str] = None,
supported_connection_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDeploymentsResult
def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[str]] = None,
assigned_connection_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_goldengate.GetDeploymentsFilterArgs]]]] = None,
fqdn: Optional[pulumi.Input[str]] = None,
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
supported_connection_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentsResult]
func GetDeployments(ctx *Context, args *GetDeploymentsArgs, opts ...InvokeOption) (*GetDeploymentsResult, error)
func GetDeploymentsOutput(ctx *Context, args *GetDeploymentsOutputArgs, opts ...InvokeOption) GetDeploymentsResultOutput
> Note: This function is named GetDeployments
in the Go SDK.
public static class GetDeployments
{
public static Task<GetDeploymentsResult> InvokeAsync(GetDeploymentsArgs args, InvokeOptions? opts = null)
public static Output<GetDeploymentsResult> Invoke(GetDeploymentsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDeploymentsResult> getDeployments(GetDeploymentsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:GoldenGate/getDeployments:getDeployments
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- Assignable
Connection stringId Return the deployments to which the specified connectionId may be assigned.
- Assigned
Connection stringId The OCID of the connection which for the deployment must be assigned.
- Display
Name string A filter to return only the resources that match the entire 'displayName' given.
- Filters
List<Get
Deployments Filter> - Fqdn string
A filter to return only the resources that match the 'fqdn' given.
- Lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- State string
A filter to return only the resources that match the 'lifecycleState' given.
- Supported
Connection stringType The connection type which the deployment must support.
- Compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- Assignable
Connection stringId Return the deployments to which the specified connectionId may be assigned.
- Assigned
Connection stringId The OCID of the connection which for the deployment must be assigned.
- Display
Name string A filter to return only the resources that match the entire 'displayName' given.
- Filters
[]Get
Deployments Filter - Fqdn string
A filter to return only the resources that match the 'fqdn' given.
- Lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- State string
A filter to return only the resources that match the 'lifecycleState' given.
- Supported
Connection stringType The connection type which the deployment must support.
- compartment
Id String The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- assignable
Connection StringId Return the deployments to which the specified connectionId may be assigned.
- assigned
Connection StringId The OCID of the connection which for the deployment must be assigned.
- display
Name String A filter to return only the resources that match the entire 'displayName' given.
- filters
List<Get
Deployments Filter> - fqdn String
A filter to return only the resources that match the 'fqdn' given.
- lifecycle
Sub StringState A filter to return only the resources that match the 'lifecycleSubState' given.
- state String
A filter to return only the resources that match the 'lifecycleState' given.
- supported
Connection StringType The connection type which the deployment must support.
- compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- assignable
Connection stringId Return the deployments to which the specified connectionId may be assigned.
- assigned
Connection stringId The OCID of the connection which for the deployment must be assigned.
- display
Name string A filter to return only the resources that match the entire 'displayName' given.
- filters
Get
Deployments Filter[] - fqdn string
A filter to return only the resources that match the 'fqdn' given.
- lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- state string
A filter to return only the resources that match the 'lifecycleState' given.
- supported
Connection stringType The connection type which the deployment must support.
- compartment_
id str The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- assignable_
connection_ strid Return the deployments to which the specified connectionId may be assigned.
- assigned_
connection_ strid The OCID of the connection which for the deployment must be assigned.
- display_
name str A filter to return only the resources that match the entire 'displayName' given.
- filters
Get
Deployments Filter] - fqdn str
A filter to return only the resources that match the 'fqdn' given.
- lifecycle_
sub_ strstate A filter to return only the resources that match the 'lifecycleSubState' given.
- state str
A filter to return only the resources that match the 'lifecycleState' given.
- supported_
connection_ strtype The connection type which the deployment must support.
- compartment
Id String The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- assignable
Connection StringId Return the deployments to which the specified connectionId may be assigned.
- assigned
Connection StringId The OCID of the connection which for the deployment must be assigned.
- display
Name String A filter to return only the resources that match the entire 'displayName' given.
- filters List<Property Map>
- fqdn String
A filter to return only the resources that match the 'fqdn' given.
- lifecycle
Sub StringState A filter to return only the resources that match the 'lifecycleSubState' given.
- state String
A filter to return only the resources that match the 'lifecycleState' given.
- supported
Connection StringType The connection type which the deployment must support.
getDeployments Result
The following output properties are available:
- Compartment
Id string The OCID of the compartment being referenced.
- Deployment
Collections List<GetDeployments Deployment Collection> The list of deployment_collection.
- Id string
The provider-assigned unique ID for this managed resource.
- Assignable
Connection stringId - Assigned
Connection stringId - Display
Name string An object's Display Name.
- Filters
List<Get
Deployments Filter> - Fqdn string
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Lifecycle
Sub stringState Possible GGS lifecycle sub-states.
- State string
Possible lifecycle states.
- Supported
Connection stringType
- Compartment
Id string The OCID of the compartment being referenced.
- Deployment
Collections []GetDeployments Deployment Collection The list of deployment_collection.
- Id string
The provider-assigned unique ID for this managed resource.
- Assignable
Connection stringId - Assigned
Connection stringId - Display
Name string An object's Display Name.
- Filters
[]Get
Deployments Filter - Fqdn string
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Lifecycle
Sub stringState Possible GGS lifecycle sub-states.
- State string
Possible lifecycle states.
- Supported
Connection stringType
- compartment
Id String The OCID of the compartment being referenced.
- deployment
Collections List<GetDeployments Deployment Collection> The list of deployment_collection.
- id String
The provider-assigned unique ID for this managed resource.
- assignable
Connection StringId - assigned
Connection StringId - display
Name String An object's Display Name.
- filters
List<Get
Deployments Filter> - fqdn String
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- lifecycle
Sub StringState Possible GGS lifecycle sub-states.
- state String
Possible lifecycle states.
- supported
Connection StringType
- compartment
Id string The OCID of the compartment being referenced.
- deployment
Collections GetDeployments Deployment Collection[] The list of deployment_collection.
- id string
The provider-assigned unique ID for this managed resource.
- assignable
Connection stringId - assigned
Connection stringId - display
Name string An object's Display Name.
- filters
Get
Deployments Filter[] - fqdn string
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- lifecycle
Sub stringState Possible GGS lifecycle sub-states.
- state string
Possible lifecycle states.
- supported
Connection stringType
- compartment_
id str The OCID of the compartment being referenced.
- deployment_
collections GetDeployments Deployment Collection] The list of deployment_collection.
- id str
The provider-assigned unique ID for this managed resource.
- assignable_
connection_ strid - assigned_
connection_ strid - display_
name str An object's Display Name.
- filters
Get
Deployments Filter] - fqdn str
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- lifecycle_
sub_ strstate Possible GGS lifecycle sub-states.
- state str
Possible lifecycle states.
- supported_
connection_ strtype
- compartment
Id String The OCID of the compartment being referenced.
- deployment
Collections List<Property Map> The list of deployment_collection.
- id String
The provider-assigned unique ID for this managed resource.
- assignable
Connection StringId - assigned
Connection StringId - display
Name String An object's Display Name.
- filters List<Property Map>
- fqdn String
A three-label Fully Qualified Domain Name (FQDN) for a resource.
- lifecycle
Sub StringState Possible GGS lifecycle sub-states.
- state String
Possible lifecycle states.
- supported
Connection StringType
Supporting Types
GetDeploymentsDeploymentCollection
GetDeploymentsDeploymentCollectionItem
- Compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- Cpu
Core intCount The Minimum number of OCPUs to be made available for this Deployment.
- Dictionary<string, object>
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Backup stringId The OCID of the backup being referenced.
- Deployment
Diagnostic List<GetDatas Deployments Deployment Collection Item Deployment Diagnostic Data> Information regarding the deployment diagnostic collection
- Deployment
Type string The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- Deployment
Url string The URL of a resource.
- Description string
Metadata about this specific object.
- Display
Name string A filter to return only the resources that match the entire 'displayName' given.
- Fqdn string
A filter to return only the resources that match the 'fqdn' given.
- Dictionary<string, object>
A 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 deployment being referenced.
- Is
Auto boolScaling Enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- Is
Healthy bool True if all of the aggregate resources are working correctly.
- Is
Latest boolVersion Indicates if the resource is the the latest available version.
- Is
Public bool True if this object is publicly available.
- Is
Storage boolUtilization Limit Exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- License
Model string The Oracle license model that applies to a Deployment.
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- Maintenance
Configurations List<GetDeployments Deployment Collection Item Maintenance Configuration> Attributes for configuring automatic deployment maintenance.
- Maintenance
Windows List<GetDeployments Deployment Collection Item Maintenance Window> Defines the maintenance window, when automatic actions can be performed.
- Next
Maintenance stringAction Type Type of the next maintenance.
- Next
Maintenance stringDescription Description of the next maintenance.
- Nsg
Ids List<string> An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Ogg
Datas List<GetDeployments Deployment Collection Item Ogg Data> Deployment Data for an OggDeployment
- Private
Ip stringAddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- Public
Ip stringAddress The public IP address representing the access point for the Deployment.
- State string
A filter to return only the resources that match the 'lifecycleState' given.
- Storage
Utilization stringIn Bytes The amount of storage being utilized (in bytes)
- Subnet
Id string The OCID of the subnet being referenced.
- Dictionary<string, object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringNext Maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Ogg stringVersion Supported Until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Upgrade stringRequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- Cpu
Core intCount The Minimum number of OCPUs to be made available for this Deployment.
- map[string]interface{}
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deployment
Backup stringId The OCID of the backup being referenced.
- Deployment
Diagnostic []GetDatas Deployments Deployment Collection Item Deployment Diagnostic Data Information regarding the deployment diagnostic collection
- Deployment
Type string The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- Deployment
Url string The URL of a resource.
- Description string
Metadata about this specific object.
- Display
Name string A filter to return only the resources that match the entire 'displayName' given.
- Fqdn string
A filter to return only the resources that match the 'fqdn' given.
- map[string]interface{}
A 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 deployment being referenced.
- Is
Auto boolScaling Enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- Is
Healthy bool True if all of the aggregate resources are working correctly.
- Is
Latest boolVersion Indicates if the resource is the the latest available version.
- Is
Public bool True if this object is publicly available.
- Is
Storage boolUtilization Limit Exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- License
Model string The Oracle license model that applies to a Deployment.
- Lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- Maintenance
Configurations []GetDeployments Deployment Collection Item Maintenance Configuration Attributes for configuring automatic deployment maintenance.
- Maintenance
Windows []GetDeployments Deployment Collection Item Maintenance Window Defines the maintenance window, when automatic actions can be performed.
- Next
Maintenance stringAction Type Type of the next maintenance.
- Next
Maintenance stringDescription Description of the next maintenance.
- Nsg
Ids []string An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- Ogg
Datas []GetDeployments Deployment Collection Item Ogg Data Deployment Data for an OggDeployment
- Private
Ip stringAddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- Public
Ip stringAddress The public IP address representing the access point for the Deployment.
- State string
A filter to return only the resources that match the 'lifecycleState' given.
- Storage
Utilization stringIn Bytes The amount of storage being utilized (in bytes)
- Subnet
Id string The OCID of the subnet being referenced.
- map[string]interface{}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Of stringNext Maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Ogg stringVersion Supported Until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Upgrade stringRequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id String The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- cpu
Core IntegerCount The Minimum number of OCPUs to be made available for this Deployment.
- Map<String,Object>
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Backup StringId The OCID of the backup being referenced.
- deployment
Diagnostic List<GetDatas Deployments Deployment Collection Item Deployment Diagnostic Data> Information regarding the deployment diagnostic collection
- deployment
Type String The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- deployment
Url String The URL of a resource.
- description String
Metadata about this specific object.
- display
Name String A filter to return only the resources that match the entire 'displayName' given.
- fqdn String
A filter to return only the resources that match the 'fqdn' given.
- Map<String,Object>
A 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 deployment being referenced.
- is
Auto BooleanScaling Enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- is
Healthy Boolean True if all of the aggregate resources are working correctly.
- is
Latest BooleanVersion Indicates if the resource is the the latest available version.
- is
Public Boolean True if this object is publicly available.
- is
Storage BooleanUtilization Limit Exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- license
Model String The Oracle license model that applies to a Deployment.
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- lifecycle
Sub StringState A filter to return only the resources that match the 'lifecycleSubState' given.
- maintenance
Configurations List<GetDeployments Deployment Collection Item Maintenance Configuration> Attributes for configuring automatic deployment maintenance.
- maintenance
Windows List<GetDeployments Deployment Collection Item Maintenance Window> Defines the maintenance window, when automatic actions can be performed.
- next
Maintenance StringAction Type Type of the next maintenance.
- next
Maintenance StringDescription Description of the next maintenance.
- nsg
Ids List<String> An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- ogg
Datas List<GetDeployments Deployment Collection Item Ogg Data> Deployment Data for an OggDeployment
- private
Ip StringAddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- public
Ip StringAddress The public IP address representing the access point for the Deployment.
- state String
A filter to return only the resources that match the 'lifecycleState' given.
- storage
Utilization StringIn Bytes The amount of storage being utilized (in bytes)
- subnet
Id String The OCID of the subnet being referenced.
- Map<String,Object>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringNext Maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Ogg StringVersion Supported Until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Upgrade StringRequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id string The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- cpu
Core numberCount The Minimum number of OCPUs to be made available for this Deployment.
- {[key: string]: any}
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Backup stringId The OCID of the backup being referenced.
- deployment
Diagnostic GetDatas Deployments Deployment Collection Item Deployment Diagnostic Data[] Information regarding the deployment diagnostic collection
- deployment
Type string The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- deployment
Url string The URL of a resource.
- description string
Metadata about this specific object.
- display
Name string A filter to return only the resources that match the entire 'displayName' given.
- fqdn string
A filter to return only the resources that match the 'fqdn' given.
- {[key: string]: any}
A 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 deployment being referenced.
- is
Auto booleanScaling Enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- is
Healthy boolean True if all of the aggregate resources are working correctly.
- is
Latest booleanVersion Indicates if the resource is the the latest available version.
- is
Public boolean True if this object is publicly available.
- is
Storage booleanUtilization Limit Exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- license
Model string The Oracle license model that applies to a Deployment.
- lifecycle
Details string Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- lifecycle
Sub stringState A filter to return only the resources that match the 'lifecycleSubState' given.
- maintenance
Configurations GetDeployments Deployment Collection Item Maintenance Configuration[] Attributes for configuring automatic deployment maintenance.
- maintenance
Windows GetDeployments Deployment Collection Item Maintenance Window[] Defines the maintenance window, when automatic actions can be performed.
- next
Maintenance stringAction Type Type of the next maintenance.
- next
Maintenance stringDescription Description of the next maintenance.
- nsg
Ids string[] An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- ogg
Datas GetDeployments Deployment Collection Item Ogg Data[] Deployment Data for an OggDeployment
- private
Ip stringAddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- public
Ip stringAddress The public IP address representing the access point for the Deployment.
- state string
A filter to return only the resources that match the 'lifecycleState' given.
- storage
Utilization stringIn Bytes The amount of storage being utilized (in bytes)
- subnet
Id string The OCID of the subnet being referenced.
- {[key: string]: any}
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created string The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of stringNext Maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Ogg stringVersion Supported Until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated string The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Upgrade stringRequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment_
id str The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- cpu_
core_ intcount The Minimum number of OCPUs to be made available for this Deployment.
- Mapping[str, Any]
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment_
backup_ strid The OCID of the backup being referenced.
- deployment_
diagnostic_ Getdatas Deployments Deployment Collection Item Deployment Diagnostic Data] Information regarding the deployment diagnostic collection
- deployment_
type str The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- deployment_
url str The URL of a resource.
- description str
Metadata about this specific object.
- display_
name str A filter to return only the resources that match the entire 'displayName' given.
- fqdn str
A filter to return only the resources that match the 'fqdn' given.
- Mapping[str, Any]
A 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 deployment being referenced.
- is_
auto_ boolscaling_ enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- is_
healthy bool True if all of the aggregate resources are working correctly.
- is_
latest_ boolversion Indicates if the resource is the the latest available version.
- is_
public bool True if this object is publicly available.
- is_
storage_ boolutilization_ limit_ exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- license_
model str The Oracle license model that applies to a Deployment.
- lifecycle_
details str Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- lifecycle_
sub_ strstate A filter to return only the resources that match the 'lifecycleSubState' given.
- maintenance_
configurations GetDeployments Deployment Collection Item Maintenance Configuration] Attributes for configuring automatic deployment maintenance.
- maintenance_
windows GetDeployments Deployment Collection Item Maintenance Window] Defines the maintenance window, when automatic actions can be performed.
- next_
maintenance_ straction_ type Type of the next maintenance.
- next_
maintenance_ strdescription Description of the next maintenance.
- nsg_
ids Sequence[str] An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- ogg_
datas GetDeployments Deployment Collection Item Ogg Data] Deployment Data for an OggDeployment
- private_
ip_ straddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- public_
ip_ straddress The public IP address representing the access point for the Deployment.
- state str
A filter to return only the resources that match the 'lifecycleState' given.
- storage_
utilization_ strin_ bytes The amount of storage being utilized (in bytes)
- subnet_
id str The OCID of the subnet being referenced.
- Mapping[str, Any]
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
created str The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
of_ strnext_ maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
ogg_ strversion_ supported_ until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
updated str The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
upgrade_ strrequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id String The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
- cpu
Core NumberCount The Minimum number of OCPUs to be made available for this Deployment.
- Map<Any>
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deployment
Backup StringId The OCID of the backup being referenced.
- deployment
Diagnostic List<Property Map>Datas Information regarding the deployment diagnostic collection
- deployment
Type String The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
- deployment
Url String The URL of a resource.
- description String
Metadata about this specific object.
- display
Name String A filter to return only the resources that match the entire 'displayName' given.
- fqdn String
A filter to return only the resources that match the 'fqdn' given.
- Map<Any>
A 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 deployment being referenced.
- is
Auto BooleanScaling Enabled Indicates if auto scaling is enabled for the Deployment's CPU core count.
- is
Healthy Boolean True if all of the aggregate resources are working correctly.
- is
Latest BooleanVersion Indicates if the resource is the the latest available version.
- is
Public Boolean True if this object is publicly available.
- is
Storage BooleanUtilization Limit Exceeded Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
- license
Model String The Oracle license model that applies to a Deployment.
- lifecycle
Details String Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- lifecycle
Sub StringState A filter to return only the resources that match the 'lifecycleSubState' given.
- maintenance
Configurations List<Property Map> Attributes for configuring automatic deployment maintenance.
- maintenance
Windows List<Property Map> Defines the maintenance window, when automatic actions can be performed.
- next
Maintenance StringAction Type Type of the next maintenance.
- next
Maintenance StringDescription Description of the next maintenance.
- nsg
Ids List<String> An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
- ogg
Datas List<Property Map> Deployment Data for an OggDeployment
- private
Ip StringAddress The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
- public
Ip StringAddress The public IP address representing the access point for the Deployment.
- state String
A filter to return only the resources that match the 'lifecycleState' given.
- storage
Utilization StringIn Bytes The amount of storage being utilized (in bytes)
- subnet
Id String The OCID of the subnet being referenced.
- Map<Any>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Of StringNext Maintenance The time of next maintenance schedule. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Ogg StringVersion Supported Until The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Updated String The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Upgrade StringRequired Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticData
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Diagnostic
State string The state of the deployment diagnostic collection.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the diagnostic collected and uploaded to object storage
- Time
Diagnostic stringEnd The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Diagnostic stringStart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Bucket string
Name of the bucket where the object is to be uploaded in the object storage
- Diagnostic
State string The state of the deployment diagnostic collection.
- Namespace string
Name of namespace that serves as a container for all of your buckets
- Object string
Name of the diagnostic collected and uploaded to object storage
- Time
Diagnostic stringEnd The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- Time
Diagnostic stringStart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- diagnostic
State String The state of the deployment diagnostic collection.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the diagnostic collected and uploaded to object storage
- time
Diagnostic StringEnd The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Diagnostic StringStart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- bucket string
Name of the bucket where the object is to be uploaded in the object storage
- diagnostic
State string The state of the deployment diagnostic collection.
- namespace string
Name of namespace that serves as a container for all of your buckets
- object string
Name of the diagnostic collected and uploaded to object storage
- time
Diagnostic stringEnd The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Diagnostic stringStart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- bucket str
Name of the bucket where the object is to be uploaded in the object storage
- diagnostic_
state str The state of the deployment diagnostic collection.
- namespace str
Name of namespace that serves as a container for all of your buckets
- object str
Name of the diagnostic collected and uploaded to object storage
- time_
diagnostic_ strend The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time_
diagnostic_ strstart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- bucket String
Name of the bucket where the object is to be uploaded in the object storage
- diagnostic
State String The state of the deployment diagnostic collection.
- namespace String
Name of namespace that serves as a container for all of your buckets
- object String
Name of the diagnostic collected and uploaded to object storage
- time
Diagnostic StringEnd The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.- time
Diagnostic StringStart The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
GetDeploymentsDeploymentCollectionItemMaintenanceConfiguration
- Bundle
Release intUpgrade Period In Days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- Interim
Release intUpgrade Period In Days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- Is
Interim boolRelease Auto Upgrade Enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- Major
Release intUpgrade Period In Days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- Security
Patch intUpgrade Period In Days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
- Bundle
Release intUpgrade Period In Days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- Interim
Release intUpgrade Period In Days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- Is
Interim boolRelease Auto Upgrade Enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- Major
Release intUpgrade Period In Days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- Security
Patch intUpgrade Period In Days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
- bundle
Release IntegerUpgrade Period In Days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- interim
Release IntegerUpgrade Period In Days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- is
Interim BooleanRelease Auto Upgrade Enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- major
Release IntegerUpgrade Period In Days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- security
Patch IntegerUpgrade Period In Days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
- bundle
Release numberUpgrade Period In Days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- interim
Release numberUpgrade Period In Days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- is
Interim booleanRelease Auto Upgrade Enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- major
Release numberUpgrade Period In Days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- security
Patch numberUpgrade Period In Days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
- bundle_
release_ intupgrade_ period_ in_ days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- interim_
release_ intupgrade_ period_ in_ days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- is_
interim_ boolrelease_ auto_ upgrade_ enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- major_
release_ intupgrade_ period_ in_ days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- security_
patch_ intupgrade_ period_ in_ days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
- bundle
Release NumberUpgrade Period In Days Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.
- interim
Release NumberUpgrade Period In Days Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.
- is
Interim BooleanRelease Auto Upgrade Enabled By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.
- major
Release NumberUpgrade Period In Days Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.
- security
Patch NumberUpgrade Period In Days Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.
GetDeploymentsDeploymentCollectionItemMaintenanceWindow
- day str
Days of the week.
- start_
hour int Start hour for maintenance period. Hour is in UTC.
GetDeploymentsDeploymentCollectionItemOggData
- Admin
Password string - Admin
Username string The GoldenGate deployment console username.
- Certificate string
A PEM-encoded SSL certificate.
- Credential
Store string The type of credential store for OGG.
- Deployment
Name string The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- Identity
Domain stringId The OCID of the Identity Domain when IAM credential store is used.
- Key string
- Ogg
Version string Version of OGG
- Password
Secret stringId The OCID of the Secret where the deployment password is stored.
- Admin
Password string - Admin
Username string The GoldenGate deployment console username.
- Certificate string
A PEM-encoded SSL certificate.
- Credential
Store string The type of credential store for OGG.
- Deployment
Name string The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- Identity
Domain stringId The OCID of the Identity Domain when IAM credential store is used.
- Key string
- Ogg
Version string Version of OGG
- Password
Secret stringId The OCID of the Secret where the deployment password is stored.
- admin
Password String - admin
Username String The GoldenGate deployment console username.
- certificate String
A PEM-encoded SSL certificate.
- credential
Store String The type of credential store for OGG.
- deployment
Name String The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- identity
Domain StringId The OCID of the Identity Domain when IAM credential store is used.
- key String
- ogg
Version String Version of OGG
- password
Secret StringId The OCID of the Secret where the deployment password is stored.
- admin
Password string - admin
Username string The GoldenGate deployment console username.
- certificate string
A PEM-encoded SSL certificate.
- credential
Store string The type of credential store for OGG.
- deployment
Name string The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- identity
Domain stringId The OCID of the Identity Domain when IAM credential store is used.
- key string
- ogg
Version string Version of OGG
- password
Secret stringId The OCID of the Secret where the deployment password is stored.
- admin_
password str - admin_
username str The GoldenGate deployment console username.
- certificate str
A PEM-encoded SSL certificate.
- credential_
store str The type of credential store for OGG.
- deployment_
name str The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- identity_
domain_ strid The OCID of the Identity Domain when IAM credential store is used.
- key str
- ogg_
version str Version of OGG
- password_
secret_ strid The OCID of the Secret where the deployment password is stored.
- admin
Password String - admin
Username String The GoldenGate deployment console username.
- certificate String
A PEM-encoded SSL certificate.
- credential
Store String The type of credential store for OGG.
- deployment
Name String The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
- identity
Domain StringId The OCID of the Identity Domain when IAM credential store is used.
- key String
- ogg
Version String Version of OGG
- password
Secret StringId The OCID of the Secret where the deployment password is stored.
GetDeploymentsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.