Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Opsi.getAwrHubSources
Explore with Pulumi AI
This data source provides the list of Awr Hub Sources in Oracle Cloud Infrastructure Opsi service.
Gets a list of Awr Hub source objects.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAwrHubSources = oci.Opsi.getAwrHubSources({
    awrHubId: testAwrHub.id,
    awrHubSourceId: testAwrHubSource.id,
    compartmentId: compartmentId,
    name: awrHubSourceName,
    sourceTypes: awrHubSourceSourceType,
    states: awrHubSourceState,
    statuses: awrHubSourceStatus,
});
import pulumi
import pulumi_oci as oci
test_awr_hub_sources = oci.Opsi.get_awr_hub_sources(awr_hub_id=test_awr_hub["id"],
    awr_hub_source_id=test_awr_hub_source["id"],
    compartment_id=compartment_id,
    name=awr_hub_source_name,
    source_types=awr_hub_source_source_type,
    states=awr_hub_source_state,
    statuses=awr_hub_source_status)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opsi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsi.GetAwrHubSources(ctx, &opsi.GetAwrHubSourcesArgs{
			AwrHubId:       testAwrHub.Id,
			AwrHubSourceId: pulumi.StringRef(testAwrHubSource.Id),
			CompartmentId:  pulumi.StringRef(compartmentId),
			Name:           pulumi.StringRef(awrHubSourceName),
			SourceTypes:    awrHubSourceSourceType,
			States:         awrHubSourceState,
			Statuses:       awrHubSourceStatus,
		}, 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 testAwrHubSources = Oci.Opsi.GetAwrHubSources.Invoke(new()
    {
        AwrHubId = testAwrHub.Id,
        AwrHubSourceId = testAwrHubSource.Id,
        CompartmentId = compartmentId,
        Name = awrHubSourceName,
        SourceTypes = awrHubSourceSourceType,
        States = awrHubSourceState,
        Statuses = awrHubSourceStatus,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.OpsiFunctions;
import com.pulumi.oci.Opsi.inputs.GetAwrHubSourcesArgs;
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 testAwrHubSources = OpsiFunctions.getAwrHubSources(GetAwrHubSourcesArgs.builder()
            .awrHubId(testAwrHub.id())
            .awrHubSourceId(testAwrHubSource.id())
            .compartmentId(compartmentId)
            .name(awrHubSourceName)
            .sourceTypes(awrHubSourceSourceType)
            .states(awrHubSourceState)
            .statuses(awrHubSourceStatus)
            .build());
    }
}
variables:
  testAwrHubSources:
    fn::invoke:
      function: oci:Opsi:getAwrHubSources
      arguments:
        awrHubId: ${testAwrHub.id}
        awrHubSourceId: ${testAwrHubSource.id}
        compartmentId: ${compartmentId}
        name: ${awrHubSourceName}
        sourceTypes: ${awrHubSourceSourceType}
        states: ${awrHubSourceState}
        statuses: ${awrHubSourceStatus}
Using getAwrHubSources
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 getAwrHubSources(args: GetAwrHubSourcesArgs, opts?: InvokeOptions): Promise<GetAwrHubSourcesResult>
function getAwrHubSourcesOutput(args: GetAwrHubSourcesOutputArgs, opts?: InvokeOptions): Output<GetAwrHubSourcesResult>def get_awr_hub_sources(awr_hub_id: Optional[str] = None,
                        awr_hub_source_id: Optional[str] = None,
                        compartment_id: Optional[str] = None,
                        filters: Optional[Sequence[GetAwrHubSourcesFilter]] = None,
                        name: Optional[str] = None,
                        source_types: Optional[Sequence[str]] = None,
                        states: Optional[Sequence[str]] = None,
                        statuses: Optional[Sequence[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> GetAwrHubSourcesResult
def get_awr_hub_sources_output(awr_hub_id: Optional[pulumi.Input[str]] = None,
                        awr_hub_source_id: Optional[pulumi.Input[str]] = None,
                        compartment_id: Optional[pulumi.Input[str]] = None,
                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAwrHubSourcesFilterArgs]]]] = None,
                        name: Optional[pulumi.Input[str]] = None,
                        source_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetAwrHubSourcesResult]func GetAwrHubSources(ctx *Context, args *GetAwrHubSourcesArgs, opts ...InvokeOption) (*GetAwrHubSourcesResult, error)
func GetAwrHubSourcesOutput(ctx *Context, args *GetAwrHubSourcesOutputArgs, opts ...InvokeOption) GetAwrHubSourcesResultOutput> Note: This function is named GetAwrHubSources in the Go SDK.
public static class GetAwrHubSources 
{
    public static Task<GetAwrHubSourcesResult> InvokeAsync(GetAwrHubSourcesArgs args, InvokeOptions? opts = null)
    public static Output<GetAwrHubSourcesResult> Invoke(GetAwrHubSourcesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAwrHubSourcesResult> getAwrHubSources(GetAwrHubSourcesArgs args, InvokeOptions options)
public static Output<GetAwrHubSourcesResult> getAwrHubSources(GetAwrHubSourcesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opsi/getAwrHubSources:getAwrHubSources
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AwrHub stringId 
- Unique Awr Hub identifier
- AwrHub stringSource Id 
- Awr Hub source identifier
- CompartmentId string
- The OCID of the compartment.
- Filters
List<GetAwr Hub Sources Filter> 
- Name string
- Awr Hub source database name
- SourceTypes List<string>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- States List<string>
- Lifecycle states
- Statuses List<string>
- Resource Status
- AwrHub stringId 
- Unique Awr Hub identifier
- AwrHub stringSource Id 
- Awr Hub source identifier
- CompartmentId string
- The OCID of the compartment.
- Filters
[]GetAwr Hub Sources Filter 
- Name string
- Awr Hub source database name
- SourceTypes []string
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- States []string
- Lifecycle states
- Statuses []string
- Resource Status
- awrHub StringId 
- Unique Awr Hub identifier
- awrHub StringSource Id 
- Awr Hub source identifier
- compartmentId String
- The OCID of the compartment.
- filters
List<GetAwr Hub Sources Filter> 
- name String
- Awr Hub source database name
- sourceTypes List<String>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
- awrHub stringId 
- Unique Awr Hub identifier
- awrHub stringSource Id 
- Awr Hub source identifier
- compartmentId string
- The OCID of the compartment.
- filters
GetAwr Hub Sources Filter[] 
- name string
- Awr Hub source database name
- sourceTypes string[]
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- states string[]
- Lifecycle states
- statuses string[]
- Resource Status
- awr_hub_ strid 
- Unique Awr Hub identifier
- awr_hub_ strsource_ id 
- Awr Hub source identifier
- compartment_id str
- The OCID of the compartment.
- filters
Sequence[GetAwr Hub Sources Filter] 
- name str
- Awr Hub source database name
- source_types Sequence[str]
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- states Sequence[str]
- Lifecycle states
- statuses Sequence[str]
- Resource Status
- awrHub StringId 
- Unique Awr Hub identifier
- awrHub StringSource Id 
- Awr Hub source identifier
- compartmentId String
- The OCID of the compartment.
- filters List<Property Map>
- name String
- Awr Hub source database name
- sourceTypes List<String>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
getAwrHubSources Result
The following output properties are available:
- AwrHub stringId 
- AWR Hub OCID
- AwrHub List<GetSource Summary Collections Awr Hub Sources Awr Hub Source Summary Collection> 
- The list of awr_hub_source_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AwrHub stringSource Id 
- CompartmentId string
- The OCID of the compartment.
- Filters
List<GetAwr Hub Sources Filter> 
- Name string
- The name of the Awr Hub source database.
- SourceTypes List<string>
- States List<string>
- the current state of the source database
- Statuses List<string>
- Indicates the status of a source database in Operations Insights
- AwrHub stringId 
- AWR Hub OCID
- AwrHub []GetSource Summary Collections Awr Hub Sources Awr Hub Source Summary Collection 
- The list of awr_hub_source_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AwrHub stringSource Id 
- CompartmentId string
- The OCID of the compartment.
- Filters
[]GetAwr Hub Sources Filter 
- Name string
- The name of the Awr Hub source database.
- SourceTypes []string
- States []string
- the current state of the source database
- Statuses []string
- Indicates the status of a source database in Operations Insights
- awrHub StringId 
- AWR Hub OCID
- awrHub List<GetSource Summary Collections Awr Hub Sources Awr Hub Source Summary Collection> 
- The list of awr_hub_source_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- awrHub StringSource Id 
- compartmentId String
- The OCID of the compartment.
- filters
List<GetAwr Hub Sources Filter> 
- name String
- The name of the Awr Hub source database.
- sourceTypes List<String>
- states List<String>
- the current state of the source database
- statuses List<String>
- Indicates the status of a source database in Operations Insights
- awrHub stringId 
- AWR Hub OCID
- awrHub GetSource Summary Collections Awr Hub Sources Awr Hub Source Summary Collection[] 
- The list of awr_hub_source_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- awrHub stringSource Id 
- compartmentId string
- The OCID of the compartment.
- filters
GetAwr Hub Sources Filter[] 
- name string
- The name of the Awr Hub source database.
- sourceTypes string[]
- states string[]
- the current state of the source database
- statuses string[]
- Indicates the status of a source database in Operations Insights
- awr_hub_ strid 
- AWR Hub OCID
- awr_hub_ Sequence[Getsource_ summary_ collections Awr Hub Sources Awr Hub Source Summary Collection] 
- The list of awr_hub_source_summary_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- awr_hub_ strsource_ id 
- compartment_id str
- The OCID of the compartment.
- filters
Sequence[GetAwr Hub Sources Filter] 
- name str
- The name of the Awr Hub source database.
- source_types Sequence[str]
- states Sequence[str]
- the current state of the source database
- statuses Sequence[str]
- Indicates the status of a source database in Operations Insights
- awrHub StringId 
- AWR Hub OCID
- awrHub List<Property Map>Source Summary Collections 
- The list of awr_hub_source_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- awrHub StringSource Id 
- compartmentId String
- The OCID of the compartment.
- filters List<Property Map>
- name String
- The name of the Awr Hub source database.
- sourceTypes List<String>
- states List<String>
- the current state of the source database
- statuses List<String>
- Indicates the status of a source database in Operations Insights
Supporting Types
GetAwrHubSourcesAwrHubSourceSummaryCollection        
GetAwrHubSourcesAwrHubSourceSummaryCollectionItem         
- AssociatedOpsi stringId 
- The OCID of the database id.
- AssociatedResource stringId 
- The OCID of the database id.
- AwrHub stringId 
- Unique Awr Hub identifier
- AwrHub stringOpsi Source Id 
- The shorted string of the Awr Hub source database identifier.
- AwrSource stringDatabase Id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- CompartmentId string
- The OCID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- HoursSince doubleLast Import 
- Number of hours since last AWR snapshots import happened from the Source database.
- Id string
- The OCID of the Awr Hub source database.
- IsRegistered boolWith Awr Hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- MaxSnapshot doubleIdentifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- MinSnapshot doubleIdentifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- Name string
- Awr Hub source database name
- SourceMail stringBox Url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- State string
- Lifecycle states
- Status string
- Resource Status
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- TimeFirst stringSnapshot Generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- TimeLast stringSnapshot Generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- TimeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- Type string
- source type of the database
- AssociatedOpsi stringId 
- The OCID of the database id.
- AssociatedResource stringId 
- The OCID of the database id.
- AwrHub stringId 
- Unique Awr Hub identifier
- AwrHub stringOpsi Source Id 
- The shorted string of the Awr Hub source database identifier.
- AwrSource stringDatabase Id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- CompartmentId string
- The OCID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- HoursSince float64Last Import 
- Number of hours since last AWR snapshots import happened from the Source database.
- Id string
- The OCID of the Awr Hub source database.
- IsRegistered boolWith Awr Hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- MaxSnapshot float64Identifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- MinSnapshot float64Identifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- Name string
- Awr Hub source database name
- SourceMail stringBox Url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- State string
- Lifecycle states
- Status string
- Resource Status
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- TimeFirst stringSnapshot Generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- TimeLast stringSnapshot Generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- TimeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- Type string
- source type of the database
- associatedOpsi StringId 
- The OCID of the database id.
- associatedResource StringId 
- The OCID of the database id.
- awrHub StringId 
- Unique Awr Hub identifier
- awrHub StringOpsi Source Id 
- The shorted string of the Awr Hub source database identifier.
- awrSource StringDatabase Id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- compartmentId String
- The OCID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- hoursSince DoubleLast Import 
- Number of hours since last AWR snapshots import happened from the Source database.
- id String
- The OCID of the Awr Hub source database.
- isRegistered BooleanWith Awr Hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- maxSnapshot DoubleIdentifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- minSnapshot DoubleIdentifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- name String
- Awr Hub source database name
- sourceMail StringBox Url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- state String
- Lifecycle states
- status String
- Resource Status
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeFirst StringSnapshot Generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeLast StringSnapshot Generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeUpdated String
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- type String
- source type of the database
- associatedOpsi stringId 
- The OCID of the database id.
- associatedResource stringId 
- The OCID of the database id.
- awrHub stringId 
- Unique Awr Hub identifier
- awrHub stringOpsi Source Id 
- The shorted string of the Awr Hub source database identifier.
- awrSource stringDatabase Id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- compartmentId string
- The OCID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[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"}
- hoursSince numberLast Import 
- Number of hours since last AWR snapshots import happened from the Source database.
- id string
- The OCID of the Awr Hub source database.
- isRegistered booleanWith Awr Hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- maxSnapshot numberIdentifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- minSnapshot numberIdentifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- name string
- Awr Hub source database name
- sourceMail stringBox Url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- state string
- Lifecycle states
- status string
- Resource Status
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeFirst stringSnapshot Generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeLast stringSnapshot Generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- type string
- source type of the database
- associated_opsi_ strid 
- The OCID of the database id.
- associated_resource_ strid 
- The OCID of the database id.
- awr_hub_ strid 
- Unique Awr Hub identifier
- awr_hub_ stropsi_ source_ id 
- The shorted string of the Awr Hub source database identifier.
- awr_source_ strdatabase_ id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- compartment_id str
- The OCID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- hours_since_ floatlast_ import 
- Number of hours since last AWR snapshots import happened from the Source database.
- id str
- The OCID of the Awr Hub source database.
- is_registered_ boolwith_ awr_ hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- max_snapshot_ floatidentifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- min_snapshot_ floatidentifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- name str
- Awr Hub source database name
- source_mail_ strbox_ url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- state str
- Lifecycle states
- status str
- Resource Status
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time at which the resource was first created. An RFC3339 formatted datetime string
- time_first_ strsnapshot_ generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- time_last_ strsnapshot_ generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- time_updated str
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- type str
- source type of the database
- associatedOpsi StringId 
- The OCID of the database id.
- associatedResource StringId 
- The OCID of the database id.
- awrHub StringId 
- Unique Awr Hub identifier
- awrHub StringOpsi Source Id 
- The shorted string of the Awr Hub source database identifier.
- awrSource StringDatabase Id 
- DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.
- compartmentId String
- The OCID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- hoursSince NumberLast Import 
- Number of hours since last AWR snapshots import happened from the Source database.
- id String
- The OCID of the Awr Hub source database.
- isRegistered BooleanWith Awr Hub 
- This is trueif the source databse is registered with a Awr Hub, otherwisefalse
- maxSnapshot NumberIdentifier 
- The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- minSnapshot NumberIdentifier 
- The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.
- name String
- Awr Hub source database name
- sourceMail StringBox Url 
- Opsi Mailbox URL based on the Awr Hub and Awr Hub source.
- state String
- Lifecycle states
- status String
- Resource Status
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeFirst StringSnapshot Generated 
- The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeLast StringSnapshot Generated 
- The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string
- timeUpdated String
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- type String
- source type of the database
GetAwrHubSourcesFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.